-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcoffee_tweets.csv
More file actions
We can make this file beautiful and searchable if this error is corrected: Illegal quoting in line 2.
1001 lines (1001 loc) · 233 KB
/
coffee_tweets.csv
File metadata and controls
1001 lines (1001 loc) · 233 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
doc_id;text;favorited;replyToSN;createdDate;createdTime;truncated;replyToSID;id;replyToUID;statusSource;screenName;retweetCount;retweeted;longitude;latitude
1;@ayyytylerb that is so true drink lots of coffee;FALSE;ayyytylerb;8/9/2013;02:43;FALSE;365664;365665;1637123977;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";thejennagibson;0;FALSE;NA;NA
2;RT @bryzy_brib: Senior March tmw morning at 7:25 A.M. in the SENIOR lot. Get up early, make yo coffee/breakfast, cus this will only happen ?;FALSE;NA;8/9/2013;02:43;FALSE;NA;365665;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";carolynicosia;1;FALSE;NA;NA
3;If you believe in #gunsense tomorrow would be a very good day to have your coffee any place BUT @Starbucks Guns+Coffee=#nosense @MomsDemand;FALSE;NA;8/9/2013;02:43;FALSE;NA;365665;NA;web;janeCkay;0;FALSE;NA;NA
4;My cute coffee mug. http://t.co/2udvMU6XIG;FALSE;NA;8/9/2013;02:43;FALSE;NA;365665;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";AlexandriaOOTD;0;FALSE;NA;NA
5;RT @slaredo21: I wish we had Starbucks here... Cause coffee dates in the morning sound perff!;FALSE;NA;8/9/2013;02:43;FALSE;NA;365665;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Rooosssaaaa;2;FALSE;NA;NA
6;Does anyone ever get a cup of coffee before a cocktail??;FALSE;NA;8/9/2013;02:43;FALSE;NA;365665;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";E_Z_MAC;0;FALSE;NA;NA
7;I like my coffee like I like my women...black, bitter, and preferably fair trade. I love #Archer;FALSE;NA;8/9/2013;02:43;FALSE;NA;365665;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";Charlie_31191;0;FALSE;NA;NA
8;@dreamwwediva ya didn't have coffee did ya?;FALSE;dreamwwediva;8/9/2013;02:43;FALSE;365664;365665;1316942208;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";JessicaSalvato5;0;FALSE;NA;NA
9;RT @iDougherty42: I just want some coffee.;FALSE;NA;8/9/2013;02:43;FALSE;NA;365665;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";kaytiekirk;1;FALSE;NA;NA
10;RT @Dorkv76: I can't care before coffee.;FALSE;NA;8/9/2013;02:43;FALSE;NA;365664;NA;"<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>";lissteria;2;FALSE;NA;NA
11;No lie I wouldn't mind coming home smelling like coffee;FALSE;NA;8/9/2013;02:43;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";DOPECROOK;0;FALSE;NA;NA
12;RT @JonasWorldFeed: Play Ping Pong with Joe. Take a tour of the stage with Nick. Have coffee with Kevin. Charity auction: https://t.co/VTkK?;FALSE;NA;8/9/2013;02:43;FALSE;NA;365664;NA;"<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>";TiffCaruso;6;FALSE;NA;NA
13;Have I ever told any of you that Tate Donovan bought my stepmom coffee?;FALSE;NA;8/9/2013;02:43;FALSE;NA;365664;NA;web;CurlysCrazyMofo;0;FALSE;NA;NA
14;RT @JonasWorldFeed: Play Ping Pong with Joe. Take a tour of the stage with Nick. Have coffee with Kevin. Charity auction: https://t.co/VTkK?;FALSE;NA;8/9/2013;02:43;FALSE;NA;365664;NA;web;JoeJonasVA;6;FALSE;NA;NA
15;@HeatherWhaley I was about 2 joke it takes 2 hands to hold hot coffee...then I read headline! #Don'tDrinkNShoot;FALSE;HeatherWhaley;8/9/2013;02:42;FALSE;365647;365664;26035764;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";AnnaDuleep;0;FALSE;NA;NA
16;RT @MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renovation show on HGTV.;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";mpr4437;42;FALSE;NA;NA
17;Coffee always makes everything better.;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;web;sharkshukri;0;FALSE;NA;NA
18;RT @AdelaideReview: Food For Thought: @Annabelleats shares a delicious Venison and Porcini Mushroom Pie Recipe. http://t.co/N8O7vqFKWN http?;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";thepaulbaker;1;FALSE;NA;NA
19;"RT @LittleMelss: lmfao!!!@bryanlaca: nahhh Melanie u is fa sho like an ummm a Coffee table ;) ) yeeeee lmaoo";FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;web;bryanlaca;1;FALSE;NA;NA
20;I wonder if Christian Colon will get a cup of coffee once the rosters expand to 40 man in September. Really nothing to lose by doing so.;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://www.myplume.com/"" rel=""nofollow"">Plume?for?Android</a>";Shauncore;0;FALSE;NA;NA
21;Shouldn't have drank coffee I'm jittery as fuck.;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";DylanBaur;0;FALSE;NA;NA
22;#good_morning #chocolate #morning #coffee #floral #eid #nutella #waffles #crepe #jeddah #ksa #dubai #q8 http://t.co/Em61Iopri5;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";LadyMonyAna1;0;FALSE;NA;NA
23;@kungfupussy You might need to do a bulk shipment to Melbourne! @JustBeer_NoBull @brandnewblues;FALSE;kungfupussy;8/9/2013;02:42;FALSE;365664;365664;19478601;"<a href=""http://janetter.net/"" rel=""nofollow"">Janetter for Mac</a>";Gridlock_Coffee;0;FALSE;NA;NA
24;Gold Coast JCC Friday News features profile on new coffee shop in Southport that's embracing the area's heritage: http://t.co/Na32boM2bO;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;web;_GCJCC;0;FALSE;NA;NA
25;Sometimes I start dancing on my coffee table because I can.;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Rileydreams;0;FALSE;NA;NA
26;"RT @Leslieks: .@Starbucks I have a morning free tomorrow & was going to have coffee w/friends, but not until you get some #Gunsense! #momsd?";FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";TweetJohnLane;9;FALSE;NA;NA
27;Starbucks Coffee is the best!!! #confessyourunpopularopinion;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";RedBone_Barbie5;0;FALSE;NA;NA
28;RT @TheMindBlowing: Fat Burning Foods: Grapefruit. Watermelon. Berries. Hot Peppers. Celery. Greek Yogurt. Eggs. Fish. Green Tea. Coffee. ?;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";RLauren88;926;FALSE;NA;NA
29;"Witnessed a girl with a pet bird pooping on her shoulder & a girl sharing ice cream with her dog at the same coffee shop. Both didn't care.";FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";MattyTheBolts;0;FALSE;NA;NA
30;My biological watch thinks its 5:43 PM. I want Arabic coffee and cake.;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://blackberry.com/twitter"" rel=""nofollow"">Twitter for BlackBerry?</a>";AmaniiAbdulla;0;FALSE;NA;NA
31;I wanna lay on the couch, under some blankets, with some hot coffee, and watch old movies.;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";AliPlayzGuitar;0;FALSE;NA;NA
32;RT @dreyess1: Do they have rehab for coffee addicts?;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";ashplante14;1;FALSE;NA;NA
33;Finally! Home. There is no food or beer in the fridge. Also there is no coffee, tomorrow will be rough. Ordered pizza. Rat time!!!;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>";kscottz;0;FALSE;NA;NA
34;"just drank an entire venti coffee from Starbucks & still think I'm gonna fall asleep #wtf";FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";destinyspooner;0;FALSE;NA;NA
35;RT @UberFacts: There are more than 1,000 chemicals in a single cup of coffee. Of these, only 26 have been tested and half caused cancer in ?;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";MamaArch;1600;FALSE;NA;NA
36;My family called me weird cause I drink coffee with a straw. I just think they are mad cause they didn't think of it first;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Hiya_Mariah;0;FALSE;NA;NA
37;I drank all that coffee for nothing.;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;web;gingi_snap;0;FALSE;NA;NA
38;?@kayleesmith95: i want coffee if i had a car that is all my car would be used for? SAME HERE;FALSE;kayleesmith95;8/9/2013;02:42;FALSE;365663;365664;332635904;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";micheeliinna;0;FALSE;NA;NA
39;RT @marisaaaa23: ?@sheodd: Iced coffee in the mornings is soo amazing like it's my everyday breakfast pretty bad habit I'm building? that w?;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";sheodd;1;FALSE;NA;NA
40;RT @skylarking24: Coffee ice cream is the best thing ever ok;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";HannahBrumback;2;FALSE;NA;NA
41;I burned my tongue drinking coffee this morning;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";A_luxurycar;0;FALSE;NA;NA
42;RT @littledaisy420: iced coffee ilysm;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";oglivelavalakin;2;FALSE;NA;NA
43;Its strong connection to life. bittersweet RT @ikanatassa: coffee enthusiasts di timeline gue, boleh nanyakah? ini buat riset. why do you li;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://www.tweetcaster.com"" rel=""nofollow"">TweetCaster for Android</a>";niyaayu;0;FALSE;NA;NA
44;I don't drink coffee, i drink tea my dear..;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""https://chrome.google.com/extensions/detail/encaiiljifbdbjlphpgpiimidegddhic"" rel=""nofollow"">Silver Bird</a>";TheOnlyBenedict;0;FALSE;NA;NA
45;I'm at Coffee Dominion http://t.co/0nseOXJ0K3;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://foursquare.com"" rel=""nofollow"">foursquare</a>";Mattic6;0;FALSE;NA;NA
46;@iowashoeguy I think Jaye could help you with the coffee #Hawkeyefootball;FALSE;iowashoeguy;8/9/2013;02:42;FALSE;365650;365664;233773878;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";cubfan64;0;FALSE;NA;NA
47;RT @TLW3: Coffee cup in hand, gun in holster http://t.co/rmoBUQrcnZ #gunfail @nra;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://roundteam.co"" rel=""nofollow"">RoundTeam</a>";Kristen_Wright5;1;FALSE;NA;NA
48;RT @UberFacts: There are more than 1,000 chemicals in a single cup of coffee. Of these, only 26 have been tested and half caused cancer in ?;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";krysmeoww;1600;FALSE;NA;NA
49;"@krizzle_3 yesssss omg. Caramel almond iced coffee milk &' one sugar";FALSE;krizzle_3;8/9/2013;02:42;FALSE;365664;365664;239123024;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";jennaa_leaaa;0;FALSE;NA;NA
50;Might make some coffee right now;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";christianpalos;0;FALSE;NA;NA
51;@katie_silliman @IntimacyFacts LMAO!!! What about avocados, spinach, coffee and tea? Those are also on my daily consumption list!! :-);FALSE;katie_silliman;8/9/2013;02:42;FALSE;365654;365664;396244905;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";JoeCoolSilliman;0;FALSE;NA;NA
52;RT @SarahWCaron: Apparently tomorrow is Starbucks Appreciation Day for gun enthusiasts where they go, sip coffee and bring guns. I know whe?;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Bboggia2465;14;FALSE;NA;NA
53;Coffee with foam: http://t.co/34iGwYMKhb via @YouTube;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://www.google.com/"" rel=""nofollow"">Google</a>";KDL85;0;FALSE;NA;NA
54;@nitecoder @mattallen should have got an extra coffee to spill on it so no one else could read it. Waste of good coffee tho? maybe a chai?;FALSE;nitecoder;8/9/2013;02:42;FALSE;365664;365664;17034483;"<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>";warren_s;0;FALSE;NA;NA
55;RT @IamBeyer: I'm ready for pumping spice beer/coffee, apple orchards, American horror story sea3, walking dead season sea4, college footba?;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";chris_gonzales_;2;FALSE;NA;NA
56;i live for coffee flavored ice cream;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";isaaclxhey;0;FALSE;NA;NA
57;@sarakalke I hope that we all can keep this movement going..whether it be w/blizzards, coffee, groceries whatever... #PayItForward;FALSE;rnrmusicgurl;8/9/2013;02:42;FALSE;365663;365664;885816266;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";rnrmusicgurl;0;FALSE;NA;NA
58;@JasonT @natasha_lh I'm much closer to your brother's pronunciation. I pronounce the O the same way I do in the word coffee You might too;FALSE;JasonT;8/9/2013;02:42;FALSE;365663;365664;990711;web;DreamtimeDrinne;0;FALSE;NA;NA
59;I don't even like coffee;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Molli_Lynn;0;FALSE;NA;NA
60;?@tommymaloy: coffee coolata's are the shit?;FALSE;tommymaloy;8/9/2013;02:42;FALSE;365664;365664;346289745;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";_ashley_marie_x;0;FALSE;NA;NA
61;I JUST SPILLED COFFEE DOWN MY SHIRT;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;web;pavingnewpaths;0;FALSE;NA;NA
62;I think I need another coffee #StarBucks;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;web;platinumclubvan;0;FALSE;NA;NA
63;I dont wanna know how much iced coffee I drink a week;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";heyderjess;0;FALSE;NA;NA
64;"@thebobbieoliver every morning i stand eastward & chant that 3 times 'never read any self-help books' then coffee #bourbon chaser.";FALSE;thebobbieoliver;8/9/2013;02:42;FALSE;365654;365664;256677376;web;6XBytes;0;FALSE;NA;NA
65;"@JaleneVegter: All I want right now is for someone to eat chocolate chips & drink coffee & go star gazing with me. #simpleasthat";FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";Keyz_Player96;0;FALSE;NA;NA
66;@PIRFCT1 hahahah I don't get much coffee from there but yes they ask so many questions but still screw it up hahaha;FALSE;PIRFCT1;8/9/2013;02:42;FALSE;365664;365664;423016602;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Baseball4Lifee6;0;FALSE;NA;NA
67;#AlwayzRemember Neva let a nigga smack your tray and spill your coffee!!;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>";Alia_Dara;0;FALSE;NA;NA
68;RT @farleftcoast: Her: I met a guy online. We?re meeting for coffee. Me: Does he have a nice dick? Her: I DON?T KNOW YET! Me: I don?t un?;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";thisizAsh;37;FALSE;NA;NA
69;Fun fact: roast your own coffee bean at home using a popcorn machine! @YelpAdelaide #coffeecrawl;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";gggnef;0;FALSE;NA;NA
70;@Jer_KIngD *gives u coffee*;FALSE;Jer_KIngD;8/9/2013;02:42;FALSE;365664;365664;321689855;"<a href=""http://blackberry.com/twitter"" rel=""nofollow"">Twitter for BlackBerry?</a>";eBahadurGT;0;FALSE;NA;NA
71;do you think the old dude next to me would be willing to pour some of his coffee into mine coz it got cold;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";napquest;0;FALSE;NA;NA
72;@Tifferz1991 good cause I already gave up sweet tea for green tea and coffee for hot tea and honey.;FALSE;Tifferz1991;8/9/2013;02:42;FALSE;365664;365664;85874933;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";Greta_Paige;0;FALSE;NA;NA
73;A cup of coffee sin azucar, ag;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://blackberry.com/twitter"" rel=""nofollow"">Twitter for BlackBerry?</a>";Roox_21;0;FALSE;NA;NA
74;"Just for you #abdul & The Coffee Theory";FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://blackberry.com/twitter"" rel=""nofollow"">Twitter for BlackBerry?</a>";fii_lutfi;0;FALSE;NA;NA
75;RT @pisssyprincess: Like I'm sorry food, but you've been replaced with better things, like coffee and alcohol.;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Its_Ray_Ray1;1;FALSE;NA;NA
76;@klove_01 Haha it sucks until you get used to it, then it ain't bad. Down a cup or two of coffee and then it's off to work for 12-14 hours;FALSE;klove_01;8/9/2013;02:42;FALSE;365664;365664;36170073;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";AnduhrewBush05;0;FALSE;NA;NA
77;@billshortenmp I think they have good coffee there;FALSE;billshortenmp;8/9/2013;02:42;FALSE;365651;365664;137198586;web;jcgrimes3;0;FALSE;NA;NA
78;@rosiescala no more coffee for you;FALSE;rosiescala;8/9/2013;02:42;FALSE;365663;365664;251625922;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";MandyTorresss;0;FALSE;NA;NA
79;If I were to go #Starbucks right now, I'd get a Venti Iced Vanilla coffee, w/ 2 pumps of white mocha, breve, and Extra Extra caramel drizzle;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";meganmansor;0;FALSE;NA;NA
80;@DanielleATucker do u have any suggestions on what to put in coffee instead of cream? :-) like maybe almond milk? And honey?;FALSE;DanielleATucker;8/9/2013;02:42;FALSE;365646;365664;161084411;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";SweetiePieSyd;0;FALSE;NA;NA
81;RT @JonasWorldFeed: Play Ping Pong with Joe. Take a tour of the stage with Nick. Have coffee with Kevin. Charity auction: https://t.co/VTkK?;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";YhosdalyL;6;FALSE;NA;NA
82;@trishrothgeb @colecoffee @Timothybhill @LorenzoPerkins I'm creating my own Mighty Fine scale for coffee: goes to 110.;FALSE;trishrothgeb;8/9/2013;02:42;FALSE;365664;365664;16713957;web;HIflyer;0;FALSE;NA;NA
83;you me at six on the cover of Kerrang and iced coffee. I am very content. http://t.co/IuH05pTRuI;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";shevmigoats;0;FALSE;NA;NA
84;Jared got gum on his coffee lid and Jensen was clearly 1000% done. But like a good big brother he gave him his ow http://t.co/QQH012ZYVw;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitpic.com"" rel=""nofollow"">Twitpic</a>";WeLoveSPN;1;FALSE;NA;NA
85;Have to be up early tomorrow, and yet I just finished a large coffee. Avoid me at all costs tmrw;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>";Shamrock_NY;0;FALSE;NA;NA
86;Someone come to the ridges hotel and chill ! There is a coffee shop here aswell ! Please;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";SketcheeeN;0;FALSE;NA;NA
87;@LaurenKMcKellar HAHA never! Takes much more for death plots. Denying me coffee? Yes. Edits that will make my book great? *bakes cookies*;FALSE;LaurenKMcKellar;8/9/2013;02:42;FALSE;365663;365664;408751985;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";elledoo;0;FALSE;NA;NA
88;RT @lesbolife: wake up naked drinking coffee, making plans to change the world while the world was changing us;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";radicalann_;22;FALSE;NA;NA
89;I probably shouldn't be drinking coffee this late but oh well. Ill just chug a bottle of zzzquil.;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";xoxohail;0;FALSE;NA;NA
90;There are more than 1,000 chemicals in a single cup of coffee. Of these, only 26 have been tested and half caused cancer in rats.;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";vir1502;0;FALSE;NA;NA
91;We went to town and ate a half decent baked cheese cake. I think we might have a new place for coffee? http://t.co/UfZCfcpSB3;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";WholeLarderLove;0;FALSE;NA;NA
92;Coffee;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://blackberry.com/twitter"" rel=""nofollow"">Twitter for BlackBerry?</a>";katzseremane;0;FALSE;NA;NA
93;"Double apple shisha & coffee.. What else you need for this night?";FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Ali_Assi28;0;FALSE;NA;NA
94;I made coffee.;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;web;CameronAtrium;0;FALSE;NA;NA
95;it's Pepsi for me... @bombaytweeting: I love you less than coffee, which is more than enough.;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";musicaddict75;0;FALSE;NA;NA
96;@chandradawn1 COFFEE!!! COFFEE COFFEE!!! COFFEE!;FALSE;chandradawn1;8/9/2013;02:42;FALSE;365663;365664;373161911;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";JonsCrazyTweets;0;FALSE;NA;NA
97;Coffee and my bible good combo morning twitter;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;web;DamionWalter1;0;FALSE;NA;NA
98;I need money so I can buy candles, coffee, gas, black n milds, and tattoos. #Seriously;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;web;mir_anderson;0;FALSE;NA;NA
99;Lovely visual taxonomy of early coffee-making devices, 1922 http://t.co/fZrUuw2y6J;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://bufferapp.com"" rel=""nofollow"">Buffer</a>";brainpicker;0;FALSE;NA;NA
100;RT @sweetestMY: It's way too hot to be outside shooting for all day I'm doing it anyway..thank you.. my best friend, iced coffee couldn't d?;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;web;EvitaSong_287;310;FALSE;NA;NA
101;RT @BullardBella: ?@locklear_noah: I could drink some coffee but I don't wanna go make it?;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";xoxo_caitlynn;2;FALSE;NA;NA
102;Oh homemade creamy coffee. I could sip your creamy delight all day long.;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;web;rifianti;0;FALSE;NA;NA
103;RT @Mayflower04: She only drinks coffee at midnight. When the moment is not right.;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";samanthaboydddd;2;FALSE;NA;NA
104;bout to get some coffee cause my damn eyes closing and an no where near done studying.;FALSE;NA;8/9/2013;02:42;FALSE;NA;365664;NA;web;trey_mason1;0;FALSE;NA;NA
105;RT @mindelixir: RT @fastnasty: I'm drinking 2 pots of coffee and staying up all night to finish this @mindelixir remix so I can play it out?;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";DJSVED;1;FALSE;NA;NA
106;@NealChug no I didn't get one yet. You know that I don't SB that much hehe. I palpitate with too much coffee. Huhu. Wow, you na!;FALSE;NealChug;8/9/2013;02:41;FALSE;365663;365664;79172507;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";ChrisChug;0;FALSE;NA;NA
107;Can I just move into Bucees!? tons of snacks, Endless Coffee, country music all the time! #Perfect;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";jenngarza23;0;FALSE;NA;NA
108;Mornin'. Coffee, anyone?;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";msirishgarcia;0;FALSE;NA;NA
109;Michael Jackson and Slash walk into a coffee bean... #hollywoodblvd;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";HollyRockIt;0;FALSE;NA;NA
110;Hazelnut White Coffee from Old Town Coffee RT @ikanatassa: second question: what is the best coffee you've ever had in your life, and why?;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://ubersocial.com"" rel=""nofollow"">UberSocial for BlackBerry</a>";shibizain;0;FALSE;NA;NA
111;and yes, coffee was my dinner tonight...;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;web;tristynbaker;0;FALSE;NA;NA
112;You don't like coffee? http://t.co/mlHo44kgZk;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";littlehayniac;0;FALSE;NA;NA
113;RT @g4ybacon: I just want it to be winter already bc I hate slutty summer clothes. I miss my scarves and jackets, and coffee and cigarets o?;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";february4ir;2;FALSE;NA;NA
114;RT @smartalecks_: Some people start off their morning with breakfast or just coffee. I start off with a morning text :');FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";LiyanaAsri;5;FALSE;NA;NA
115;ordered a coffee and when i said my name they responded, Jamaira?;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";jayyHaira;0;FALSE;NA;NA
116;coffee coolata's are the shit;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";tommymaloy;0;FALSE;NA;NA
117;"RT @serverproblems2: when co-workers use up all the coffee and don't brew more!<<<<<<< #serverproblems";FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";bewitchingfaery;16;FALSE;NA;NA
118;"As someone who dislikes coffee, I have no idea why I thought it would be a good idea to buy Ben & Jerry's new coffee flavor. Oh right, fat.";FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;web;UnpluggedCrazy;0;FALSE;NA;NA
119;I need to try and start drinking just black coffee. Wayy healthier.;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";laurenndewey;0;FALSE;NA;NA
120;RT @JohnBirmingham: ?@DamianSharry: Brisbane cafe putting its foot down over the Courier Mail http://t.co/Ki90fbV2v9?? Think I found my ne?;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";Danjanon;99;FALSE;NA;NA
121;Kay. So coffee date with @_sammiieeee soon!!!;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";jaimesuarez22;0;FALSE;NA;NA
122;Abc mocca,., its so moccalicious RT @ikanatassa: second question: what is the best coffee you've ever had in your life, and why?;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://blackberry.com/twitter"" rel=""nofollow"">Twitter for BlackBerry?</a>";zarrazettina;0;FALSE;NA;NA
123;Really regretting those 3 cups of coffee today #wired #cantsleep #earlymornings;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";meganhagg24;0;FALSE;NA;NA
124;RT @YeowoolDam: This morning HOT Coffee Happy Happy http://t.co/WxfKiU4l46;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://blackberry.com/twitter"" rel=""nofollow"">Twitter for BlackBerry?</a>";Ad_Adit11;1;FALSE;NA;NA
125;@Goodbye_My_Lady oh yeah of course the sister plays a big role. Don't get too comfortable with this sweet blooming coffee romance however;FALSE;Goodbye_My_Lady;8/9/2013;02:41;FALSE;365664;365664;1129654980;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";kimsIeepy;0;FALSE;NA;NA
126;#lunch Chicken and pumpkin risotto with iced coffee @ Hoz Cafe http://t.co/LH8TtIzEyY;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";garydlum;0;FALSE;NA;NA
127;BAD HABIT ALERT! http://t.co/DIzpwj9G4Z via @KateWhineHall;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/tweetbutton"" rel=""nofollow"">Tweet Button</a>";LRConsiderer;0;FALSE;NA;NA
128;RT @sophistiCAITed_: I didn't need anything more than to sit on Dan's floor drinking an iced coffee and shooting the shit tonight @GriggyGr?;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";GriggyGringo;1;FALSE;NA;NA
129;*Comes home with a large coffee* that's what you call miscommunication http://t.co/s4OXHzUGLA;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";rumshahh;0;FALSE;NA;NA
130;Coffee #34 http://t.co/3Q02v4r9TP via @weebly;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://www.weebly.com/"" rel=""nofollow"">Weebly App</a>";AubreyBates1;0;FALSE;NA;NA
131;Think I want an iced coffee;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Mobile Web (M5)</a>";NerraFBby;0;FALSE;NA;NA
132;Megan.. Do you want an iced coffee? *yep !* do you want a beer? *YEP!* #musthaveallthebeverages http://t.co/frd41TriqJ;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";DoulaMegan;0;FALSE;NA;NA
133;Coffee realness. Or latte art. http://t.co/c34IDhGjUs;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://foursquare.com"" rel=""nofollow"">foursquare</a>";kekekelela;0;FALSE;NA;NA
134;MilkShake?) ) @notesSAHABAT: #NoterSpecialEid Coffee Or MilkShake ?;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://blackberry.com/twitter"" rel=""nofollow"">Twitter for BlackBerry?</a>";anahafida_;0;FALSE;NA;NA
135;Food For Thought: @Annabelleats shares a delicious Venison and Porcini Mushroom Pie Recipe. http://t.co/N8O7vqFKWN http://t.co/QAVqleO5Ke;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;web;AdelaideReview;1;FALSE;NA;NA
136;Black coffee will keep me up all night lololol I'm gonna be super hyper bi;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Jessicaschoefer;0;FALSE;NA;NA
137;Damn, I'm out of regular coffee... Now I have to settle for decaf, Oh well!;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Phranchizpoet;0;FALSE;NA;NA
138;Play Ping Pong with Joe. Take a tour of the stage with Nick. Have coffee with Kevin. Charity auction: https://t.co/VTkKGlyqht;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitterrific.com"" rel=""nofollow"">Twitterrific for Mac</a>";JonasWorldFeed;6;FALSE;NA;NA
139;@JessHampson Then do you want coffee in the morning? Donuts? Carrots to catch the wiggling nose monster?;FALSE;JessHampson;8/9/2013;02:41;FALSE;365664;365664;7713732;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";GettaGo;0;FALSE;NA;NA
140;I'm craving for some warm chocolate cake with a nice, strong cup of coffee. #rainydaycomfort http://t.co/WXZmll0PNP;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";weye;0;FALSE;NA;NA
141;MAXWELL'S HOUSE! #ROYALS Free coffee promotion? @610SportsKC;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";bsquaredb2;0;FALSE;NA;NA
142;?@meggp_12: ?@CleatingChase: My favorite part about fall: Hoodies Leggings Sweatpants Cold nights Football games Uggs Pumpkin coffee?;FALSE;meggp_12;8/9/2013;02:41;FALSE;365662;365664;939525858;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";E_Kindell;0;FALSE;NA;NA
143;Spilled a 16 oz coffee on a Toshiba laptop. It survived but turned into an Apple laptop. It has no right click. #IT #coffee;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;web;AIS_Network;0;FALSE;NA;NA
144;But I just drank 2 cups of coffee;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";_JoyaxO;0;FALSE;NA;NA
145;Starbucks chocolate coffee ~ http://t.co/fCO8OijVtN;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";Yuii_Tan;0;FALSE;NA;NA
146;RT @savannah_palle: Coffee ice cream is my favorite;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Mixd_kuri;1;FALSE;NA;NA
147;RT @EXOFANBASE_: #imagine you make a coffee in the morning,suddenly chanyeol came and hug u in behind, put his chin in ur shoulder and said?;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://www.tweetcaster.com"" rel=""nofollow"">TweetCaster for Android</a>";exochosarang;15;FALSE;NA;NA
148;Dat Girl Thought Shit Was Sweet Wen Dat Coffee Went On Kala Jacket;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";AyeeShaee;0;FALSE;NA;NA
149;Craving for starbucks-like coffee - .-;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;web;mightyduckface;0;FALSE;NA;NA
150;I haven't eaten all day.. : ( Coffee was all I had....;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";ASAP_29;0;FALSE;NA;NA
151;I'm about to make me some coffee mmmmmm I love it!!;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://www.tweetcaster.com"" rel=""nofollow"">TweetCaster for Android</a>";21thingsido;0;FALSE;NA;NA
152;@HeteroWhiteMan Come round for coffee anytime. http://t.co/QUtlHphPem;FALSE;HeteroWhiteMan;8/9/2013;02:41;FALSE;365660;365664;1220078930;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";drink_smoke_die;0;FALSE;NA;NA
153;Lmfaooooo by far....that guy drinks Irish coffee RT @2treyJay: @delasmoove Walsh drinks more than Stone Cold Steve Austin bro?;FALSE;2treyJay;8/9/2013;02:41;FALSE;365664;365664;1511311531;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";delasmoove;0;FALSE;NA;NA
154;"coffee, weed & cigarettes are the three things that keep me from being a complete bitch.";FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";hayleydeniseeee;0;FALSE;NA;NA
155;The weirdest thing happened to me this summer...I discovered I like coffee black.;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";jordeeeliz;0;FALSE;NA;NA
156;"Drinking an Epicurean Coffee & Fig by @epicbeer ? http://t.co/YpwDNilw6k";FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://untappd.com"" rel=""nofollow"">Untappd</a>";smrtgirl;0;FALSE;NA;NA
157;RT @AuroraTynan: Coffee date with the girls :) @SamanthaMaione and @cassieverslype;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";SamanthaMaione;2;FALSE;NA;NA
158;@lorisica @BrandIdeas stay up later and drink more coffee tomorrow #mediachat;FALSE;lorisica;8/9/2013;02:41;FALSE;365663;365664;172300278;"<a href=""http://www.hootsuite.com"" rel=""nofollow"">HootSuite</a>";tburgess57;0;FALSE;NA;NA
159;@craigharoldball Tough shit if you only want a coffee without the politics bulshit @margokingston1;FALSE;craigharoldball;8/9/2013;02:41;FALSE;NA;365664;245770550;"<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>";Zebbyz;0;FALSE;NA;NA
160;RT @FinchelGleeLove: when Lea gave Cory a lava lamp and Cory gave Lea a coffee maker GIVE ME THESE RIOTS BACK I NEED THEM TO SURVIVE;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";sincerely_kathy;10;FALSE;NA;NA
161;gonna go get a large coffee with a shot of espresso so i don't fall asleep on the plan ride to calgary. WAHOO NOT SLEEPING TONIGHT WHAT;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;web;logaaan;0;FALSE;NA;NA
162;I'm driving for the very first time because nobody else will take me to get coffee.;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";emilylanglois_;0;FALSE;NA;NA
163;RT @g4ybacon: I just want it to be winter already bc I hate slutty summer clothes. I miss my scarves and jackets, and coffee and cigarets o?;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";fl00rplan;2;FALSE;NA;NA
164;THE COFFEE THE COFFEE SHIT I GOT THE VOMIT FEELING;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";kahmingxx;0;FALSE;NA;NA
165;"RT @madisonpettis: I don't get why u have to pay for wifi on a plane when you can walk into any Starbucks & get wifi for free. Plane tix co?";FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";dark_davidd;358;FALSE;NA;NA
166;RT @realjamescase: Drinking too much coffee can cause a latte problems.;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";Audelynn;10;FALSE;NA;NA
167;Just drank so much coffee and I'm more tired;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://blackberry.com/twitter"" rel=""nofollow"">Twitter for BlackBerry?</a>";LindseyThomps_;0;FALSE;NA;NA
168;I remember spending a whole day Barnes and Noble Southlake...reading in a corner spot...with coffee. Favorite kind of bliss;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";taylorawbrey;0;FALSE;NA;NA
169;Victoria likes drinking coffee.;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twittbot.net/"" rel=""nofollow"">twittbot.net</a>";qiansong_fx;0;FALSE;NA;NA
170;3-in-1 coffee with 1 after eight chocolate tastes like peppermint mocha!! Haha great experiment for today.;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";jhei_lutana;0;FALSE;NA;NA
171;you would expect hampton inn?s free coffee to be shit but it?s actually so good;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>";not_a_fantasy;0;FALSE;NA;NA
172;made coffee. about to start writing. today is a good day. oh and I'm 80 percent to full recovery!;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Mobile Web (M5)</a>";ayoItsKidRam;0;FALSE;NA;NA
173;RT @ikanatassa: second question: what is the best coffee you've ever had in your life, and why?;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://www.tweetcaster.com"" rel=""nofollow"">TweetCaster for Android</a>";vhianov;2;FALSE;NA;NA
174;@MaddTheMeow @edwinaED it wasn't chocolate !! It looks like chocolate, but it doesn't taste choc. It wasn't even coffee!!!;FALSE;MaddTheMeow;8/9/2013;02:41;FALSE;365664;365664;88904036;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";liyenliaw;0;FALSE;NA;NA
175;Eight O'Clock Coffee Spot The Red Bag Sweepstakes http://t.co/EuIjS6mgIo;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://www.freestufftimes.com/contests"" rel=""nofollow"">Free Stuff Times Contests</a>";fstcontests;0;FALSE;NA;NA
176;Coffee + Reading = Happy me;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";Jonquille318;0;FALSE;NA;NA
177;Watch Turkish Coffee Making Guide on YouTube http://t.co/nz8bsusrzt @rusminbahar;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://www.hootsuite.com"" rel=""nofollow"">HootSuite</a>";klinikkopi;0;FALSE;NA;NA
178;Awake *COFFEE*;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://blackberry.com/twitter"" rel=""nofollow"">Twitter for BlackBerry?</a>";AlShmri_8;0;FALSE;NA;NA
179;Unusual cravings for today! Pan de Manila coffee and pandesal with peanut butter! #snacks #food #coffee http://t.co/DSAVNs9DIe;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";aL_Rabara;0;FALSE;NA;NA
180;"Coffee cake? Y/N? ? Yes please! Are you offering? ;) http://t.co/INiM3FJByy";FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://ask.fm/"" rel=""nofollow"">Ask.fm</a>";Inflatophin;0;FALSE;NA;NA
181;I didn't need anything more than to sit on Dan's floor drinking an iced coffee and shooting the shit tonight @GriggyGringo;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";sophistiCAITed_;1;FALSE;NA;NA
182;RT @Sam_Ryan97: Coffee and tea, and the java and me...a cup a cup a cup a cup a cup, boy!!;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";HyrumGraph;1;FALSE;NA;NA
183;Coffee or music? Both.;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;web;ClarkCovington;0;FALSE;NA;NA
184;@ViknaRoshan ahh...buy me coffee thx !!;FALSE;ViknaRoshan;8/9/2013;02:41;FALSE;365664;365664;583806661;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";chiying94;0;FALSE;NA;NA
185;{ I sit in Starbucks, staring intently out the window. Not excatly sure--;FALSE;alliwinnington;8/9/2013;02:41;FALSE;365663;365664;1605064376;web;TotallyAusten;0;FALSE;NA;NA
186;RT @danielcudmore: Dear coffee shops, Organic coffee doesn't make it good coffee..? #isthis dirt?;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";Autolycus_88;2;FALSE;NA;NA
187;@kungfupussy nice, where can you buy it from? redbubble? @Gridlock_Coffee;FALSE;kungfupussy;8/9/2013;02:41;FALSE;365656;365664;19478601;web;brandnewblues;0;FALSE;NA;NA
188;RT @Luke5SOS: just put chocolate milk in the top of my coffee, I think I just changed history;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;web;AustralianBoys_;11349;FALSE;NA;NA
189;@abbycastro98 it's like a fruit smoothie/snow cone/coffee place (:;FALSE;abbycastro98;8/9/2013;02:41;FALSE;365659;365664;609240199;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";TristonTooSuave;0;FALSE;NA;NA
190;I didnt have #Maxwell coffee this morning with my #countrybreakfast sandwich so I have no idea why Maxwell homered lol #royals;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";Zach_The_Five_O;0;FALSE;NA;NA
191;Twitter - causing my coffee to go cold cup after cup since... Ah hell, the day I fell in love with you guys!!!;FALSE;NA;8/9/2013;02:41;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";Shelleygirl311;0;FALSE;NA;NA
192;@moronninja well I don't have coffee in cartons but I do have it in tiny cans so it's pretty much the same thing. Which is awesome.;FALSE;moronninja;8/9/2013;02:41;FALSE;365663;365664;562481796;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";ItsJustRocko;0;FALSE;NA;NA
193;RT @rachellarrivee: coffee oreo is the most underrated flavor of ice cream;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";charlotteleyden;1;FALSE;NA;NA
194;wow I want coffee;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";harryakano;0;FALSE;NA;NA
195;@wcwp33 @jwhitacre2 yeah!! like coffee creamer;FALSE;wcwp33;8/9/2013;02:40;FALSE;365664;365664;1117456386;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";kimberlybyrum;0;FALSE;NA;NA
196;I always drink coffee at night.. And i always regret it when i cant sleep. Ill never learn;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";marissa_maguire;0;FALSE;NA;NA
197;Meeting your best friend for coffee and not accomplishing much... LOL. #goodfriendship #sosimilar;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";KatieNester;0;FALSE;NA;NA
198;@Woaholiviacoy it doesnt keep you awake like coffee though does it?!;FALSE;Woaholiviacoy;8/9/2013;02:40;FALSE;365664;365664;488623245;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Grant_watsonn;0;FALSE;NA;NA
199;Get me coffee;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";amanduh_aviles;0;FALSE;NA;NA
200;I had a coffee called rocket surgery and it was amazing.;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";AlanaBWaters;0;FALSE;NA;NA
201;Am I the only one who burns my tongue every time I drink coffee?;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";MariamSultan26;0;FALSE;NA;NA
202;Let's get coffee. ? I'm not much of a coffee person.. But make it ice cream and I'm done. http://t.co/j12t9G7vq9;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://ask.fm/"" rel=""nofollow"">Ask.fm</a>";yooowesa;0;FALSE;NA;NA
203;RT @Dance10Paul: @Paris_Zondag im not a coffee drinker! So definitely hot chocolate hands down! :D;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";sarahwiers22;1;FALSE;NA;NA
204;0_0 ?@WOWFactsOfLife: The amount of caffeine found in a cup of coffee can relieve depression by close to 60%.?;FALSE;WOWFactsOfLife;8/9/2013;02:40;FALSE;365641;365664;379961664;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";CaraElbeth;0;FALSE;NA;NA
205;I got this new Carmel mocha coffee cream and it tastes so good right now;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";lucipurrrmeow;0;FALSE;NA;NA
206;This coffee made me sleepy;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";isaROZAY;0;FALSE;NA;NA
207;RT @MrT1M: It's impressive how slow I can drink a cup of coffee when I?m in full-on procrastination mode.;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;web;TheRolo;2;FALSE;NA;NA
208;Like I'm sorry food, but you've been replaced with better things, like coffee and alcohol.;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";pisssyprincess;1;FALSE;NA;NA
209;The scene in Thor with the coffee cup?;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";Emmairl;0;FALSE;NA;NA
210;Right Center is filled with coffee. Maxwells House!! @JustinMaxwell27 #RoyalsSocial;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";CoachChief;0;FALSE;NA;NA
211;"Aleka and I once mixed chocolate & caramel coffee creamer with milk. And it was SO GOOD.";FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";YouEnKay;0;FALSE;NA;NA
212;Maxwell House Coffee Porter #beersofthek #almoststout;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://www.tweetcaster.com"" rel=""nofollow"">TweetCaster for Android</a>";Cptn_Shortbus;0;FALSE;NA;NA
213;@Baseball4Lifee6 I hate McDonalds coffee. How many creams? How many sugars? Just make the fucking coffee. lol;FALSE;Baseball4Lifee6;8/9/2013;02:40;FALSE;365663;365664;605975240;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";PIRFCT1;0;FALSE;NA;NA
214;If anyone wants to buy me a camera lens water bottle/coffee mug thing, I wouldn't mind having one. #JustSaying;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;web;JackieSutton94;0;FALSE;NA;NA
215;RT @wilw: And we have a beer flight winner. ? Drinking an Eugene Coffee Porter by @revbrewchicago at @fischmanliquors ? http://t.co/Vb6AF8?;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";CallieDyess;3;FALSE;NA;NA
216;RT @MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renovation show on HGTV.;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";olyfrosty;42;FALSE;NA;NA
217;RT @UberFacts: There are more than 1,000 chemicals in a single cup of coffee. Of these, only 26 have been tested and half caused cancer in ?;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";NotFakeMike;1600;FALSE;NA;NA
218;Free Sample of a single cup of Gevalia Coffee http://t.co/DKZUWb8jne http://t.co/e7gjmE2B50;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://www.facebook.com/twitter"" rel=""nofollow"">Facebook</a>";freebiecorner1;0;FALSE;NA;NA
219;#SharkafterDark question for the host how long did it take to build your shark coffee table #SharkWeek;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;web;jacobrules23;0;FALSE;NA;NA
220;I think I'll have another cup of coffee.;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://www.tweetdeck.com"" rel=""nofollow"">TweetDeck</a>";ReverentSilence;0;FALSE;NA;NA
221;Remember the Italian Cream Iced Coffee recipe? Well I tweaked it a little and am making @ZokuHQ pops with it tonight! http://t.co/Ea1T0HtNaV;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";mathewsbambina;0;FALSE;NA;NA
222;Senior March tmw morning at 7:25 A.M. in the SENIOR lot. Get up early, make yo coffee/breakfast, cus this will only happen once in your life;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";bryzy_brib;1;FALSE;NA;NA
223;Me and this iced coffee for the night;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";antboy_;0;FALSE;NA;NA
224;Cup of coffee in the morning, bottle of beer in the evening, you frame my day so pleasurably;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";AndyHieb;0;FALSE;NA;NA
225;"Iced coffee, donuts & cookies";FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";HayMelanie;0;FALSE;NA;NA
226;Kala Said Ms Yu Betta Get Her She Jus Threw Coffee On Me 2.5 Secs Later She Was On Da Floor;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";AyeeShaee;0;FALSE;NA;NA
227;Also, dogs aren't smart enough to dip the donut in the coffee and then eat the part that's been dipped. #ladyandthetramp;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";purplefluffy99;0;FALSE;NA;NA
228;RT @CoffeeQuest: A coffee tree affected by 'Roya' . Central America's production is estimated to be down 15% due to this. http://t?;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;web;HIflyer;1;FALSE;NA;NA
229;RT @Eliana_Magallan: @HyrumGraph coffee and tea and the java and me! A cup a cup a cup a cup a cup BOY!;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";HyrumGraph;1;FALSE;NA;NA
230;If anyone ever wants to get into my good graces... froyo is the way to go! Or coffee. I can never have enough coffee;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";AnaisWantsPeace;0;FALSE;NA;NA
231;Nothing more special than a cup of tea mixed with a teaspoon of coffee to start the day..tgif!;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://blackberry.com/twitter"" rel=""nofollow"">Twitter for BlackBerry?</a>";jessicapsh;0;FALSE;NA;NA
232;#LakeGeneva #LakeMichigan #Milwaukee #fireflies #AmericanHighSchoolFootball #burgers #coffee #salsadancing;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";SAchrisINuk;0;FALSE;NA;NA
233;RT @BullardBella: ?@locklear_noah: I could drink some coffee but I don't wanna go make it?;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";locklear_noah;2;FALSE;NA;NA
234;@ElliottcMorgan I been looking for your channel. Rather lazily, might I add. Sipping coffee since I got no scotch.;FALSE;ElliottcMorgan;8/9/2013;02:40;FALSE;365661;365664;178890944;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";MoralesFabian05;0;FALSE;NA;NA
235;Coffee in the morning;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";YoNigga24;0;FALSE;NA;NA
236;IVE ONLY WON SOMETHING ONCE IN MY LIFE AND IT WAS AN EMPTY COFFEE CONTAINER IN 3RD GRADE AND THATS HOW I GOT MY FAVOURITE NUMBER;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";mcdickhole;0;FALSE;NA;NA
237;RT @AyeeShaee: Lmfaoo I Remember Wen Dat Girl Threw Coffee On Kala Like Dat Shit Was Yesturday;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";xoxo_niapooh;1;FALSE;NA;NA
238;@gdvipgirl no thanks I'm having my coffee ://;FALSE;gdvipgirl;8/9/2013;02:40;FALSE;365664;365664;393407742;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";sarona_M_L;0;FALSE;NA;NA
239;RT @UberFacts: There are more than 1,000 chemicals in a single cup of coffee. Of these, only 26 have been tested and half caused cancer in ?;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;web;Pabidran_17;1600;FALSE;NA;NA
240;It is a good night when both of your friends bring you coffee beans.;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://rowiapp.com"" rel=""nofollow"">rowi for Windows Phone</a>";patricia_eddy;0;FALSE;NA;NA
241;@kevsoo @saggis @shaneappleton I can't cope with more coffee!;FALSE;kevsoo;8/9/2013;02:40;FALSE;365663;365664;604293738;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";tousainn;0;FALSE;NA;NA
242;Coffee and tea, and the java and me...a cup a cup a cup a cup a cup, boy!!;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Sam_Ryan97;1;FALSE;NA;NA
243;Oh So Needed... #coffee at 6pm? No sweat for an 11:00 anchor! http://t.co/sIvcDEtYYS;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";ErinMaxson;0;FALSE;NA;NA
244;@BetteMidler Queens???? Lets meet for coffee!!!;FALSE;BetteMidler;8/9/2013;02:40;FALSE;363420;365664;139823781;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";ShelleyCara;0;FALSE;NA;NA
245;arabika aceh gayo. sensasi di lidah terasa beda. RT @ikanatassa: second question: what is the best coffee you've ever had in your life, and;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://www.tweetcaster.com"" rel=""nofollow"">TweetCaster for Android</a>";evieveviwahyuni;0;FALSE;NA;NA
246;RT @MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renovation show on HGTV.;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";nickskeffer22;42;FALSE;NA;NA
247;@delialalaLOVE @ieLiit coffee later? :);FALSE;delialalaLOVE;8/9/2013;02:40;FALSE;NA;365664;361012734;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";iamlouhazell;0;FALSE;NA;NA
248;@GaelbolgSib Anyways darling, it was LOVELY talking to you. We should do coffee sometime, I know the darling place on 6th avenue. #KISSKISS;FALSE;GaelbolgSib;8/9/2013;02:40;FALSE;365662;365664;813985536;"<a href=""http://www.tweetdeck.com"" rel=""nofollow"">TweetDeck</a>";AllyCRW;0;FALSE;NA;NA
249;Coffee and Suicide http://t.co/bcUSHJypkX via @freakonomics;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/tweetbutton"" rel=""nofollow"">Tweet Button</a>";pamellalynn;0;FALSE;NA;NA
250;"Coffee :> #yay #happykid";FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://blackberry.com/twitter"" rel=""nofollow"">Twitter for BlackBerry?</a>";AngeQVDO;0;FALSE;NA;NA
251;I'm gonna be running on like 5 hours of sleep and possibly coffee tomorrow. Sounds like fun hahahaha #hateschool #whyisthe1stdayonafriday?;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";ThomasKellar88;0;FALSE;NA;NA
252;RT @MarketplaceAPM: Which coffee brand has the most caffeine per ounce? http://t.co/zYYROtXYVi via @thrillist;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";ejmanix;5;FALSE;NA;NA
253;@HyrumGraph coffee and tea and the java and me! A cup a cup a cup a cup a cup BOY!;FALSE;HyrumGraph;8/9/2013;02:40;FALSE;365664;365664;324599204;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Eliana_Magallan;1;FALSE;NA;NA
254;Oh, #bestofvines and #coffee guarantee this will make you laugh https://t.co/5BLJhIfpPb;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;web;AMcCoytx;0;FALSE;NA;NA
255;RT @UberFacts: There are more than 1,000 chemicals in a single cup of coffee. Of these, only 26 have been tested and half caused cancer in ?;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;web;Frodo__Swaggins;1600;FALSE;NA;NA
256;Jamaican Blue Mountain Coffee...is it worth the price? Just having some...it's awesome coffee but too expensive;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;web;MacieSparks1;0;FALSE;NA;NA
257;I need coffee right now. You too? Get free SoZo coffee here: http://t.co/x6CO25P8Uk;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://www.hootsuite.com"" rel=""nofollow"">HootSuite</a>";drugstoredivas;0;FALSE;NA;NA
258;The only way coffee could be any better would be if you had to suck it out of a boob. http://t.co/xUKjfDQ7vj;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Mobile Web (M2)</a>";mikewbarns;0;FALSE;NA;NA
259;@walkdaddy05 @drewgc60 @abasc24 @CoachBayerGC @bentley_mcmilli @laceyj25 @btmyers24 @FireGump658 coffee is for closers #maxwellhouse;FALSE;walkdaddy05;8/9/2013;02:40;FALSE;365663;365664;407405087;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";brentcornett;0;FALSE;NA;NA
260;@EvieeAndre @VictoriaLloyd16 well, that sucks, you can hook me up with free coffee and donuts since they're under paying you;FALSE;EvieeAndre;8/9/2013;02:40;FALSE;365663;365664;461191732;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";marcilesm;0;FALSE;NA;NA
261;RT @highanaflawless: @v_diMichele bitch all you like is ice coffee and !!!!!;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";v_diMichele;1;FALSE;NA;NA
262;@JosieBaik coffee???;FALSE;JosieBaik;8/9/2013;02:40;FALSE;365663;365664;569413508;web;BoaPark3;0;FALSE;NA;NA
263;Waiting for water to heat up so that I can make iced coffee. #Thirsty;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";isabellekolik;0;FALSE;NA;NA
264;"The Perfect Man died because He loves me. but every morning the other rises to make me coffee. <3";FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";luludaniels;0;FALSE;NA;NA
265;RT @bombaytweeting: I love you less than coffee, which is more than enough.;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";zsdfghjkhtty_;100;FALSE;NA;NA
266;#also RT @drgoddess: I've never had a cup of coffee. Or more than a sip. I don't like it. #ConfessYourUnpopularOpinion;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://www.tweetcaster.com"" rel=""nofollow"">TweetCaster for Android</a>";rookdagreat;0;FALSE;NA;NA
267;Buy me coffee and love me;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Molli_Lynn;0;FALSE;NA;NA
268;Dear pumpkin coffee, come back to me.;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";colefacee;0;FALSE;NA;NA
269;Coffee makes me wild;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";cpor_lady;0;FALSE;NA;NA
270;Now why did I go do that? My brain's not wired at all. Coffee D': See you @iloveohmiya @nintendomiyaa @kaiijou @YOUtachiDesu @all_else_fail;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://blackberry.com/twitter"" rel=""nofollow"">Twitter for BlackBerry?</a>";shuwashuwishuwa;0;FALSE;NA;NA
271;RT @thakidrubenG: ?@valerie_bby16: NOBODY WANTS TO HAVE COFFEE WITH THE PRINCIPAL . stop?;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";kimberlyluucero;2;FALSE;NA;NA
272;Making coffee. #nightshiftblues;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;web;SammyJane15;0;FALSE;NA;NA
273;RT @MissKristenSte1: ?@TeamJaymes: CAN I DRINK THIS? RKAFFE IS PROBABLY THE BEST COFFEE EVER http://t.co/81RSqWF1nl?;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;web;StewyJonasLover;2;FALSE;NA;NA
274;Drinking coffee for the first time in a while;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";mBishop11_;0;FALSE;NA;NA
275;Wow 12.39 and its still my first coffee... must be the end of the world as we know it!;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>";Nadine_Zrinzo;0;FALSE;NA;NA
276;My new coffee mug for school. This is inspiring for my major... #not #SoFunny #ExerciseScienceMajor? http://t.co/GlGvWxM30z;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";glori_lizabeth;0;FALSE;NA;NA
277;@ching4short tara coffee!!! :) ) ) miss you so much it hurts :|;FALSE;ching4short;8/9/2013;02:40;FALSE;365660;365664;149066742;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";tessadistor;0;FALSE;NA;NA
278;RT @ThatRedNose: Slick trynna turn up this weekend.;FALSE;NA;8/9/2013;02:40;FALSE;NA;365664;NA;"<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>";Coffee_nO_Cream;1;FALSE;NA;NA
279;@ottomanscribe Sure.There is a really great coffee shop at No 1 Martin Place. In the foyer of Westin Say 12:30 Mon? I will DM you my number;FALSE;ottomanscribe;8/9/2013;02:39;FALSE;365662;365664;443573208;web;RobbieSingh2;0;FALSE;NA;NA
280;I want coffee.;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>";pinchejarrod;0;FALSE;NA;NA
281;drinking coffee at 1030 pm. #whatislifeee;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;web;Nique_1503;0;FALSE;NA;NA
282;just good enough. ? drinking coffee;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://www.facebook.com/twitter"" rel=""nofollow"">Facebook</a>";jhapots04;0;FALSE;NA;NA
283;One should never go on Pinterest when one must go to bed. This only leads to trouble... and gallons of coffee the next morning.;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;web;Co_Weaver;0;FALSE;NA;NA
284;-__- lets Forget that lol @AyeeShaee: Lmfaoo I Remember Wen Dat Girl Threw Coffee On Kala Like Dat Shit Was Yesturday;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";TweetMeeRiight;0;FALSE;NA;NA
285;Can't drink hot liquids until my mouth heals, this means no coffee all weekend. #scary;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";KenseyLawless2;0;FALSE;NA;NA
286;I Moved Her Shit She Got Hot And Threw Da Coffee On Kala She Moved The Table On Ray Foot I Pushed Her Ass Down Den Ray Choked Tf Outta Her;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";AyeeShaee;0;FALSE;NA;NA
287;Im about to finish NS... You see me here almost every duty.... You can call me boy ah and ask me coffee?!;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>";FritzLooks;0;FALSE;NA;NA
288;"brunch & #artisanal #coffee at #blackboard ...yay some new interesting places in the #goldcoast now :) ? http://t.co/jOK6LGZH7u";FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";JuliaGools;0;FALSE;NA;NA
289;Breakfast: Coffee with Cinnamon and Wheat Bread with Nutella.;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>";heyitsajhay;0;FALSE;NA;NA
290;Talked with some awesome dudes in a coffee shop in Norfolk, VA. One was an old school DJ who just got off work at... http://t.co/tsTF2fRe6d;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://www.facebook.com/twitter"" rel=""nofollow"">Facebook</a>";BlyreCpanx;0;FALSE;NA;NA
291;Coffee at 9:30 pm? Yeah...;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";ebhafley;0;FALSE;NA;NA
292;The 2 things that my day is salam to my family and my morning coffee;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";BinMunakhas;0;FALSE;NA;NA
293;Drinking sum good as coffee;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Real_Nigga_59;0;FALSE;NA;NA
294;time for a big cup of #coffee, #nescafe #morning;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;web;omaro_3;0;FALSE;NA;NA
295;not weed? ?@YolieTheJew: This skunk just sprayed and it smells like burnt coffee.?;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://itunes.apple.com/us/app/twitter/id409789998?mt=12"" rel=""nofollow"">Twitter for Mac</a>";FRANKGOD_;0;FALSE;NA;NA
296;This is what I'm having when I get home... assuming there is any left! Heated of course with a hot cup of coffee... http://t.co/WSTomWJzb0;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://www.facebook.com/twitter"" rel=""nofollow"">Facebook</a>";Bake_Me1;0;FALSE;NA;NA
297;I'm very organized! LOL Coffee ready to go, cat bowls ready, my bowl for oatmeal ready... #dailyroutine http://t.co/ubpPZlwgWg;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";jillbristow24;0;FALSE;NA;NA
298;Coffee ice cream #MTVHottest One Direction;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";frozaynyoghurt;0;FALSE;NA;NA
299;Coffee shop soundtrack.;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";FelipeGonzz;0;FALSE;NA;NA
300;I could really go for some ice cream with coffee liquor right about now;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";xocamille;0;FALSE;NA;NA
301;are you coffee lovers ichut ssi? ? i'm freakin' coffee addict xD http://t.co/DCiqJ8Zx6w;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://ask.fm/"" rel=""nofollow"">Ask.fm</a>";Annichut;0;FALSE;NA;NA
302;It's kinda cool how I've basically removed all juice and sodas and stuff from my daily beverages. Water and coffee. Dassit.;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>";JerMaineMontiel;0;FALSE;NA;NA
303;My dad is happy Ramadan is over so he can have his morning cup of coffee now.;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";TheJacobAli;0;FALSE;NA;NA
304;oh. I was actually hoping Id get blown off. now I gotta date with coffee ice cream. were going to this really cool place called the bath tub;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";beladancerella;0;FALSE;NA;NA
305;"RT @smbeutler: I don't remember why I was in Denny's, but I was. The waitress called me hon; the eggs and coffee were cold. It was a low ?";FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Coruscifer;4;FALSE;NA;NA
306;@NickThayer oh worth mentioning, went to a place that's roasts their own beans in house. Some of the best coffee I've tasted #heaven #snobs;FALSE;Jennnnnster;8/9/2013;02:39;FALSE;365663;365664;243251306;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Jennnnnster;0;FALSE;NA;NA
307;RT @seedscoffee: Jeff Huey of Seeds Coffee Company is a 2013 Epoch Awards Finalist http://t.co/Sr13peWGXI @ChristianPost;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";abbysalt;1;FALSE;NA;NA
308;I've bought so much Costa Rican coffee it's ridiculous. I hope my friend are ready for regular cafecito :];FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";SpenGen4;0;FALSE;NA;NA
309;@nayasfan29 Pff! Yeah.. Coffee lolxxx;FALSE;nayasfan29;8/9/2013;02:39;FALSE;365593;365664;1541281202;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Lovely_NayaVera;0;FALSE;NA;NA
310;RT @MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renovation show on HGTV.;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";GenoAndo;42;FALSE;NA;NA
311;"Consumed @ColdStone Creamery's Coffee-Lovers Only & won eponymous title. Track sales of Olympic Gold Medalists Only & save @Rio2016 $ ?";FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";maroon5tiger;0;FALSE;NA;NA
312;Way too tired for a Friday...to the point where a coffee, redbull and a Berocca still haven't kicked in #dying;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Amanda_Rob33;0;FALSE;NA;NA
313;RT @K_Wahl_: My summer romance is the coach, netflix, and coffee icecream kbyee;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";kaitlyn_beann;1;FALSE;NA;NA
314;After drinking 2 cups of coffee while studying I feel like I am ready for life! Hopefully I feel this way in the morning. #Coffee;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";StacyBarker;0;FALSE;NA;NA
315;i want a cup of coffee and a window to stare at the rain outside;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Bennett_Wong;0;FALSE;NA;NA
316;This skunk just sprayed and it smells like burnt coffee.;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";YolieTheJew;0;FALSE;NA;NA
317;"I love coffee; I love tea. I love the java jive, and it loves me!";FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";HyrumGraph;0;FALSE;NA;NA
318;RT @MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renovation show on HGTV.;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Amurrain15;42;FALSE;NA;NA
319;...and adjust the quality of your coffee accordingly.;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Rebecca_Irvine;0;FALSE;NA;NA
320;RT @kemalzh: Breakfast with @zachrafsanjani http://t.co/frqI6RbxWB;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://blackberry.com/twitter"" rel=""nofollow"">Twitter for BlackBerry?</a>";ZachRafsanjani;1;FALSE;NA;NA
321;How to Appreciate the Coffee Without the Grounds http://t.co/7a0zmcivEA #art @jeffbullas http://t.co/2Kwiy7QlDO;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;web;ljgrodecki;0;FALSE;NA;NA
322;RT @MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renovation show on HGTV.;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";KennyD11;42;FALSE;NA;NA
323;A coffee tree affected by 'Roya' . Central America's production is estimated to be down 15% due to this. http://t.co/nAjOE3vmA0;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";CoffeeQuest;1;FALSE;NA;NA
324;Wake up and smell the coffee;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";DerrickAOj;0;FALSE;NA;NA
325;RT @KekeAndMoreKeke: Y'all females be acting so dumb for a nigga you better wake up and smell the coffee;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";LowkeyJaylaaaaa;5;FALSE;NA;NA
326;RT @TheAtlantic Why 17th c. men drank coffee http://t.co/T4nHeAkZn2 // reduced industrious men into effeminate, babbling, French layabouts;FALSE;TheAtlantic;8/9/2013;02:39;FALSE;365647;365664;35773039;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";RyanHoselton;0;FALSE;NA;NA
327;Shouldn't have got coffee this late because now I'm extra awake and I keep getting distracted from packing;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";hanner_time97;0;FALSE;NA;NA
328;Someone get me a coffee Coolatta;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Alessandria_xo;0;FALSE;NA;NA
329;forever drinking coffee in the morn;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";heybev_;0;FALSE;NA;NA
330;"Ashley had coffee before & now she's wide awake, I'm going to fucking kill her";FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";TriciaLattanzio;0;FALSE;NA;NA
331;Have You Surprised Yourself This Week in Being a Tea Drinking Beauty! I have made it to Day 5!! DIY Coffee Free! http://t.co/7rAlvJ5tpl;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://twitpic.com"" rel=""nofollow"">Twitpic</a>";SPAItGirl;0;FALSE;NA;NA
332;Somethin about cigars coffee and 80 degree summer nights;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";Justin_Odman;0;FALSE;NA;NA
333;"@SillyJillyStein LOL, good to have goals! I'm a full-time coffee junkie. ;D";FALSE;SillyJillyStein;8/9/2013;02:39;FALSE;365662;365664;429345992;web;cariquinn;0;FALSE;NA;NA
334;Ooooh snap!! I had coffee. Gosh #HungerStrike;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://www.snaptwit.com"" rel=""nofollow"">Snaptwit</a>";Reetabil;0;FALSE;NA;NA
335;cold weather + Adele + coffee = Rest Day :);FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;web;itsJor_EL;0;FALSE;NA;NA
336;@KUHRiiNUH Be reunited with your iced coffee in 4 months! http://t.co/XfgQZisEgE;FALSE;KUHRiiNUH;8/9/2013;02:39;FALSE;365663;365664;22425060;web;DannyWolfe1;0;FALSE;NA;NA
337;Don't listen to anyone who suggests skipping coffee to save money: http://t.co/3OyRzG59ec;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;web;SpencerCostanzo;0;FALSE;NA;NA
338;I Wanna Dunkin Iced Coffee Right Now. I Think @krizzle_3 Should Bring Me One;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";jennaa_leaaa;0;FALSE;NA;NA
339;@Woaholiviacoy same i always make it to like 7 and fall asleep but this time im gonna have 6 cups of coffee;FALSE;Woaholiviacoy;8/9/2013;02:39;FALSE;365663;365664;488623245;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Grant_watsonn;0;FALSE;NA;NA
340;RT @kexpplaylist: Cigarettesand Coffee Blues by Marty Robbins from the album The Essential;FALSE;NA;8/9/2013;02:39;FALSE;NA;365664;NA;"<a href=""https://damianfrancois.tumblr.com"" rel=""nofollow"">CUMULATIVE COOL</a>";ratherlovelyrec;1;FALSE;NA;NA
341;@Minnici_mermaid I like coffeee and I like rum... But you know there is coffee flavored tequila it's fantastic;FALSE;Minnici_mermaid;8/9/2013;02:39;FALSE;365663;365663;448111170;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";makjenkiiiies;0;FALSE;NA;NA
342;@AHDamani @raeesiesmama Ready for a coffee to start your morning? Eid Mubarak my dear cousins!;FALSE;RehanaKQ;8/9/2013;02:39;FALSE;362671;365663;28243981;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";RehanaKQ;0;FALSE;NA;NA
343;RT @keemhimki: @daeslut have coffee with me babe http://t.co/iHRuBdXDXg;FALSE;NA;8/9/2013;02:39;FALSE;NA;365663;NA;"<a href=""http://www.tweetdeck.com"" rel=""nofollow"">TweetDeck</a>";daeslut;1;FALSE;NA;NA
344;Two of my favorite things, coffee and cats #meow #wakeup http://t.co/NYvkyzmEMJ;FALSE;NA;8/9/2013;02:39;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";MiniLemonnn;0;FALSE;NA;NA
345;I NEED to be here at Galleria Umberto, Naples. Sipping coffee maybe a pastry, listening to Caruso http://t.co/lYlQnZM9MZ #iPad #Sony #Italy;FALSE;NA;8/9/2013;02:39;FALSE;NA;365663;NA;web;LincolnsBoombox;0;FALSE;NA;NA
346;RT @UberFacts: There are more than 1,000 chemicals in a single cup of coffee. Of these, only 26 have been tested and half caused cancer in ?;FALSE;NA;8/9/2013;02:39;FALSE;NA;365663;NA;"<a href=""http://www.twitter.com"" rel=""nofollow"">Twitter for Windows Phone</a>";xXCRABSTICKXx;1600;FALSE;NA;NA
347;"#yestoGod is trending. Let's have a great big YES to God this week! <3 Thank You, Lord, for everything you've done :D";FALSE;NA;8/9/2013;02:39;FALSE;NA;365663;NA;web;Death_by_coffee;0;FALSE;NA;NA
348;I'm going to have to ask you to leave excuse you I haven't even finished my coffee;FALSE;NA;8/9/2013;02:39;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";napquest;0;FALSE;NA;NA
349;RT @UberFacts: There are more than 1,000 chemicals in a single cup of coffee. Of these, only 26 have been tested and half caused cancer in ?;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;web;beutifuulll1;1600;FALSE;NA;NA
350;RT @MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renovation show on HGTV.;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";PunaGold;42;FALSE;NA;NA
351;"Coffee & TV by blur ? https://t.co/2tyfrv34Zb";FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""https://path.com/"" rel=""nofollow"">Path</a>";andizuper;0;FALSE;NA;NA
352;RT @heidi420x: What? I couldn't hear you over the fact that I haven't had any coffee today. Also, sorry for biting you..that was an inappr?;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";Jdydrcy;80;FALSE;NA;NA
353;@JoshFrye84 you want some ball coffee;FALSE;JoshFrye84;8/9/2013;02:38;FALSE;365663;365663;379944710;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";TrippyJared;0;FALSE;NA;NA
354;Yoii RT @Jelitameyy: Morning coffee;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://blackberry.com/twitter"" rel=""nofollow"">Twitter for BlackBerry?</a>";jeffDTRY;0;FALSE;NA;NA
355;@Meilinxo of course la u only slept few hours.. later get some coffee lo..;FALSE;Meilinxo;8/9/2013;02:38;FALSE;365663;365663;14811099;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";claremariesia;0;FALSE;NA;NA
356;?@locklear_noah: I could drink some coffee but I don't wanna go make it?;FALSE;locklear_noah;8/9/2013;02:38;FALSE;365662;365663;958676077;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";BullardBella;2;FALSE;NA;NA
357;LOL ?@DrTMG: You're killing me w/ this no coffee n no beer. Don't say you don't like chocolate next. I'll have 2 delete my twitter account?;FALSE;DrTMG;8/9/2013;02:38;FALSE;365663;365663;80060184;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";drgoddess;0;FALSE;NA;NA
358;@_Camilo30 aww okay we will definitely pray for that!! But you have to come to my coffee on Saturday right?:, (;FALSE;_Camilo30;8/9/2013;02:38;FALSE;365663;365663;1582062024;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";_emilypena;0;FALSE;NA;NA
359;@lorenrenee9 lol I'm not a juice or pop drinker tbh water milk and coffee that's about it;FALSE;lorenrenee9;8/9/2013;02:38;FALSE;365663;365663;446431115;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";abcoajacfak;0;FALSE;NA;NA
360;Put Anthony to bed with a back rub, sittin with Brenda and Lyle drinkin coffee and watching the news #secondfamily;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";alyciaisacutie;0;FALSE;NA;NA
361;@AdventuresinCT @DeadlyGrounds Yep, No bees=No coffee, in my case espresso!;FALSE;AdventuresinCT;8/9/2013;02:38;FALSE;365660;365663;1559110560;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";RedBeeMarina;0;FALSE;NA;NA
362;@daeslut have coffee with me babe http://t.co/iHRuBdXDXg;FALSE;daeslut;8/9/2013;02:38;FALSE;365657;365663;154038922;"<a href=""http://www.tweetdeck.com"" rel=""nofollow"">TweetDeck</a>";keemhimki;1;FALSE;NA;NA
363;@kirsteenephelan I've overdosed today and have the jittery feeling #toomuchofagoodthing #coffee;FALSE;kirsteenephelan;8/9/2013;02:38;FALSE;365663;365663;518159071;web;Elle_Roberts_;0;FALSE;NA;NA
364;Okay I always get a venti coffee from Starbucks and I always forget to not get them at night cuz I get really hyper;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";martin_corbin;0;FALSE;NA;NA
365;Do You Want A Coffee? CKs Vodka level. Sure :-);FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";kenmc33;0;FALSE;NA;NA
366;Vintage 1980 ZIGGY coffee mug TGIF Thank by WishesAndPrayers http://t.co/X1Bakm3vq4 via @Etsy;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitter.com/tweetbutton"" rel=""nofollow"">Tweet Button</a>";Chinalily10;0;FALSE;NA;NA
367;Sig doesn't like cream in his coffee? Me either! Xoxo;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";AlexisOnTheSea;0;FALSE;NA;NA
368;2 cups of coffee to start my day in this Semarang City.. :) #positiveenergy #semangatpagi;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";Na_th_lia;0;FALSE;NA;NA
369;I can go ahead and tell that tomorrow is an iced coffee kinda of morning and I've not even been asleep!;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";jessdada1031;0;FALSE;NA;NA
370;Just need to vent!: ...hours. Last night, hubby came home from work at about 10:30, he is head chef at a local... http://t.co/BAwF2CwBCp;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitterfeed.com"" rel=""nofollow"">twitterfeed</a>";Sites4Marketing;0;FALSE;NA;NA
371;RT @slaredo21: I wish we had Starbucks here... Cause coffee dates in the morning sound perff!;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";BiebersNovia;2;FALSE;NA;NA
372;@JustBeer_NoBull @Gridlock_Coffee im right on that. Tell you in a couple days. Tonight = show!;FALSE;JustBeer_NoBull;8/9/2013;02:38;FALSE;365660;365663;429647869;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";kungfupussy;0;FALSE;NA;NA
373;@Coffee_nO_Cream at cornerstone;FALSE;Coffee_nO_Cream;8/9/2013;02:38;FALSE;365663;365663;235865699;"<a href=""http://www.handmark.com"" rel=""nofollow"">TweetCaster for iOS</a>";ymesc_klb;0;FALSE;NA;NA
374;I go have to drink a coffee to stay up ih to watch that game;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://blackberry.com/twitter"" rel=""nofollow"">Twitter for BlackBerry?</a>";swagg1993;0;FALSE;NA;NA
375;RT @WOWFactsOfLife: The amount of caffeine found in a cup of coffee can relieve depression by close to 60%.;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;web;raval_tejas;98;FALSE;NA;NA
376;@SydneyNichol14 the blueberry and pomegranate smoothies are my favorites. And iced coffee. I have a problem.;FALSE;SydneyNichol14;8/9/2013;02:38;FALSE;365663;365663;455388154;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";eljessbo;0;FALSE;NA;NA
377;RT @pickupIines: Are you a shin? Cause I'd bang you on my coffee table.;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";KaylaJonesx3;3421;FALSE;NA;NA
378;#antique #mirror coffee table abccarpet http://t.co/GXFGOoP2Um;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";tamara_eaton;0;FALSE;NA;NA
379;RT @bombaytweeting: I love you less than coffee, which is more than enough.;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";SmartOholic;100;FALSE;NA;NA
380;RT @UberFacts: There are more than 1,000 chemicals in a single cup of coffee. Of these, only 26 have been tested and half caused cancer in ?;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";Allie7236;1600;FALSE;NA;NA
381;Starbucks coffee;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Simmieee_;0;FALSE;NA;NA
382;RT @Luke5SOS: just put chocolate milk in the top of my coffee, I think I just changed history;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://blackberry.com/twitter"" rel=""nofollow"">Twitter for BlackBerry?</a>";Lukeismyweird;11349;FALSE;NA;NA
383;RT @porterc09: I literally get excited about waking up and drinking my coffee in the morning.;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";arasfarris;6;FALSE;NA;NA
384;He works at Starbucks yay free coffee for me yay;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";sassyqueen_;0;FALSE;NA;NA
385;I'm craving coffee wtf D:;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";nataliescute;0;FALSE;NA;NA
386;RT @UberFacts: There are more than 1,000 chemicals in a single cup of coffee. Of these, only 26 have been tested and half caused cancer in ?;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";KallieGrote15;1600;FALSE;NA;NA
387;@joannnakatarina should I quit coffee then? I've just have up drinking and smoking again so I think I can make it :);FALSE;JoannnaKatarina;8/9/2013;02:38;FALSE;365663;365663;552379945;"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Mobile Web (M2)</a>";JoannnaKatarina;0;FALSE;NA;NA
388;@CCuevas10 ....gave up pop...I get one good cup of coffee a day and I HAVE to have it!!! Sometines I sneak one in at night...lol;FALSE;CCuevas10;8/9/2013;02:38;FALSE;365662;365663;543048688;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";jkreager67;0;FALSE;NA;NA
389;RT @xThat1Halfrican: @AmberrrMaee I?ll be there, have my coffee ready;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";AmberrrMaee;1;FALSE;NA;NA
390;RT @gabevas: HOW DO PEOPLE DRINK ICED COFFEE ONCE THEIR ICE HAS MELTED;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";brndnwooo;2;FALSE;NA;NA
391;RT @CleatingChase: My favorite part about fall: Hoodies Leggings Sweatpants Cold nights Football games Uggs Pumpkin coffee;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";courtneyq16;26;FALSE;NA;NA
392;Coffee cup in hand, gun in holster http://t.co/rmoBUQrcnZ #gunfail @nra;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitterfeed.com"" rel=""nofollow"">twitterfeed</a>";TLW3;1;FALSE;NA;NA
393;I love how he is just chillin reading the comics and drinking coffee;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";daniellep128;0;FALSE;NA;NA
394;@TrippyJared make me some coffee then;FALSE;TrippyJared;8/9/2013;02:38;FALSE;365651;365663;628126970;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";JoshFrye84;0;FALSE;NA;NA
395;coffee will be my new best friend tomorrow;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";oliviaadrake;0;FALSE;NA;NA
396;I miss bugging you while you're sleeping and stealing you're coffee. Come home!;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";clara_lacroix;0;FALSE;NA;NA
397;I chugged an caramel ice coffee before I drove so I wouldn't feel sleepy..not a good idea. No no no-sleep.;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;web;RaymaMateyo;0;FALSE;NA;NA
398;Lmfaoo I Remember Wen Dat Girl Threw Coffee On Kala Like Dat Shit Was Yesturday;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";AyeeShaee;1;FALSE;NA;NA
399;I like to make my room smell like vanilla and coffee;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Mobile Web (M2)</a>";G3rardW4y;0;FALSE;NA;NA
400;RT @vlu: Just having coffee and cake for @jimbyerstravel who is moving on after 32 years at the Star. One of the best guys in the business.;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>";spencerwynn;2;FALSE;NA;NA
401;@kat_monteiro @cocobear20 I need a coffee date ASAP;FALSE;kat_monteiro;8/9/2013;02:38;FALSE;365663;365663;625860098;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";adalpe_;0;FALSE;NA;NA
402;RT @AuroraTynan: Coffee date with the girls :) @SamanthaMaione and @cassieverslype;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";cassieverslype;2;FALSE;NA;NA
403;RT @MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renovation show on HGTV.;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";ABurns85;42;FALSE;NA;NA
404;@coreybking We are kin in our rejection of the coffee bean and its cohorts... #ConfessYourUnpopularOpinion;FALSE;coreybking;8/9/2013;02:38;FALSE;365663;365663;281765208;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";drgoddess;0;FALSE;NA;NA
405;RT @wtvrkaren: I'm going to consume unholy amounts of coffee hopefully I die;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";trulykawaii;2;FALSE;NA;NA
406;done after sipping a cup of coffee.. Poly Rhythms! http://t.co/5dN2HGlQbw;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";Jules_Fred_33;0;FALSE;NA;NA
407;@connnnie927 @mynameisAirport just gunna jump in the convoy, but COFFEE ROCKS;FALSE;connnnie927;8/9/2013;02:38;FALSE;NA;365663;1455909560;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";maraashley628;0;FALSE;NA;NA
408;Correction. She has a crush on her boss at the coffee shop who is also a college student and more mature. #90sGirlForever!!;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://www.tweetcaster.com"" rel=""nofollow"">TweetCaster for Android</a>";KBellFL;0;FALSE;NA;NA
409;@ThisIsViren I have two kitkat chunky's and one coffee crisp. Uhn.;FALSE;ThisIsViren;8/9/2013;02:38;FALSE;365662;365663;1114561514;web;sharmelbhiro;0;FALSE;NA;NA
410;Caffeine is my bestfriend. Today was the longest day of life without coffee.;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";xLaiyax;0;FALSE;NA;NA
411;Casually having a cup of coffee with my brother's friend. At his house. #dontask #mylife;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";amylang90;0;FALSE;NA;NA
412;I wish we had Starbucks here... Cause coffee dates in the morning sound perff!;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";slaredo21;2;FALSE;NA;NA
413;Could go for some coffee rn;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>";sammysaurouss;0;FALSE;NA;NA
414;I shall call her Coffee Brown!!!! sweeeet!!! SkeletonKey Bae http://t.co/CwmMtpAtUO;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://www.facebook.com/twitter"" rel=""nofollow"">Facebook</a>";tazmarie99;0;FALSE;NA;NA
415;"Ryan representing #hausdessert!! Go Ryan!! ^_^ #latteart #iotacoffee #TNT @ IOTA Coffee & Bakery http://t.co/xyZVnLvT8v";FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";NuttyNomads;0;FALSE;NA;NA
416;RT @UberFacts: There are more than 1,000 chemicals in a single cup of coffee. Of these, only 26 have been tested and half caused cancer in ?;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";LunchboxRideout;1600;FALSE;NA;NA
417;@abbslovesfed yeah I don't wanna see you without coffee;FALSE;abbslovesfed;8/9/2013;02:38;FALSE;365663;365663;476442726;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";mary_gracex;0;FALSE;NA;NA
418;Early morning shift tomorrow. As if I needed any more reason to drink a lot of coffee;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";barnes_jeremiah;0;FALSE;NA;NA
419;I want coffee;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";HallieSerianni;0;FALSE;NA;NA
420;Do you prefer tea, coffee or cocoa? ? Tea http://t.co/bLiQDNYwBK;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://ask.fm/"" rel=""nofollow"">Ask.fm</a>";SameOldCristian;0;FALSE;NA;NA
421;RT @xGARAMBONERx: come check out saint frank coffee https://t.co/BfQ5yAaB1Z;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;web;Jeffador;1;FALSE;NA;NA
422;Somebody in my Fucking household fucked round with ma coffee dont they now how ________ can get without it;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://blackberry.com/twitter"" rel=""nofollow"">Twitter for BlackBerry?</a>";__OneTouch__;0;FALSE;NA;NA
423;RT @UberFacts: There are more than 1,000 chemicals in a single cup of coffee. Of these, only 26 have been tested and half caused cancer in ?;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";KPruitt3876;1600;FALSE;NA;NA
424;So I really didn't want to get hot coffee spilt on me today or get grounded but hey I got 2 for 2!!!! #fml;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Mobile Web (M5)</a>";BriannaHawken;0;FALSE;NA;NA
425;Westside Ukes performing tonight! : http://t.co/LRsXVoExoG;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://foursquare.com"" rel=""nofollow"">foursquare</a>";warrenbowman;0;FALSE;NA;NA
426;Phiona's been drinking coffee.;FALSE;NA;8/9/2013;02:38;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";Cabronaaa69;0;FALSE;NA;NA
427;RT @kierstin_prater: Coffee is just hitting the spot tonight;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Lorimaried;1;FALSE;NA;NA
428;I just want it to be winter already bc I hate slutty summer clothes. I miss my scarves and jackets, and coffee and cigarets out on my porch.;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";g4ybacon;2;FALSE;NA;NA
429;I drink coffee on the reg. I'm so sophisticated;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";mariahrodr;0;FALSE;NA;NA
430;What I would do for a coffee shop to be located in the IACC right now... Probably nothing too exciting but I'm desperate.;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";TessMonet;0;FALSE;NA;NA
431;@MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renovation show on HGTV. Lmao;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";bshades07;0;FALSE;NA;NA
432;I actually don't drink coffee so I would do just fine without it during a zombie apocalypse.;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://www.google.com/"" rel=""nofollow"">Google</a>";Antthetech;0;FALSE;NA;NA
433;Craving for a medium iced coffee caramel macchiato from Starbucks right now;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";satisfymeify;0;FALSE;NA;NA
434;Caribou coffee or Starbucks? ? caribou!! http://t.co/Y0QH4lJQw8;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://ask.fm/"" rel=""nofollow"">Ask.fm</a>";trippydrugs;0;FALSE;NA;NA
435;"Cigarettes & coffee sound perfect right about now";FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Lindseyrenae33;0;FALSE;NA;NA
436;Why am I making coffee this late;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";taylordaniels19;0;FALSE;NA;NA
437;"RT @jazmineluvsu: Patience is my favorite...then Chill Pad Deluxe...after that its between Take Control and Tea & Coffee";FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";EliseAnn9;1;FALSE;NA;NA
438;I need a new coffee machine.;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://www.apple.com/"" rel=""nofollow"">OS X</a>";vipsd87;0;FALSE;NA;NA
439;Sign of a coffee addict on the go. #starbuckscard #coffeelover http://t.co/wdYce6udq6;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";karlomagpayo;0;FALSE;NA;NA
440;@AlyssaFroemel even with coffee a massage and flowers?!;FALSE;AlyssaFroemel;8/9/2013;02:37;FALSE;365662;365663;498449428;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Deejay_Sargentt;0;FALSE;NA;NA
441;Mexican family of parents and 3 kids and every single one is playing on a DS in this coffee shop.;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";_homandberg;0;FALSE;NA;NA
442;@ymesc_klb prolly tomorrow;FALSE;ymesc_klb;8/9/2013;02:37;FALSE;365663;365663;369985804;"<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>";Coffee_nO_Cream;0;FALSE;NA;NA
443;I want a coffee coffee!;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Mobile Web (M2)</a>";Annelg_Menj;0;FALSE;NA;NA
444;"They tried to make me go to rehab, I said, No, no, no ------> Coffee addict over here.";FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;web;skeebs02;0;FALSE;NA;NA
445;@MariaaKarmela well im bringing coffee and other people are bringing snacks if that persuades you.;FALSE;MariaaKarmela;8/9/2013;02:37;FALSE;365663;365663;356439235;web;DestroyNaf;0;FALSE;NA;NA
446;Eating baklava and cupavce and drinking coffee with the family. What more can I ask for?!;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";Melz_100;0;FALSE;NA;NA
447;sometimes I just crave coffee like I can taste it in my mouth for like a second...maybe that's just me, remembering what it taste like lmfao;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;web;itsCaRLos13;0;FALSE;NA;NA
448;Wired offa that coffee bean haha;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";bitchimtheb0ss;0;FALSE;NA;NA
449;i want coffee if i had a car that is all my car would be used for;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;web;kayleesmith95;0;FALSE;NA;NA
450;I quit coffee.;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;web;nikki_haggard;0;FALSE;NA;NA
451;I'm on the drug, i'm on the drug, i'm on the drug that helps you get shit done. #coffee #outofgreentea;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";kirsteenephelan;0;FALSE;NA;NA
452;Coffee ice cream for din-din. #ukno;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>";schaeferllana;0;FALSE;NA;NA
453;emersom sheik jorge henrique-coffee with milk!!! Com?dia o Edenilson, Rs...!!! http://t.co/qoS0Wai6AY;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>";PhilippeMundim;0;FALSE;NA;NA
454;@sherylwillwrite @DeniseTesta yeah yeah known to police type. Hangs out at markets, drinking coffee, waiting for her next easy mark;FALSE;sherylwillwrite;8/9/2013;02:37;FALSE;365662;365663;177416339;"<a href=""http://www.twitter.com"" rel=""nofollow"">Twitter for Windows Phone</a>";calliope4112;0;FALSE;NA;NA
455;@MaryamAllawati go make yourself a cup of coffee w bs XD;FALSE;MaryamAllawati;8/9/2013;02:37;FALSE;365663;365663;526502620;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Juman97;0;FALSE;NA;NA
456;I could go for a cup of coffee.;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";EmmaSeiber;0;FALSE;NA;NA
457;After having a cold for a week, the only thing I can sing is One More Cup of Coffee. If this keeps up, I am changing my name to Nat Dylan.;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";natalieaclifton;0;FALSE;NA;NA
458;it's a beautiful thing! coffeeboy25 #coffeepod #provo #utah #coffee #tea #chai #steamers #freshjuice? http://t.co/XmeMBIoXvg;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";CoffeePod;0;FALSE;NA;NA
459;@Paris_Zondag im not a coffee drinker! So definitely hot chocolate hands down! :D;FALSE;Paris_Zondag;8/9/2013;02:37;FALSE;365617;365663;213510197;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";Dance10Paul;1;FALSE;NA;NA
460;All I want rn is Coffee Bean, but good things can't happen to good people;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Briawwnana;0;FALSE;NA;NA
461;There are more than 1,000 chemicals in a single cup of coffee. Of these, only 26 have been tested and half caused cancer in rats.;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Mobile Web (M2)</a>";JoannnaKatarina;0;FALSE;NA;NA
462;Dr. Leighton Taylor would be awesome to have coffee with and talk about megamouth! #sharkweek #aliensharks;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";emilyknox;0;FALSE;NA;NA
463;#tbt I miss Israel. And it's iced coffee. #israel http://t.co/CLio5zL9QN;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";KUHRiiNUH;0;FALSE;NA;NA
464;@MumbaiAnonymous not everyone....poor ones like me having coffee before starting the day at work : (;FALSE;MumbaiAnonymous;8/9/2013;02:37;FALSE;365661;365663;1335714450;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";Senorita000;0;FALSE;NA;NA
465;Coffee is the best thing to ever happen;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";rosiescala;0;FALSE;NA;NA
466;drinking coffee;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://www.facebook.com/twitter"" rel=""nofollow"">Facebook</a>";ALAP_MAHAR;0;FALSE;NA;NA
467;@Felicialuvsxc hahaha!! Talking about coffee! Lol;FALSE;Felicialuvsxc;8/9/2013;02:37;FALSE;365663;365663;331590515;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";InvisibleM3;0;FALSE;NA;NA
468;"I want to crawl in a hole and never order anything online again. Coffee table, kitchen table, & kindle all broken/missing parts in 1 wk.";FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>";stevebarnhart;0;FALSE;NA;NA
469;RT @MariaLiv07: Black coffee is key;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";fulgcity;1;FALSE;NA;NA
470;RT @MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renovation show on HGTV.;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";CoreyColbo;42;FALSE;NA;NA
471;RT @Luke5SOS: just put chocolate milk in the top of my coffee, I think I just changed history;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Luv_1DInfection;11349;FALSE;NA;NA
472;@AmberrrMaee I?ll be there, have my coffee ready;FALSE;AmberrrMaee;8/9/2013;02:37;FALSE;365663;365663;280625119;"<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>";xThat1Halfrican;1;FALSE;NA;NA
473;RT @UberFacts: There are more than 1,000 chemicals in a single cup of coffee. Of these, only 26 have been tested and half caused cancer in ?;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";chadwil57397504;1600;FALSE;NA;NA
474;RT @EXOFANBASE_: #imagine you make a coffee in the morning,suddenly chanyeol came and hug u in behind, put his chin in ur shoulder and said?;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://www.tweetcaster.com"" rel=""nofollow"">TweetCaster for Android</a>";sasgiarhml;15;FALSE;NA;NA
475;I drink 3/4 of my coffee and leave the rest so I can take a sip every time a staff member looks my way;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";napquest;0;FALSE;NA;NA
476;Photo: Midnight feast yo with the dad :D #icecream #coffee #chocolate #dessert #food #love #father #dad... http://t.co/6GtNYJwqVx;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://www.tumblr.com/"" rel=""nofollow"">Tumblr</a>";subranu;0;FALSE;NA;NA
477;RT @UberFacts: There are more than 1,000 chemicals in a single cup of coffee. Of these, only 26 have been tested and half caused cancer in ?;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";NathanpPeck;1600;FALSE;NA;NA
478;Starbucks at least twice a day? Umm... YES PLEASE! Thank you rest of the world for having the best Coffee shop ever! @Starbucks;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";SofiFlorez143;0;FALSE;NA;NA
479;@sutterink @KimFCoates my coffee mug can kick your coffee mug's ass http://t.co/SP3qINkjzU;FALSE;sutterink;8/9/2013;02:37;FALSE;NA;365663;21741551;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";bassofd_e_o;0;FALSE;NA;NA
480;Cheer up :) ? totally lied to you.. I made myself an ice coffee.. it's good im happy... http://t.co/qYP11zmfOA;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://ask.fm/"" rel=""nofollow"">Ask.fm</a>";_Rae15;0;FALSE;NA;NA
481;Midnight feast yo with the dad :D #icecream #coffee #chocolate #dessert #food #love #father #dad? http://t.co/IodvjaG9MO;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";subranu;0;FALSE;NA;NA
482;@drgoddess You're killing me with this no coffee n no beer. Don't say you don't like chocolate next. I'll have 2 delete my twitter account;FALSE;drgoddess;8/9/2013;02:37;FALSE;365662;365663;19468168;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";DrTMG;0;FALSE;NA;NA
483;I have Coffee Tree on my island! Now my island is even more awesome! http://t.co/P7HlYnRzQu #android, #androidgames, #gameinsight;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://bit.ly/tribez_itw"" rel=""nofollow"">The Tribez for Android</a>";janetumanduk;0;FALSE;NA;NA
484;Coffee and laying on the roof to watch airplanes taking off (:;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";killayellowball;0;FALSE;NA;NA
485;but i hate coffee;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";vapourharry;0;FALSE;NA;NA
486;RT @Choose_A_Side: Here are some things I bet you didn't know about coffee.. http://t.co/eEgBfAN3d8;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";BaIIplayer;5;FALSE;NA;NA
487;coffee and bagel for brekky;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;web;jozebolivar;0;FALSE;NA;NA
488;work n coffee n coffee n work http://t.co/tiHVUVDCwJ;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";alexzenzola;0;FALSE;NA;NA
489;Fck it. I'm gonna drink coffee.;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";MartialLawcasia;0;FALSE;NA;NA
490;EID = COFFEEOLOGY.... ESPRESSO YOURSELF. #coffee;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Mobile Web (M2)</a>";Sadafzahra5;0;FALSE;NA;NA
491;@ZeleDMaleGisele haven't been drinking coffee much. But I drink green tea daily.;FALSE;ZeleDMaleGisele;8/9/2013;02:37;FALSE;365663;365663;126985427;"<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>";theebanthony;0;FALSE;NA;NA
492;RT @LightningBRY: @imaleetuh The innocent man, Queen and i, coffee house. :);FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";imaleetuh;1;FALSE;NA;NA
493;Crochet Rapunzel Coffee Cup Cozy by TheEnchantedLadybug on Etsy, $16.95 http://t.co/EERfYAUHK0;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://pinterest.com"" rel=""nofollow"">Pinterest</a>";Sewstitchquilt2;0;FALSE;NA;NA
494;Watching my mom teach my dad how to make coffee... #hilarious the problems he is gonna have while she is away.. #ohboy;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";amandamaartin;0;FALSE;NA;NA
495;RT @srconrad64: Doesn't get better than this! @STLBiz #MIBW honors super @triciazf @Kaldis_Coffee team with @StJoeAngels http://t.co/fdU8VK?;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";stlbizmhibbard;3;FALSE;NA;NA
496;I feel like I'm on drugs right now, seriously that coffee had something other then caffeine;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";ayeeits_bre;0;FALSE;NA;NA
497;The amount of sugar and cream in my coffee today is too damn high .;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";Kelloii_;0;FALSE;NA;NA
498;RT @WOWFactsOfLife: The amount of caffeine found in a cup of coffee can relieve depression by close to 60%.;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://ubersocial.com"" rel=""nofollow"">UberSocial for BlackBerry</a>";RanMilanisti_SR;0;FALSE;NA;NA
499;I want you sweet and hot.. HAHAHA. Awkward. #coffeeperson #coffeholic #coffee #breakfast #morning? http://t.co/o9raYpvY7M;FALSE;NA;8/9/2013;02:37;FALSE;NA;365663;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";cheruBOMB;0;FALSE;NA;NA
500;@Coffee_nO_Cream wen the nxt time yu goin;FALSE;Coffee_nO_Cream;8/9/2013;02:36;FALSE;365662;365663;235865699;"<a href=""http://www.handmark.com"" rel=""nofollow"">TweetCaster for iOS</a>";ymesc_klb;0;FALSE;NA;NA
501;RT @Minnici_mermaid: I have a weird craving for rum and coffee.;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";makjenkiiiies;1;FALSE;NA;NA
502;@LensInkMouse Yay! :D Also, read Mr Hughes's bio thing and see if you can spot the funny XD;FALSE;LensInkMouse;8/9/2013;02:36;FALSE;365576;365663;1595691014;web;Death_by_coffee;0;FALSE;NA;NA
503;Yet again I substituted coffee for water, and yet again, I'm extremely dehydrated. Will I ever learn? #caffeineaddict;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://twitter.com/devices"" rel=""nofollow"">txt</a>";MareeBDwire;0;FALSE;NA;NA
504;If I put vodka in my coffee am I weird?;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";DrnkTanPrincess;0;FALSE;NA;NA
505;@Minnici_mermaid You have just inspired me. I'm going to take my white girl iced coffee addiction and make it even better. I love you;FALSE;Minnici_mermaid;8/9/2013;02:36;FALSE;365662;365663;448111170;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";makjenkiiiies;0;FALSE;NA;NA
506;@BenJerrysTruck OH MY! Blueback Square! Bring this bish some of that Coffee Caramel Buzz, yummaaaay #icecreamflow #weha;FALSE;BenJerrysTruck;8/9/2013;02:36;FALSE;365498;365663;143558957;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";CateMichaela;0;FALSE;NA;NA
507;@Alice_fromearth but we hate coffee! I'd take some tea thank you?;FALSE;Alice_fromearth;8/9/2013;02:36;FALSE;365663;365663;57452657;"<a href=""http://blackberry.com/twitter"" rel=""nofollow"">Twitter for BlackBerry?</a>";alexandrdaoud;0;FALSE;NA;NA
508;Think they should skip Newtown...Outrage Over Gun Rights Event at Newtown Starbucks http://t.co/6l3tTXz4Yu via @nbcconnecticut;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://twitter.com/tweetbutton"" rel=""nofollow"">Tweet Button</a>";czucca;0;FALSE;NA;NA
509;Twizzlers, coffee, and GG;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";ashley_wade_;0;FALSE;NA;NA
510;@AshleyM520 lol- gotta have my coffee in the am.;FALSE;AshleyM520;8/9/2013;02:36;FALSE;365662;365663;1332823507;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";SalSiliezar;0;FALSE;NA;NA
511;Costa needs to open right now I want a coffee #not #slept #dead;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";jessikah96;0;FALSE;NA;NA
512;I had coffee at 11am and I feel like I'm still feeling it... Wtf I can't fall asleep;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";JillCori;0;FALSE;NA;NA
513;Coffee ice cream is a beautiful flawless cherub in the form of a frozen dairy product;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";niallhoodie;0;FALSE;NA;NA
514;I just used #Shazam to tag Superman by Black Coffee. http://t.co/ddqasF5cwp;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://itunes.apple.com/us/app/shazam/id284993459?mt=8&uo=4"" rel=""nofollow"">Shazam on iOS</a>";nigerin;0;FALSE;NA;NA
515;Shape of my heart ? Coffee shop ? When I was your man ? Summertime ? Lego house ? Trouble maker;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://echofon.com"" rel=""nofollow""><U+0395>ch<U+03BF>fon</a>";fadilafmn;0;FALSE;NA;NA
516;And I got it!! Coffee ice cube tray acquired - thanks to jp_pre :) http://t.co/9WzB3Xl8W3;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";jelenasaurus;0;FALSE;NA;NA
517;@serafeeenaaa we should go grab coffee sometime !;FALSE;serafeeenaaa;8/9/2013;02:36;FALSE;365524;365663;51142241;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";JenJen_Bunny;0;FALSE;NA;NA
518;I guess imma go grab me some breakfast and coffee and watch the l word .;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";x___helenia;0;FALSE;NA;NA
519;Maybe I will two-tone it? Shabby chic coffee table http://t.co/4L8NBRoFJl;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://pinterest.com"" rel=""nofollow"">Pinterest</a>";lorrhudson;0;FALSE;NA;NA
520;RT @UberFacts: There are more than 1,000 chemicals in a single cup of coffee. Of these, only 26 have been tested and half caused cancer in ?;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";_dreen;1600;FALSE;NA;NA
521;OOTD. #nosleep #coffee #McCafe #lovekoto #pink #fresh #asian #gay http://t.co/JM14IvNI9V;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";BonPenaranda;0;FALSE;NA;NA
522;Coffee is just hitting the spot tonight;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";kierstin_prater;1;FALSE;NA;NA
523;"@trevorhale my boss did today! I was like really? I like good coffee & this is actually good NO.";FALSE;trevorhale;8/9/2013;02:36;FALSE;365662;365663;20834045;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";jeniferleee;0;FALSE;NA;NA
524;"A sandwich bite, a coffee sip and a good @ecomso read on entrepreneurship and start-ups ;10";FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://gremln.com"" rel=""nofollow"">Gremln</a>";yfomso;0;FALSE;NA;NA
525;No coffee for 6 days left me fatigue and headache-ridden;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";tylerwvlker;0;FALSE;NA;NA
526;"A sandwich bite, a coffee sip and a good @ecomso read :: entrepreneurship and start-ups ;10";FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://gremln.com"" rel=""nofollow"">Gremln</a>";yfomso;0;FALSE;NA;NA
527;@jazzyandclassy lol yeah y'all be drinking the shit out of that coffee;FALSE;jazzyandclassy;8/9/2013;02:36;FALSE;365661;365663;313694166;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Lowediggity;0;FALSE;NA;NA
528;FREE COFFEE!! That is all.... From @Coffeedirect and @Saving4five http:http://t.co/nBnZ3BZ8W3;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://giveawaytools.com"" rel=""nofollow"">Giveaway Tools Confirmation</a>";YouMeandRemy;0;FALSE;NA;NA
529;Coffee doesn't agree with me ever;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";jenna_wats0n;0;FALSE;NA;NA
530;"Time for a coffee break, and a quick @ecomso read on entrepreneurship and startups. ;10";FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://gremln.com"" rel=""nofollow"">Gremln</a>";xwomso;0;FALSE;NA;NA
531;I Love Starbucks. and Coffee. and Jesus.;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;web;JDHoogendoorn;0;FALSE;NA;NA
532;Now I have decided the kitchen is too slug/beetle infested to make me stay in it long enough to make coffee in the dark..;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;web;jemmagilder;0;FALSE;NA;NA
533;Mornings coffee .;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";BashairAldosari;0;FALSE;NA;NA
534;hahaha you can see three mugs on my bedside table i drink lots of coffee/hot chocolate kk;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;web;crvcial;0;FALSE;NA;NA
535;It will be. Someday haha RT @niasilvanaa Hmm kapan ya giliran kita ? Wakak @fdzradila: #np Landon Pigg - Falling In Love At A Coffee Shop;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://www.myplume.com/"" rel=""nofollow"">Plume?for?Android</a>";fdzradila;0;FALSE;NA;NA
536;i love getting coffee with bri she's literally my coffee date all the time;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;web;ashidanza;0;FALSE;NA;NA
537;Gonna have to make a Pot of Coffee..this game being on West Coast time is killing me man.;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;web;JAZY_JA22;0;FALSE;NA;NA
538;RT @MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renovation show on HGTV.;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>";GoodNightPunk;42;FALSE;NA;NA
539;I spilt my coffee this morning on my white shorts... THANKS OBAMA.;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Taylormarie212;0;FALSE;NA;NA
540;Watching #BarneyMiller on TV. Still lol about nick's coffee jokes.;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://www.tweetcaster.com"" rel=""nofollow"">TweetCaster for Android</a>";guttery;0;FALSE;NA;NA
541;RT @littledaisy420: iced coffee ilysm;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";v0_id;2;FALSE;NA;NA
542;EVERYBODY Coffee Shop;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;web;XhinDong;0;FALSE;NA;NA
543;RT @Moses_Octo: All you need is Love and more Coffee. Good morning;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;web;96Co_;1;FALSE;NA;NA
544;RT @Barista_kyo: #coffee #latte #soylatte #thinkcoffee # # # # @ think coffee http://t.co/Hmy9RPRWTZ;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""https://twitter.com/coffeers"" rel=""nofollow"">coffeers</a>";coffeers;1;FALSE;NA;NA
545;RT @CleatingChase: My favorite part about fall: Hoodies Leggings Sweatpants Cold nights Football games Uggs Pumpkin coffee;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";__shesaBOSS;26;FALSE;NA;NA
546;RT @CallieSimon: #Coffee book unveiled in Woman's World, Wellbella, book clubs, via Walmart http://t.co/JpajuOTcV9;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""https://twitter.com/coffeers"" rel=""nofollow"">coffeers</a>";coffeers;1;FALSE;NA;NA
547;today I drank 3 cups of coffee, ate a sandwich and now Starbucks. That's really really bad;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";emilyy_0526;0;FALSE;NA;NA
548;RT @Ollininvincible: Top o' the Mornin' to Ye Twitter!!! #coffee ?Thursday;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""https://twitter.com/coffeers"" rel=""nofollow"">coffeers</a>";coffeers;1;FALSE;NA;NA
549;"RT @kawaiikutie: Sunshine & Rainbows...makes everything alright! http://t.co/iBRTqhAl8s #rainbows #sunshine #mug #sweet #coffee";FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""https://twitter.com/coffeers"" rel=""nofollow"">coffeers</a>";coffeers;1;FALSE;NA;NA
550;?@sheodd: Iced coffee in the mornings is soo amazing like it's my everyday breakfast pretty bad habit I'm building? that was me senior year;FALSE;sheodd;8/9/2013;02:36;FALSE;365657;365663;409736030;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";marisaaaa23;1;FALSE;NA;NA
551;RT @81roja: GOOD MORNING! #coffee;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""https://twitter.com/coffeers"" rel=""nofollow"">coffeers</a>";coffeers;1;FALSE;NA;NA
552;"RT @MDVcoffee: RT @BarossaDesign: It's definitely a double shot of @MDVcoffee kinda morning #coffee #luxury http://t.co/X4k7aS70U9 > Pourin?";FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""https://twitter.com/coffeers"" rel=""nofollow"">coffeers</a>";coffeers;1;FALSE;NA;NA
553;no sugar tonight in my coffee, no sugar tonight in my tea;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;web;ukuleola;0;FALSE;NA;NA
554;RT @cubbieberry: #coffee #Melbourne RT @proudmarycoffee: Drinking mad Kenyan brew @krimper in the city http://t.co/dSmd5TN9Zk;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""https://twitter.com/coffeers"" rel=""nofollow"">coffeers</a>";coffeers;1;FALSE;NA;NA
555;"RT @davidcmerin: Good morning. Kape! #InstaSize #coffee #holiday #r&r #staycation #instagood #instamood #iphoneasia? http://t.co/FkeLMa23YO";FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""https://twitter.com/coffeers"" rel=""nofollow"">coffeers</a>";coffeers;1;FALSE;NA;NA
556;RT @UberFacts: There are more than 1,000 chemicals in a single cup of coffee. Of these, only 26 have been tested and half caused cancer in ?;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";ReeceCarr;1600;FALSE;NA;NA
557;RT @MissTrujillo_: #UrthCaff? #niece #sister #datenight #coffee #lemonade #fresh #family @ Urth Caff? http://t.co/OYcCVZHNYK;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""https://twitter.com/coffeers"" rel=""nofollow"">coffeers</a>";coffeers;1;FALSE;NA;NA
558;@_Petra_Ral /take the coffee, slowly sip it/ it's good~;FALSE;_Petra_Ral;8/9/2013;02:36;FALSE;365659;365663;1530697832;"<a href=""http://blackberry.com/twitter"" rel=""nofollow"">Twitter for BlackBerry?</a>";MarcoB_XO;0;FALSE;NA;NA
559;Breakfast times ? https://t.co/btgY9rTsE7;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""https://path.com/"" rel=""nofollow"">Path</a>";epsimano;0;FALSE;NA;NA
560;RT @haseebashraff: All ready for Satul #Eid and yes #Coffee http://t.co/KhqSQJZYue;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""https://twitter.com/coffeers"" rel=""nofollow"">coffeers</a>";coffeers;2;FALSE;NA;NA
561;RT @CharleeeGreen: Good Morning. Try lang! Hahaha #topless #vain #mirrorshot #selfie #boxer #ratedspg #coffee #kape? http://t.co/5vZEucCJ1C;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""https://twitter.com/coffeers"" rel=""nofollow"">coffeers</a>";coffeers;1;FALSE;NA;NA
562;RT @pnkluv1: Need. More. #coffee. I think I've become immune to its #power. #fading #sotired #cantgotosleepyet. I hear my #bed, its calling?;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""https://twitter.com/coffeers"" rel=""nofollow"">coffeers</a>";coffeers;1;FALSE;NA;NA
563;RT @MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renovation show on HGTV.;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";PoweredbyBMW;42;FALSE;NA;NA
564;@abnormile1 hey i mean atleast she had the coffee and not sweet pea's dick;FALSE;abnormile1;8/9/2013;02:36;FALSE;365663;365663;588601343;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";taythepotato;0;FALSE;NA;NA
565;RT @AriAprianti: #brother #morningcoffee #morning #coffee http://t.co/3BdxtCgIdD;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""https://twitter.com/coffeers"" rel=""nofollow"">coffeers</a>";coffeers;1;FALSE;NA;NA
566;RT @katiebschenk: #espressoparty Thursdays with @juanchavarin1 #starbucks #coffee #work #hummer #straws http://t.co/kmogKOlExx;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""https://twitter.com/coffeers"" rel=""nofollow"">coffeers</a>";coffeers;1;FALSE;NA;NA
567;Doughnuts and coffee for breakfast today. Kinda felt like a fat police officer. Oh the joyyyyy :);FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";AymanHazwani;0;FALSE;NA;NA
568;"RT @hytetu: Starbucks Coffee <3 #sc #akari's car #yum #starbucks #coffee #happy #sunglasses #hot http://t.co/VEDCT4EuyN";FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""https://twitter.com/coffeers"" rel=""nofollow"">coffeers</a>";coffeers;1;FALSE;NA;NA
569;RT @ReversoSmith: What a beautiful mess! #portafilter #coffee #espresso #coffeemachine #barista #baristalife? http://t.co/ZODcTfP22Z;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""https://twitter.com/coffeers"" rel=""nofollow"">coffeers</a>";coffeers;1;FALSE;NA;NA
570;RT @EXOFANBASE_: #imagine you make a coffee in the morning,suddenly chanyeol came and hug u in behind, put his chin in ur shoulder and said?;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Mobile Web (M2)</a>";K_ownNieysa;15;FALSE;NA;NA
571;RT @LoveIs4Suckahs: I'm in heaven. #coffeeroll #coffee http://t.co/DMt1TlAdeK;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""https://twitter.com/coffeers"" rel=""nofollow"">coffeers</a>";coffeers;1;FALSE;NA;NA
572;I WANT SOME COFFEE ICE CREAM;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";BriPerez_;0;FALSE;NA;NA
573;RT @WorldofCoffeeTV: Dave rocking it with some fresh Piazza D'Oro #coffee and the JURA impressa. http://t.co/iWx9nY9hLt;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""https://twitter.com/coffeers"" rel=""nofollow"">coffeers</a>";coffeers;1;FALSE;NA;NA
574;Photo: #truism http://t.co/GxpxtYekza;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://www.tumblr.com/"" rel=""nofollow"">Tumblr</a>";donniecash818;0;FALSE;NA;NA
575;Sharks and coffee with my dad at 11 at night I can dig it #bonding #SharkWeek;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Julia_F0nseca;0;FALSE;NA;NA
576;RT @billy_peters67: @Swass_Cheese: You know your coffee addiction is real when you become a night time coffee drinker too. #Coffee yessss;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""https://twitter.com/coffeers"" rel=""nofollow"">coffeers</a>";coffeers;1;FALSE;NA;NA
577;RT @kopijobi: #pancakes #coffee #hotdogs = BURRRRP!;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""https://twitter.com/coffeers"" rel=""nofollow"">coffeers</a>";coffeers;1;FALSE;NA;NA
578;If you can afford Starbucks coffee, then you can afford buying an album.;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";WhoreHey777;0;FALSE;NA;NA
579;@PistolsAndCuffs @timeTestified;FALSE;PistolsAndCuffs;8/9/2013;02:36;FALSE;365663;365663;1656155282;web;PrinceDirk;0;FALSE;NA;NA
580;RT @giadacostoli: Top!! #SanFrancisco #California #StarBucks #Coffee http://t.co/NeHrVNH0os;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""https://twitter.com/coffeers"" rel=""nofollow"">coffeers</a>";coffeers;2;FALSE;NA;NA
581;RT @CateDancer24: so wired.... #mountaindew #coffee;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""https://twitter.com/coffeers"" rel=""nofollow"">coffeers</a>";coffeers;2;FALSE;NA;NA
582;RT @DaniCim: some dude just informed me that coffee has 200 chemicals in it and the 26 that were tested cause cancer as he poured himself?;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;web;lovingmyselena;121;FALSE;NA;NA
583;RT @FaithCycling: @sweetmarias So many choices! #Missions #coffee;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""https://twitter.com/coffeers"" rel=""nofollow"">coffeers</a>";coffeers;2;FALSE;NA;NA
584;RT @HangoutUniverse: Are you a #Programming expert? #Java #Spring #Coffee #XML #JavaScript Then get paid to deliver live, interactive train?;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""https://twitter.com/coffeers"" rel=""nofollow"">coffeers</a>";coffeers;2;FALSE;NA;NA
585;RT @MattySoHot: Treated my momma to Dutch bros! #DutchBros #coffee #smoothie #Caramelizer #Mommy #Fam #SoHot http://t.co/cpRKPdKe0D;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""https://twitter.com/coffeers"" rel=""nofollow"">coffeers</a>";coffeers;2;FALSE;NA;NA
586;RT @Nalvers: #me #design #graphic #designer #love #my #carrear #coffee #nice #l4l #like #follow #awesome #cool #hot? http://t.co/cxaZ0zL60w;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""https://twitter.com/coffeers"" rel=""nofollow"">coffeers</a>";coffeers;2;FALSE;NA;NA
587;What do you spend most of your money on? ? Uhm coffee http://t.co/buV0L5gcQF;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://ask.fm/"" rel=""nofollow"">Ask.fm</a>";SexleyWesley;0;FALSE;NA;NA
588;Lmao my mum: first you were as dark as a cup of tea now you're gonna become as dark as coffee;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";LaVieEnRosez;0;FALSE;NA;NA
589;RT @Swass_Cheese: You know your coffee addiction is real when you become a night time coffee drinker too. #Coffee;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""https://twitter.com/coffeers"" rel=""nofollow"">coffeers</a>";coffeers;3;FALSE;NA;NA
590;Lol RT @alexroehl: Last Google Search: How to drink a cup of coffee laying down;FALSE;alexroehl;8/9/2013;02:36;FALSE;364452;365663;33493753;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";steph814;0;FALSE;NA;NA
591;Drank a whole cup of coffee and I'm still tired;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";emmaavickk;0;FALSE;NA;NA
592;Jus chillin with a bowl of chips in my lap at a coffee shop. #nbd http://t.co/4utd5pyMq2;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";joyeuxmary;0;FALSE;NA;NA
593;How much blood for a coffee? Three tablespoons. That's outrageous! Sir, this is Starbucks. Our larger coffees cost a CUP!;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";jimmymarks;0;FALSE;NA;NA
594;A cool date would be skating on saturns rings with you;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";coffee_beanss;2;FALSE;NA;NA
595;RT @Connie_62: #confessyourunpopularopinion I HATE coffee!!!;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";awinkie21;1;FALSE;NA;NA
596;U won't sleep u lol RT @KgeeWhite17: A cup of coffee will do;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://ubersocial.com"" rel=""nofollow"">UberSocial for BlackBerry</a>";DidiMaaba;0;FALSE;NA;NA
597;Shit, Organo Gold coffee is way better then Starbucks coffee like holy damn.;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;web;JRegis_8;0;FALSE;NA;NA
598;@Gabriel_Mann Tea or Coffee? #20questions;FALSE;Gabriel_Mann;8/9/2013;02:36;FALSE;NA;365663;142528310;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";alltimerach_;0;FALSE;NA;NA
599;My favorite coffee on earth!! Deli deli http://t.co/0qsdmYXLaG;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://foursquare.com"" rel=""nofollow"">foursquare</a>";morigirlove;0;FALSE;NA;NA
600;I'm going to need coffee for these long hours tomorrow, but I worked 12 hrs before. So I know I can get through it. #Determined;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;web;HonestJasmin;0;FALSE;NA;NA
601;You guys I really do have an addiction tho... Like it's almost 8pm and I'm drinking coffee. Wtf is wrong with me.;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";loveekarina_;0;FALSE;NA;NA
602;@OfMiceAndFVK haha! im struggling to stay awake i think im gonna have this fourth coffee and consider sleeping.... :P;FALSE;OfMiceAndFVK;8/9/2013;02:36;FALSE;365662;365663;871836662;web;Thenameisconor;0;FALSE;NA;NA
603;Anyone who knows how much @nattyjae23 loves coffee with this creamer will appreciate this ... #bigbottle http://t.co/7DeoNjn0wN;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";mbee5;0;FALSE;NA;NA
604;Drinking coffee as I work on summer reading assignments. #allnighter http://t.co/VuEq4c50j7;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";1DChica15;0;FALSE;NA;NA
605;little boys try to act tough n make sure I see them getting coffee. Lil girls try to act adult n make sure I see them getting coffee.;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;web;HotelRants;0;FALSE;NA;NA
606;@alexandrdaoud head to bed? I'm making me some coffee.;FALSE;alexandrdaoud;8/9/2013;02:36;FALSE;365662;365663;212851497;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Alice_fromearth;0;FALSE;NA;NA
607;@OrangeWriters do you need a coffee girl? I'd love to get coffee for y'all.#OITNB #askorange #greatwriting#ineedajob;FALSE;OrangeWriters;8/9/2013;02:36;FALSE;NA;365663;1554119270;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Carey_78;0;FALSE;NA;NA
608;RT @UberFacts: There are more than 1,000 chemicals in a single cup of coffee. Of these, only 26 have been tested and half caused cancer in ?;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""https://launchpad.net/polly"" rel=""nofollow"">Polly</a>";zangfai;1600;FALSE;NA;NA
609;coffee and cigarettes.;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";ohmymymegan;0;FALSE;NA;NA
610;@MattsCravat Sir, my reviews of Perth's Coffee for your perusal #loveyourwork #cravat http://t.co/zx5twPtuPs;FALSE;MattsCravat;8/9/2013;02:36;FALSE;NA;365663;33150122;web;TheGovorkian;0;FALSE;NA;NA
611;RT @_haleyb: Even though it's my bedtime I think I'm gonna make some coffee #YOLO;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";BurtonFreak;1;FALSE;NA;NA
612;A mathematician is a machine for turning coffee into theorems.?Paul Erdos A programmer is a machine for turning coffee into code.?Alan Kay;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;web;jckuri;0;FALSE;NA;NA
613;?Live on coffee and flowers. Try not to worry what the weather will be.?;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;web;shlebi;0;FALSE;NA;NA
614;Good morning... ? https://t.co/opnw6zA7vv;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""https://path.com/"" rel=""nofollow"">Path</a>";cupcakeenvy21;0;FALSE;NA;NA
615;My laptop is broken. This is a fate worse than no coffee. I feel like I've been stabbed. #Deargod #gonnadie #firstworldproblems;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://twitter.com/devices"" rel=""nofollow"">txt</a>";NevaMarie98;0;FALSE;NA;NA
616;RT @thakidrubenG: ?@valerie_bby16: NOBODY WANTS TO HAVE COFFEE WITH THE PRINCIPAL . stop?;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";valerie_bby16;2;FALSE;NA;NA
617;RT @iRapePizza: @xWEIRDESTKID *drinks coffee* If you not sleeping and then god damn neither will I!;FALSE;NA;8/9/2013;02:36;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";xWEIRDESTKID;1;FALSE;NA;NA
618;Coffee is the nectar of the gods #funfact @ChristineSlover;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";BrianneSlover12;2;FALSE;NA;NA
619;RT @adelinekoh: the cuteness. functions as little machines u can program to do tasks @codagogy: var cup_of_coffee=make coffee ('decaf', 'di?;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";codagogy;1;FALSE;NA;NA
620;@MiahJean13 I was seriously considering bringing a mamosa or vodka cran in my coffee mug tomorrow;FALSE;MiahJean13;8/9/2013;02:35;FALSE;365659;365663;130162668;"<a href=""http://ubersocial.com"" rel=""nofollow"">UberSocial for Android</a>";hnicks20;0;FALSE;NA;NA
621;@theebanthony coffee doesn't work??;FALSE;theebanthony;8/9/2013;02:35;FALSE;365662;365663;33580460;"<a href=""http://twicca.r246.jp/"" rel=""nofollow"">twicca</a>";ZeleDMaleGisele;0;FALSE;NA;NA
622;Torani Sugar Free Chocolate Syrup Sweetened With Splenda 3 pk 1 L - Brand New $34.99 http://t.co/aDWcxVCDiQ #drinks #coffee;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://uTweetDeals.com"" rel=""nofollow"">U Tweet Deals</a>";GardeningGoods;0;FALSE;NA;NA
623;RT @Luke5SOS: just put chocolate milk in the top of my coffee, I think I just changed history;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;web;msyiyidaniela;11349;FALSE;NA;NA
624;RT @dirtydondo: Choking on my coffee;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";leahlauralynn;1;FALSE;NA;NA
625;RT @KKAlThani: Most people love Eid because they get to see their relatives and friends. I love Eid because I get to have coffee in the mor?;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";HassanBinSadiq;197;FALSE;NA;NA
626;Always feel a little more grounded after coffee with @surrahwiley #keepintouch;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";tabarriuso;0;FALSE;NA;NA
627;Coffee ~o);FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://blackberry.com/twitter"" rel=""nofollow"">Twitter for BlackBerry?</a>";juwitaasnawi;0;FALSE;NA;NA
628;RT @Kelsey_Garner21: I want to go for coffee;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";JRiichh;1;FALSE;NA;NA
629;in the morning im getting coffee no matter what i want some so bad right bow;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";padelacki;0;FALSE;NA;NA
630;PeachTree Ink ? Green Coffee Bean Max Scam by Margie Vester via Tumblr Green Coffee Bean Max Scam by Margie Vester Green Coffee Bean Max...;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://www.hootsuite.com"" rel=""nofollow"">HootSuite</a>";peachtreeink1x;0;FALSE;NA;NA
631;morning blush. morning rush. holiday smash. coffee much. #instapic #instagram #picoftheday #photo? http://t.co/iaM9CnDN9j;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";atomdatcom;0;FALSE;NA;NA
632;Guest posting is in vogue, all of a sudden, bloggers and internet marketers are waking up and smelling the coffee.;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://twittbot.net/"" rel=""nofollow"">twittbot.net</a>";dailyblogtips1;0;FALSE;NA;NA
633;All you need is Love and more Coffee. Good morning;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";Moses_Octo;1;FALSE;NA;NA
634;Coffee and TV by blur ? https://t.co/Yv4PzNAcvs;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""https://path.com/"" rel=""nofollow"">Path</a>";yogahrynt;0;FALSE;NA;NA
635;Omg im craving coffee.;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";Tayy_Taylorr;0;FALSE;NA;NA
636;Also the termite man is here and he's asked me to make him a coffee;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;web;jessieflea;0;FALSE;NA;NA
637;RT @AirstreamLiving: Love it RT @sfdb: The Airstream Life....via Coffee in the Mountains http://t.co/iJcpRkcmTb @AirstreamLiving http://t.c?;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://roundteam.co"" rel=""nofollow"">RoundTeam</a>";vtairstreamer;1;FALSE;NA;NA
638;@iqbmaulana you're super right :D I'm coffee lover B);FALSE;iqbmaulana;8/9/2013;02:35;FALSE;365662;365663;187114462;"<a href=""http://blackberry.com/twitter"" rel=""nofollow"">Twitter for BlackBerry?</a>";tyaraou;0;FALSE;NA;NA
639;@Felicialuvsxc hahaha!! Like coffee like that leh lol;FALSE;Felicialuvsxc;8/9/2013;02:35;FALSE;365662;365663;331590515;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";InvisibleM3;0;FALSE;NA;NA
640;Waking up at 4 AM almost isn't worth it, except for the fact that I get coffee and I'm going to States!;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";SarahBular;0;FALSE;NA;NA
641;I love coffee!;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";kelseyrenae44;0;FALSE;NA;NA
642;@denritaaah growth of coffee shops;FALSE;denritaaah;8/9/2013;02:35;FALSE;365662;365663;140339522;web;PAMpanget;0;FALSE;NA;NA
643;Coffee May Reduce Your Suicide Risk, Study Finds http://t.co/uy3Nbzx69l;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://trenchpress.com"" rel=""nofollow"">TrenchPress</a>";TrenchPressNews;1;FALSE;NA;NA
644;Coffee Shop;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;web;XhinDong;0;FALSE;NA;NA
645;The only thing I'm excited for about the fall and the winter is Starbucks coffee.;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";Nicole_Marie120;0;FALSE;NA;NA
646;"these boys at the fair just asked Jessie & I if they could have our numbers and take us to coffee. lol";FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>";HaiDeL715;0;FALSE;NA;NA
647;im addicted to caramel ice coffee;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";torigustafson;1;FALSE;NA;NA
648;RT @splendid_events: @ninethreeseven @TheMinOfCoffee Oh my, that looks divine. I'll have to stop by for a visit! #coffee #ottawa #support613;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://www.pagebase.net/"" rel=""nofollow"">PageBase.Net</a>";ottawa_rt;1;FALSE;NA;NA
649;I love drinking coffee.;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";xoxo_caitlynn;0;FALSE;NA;NA
650;RT @MarissaAnita: Action will always speak louder than words.;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://blackberry.com/twitter"" rel=""nofollow"">Twitter for BlackBerry?</a>";Coffee_MocHi;83;FALSE;NA;NA
651;iced coffee ilysm;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";littledaisy420;2;FALSE;NA;NA
652;RT @_raaygannjoy: I really want coffee lol;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";_ThisGirrrl;2;FALSE;NA;NA
653;When your roommate buys you your favorite coffee;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";itsmoho;0;FALSE;NA;NA
654;Ah ha! Even Gwyneth falls for the Starbucks every now and then. That's definitely an iced coffee? http://t.co/eSwG21nQVC;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";fourflights;0;FALSE;NA;NA
655;Nick and his friends better love me for bringing them coffee all the time;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";HennickC;0;FALSE;NA;NA
656;RT @KareeLess: ?@pickupIines: Are you a shin? Cause I'd bang you on my coffee table.?@pi_NICOLEada;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";pi_NICOLEada;1;FALSE;NA;NA
657;Old Enamel Coffee Pot http://t.co/3hdAuAMCpD;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://www.hootsuite.com"" rel=""nofollow"">HootSuite</a>";ludysbears;0;FALSE;NA;NA
658;The moment you realize your Starbucks barista gave you a regular iced Coffee when u asked 4 decaf. Shitty. Late night not planned.;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Mobile Web (M5)</a>";Jaybirdfly;0;FALSE;NA;NA
659;"@thepreppygypsy fav look for myself is the scrambling into the acad wet foggy glasses, frizzy hair, turtle neck, & 24 oz coffee ensemble";FALSE;thepreppygypsy;8/9/2013;02:35;FALSE;365651;365663;255766742;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";SO_WhAt_1;0;FALSE;NA;NA
660;I can't wait for pumpkin bagels and coffee;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";allllysmith2;0;FALSE;NA;NA
661;Why am i craving coffee and 10:30 at night?!;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";KristinaLeavy;0;FALSE;NA;NA
662;Cold Coffee - Ed Sheeran;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";lacerdakarina_;0;FALSE;NA;NA
663;RT @The_LittleFairy: I really want vanilla iced coffee;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";magillagary;3;FALSE;NA;NA
664;So the new coffee shop, they are wearing bikinis?;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";MiickyMe;0;FALSE;NA;NA
665;? https://t.co/k5v9muH2qG;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""https://path.com/"" rel=""nofollow"">Path</a>";InesSekar;0;FALSE;NA;NA
666;Coffee ice cream is my favorite;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";savannah_palle;1;FALSE;NA;NA
667;I'm ready for falling leaves, bonfires, football games, sweaters, hot coffee, and cuddling! #fall;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";victoriasue3011;0;FALSE;NA;NA
668;RT @Noorrr_: Coffee can fix one problem and ruin everything else.;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Scorpionour;1;FALSE;NA;NA
669;Do they have rehab for coffee addicts?;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";dreyess1;1;FALSE;NA;NA
670;Coffee and folding laundry. Story of my life. #forever #cleaning #coffee #keurig #delicious http://t.co/sd3gOJ0zCZ;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";617court;0;FALSE;NA;NA
671;Why the fuck would anyone want a caramel coconut coffee....;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>";JayClarkElliott;0;FALSE;NA;NA
672;Sabrina has a crush on her boss at the coffee shop. #90sGirlForever;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://www.tweetcaster.com"" rel=""nofollow"">TweetCaster for Android</a>";KBellFL;0;FALSE;NA;NA
673;Coffee and Baskin Robbins makes me think of @haleyalyse19 @kassiemac93 @BeccaD_13 @Whit_Watkins @anhhh_12 and Heather! I miss y'all.;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";hayann11;0;FALSE;NA;NA
674;A cup of coffee and a good read as a good weekend starter. No laptop for a change! http://t.co/v3Mcahz52l;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";beatrizlim;0;FALSE;NA;NA
675;Fresh ground coffee, smoothies, shakes and juices. What is your favorite?;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://www.hootsuite.com"" rel=""nofollow"">HootSuite</a>";NemonicAtHome;0;FALSE;NA;NA
676;Maybe because they get more shit done. Caffeine is the ultimate enabler. - Coffee and Suicide http://t.co/R2qh3HXr6O;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://www.pulse.me"" rel=""nofollow"">Pulse News</a>";montyho21;0;FALSE;NA;NA
677;coffee addicts. @mirandasloan11 @hhhuntingrules;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";b_schwartz21;0;FALSE;NA;NA
678;Reduce your caffeine intake .;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;web;EXEDoN;0;FALSE;NA;NA
679;Do you prefer tea, coffee or cocoa? ? Tea http://t.co/t73WoUpdJU;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://ask.fm/"" rel=""nofollow"">Ask.fm</a>";Thick___Beauty;0;FALSE;NA;NA
680;@EM_H2O sure, let me know when and we can have some coffee together and I'd do it for you ^.^;FALSE;EM_H2O;8/9/2013;02:35;FALSE;365651;365663;411808029;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";ashnid93;0;FALSE;NA;NA
681;@emzgeee @JulieBishopMP hahaha... where's my coffee!?;FALSE;emzgeee;8/9/2013;02:35;FALSE;365651;365663;173042330;web;rangison;0;FALSE;NA;NA
682;@SareenaaPatell I fucking know the recipe for a good irish coffee, what do you think I am? A fucking amateur?;FALSE;SareenaaPatell;8/9/2013;02:35;FALSE;365662;365663;353393670;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Minnici_mermaid;0;FALSE;NA;NA
683;I'm just sittin in my room cryin man. But only out one eye cause its the one chemical got in lol;FALSE;NA;8/9/2013;02:35;FALSE;NA;365663;NA;"<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>";_Mr_Coffee;0;FALSE;NA;NA
684;?@valerie_bby16: NOBODY WANTS TO HAVE COFFEE WITH THE PRINCIPAL . stop?;FALSE;valerie_bby16;8/9/2013;02:35;FALSE;365662;365663;1039188956;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";thakidrubenG;2;FALSE;NA;NA
685;RT @Choose_A_Side: Here are some things I bet you didn't know about coffee.. http://t.co/eEgBfAN3d8;FALSE;NA;8/9/2013;02:35;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";MyDickIsCalled;5;FALSE;NA;NA
686;@xWEIRDESTKID *drinks coffee* If you not sleeping and then god damn neither will I!;FALSE;xWEIRDESTKID;8/9/2013;02:35;FALSE;365661;365662;353200960;web;iRapePizza;1;FALSE;NA;NA
687;I want some coffee;FALSE;NA;8/9/2013;02:35;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";ohminervaa;0;FALSE;NA;NA
688;Choking on my coffee;FALSE;NA;8/9/2013;02:35;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";dirtydondo;1;FALSE;NA;NA
689;i wish i had more Dunkin' Donuts iced coffee. oh the struggle of walking up the street.;FALSE;NA;8/9/2013;02:35;FALSE;NA;365662;NA;web;grayeyesdontlie;0;FALSE;NA;NA
690;@DaniCim Have you drank coffee?;FALSE;DaniCim;8/9/2013;02:35;FALSE;365652;365662;82941287;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";zombiespro13;0;FALSE;NA;NA
691;@Fat_Man_Scoop32 they makin her pay for coffee, room service, juice, soap...lmao smh;FALSE;Fat_Man_Scoop32;8/9/2013;02:35;FALSE;365662;365662;381577422;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Femme_DeDieu;0;FALSE;NA;NA
692;Hurray! I have finished Negotiations Over Coffee task in Big Business HD for iPad! http://t.co/YDX09xdquH #ipad #ipadgames #gameinsight;FALSE;NA;8/9/2013;02:35;FALSE;NA;365662;NA;"<a href=""http://itunes.apple.com/app/id527939715?mt=8"" rel=""nofollow"">Big Business</a>";Glutton4Pnshmnt;0;FALSE;NA;NA
693;I love bringing home locally roasted #coffee beans from all of the cities I visit for @marshallhines? http://t.co/d4cnURL3jW;FALSE;NA;8/9/2013;02:35;FALSE;NA;365662;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";beazkidz;0;FALSE;NA;NA
694;Morning coffee;FALSE;NA;8/9/2013;02:35;FALSE;NA;365662;NA;"<a href=""http://ubersocial.com"" rel=""nofollow"">UberSocial for BlackBerry</a>";Jelitameyy;0;FALSE;NA;NA
695;"Beauty & Coffee! Eyebrow waxing and cafe lattes at the drugstore? http://t.co/t0dFWkgG3H #waxing #coffee #beauty";FALSE;NA;8/9/2013;02:35;FALSE;NA;365662;NA;"<a href=""http://www.tweetdeck.com"" rel=""nofollow"">TweetDeck</a>";MySpoonfuls;0;FALSE;NA;NA
696;if my dad is using my shaker bottle as a coffee cup again i'm going to be so mad.;FALSE;NA;8/9/2013;02:35;FALSE;NA;365662;NA;web;captainjinnu;0;FALSE;NA;NA
697;Is a good article. http://t.co/32KmpQpqJ1;FALSE;NA;8/9/2013;02:35;FALSE;NA;365662;NA;"<a href=""http://www.facebook.com/twitter"" rel=""nofollow"">Facebook</a>";dcupcoffee;0;FALSE;NA;NA
698;Tyler and I went on a 40 mile bike ride today and seen so many people we know. And Chris gave us free coffee and it was all just great.;FALSE;NA;8/9/2013;02:35;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";ksleeeezy;0;FALSE;NA;NA
699;RT @Str8KillingEm: I love coffee.;FALSE;NA;8/9/2013;02:35;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Blondieee_18;1;FALSE;NA;NA
700;Chicken asparagus risoto - it was white rice with loads of cream, chicken and courgettes. And tasteless. The Coffee Club Takapuna #fail;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";chefalinepaiva;0;FALSE;NA;NA
701;one cup of coffee down. one more to go. and half a cup of tea;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;web;SarahhSimutt;0;FALSE;NA;NA
702;I 'am never drinking iced coffee again!!;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;web;KCaseyyy;0;FALSE;NA;NA
703;"oh RT @SaayaY ...found that the suicide risk was cut by around 50 percent for caffeine fiends > Coffee and Suicide http://t.co/kqn3WsmtQJ";FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://www.myplume.com/"" rel=""nofollow"">Plume?for?Android</a>";gohsuket;0;FALSE;NA;NA
704;@danktay i'll move there right now just so you can bring me coffee;FALSE;danktay;8/9/2013;02:34;FALSE;365662;365662;1349826116;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";victoriahesterx;0;FALSE;NA;NA
705;Laid up drinking coffee.. I put too much sugar in it lol but it's yummy;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";augusta_shawty;0;FALSE;NA;NA
706;Royce chocolate popcorn and coffee in the morning #favorite http://t.co/yBbkf9OjqX;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";jappyCuaycong35;0;FALSE;NA;NA
707;OMG I CAN FINALLY MAKE COFFEE! :o *it's bee a while my friend*;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://blackberry.com/twitter"" rel=""nofollow"">Twitter for BlackBerry?</a>";ZiziRiddle;0;FALSE;NA;NA
708;I could drink some coffee but I don't wanna go make it;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";locklear_noah;0;FALSE;NA;NA
709;I dont know what id do if the world ran out of coffee....;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";dreyess1;0;FALSE;NA;NA
710;House Rule: Never Drive for Coffee. Create a rule and get $1 off Maxwell House coffee to enjoy at home. http://t.co/MTMrIkAWZY #houserules;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/tweetbutton"" rel=""nofollow"">Tweet Button</a>";erikab93;0;FALSE;NA;NA
711;RT @EdgarsNuts: Coffee always gives me the shits;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";sexuallamaaa;2;FALSE;NA;NA
712;Basically Giovanni Carmazzi MT @MoveTheSticks Whitehurst looks like he should be working at a coffee shop in Portland.;FALSE;MoveTheSticks;8/9/2013;02:34;FALSE;365661;365662;265758015;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";DrewfromJersey;0;FALSE;NA;NA
713;If you're in TV Pro this year, be expected to smell coffee every morning. #DirectorNeedsHisCoffee;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;web;DaltonL227;0;FALSE;NA;NA
714;You look like somebody fcked you up with a coffee pot!;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://www.myplume.com/"" rel=""nofollow"">Plume?for?Android</a>";I_Do_Numb3rZ;0;FALSE;NA;NA
715;Questioning why I'm drinking iced coffee at 9:30 at night. #ohwell #itsyummy;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";acsol2;0;FALSE;NA;NA
716;@_Camilo30 aww no don't cry I'll make coffee for you because I love you but don't cry omg no! ill see you tomorrow though right?;FALSE;_Camilo30;8/9/2013;02:34;FALSE;365661;365662;1582062024;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";_emilypena;0;FALSE;NA;NA
717;i've functioned off of 3 hours of sleep and 2 cups of coffee today. And I took a tour of state today haha;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;web;KennyMiller10;0;FALSE;NA;NA
718;Someone take me to London! #london #please #illloveyouforever #christian #coffee #thirdcup #lonely? http://t.co/yT1taPPW44;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";AlaynaChanel;0;FALSE;NA;NA
719;@sacurren @LaTrioli Brisbane Caf? bans Murdoch press who don`t like instant Rudd coffee + prefer a more mature refined taste.;FALSE;sacurren;8/9/2013;02:34;FALSE;365660;365662;89276096;web;Detracter;0;FALSE;NA;NA
720;"RT @madisonpettis: I don't get why u have to pay for wifi on a plane when you can walk into any Starbucks & get wifi for free. Plane tix co?";FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Jackie21ishere;358;FALSE;NA;NA
721;I haven't had coffee all day and I'm having caffeine withdrawals..;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Ayala_vanessa15;0;FALSE;NA;NA
722;I think working at a coffee shop would be fun. I could be like Rachel in Friends.;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;web;ohhbrittanylynn;0;FALSE;NA;NA
723;Coffee with the cunts was interesting today @TiffanyLarocque @LookingforLegit;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;web;gingi_snap;0;FALSE;NA;NA
724;Goodmorning drink Sea Salt caramel, Seattles Best Coffee:) ) http://t.co/IcOEQO0zci;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";johanaguilar_;0;FALSE;NA;NA
725;@HIflyer @Timothybhill @DanStreetman @LorenzoPerkins that's also why it works! I know what an 80pt coffee taste like!;FALSE;HIflyer;8/9/2013;02:34;FALSE;365659;365662;12971772;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";colecoffee;0;FALSE;NA;NA
726;Can't wait for pumpkin spice coffee;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";header_barscz;0;FALSE;NA;NA
727;Warm + Cosy @ Halyard Coffee http://t.co/i9dkIkEK6O;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";HalyardCoffee;0;FALSE;NA;NA
728;"@WildGooseFest If you see a granny w/shining eyes& big smile w/a coffee drinking grandpa from Texas, say HI. They're my folks";FALSE;WildGooseFest;8/9/2013;02:34;FALSE;NA;365662;67942677;web;operascully;0;FALSE;NA;NA
729;RT @_Claire_Ledlow: #confessyourunpopularopinion why the f is there a hype about Starbucks. It's a coffee shop not God's child.;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://blackberry.com/twitter"" rel=""nofollow"">Twitter for BlackBerry?</a>";weswilliams_7;1;FALSE;NA;NA
730;"RT @NWTwats: It?s Book Week August 17-23! Support your #NWTas shop & nourish your mind! Ulverstone bookshop serves coffee, Burnie sells T2.?";FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://roundteam.co"" rel=""nofollow"">RoundTeam</a>";BookshopEye;1;FALSE;NA;NA
731;Nothing better than Dunkin Donuts coffee before work :);FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";BRroids;0;FALSE;NA;NA
732;RT @MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renovation show on HGTV.;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";MacklinWhite;42;FALSE;NA;NA
733;Speaking of salmon, whoever thought of shark week? Who was the one sitting down, drinking coffee, and thought of shark week?!?!?!;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";paulyo;0;FALSE;NA;NA
734;RT @MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renovation show on HGTV.;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>";kingkube;42;FALSE;NA;NA
735;"I think i just made the best coffee ever with cookies and cream milk. <3";FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";AlexandriaOOTD;0;FALSE;NA;NA
736;@ikanatassa coffee just..completes me :) );FALSE;ikanatassa;8/9/2013;02:34;FALSE;365653;365662;19799211;"<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>";estisuresti;0;FALSE;NA;NA
737;RT @SexualTurnOns: Because of the caffeine, drinking coffee can boost a woman's sex drive.;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";leigh_nina;82;FALSE;NA;NA
738;Terbaik this house serves coffee, reli needed that;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://blackberry.com/twitter"" rel=""nofollow"">Twitter for BlackBerry?</a>";alyamaisarah_;0;FALSE;NA;NA
739;NT: Why? Sunny: I need to make a cup of Marka D'oro coffee. NT: Really? = = now? Sunny: First, I tear the sachet open, and ...;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;web;markadorocoffee;0;FALSE;NA;NA
740;RT ?@wavey_O: They make hookas over here with old version coffee makers?;FALSE;wavey_O;8/9/2013;02:34;FALSE;365662;365662;871494438;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Obey_Juan5;0;FALSE;NA;NA
741;@jessicatmai tea, water, coffee, it's all the same. Stop complaining and do your job, you sound like a Ledo's server.;FALSE;jessicatmai;8/9/2013;02:34;FALSE;365662;365662;369759618;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";_YouKnowLamar;0;FALSE;NA;NA
742;Coffee tomorrow?;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";El_Kou;0;FALSE;NA;NA
743;Post-coffee dump: Smoooove as fuuuuuuu;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;web;migpap;0;FALSE;NA;NA
744;My 17 year old just told me he had the best coffee ever. Clover brewed What's left to look forward too?;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;web;OddLovesCompany;0;FALSE;NA;NA
745;RT @courtneytargett: hot coffee in the morning, wearing my boyfriend's sweatshirt, boots, leggings, cheering, football, crisp mornings. ?;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";HeyItsLilB;2;FALSE;NA;NA
746;I'm drinking black coffee at 9:30pm. This is going to turn out well.;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";PsstCaptain;0;FALSE;NA;NA
747;The only things I have for college so far are a coffee maker, a cordless kettle, and a laptop. I'm set;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";MaddieHigman;0;FALSE;NA;NA
748;Im bout to get spazzy as soon as i get my hands on sum coffee;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;web;ShonD_Misfit;0;FALSE;NA;NA
749;And delicious Granville island coffee to go with it. #coffeeselfie #coffeedad http://t.co/2L1OVBvlpD;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";HardFeelingsx;0;FALSE;NA;NA
750;IS COFFEE BEAN COFFEE ACTUALLY GOOD?;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";eharmonyyyy;0;FALSE;NA;NA
751;RT @MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renovation show on HGTV.;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>";mikeyfarrar;42;FALSE;NA;NA
752;Up in six hours so I can trek north to @TEDxFargo. @GregfromFargo save a pot or two of coffee for me! :);FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";larsleafblad;0;FALSE;NA;NA
753;Grapes and coffee..haha #weirdbreakfast;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";DayneBlaze;0;FALSE;NA;NA
754;?@MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renovation show on HGTV.?;FALSE;MoveTheSticks;8/9/2013;02:34;FALSE;365661;365662;265758015;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";iMclain4;0;FALSE;NA;NA
755;Who needs sleep when you have coffee-roids? http://t.co/VkwnfzXy8m;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";bassguitarpyro;0;FALSE;NA;NA
756;Now lepak at Old Town White Coffee for a breakfast.... After this our trip will go on...;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Mobile Web (M5)</a>";AfhamSlumber97;0;FALSE;NA;NA
757;RT @AshMacNASTY: Books, coffee, and rain sounds great right about now.;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";letty_Ahuyon;1;FALSE;NA;NA
758;RT @WOWFactsOfLife: The amount of caffeine found in a cup of coffee can relieve depression by close to 60%.;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";YouCouldBeMine2;98;FALSE;NA;NA
759;RT @jessyroberts13: I think I want a cup of coffee #JudgeMe;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";locklear_noah;3;FALSE;NA;NA
760;RT @thatsheart_: Coffee is the only thing that can keep me awake right now http://t.co/XQAzFll9xc;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;web;LeeGadi89;7;FALSE;NA;NA
761;Do you prefer tea, coffee or cocoa? ? Coffee http://t.co/pYt8u2T20N;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://ask.fm/"" rel=""nofollow"">Ask.fm</a>";_kiyaahh;0;FALSE;NA;NA
762;Considering a 2nd cup of coffee, but my co-worker made the pot with unfiltered Channelview water. Yuck. Think I'll reheat my cup.;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;web;MccunenntJaquel;0;FALSE;NA;NA
763;RT @AdriiixR: I can drink coffee any time of the day! I love it;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";xo_Munchie;1;FALSE;NA;NA
764;I want coffee flavored ice cream with cookie dough in it.;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";KatersIsCute;0;FALSE;NA;NA
765;"Coffee set on a timer for the morning. Skipped a day & that kicked my tail! #coffeeaddict";FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";morganbarton22;0;FALSE;NA;NA
766;@UberFacts coffee drinking fruits!;FALSE;UberFacts;8/9/2013;02:34;FALSE;365628;365662;95023423;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";callanc90;0;FALSE;NA;NA
767;@MiguiAquino yep :) caramel frapp coffee base haha;FALSE;MiguiAquino;8/9/2013;02:34;FALSE;365662;365662;70340813;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";kluhrissuuh;0;FALSE;NA;NA
768;RT @Colonel_Reb_TFM: Evening coffee and homemade chocolate chip cookies, it just doesn't get better.;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";JakeStateFrat;1;FALSE;NA;NA
769;What's your most favorite beverage ? ? Coffee coolatta http://t.co/Jb1zcig9hH;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://ask.fm/"" rel=""nofollow"">Ask.fm</a>";love_316_;0;FALSE;NA;NA
770;coffee ice cream is life;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";rachaelseaver;0;FALSE;NA;NA
771;RT @UberFacts: There are more than 1,000 chemicals in a single cup of coffee. Of these, only 26 have been tested and half caused cancer in ?;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";Th3Dr3amChas3r;1600;FALSE;NA;NA
772;...coffee is never just coffee w/ me. It's : what do u think? Which is really, what are my guides saying? Ugghhh! Frustrated!;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";Awapuhi2000;0;FALSE;NA;NA
773;?@Colonel_Reb_TFM: Evening coffee and homemade chocolate chip cookies, it just doesn't get better.? A blowjob would make that better.;FALSE;Colonel_Reb_TFM;8/9/2013;02:34;FALSE;365662;365662;1529353585;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";JakeStateFrat;0;FALSE;NA;NA
774;Shiiit! Black!! Black coffee please!;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Mobile Web (M2)</a>";IamLuwish;0;FALSE;NA;NA
775;I think I just might have to turn into a coffee person from now on.;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";mitchel2k15;0;FALSE;NA;NA
776;Coffee mascot event with cosplaying idols proves to be too much for some fans to handle http://t.co/bgqoSe53CD;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/tweetbutton"" rel=""nofollow"">Tweet Button</a>";hakimei1105;0;FALSE;NA;NA
777;RT @Butkus_Matthew: I want some coffee ice cream right now;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://www.tweetdeck.com"" rel=""nofollow"">TweetDeck</a>";Craig_Bolduc;1;FALSE;NA;NA
778;RT @KekeAndMoreKeke: Y'all females be acting so dumb for a nigga you better wake up and smell the coffee;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";ImOnlyMuffin;5;FALSE;NA;NA
779;I have Coffee Tree on my island! Now my island is even more awesome! http://t.co/NHde8EY8By #pad, #ipadgames, #gameinsight;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""https://itunes.apple.com/us/app/the-tribez-hd/id494254145?mt=8&uo=4"" rel=""nofollow"">The Tribez HD on iOS</a>";lisaannallan;0;FALSE;NA;NA
780;.@fairicbaptist I was in church where John 10:26 was apparently printed in reverse in pastor's Bible. I saw some1 I kno in the coffee-shop;FALSE;fairicbaptist;8/9/2013;02:34;FALSE;365661;365662;1329949117;web;DrOakley1611;0;FALSE;NA;NA
781;RT @MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renovation show on HGTV.;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";mitchelljhardy;42;FALSE;NA;NA
782;RT @MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renovation show on HGTV.;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>";nathanSD8;42;FALSE;NA;NA
783;RT @StampedeBlue: Cold ?@MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renova?;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";iMetriq;4;FALSE;NA;NA
784;@jeniferleee I get irrationally upset when people get coffee there for some reason.;FALSE;jeniferleee;8/9/2013;02:34;FALSE;365654;365662;78047885;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";trevorhale;0;FALSE;NA;NA
785;iPad Mini or Free Coffee for a Year? http://t.co/WmzB3rGuSY via @Wishpond;FALSE;NA;8/9/2013;02:34;FALSE;NA;365662;NA;"<a href=""http://twitter.com/tweetbutton"" rel=""nofollow"">Tweet Button</a>";thisgirlcanact;0;FALSE;NA;NA
786;?@iAmNate91: No Wonder You Always Hyper lol RT ?@stonedforever_: Drinking some coffee ?? I had to wake up, I was a walking zombie;FALSE;iAmNate91;8/9/2013;02:34;FALSE;365661;365662;51846905;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";stonedforever_;0;FALSE;NA;NA
787;@LeatherBoyDean *Smiling* It's delicious, a rich Italian layer cake with coffee and a couple liquors soaked up by lady finger cookies. ++;FALSE;LeatherBoyDean;8/9/2013;02:34;FALSE;365657;365662;1581895663;"<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>";JonneWinchester;0;FALSE;NA;NA
788;RT @StampedeBlue: Cold ?@MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renova?;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;web;alexramirez127;4;FALSE;NA;NA
789;@RobbieSingh2 I'm flexible, you are welcome to choose, coffee rather than food if possible?;FALSE;RobbieSingh2;8/9/2013;02:33;FALSE;365653;365662;459023633;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";ottomanscribe;0;FALSE;NA;NA
790;Cc: @MrCoffeeKhor :P RT @UberFacts: There are more than 1,000 chemicals in a single cup of coffee. Of ... http://t.co/5y0FuirMDc;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://ubersocial.com"" rel=""nofollow"">UberSocial for BlackBerry</a>";HugOfPeace;0;FALSE;NA;NA
791;Someone being me Coffee please and thank you;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";LizzHern;0;FALSE;NA;NA
792;@tburgess57 @lorisica Beautiful warm and sunny here in Sydney coffee is for caffeinated purposes lol #mediachat;FALSE;tburgess57;8/9/2013;02:33;FALSE;NA;365662;17150586;"<a href=""http://tweetchat.com"" rel=""nofollow"">oneQube TweetChat</a>";BrandIdeas;0;FALSE;NA;NA
793;RT @MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renovation show on HGTV.;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";VPGIFF;42;FALSE;NA;NA
794;I'll be at Barnes and Noble after work tomorrow around 6:30. Anyone and everyone is welcome to join me for some coffee and silent reading.;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";EdTheMundo;0;FALSE;NA;NA
795;RT @DaniCim: some dude just informed me that coffee has 200 chemicals in it and the 26 that were tested cause cancer as he poured himself?;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";junelekaye;121;FALSE;NA;NA
796;#breakfast at Toast Box. #kayatoast #flosstoast #softboiledeggs #coffee #kaya #floss #toast #eggs? http://t.co/mrPOBj6jzf;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";ibjefftan;0;FALSE;NA;NA
797;RT @toughkittenKat: I need coffee so my greeting of eat shit and die turns into good morning;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;web;thebosun;3;FALSE;NA;NA
798;I put too much water in my coffee and now it's ruined;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://blackberry.com/twitter"" rel=""nofollow"">Twitter for BlackBerry?</a>";yixingears;0;FALSE;NA;NA
799;Coffee for you? #morning #coffee http://t.co/Dflz5ZGfpG;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";EhdeeA;0;FALSE;NA;NA
800;RT @UberFacts: There are more than 1,000 chemicals in a single cup of coffee. Of these, only 26 have been tested and half caused cancer in ?;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Coop_A_Loop951;1600;FALSE;NA;NA
801;Trying to get a coffee from McDonald's to take to work. 15 minutes later I'm on my way. #nowitmakessense;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";KimPhillips424;0;FALSE;NA;NA
802;@PandaDuh @jolenejjfo that was mean. i havent finished my coffee yet.;FALSE;PandaDuh;8/9/2013;02:33;FALSE;365662;365662;768569066;web;iamdaisygrrl;0;FALSE;NA;NA
803;Chocolate, men, coffee - some things are better rich.;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";ChuuChen;0;FALSE;NA;NA
804;"& the double chocolatey chip frappechinos don't have coffee either so";FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";mandirae1998;0;FALSE;NA;NA
805;RT @jelenasaurus: I want this!!! #coffee #icecubes #coolbeans #punny http://t.co/sLg1jdj4TG;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://roundteam.co"" rel=""nofollow"">RoundTeam</a>";Pun4Fun;1;FALSE;NA;NA
806;@Harkness_Jack51 *I smile and make the coffee*;FALSE;Harkness_Jack51;8/9/2013;02:33;FALSE;365661;365662;390369676;"<a href=""http://www.tweetcaster.com"" rel=""nofollow"">TweetCaster for Android</a>";IantoTheTeaboy;0;FALSE;NA;NA
807;"@cindy_lou16 sounds like some perfect coffee break reading Cindy! ;)";FALSE;cindy_lou16;8/9/2013;02:33;FALSE;365277;365662;282150763;"<a href=""http://www.radian6.com"" rel=""nofollow"">Radian6 -Social Media Management</a>";VictoriasSecret;0;FALSE;NA;NA
808;RT @KekeAndMoreKeke: Y'all females be acting so dumb for a nigga you better wake up and smell the coffee;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";_xBeauteous;5;FALSE;NA;NA
809;Why does @AndersonCowan get coffee cheaper than I do when he is in Cali? I only get regular coffee $2.64;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";divinelight;0;FALSE;NA;NA
810;"@alysiareiner did that cup actually have coffee in it & if so is it any better to drink out of a straw? #AskOrange";FALSE;alysiareiner;8/9/2013;02:33;FALSE;NA;365662;45919773;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";vianey293;0;FALSE;NA;NA
811;Freeze-drying makes the best instant coffee product! Create indivdual packets that are easily portable and flavour packed with Canagra!;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;web;DemarcusWalton2;0;FALSE;NA;NA
812;@ninethreeseven @TheMinOfCoffee Oh my, that looks divine. I'll have to stop by for a visit! #coffee #ottawa #support613;FALSE;ninethreeseven;8/9/2013;02:33;FALSE;365654;365662;1300455596;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";splendid_events;1;FALSE;NA;NA
813;I have a weird craving for rum and coffee.;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Minnici_mermaid;1;FALSE;NA;NA
814;"We're SO happy for our friends at Wild River Grille, Chapel Tavern, Wood-Fire Roasted Coffee Company LLC & Noble... http://t.co/VqdIrJcAfu";FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://www.facebook.com/twitter"" rel=""nofollow"">Facebook</a>";BiggestLittleGp;0;FALSE;NA;NA
815;@Jay_Lijewski nah I'm not taking about roasted coffee samples. :);FALSE;Jay_Lijewski;8/9/2013;02:33;FALSE;365657;365662;18954636;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";colecoffee;0;FALSE;NA;NA
816;Waiting to be unleashed. lacolombecoffee in your cup. #coffee #santabarbara #funkzone @ Lucky Penny http://t.co/CGiykXJnQ5;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";luckypennysb;0;FALSE;NA;NA
817;- my brain, after coffee, right now #emojiexplanatoryemotions #idonthaveemojis;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";rachel_rianne;0;FALSE;NA;NA
818;@imaleetuh The innocent man, Queen and i, coffee house. :);FALSE;imaleetuh;8/9/2013;02:33;FALSE;365660;365662;171423632;"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Mobile Web (M2)</a>";LightningBRY;1;FALSE;NA;NA
819;@alliwinnington Um... Hmh. I didn't think about that. So I always start with coffee because it's my addiction.;FALSE;alliwinnington;8/9/2013;02:33;FALSE;365661;365662;1605064376;web;TotallyAusten;0;FALSE;NA;NA
820;@MidenceOliu But we can't meet up for coffee? Oh. I see.;FALSE;MidenceOliu;8/9/2013;02:33;FALSE;365662;365662;87942834;"<a href=""http://www.tweetdeck.com"" rel=""nofollow"">TweetDeck</a>";SeptembreA;0;FALSE;NA;NA
821;They make hookas over here with old version coffee makers;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";wavey_O;0;FALSE;NA;NA
822;how I hope mine turns out! shabby chic coffee table http://t.co/DoDOMwugHC;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://pinterest.com"" rel=""nofollow"">Pinterest</a>";lorrhudson;0;FALSE;NA;NA
823;omg the auroma in coffee bean makes me feel super hungry;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";megannnt_;0;FALSE;NA;NA
824;In Need of a Coffee Table... Great condition, great personality and hate to see him hit the trash! Move quick... http://t.co/vxFLMjCuHL;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://www.facebook.com/twitter"" rel=""nofollow"">Facebook</a>";SociallyScene_;0;FALSE;NA;NA
825;Im gonna become a coffee lover I swear. Say Hi to high blood.;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";jnfyaqn;0;FALSE;NA;NA
826;Need more coffee;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";scobyt;0;FALSE;NA;NA
827;Haha ?@MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renovation show on HGTV.?;FALSE;MoveTheSticks;8/9/2013;02:33;FALSE;365661;365662;265758015;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";clevelndrocks93;0;FALSE;NA;NA
828;39 tea or coffee- ehh why no both, but tea.;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";OfMiceAndJosh_;0;FALSE;NA;NA
829;I want some coffee;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://blackberry.com/twitter"" rel=""nofollow"">Twitter for BlackBerry?</a>";MosaZandra;0;FALSE;NA;NA
830;"@_anaele OH MY!! You're rich! I got like 7k bells from apples & money I found in trees but then I spent some on coffee";FALSE;_anaele;8/9/2013;02:33;FALSE;365661;365662;29037299;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";iBeliebNiall;0;FALSE;NA;NA
831;Coffee Humor | Happy Friday! http://t.co/LrFIgIMsdv;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://pinterest.com"" rel=""nofollow"">Pinterest</a>";fmancini3;0;FALSE;NA;NA
832;Stop for coffee was totes worth it. They had the sticker I've been looking for forever! @ Dutch Bros.? http://t.co/MLlym8JztX;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";traverwall;0;FALSE;NA;NA
833;RT @srconrad64: Doesn't get better than this! @STLBiz #MIBW honors super @triciazf @Kaldis_Coffee team with @StJoeAngels http://t.co/fdU8VK?;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;web;jonRfalk;3;FALSE;NA;NA
834;Gonna go make coffee;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";ImJustACatato;0;FALSE;NA;NA
835;Coffee time then bed time;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://www.apple.com"" rel=""nofollow"">iOS</a>";Oohjay_;0;FALSE;NA;NA
836;?@Nick_Stephens29: I thought Amanda said she didn't like Starbucks... ? I don't like coffee. That didn't have coffee;FALSE;Nick_Stephens29;8/9/2013;02:33;FALSE;365662;365662;274712792;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";mandirae1998;0;FALSE;NA;NA
837;@v_diMichele bitch all you like is ice coffee and !!!!;FALSE;v_diMichele;8/9/2013;02:33;FALSE;365659;365662;1040337193;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";highanaflawless;1;FALSE;NA;NA
838;Who wants a free pound of ground coffee from Starbucks? I got it...;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";tom_1492;0;FALSE;NA;NA
839;NOBODY WANTS TO HAVE COFFEE WITH THE PRINCIPAL . stop;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";valerie_bby16;1;FALSE;NA;NA
840;I love coffee.;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Str8KillingEm;1;FALSE;NA;NA
841;I'm going vegan. Yes, I will live off dolphin safe cigarettes and organic Angolan coffee;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;web;keightleyy;0;FALSE;NA;NA
842;i told the girl half coffee half french vanillaa! alll i tasstteee is cooffffeeeee!!!!! not guna sleep tonight thats for fuckn sure!;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;web;minadawood;0;FALSE;NA;NA
843;I liked a @YouTube video http://t.co/ffRMaYxLFH Can I get a cup of coffee... black?;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://www.google.com/"" rel=""nofollow"">Google</a>";FifaGamer94_HD;0;FALSE;NA;NA
844;Coffee for you unn:) @_fykt: I would rather drink coffee than tea http://t.co/djcgvpAcGu;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://blackberry.com/twitter"" rel=""nofollow"">Twitter for BlackBerry?</a>";_fykaeuns;0;FALSE;NA;NA
845;@TheeSharp @Allurqqn4 @BGSSW @lisabdah @shemarmoore lol Pepsi is my morning coffee lol;FALSE;TheeSharp;8/9/2013;02:33;FALSE;365662;365662;392738780;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";HaleySlack_;0;FALSE;NA;NA
846;Having an actual office has made me incredibly more productive. Don't know how I ever did work in coffee shops.;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";StevePampinella;0;FALSE;NA;NA
847;@ymesc_klb you ain't bout this fitness life;FALSE;ymesc_klb;8/9/2013;02:33;FALSE;365661;365662;369985804;"<a href=""http://seesmic.com/"" rel=""nofollow"">Seesmic</a>";Coffee_nO_Cream;0;FALSE;NA;NA
848;My thought every morning ?@MensHumor: Not sure if I need more coffee or just need a new job.? @SamShearer1;FALSE;MensHumor;8/9/2013;02:33;FALSE;365578;365662;355741893;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";smile_its_woody;0;FALSE;NA;NA
849;just got back from coffee with my cuz. She got fat! Hah. Never really liked her anyway. Too catty. Was just being polite. Won't happen again;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";BrattiPrincess;0;FALSE;NA;NA
850;Hobart, you are freezing! But your coffee is amazing @ Villino Espresso http://t.co/arjnrhwuiX;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";MirandagraceF;0;FALSE;NA;NA
851;Starting the cycling day right with soy green tea + coffee shot. Gorgeous day isabelwonggg leggo!! :D http://t.co/U4zzWVBHxx;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";KatherineCai;0;FALSE;NA;NA
852;#Coffee and #Cigarettes https://t.co/o1pUoIvC9t http://t.co/qH51LyPG0d;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://www.facebook.com/twitter"" rel=""nofollow"">Facebook</a>";LookWhatI_Found;0;FALSE;NA;NA
853;RT @MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renovation show on HGTV.;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";rajivbais;42;FALSE;NA;NA
854;RT @jessyroberts13: I think I want a cup of coffee #JudgeMe;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Str8KillingEm;3;FALSE;NA;NA
855;Get QOT: Samgyetang, Iced Coffee, and Ice Rooms http://t.co/z2f6kzfTqN via @qiranger;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://triberr.com"" rel=""nofollow"">Triberr</a>";NomadicSamuel;0;FALSE;NA;NA
856;"#distill13 gave chrome bags, field notes, pour over Ritual coffee, Smitten Ice Cream, family-style picnic lunch, & lawn games. #hipster_conf";FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;web;jina;0;FALSE;NA;NA
857;Come join us for some coffee! http://t.co/FgNIus3iQJ;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://www.facebook.com/twitter"" rel=""nofollow"">Facebook</a>";Kingswaykebabs;0;FALSE;NA;NA
858;RT @UberFacts: There are more than 1,000 chemicals in a single cup of coffee. Of these, only 26 have been tested and half caused cancer in ?;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://twicca.r246.jp/"" rel=""nofollow"">twicca</a>";Athomas1524;1600;FALSE;NA;NA
859;Can't wait for this free coffee I'm bout to get from work tomorrow;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";sara_toomey;0;FALSE;NA;NA
860;Trying to sleep have a long day tomorrow!!! Guess this means a lot of coffee tomorrow !!!!;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";freshsteph27;0;FALSE;NA;NA
861;Worse food and worse service in Auckland. Congratulations to The Coffee Club Takapuna. I feel sick after lunch :- ( http://t.co/7L7E1OVHjs;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";chefalinepaiva;0;FALSE;NA;NA
862;#RAC1067 I vote for Coffee Shop by CNBLUE;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;web;nehemiahandrew;0;FALSE;NA;NA
863;RT @venecixa: Coffee doesn't ask silly questions. Coffee understands.;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";ellsbells519;1;FALSE;NA;NA
864;RT @MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renovation show on HGTV.;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";straight_edge76;42;FALSE;NA;NA
865;Photos: Elephant Dung Coffee, the World?s Most Expensive | Asia Pacific | World | Epoch Times http://t.co/D6erE3agJB;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://www.facebook.com/twitter"" rel=""nofollow"">Facebook</a>";SolubleCoffee;0;FALSE;NA;NA
866;You drink it every morning, but how much do you actually know about coffee? http://t.co/aV98Vx8rjb;FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;web;timkola;0;FALSE;NA;NA
867;@lorisica @BrandIdeas it is winter in Timm's world so I imagine he is trying to stay warm with coffee #mediachat;FALSE;lorisica;8/9/2013;02:33;FALSE;365661;365662;172300278;"<a href=""http://www.hootsuite.com"" rel=""nofollow"">HootSuite</a>";tburgess57;0;FALSE;NA;NA
868;"...found that the suicide risk was cut by around 50 percent for caffeine fiends > Coffee and Suicide http://t.co/Du3xOdInqw @freakonomics";FALSE;NA;8/9/2013;02:33;FALSE;NA;365662;NA;"<a href=""http://twitter.com/tweetbutton"" rel=""nofollow"">Tweet Button</a>";SaayaY;0;FALSE;NA;NA
869;@deryasarii Told you man, everything falls into place and life shall be good and filled with coffee at college;FALSE;deryasarii;8/9/2013;02:32;FALSE;365661;365662;283763642;web;Tiggre_Fulton;0;FALSE;NA;NA
870;I drank too much coffee without eating and now I feel not of this earth.;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";gothamcities;0;FALSE;NA;NA
871;RT @MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renovation show on HGTV.;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";CT_BallHawk;42;FALSE;NA;NA
872;This man wants to meet for coffee after my readings.I told him I probably won't be done until around midnight. He just wants a free reading.;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";Awapuhi2000;0;FALSE;NA;NA
873;@TotallyTobes really? last time i had a coffee from there it was reheated milk, shot llike dishwater and i threw it in bin after 2 sips : (;FALSE;TotallyTobes;8/9/2013;02:32;FALSE;365660;365662;181910206;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";shannysena;0;FALSE;NA;NA
874;Coffee coffee coffee coffee #cravingCoffee;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";susilovesyou1;0;FALSE;NA;NA
875;"Ok Friends Thankyou all 4 your tweets .Goodnight and sleep well See you for morning coffee GodBless >>@lexielewis888 & Fight4 #Benghazi";FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;web;alesserroad;0;FALSE;NA;NA
876;This coffee not nice sia. I dont like.;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";jnfyaqn;0;FALSE;NA;NA
877;10 Nasty Things Drinking Too Much Coffee Does To You http://t.co/pxI9hQMlws via @clusterstock;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/tweetbutton"" rel=""nofollow"">Tweet Button</a>";zongyi83;0;FALSE;NA;NA
878;*takes off his hate placing it on @AlluringCollins head chuckles and starts walking to the coffee shop*;FALSE;AlluringCollins;8/9/2013;02:32;FALSE;365661;365662;1654744861;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Jamie_CBower;0;FALSE;NA;NA
879;Cousin sister made me coffee. I love her. :3;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";yeeshienIZED;0;FALSE;NA;NA
880;Thirsty for Your Love by David Hasselhoff is now #1 on the German charts.;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://ubersocial.com"" rel=""nofollow"">UberSocial for Android</a>";gansettcrooks;0;FALSE;NA;NA
881;"RT @bryanlaca: nahhh Melanie u is fa sho like an ummm a Coffee table ;) ) yeeeee lmaoo";FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";LittleMelss;1;FALSE;NA;NA
882;"lmfao!!!@bryanlaca: nahhh Melanie u is fa sho like an ummm a Coffee table ;) ) yeeeee lmaoo";FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";LittleMelss;1;FALSE;NA;NA
883;Alone like a stone : http://t.co/7pLMP94ZWK;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://foursquare.com"" rel=""nofollow"">foursquare</a>";ziyangyangtan;0;FALSE;NA;NA
884;RT @MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renovation show on HGTV.;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://ubersocial.com"" rel=""nofollow"">UberSocial for BlackBerry</a>";Train5829;0;FALSE;NA;NA
885;@NoraRWBY Good girl. *walks off to refill coffee*;FALSE;NoraRWBY;8/9/2013;02:32;FALSE;365660;365662;1326173040;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";GazKuro;0;FALSE;NA;NA
886;#COFFEE, COFFEE, COFFEE Books by Cal Orey the #Author - Boomerang Books http://t.co/G4GQXLJWoU via @boomerangbooks;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/tweetbutton"" rel=""nofollow"">Tweet Button</a>";CallieSimon;0;FALSE;NA;NA
887;Nothing beats a cup of coffee at 0630;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";hameds27;0;FALSE;NA;NA
888;RT @emilyisrvd: I don't even want to go to college I just want to drink some iced coffee, go to a concert, and die at this point;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";ashley_morgan88;1;FALSE;NA;NA
889;On my way for coffee. Slept all day. That meeting screwed my sleep up!;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";MJacobs_24;0;FALSE;NA;NA
890;RT @UberFacts: There are more than 1,000 chemicals in a single cup of coffee. Of these, only 26 have been tested and half caused cancer in ?;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";Daark_Kniiight;1600;FALSE;NA;NA
891;Evening coffee and homemade chocolate chip cookies, it just doesn't get better.;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Colonel_Reb_TFM;1;FALSE;NA;NA
892;RT @kikihbuu: The kind of girl who likes over sized shirts and coffee;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";jocelyn_israel;9;FALSE;NA;NA
893;?@_LadyBoners: Coffee anyone? http://t.co/z7d050ucvt? why doesn't anyone ever serve me coffee like this?;FALSE;_LadyBoners;8/9/2013;02:32;FALSE;365306;365662;567666620;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";MorganMcVeyyy;0;FALSE;NA;NA
894;Coffee;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://ubersocial.com"" rel=""nofollow"">UberSocial for BlackBerry</a>";inkadeiraa;0;FALSE;NA;NA
895;I want a coffee coolatta so bad;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";TrendSettin_Dez;0;FALSE;NA;NA
896;I have not reached my evening goals... I am, however, sitting on the back deck drinking coffee.;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://www.tweetcaster.com"" rel=""nofollow"">TweetCaster for Android</a>";Jamberta;0;FALSE;NA;NA
897;early morning coffee is delicious. hhhh;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://www.tweetcaster.com"" rel=""nofollow"">TweetCaster for Android</a>";chodel_berkarat;0;FALSE;NA;NA
898;Cup of coffee makes everything better .;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";H_dalton22;0;FALSE;NA;NA
899;RT @TheScientistLLC: Where do scientists rank among coffee-drinking professionals? http://t.co/7lPILWIXuh;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;web;angberna;20;FALSE;NA;NA
900;Just staring at everyone having Bbq chicken noodle. Tummy acting up : ( only drinks coffee.;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://ubersocial.com"" rel=""nofollow"">UberSocial for BlackBerry</a>";zalyazid;0;FALSE;NA;NA
901;RT @Chuck_Criss: If you're ever eating Cinnamon Toast Crunch, pour the remaining cereal milk into your coffee. You're welcome.;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";liligoats;125;FALSE;NA;NA
902;RT @ninethreeseven: Got myself a treat for work: cold brew coffee concentrate from @TheMinOfCoffee on Elgin :) #ottawa http://t.co/ABbbcXJ0?;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";splendid_events;2;FALSE;NA;NA
903;@jadealferez well if it does, there are plenty of other coffee shops in sacramento muaha;FALSE;jadealferez;8/9/2013;02:32;FALSE;365660;365662;1592634300;"<a href=""http://www.twitter.com"" rel=""nofollow"">Twitter for BlackBerry</a>";The_Concepcion;0;FALSE;NA;NA
904;RT @DaniCim: some dude just informed me that coffee has 200 chemicals in it and the 26 that were tested cause cancer as he poured himself?;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://blackberry.com/twitter"" rel=""nofollow"">Twitter for BlackBerry?</a>";mirra_19;121;FALSE;NA;NA
905;Not bad, easy to drink. Nice coffee flavor. Go Chargers. ? Drinking a Blue Bridge Coffee Stout @ Ty Lewallen ? http://t.co/LHBFq4cLJN #photo;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://untappd.com"" rel=""nofollow"">Untappd</a>";SWTexan39;0;FALSE;NA;NA
906;RT @StampedeBlue: Cold ?@MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renova?;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://www.tweetdeck.com"" rel=""nofollow"">TweetDeck</a>";BFTB_Chargers;4;FALSE;NA;NA
907;RT @courtneytargett: hot coffee in the morning, wearing my boyfriend's sweatshirt, boots, leggings, cheering, football, crisp mornings. ?;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";alexandriamacae;2;FALSE;NA;NA
908;?@MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop or hosting a renovation show on HGTV.? He really does;FALSE;MoveTheSticks;8/9/2013;02:32;FALSE;365661;365662;265758015;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";dhayes623;0;FALSE;NA;NA
909;RT @FunnyViness: Drinking coffee when I was a child vs. Drinking coffee now https://t.co/e5bx0EDy6z;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";Rissahh_;194;FALSE;NA;NA
910;11 hour work day + a night of studying for summer finals = coffee at 9:30 http://t.co/dPCyO99Act;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";EmSenske;0;FALSE;NA;NA
911;RT @MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renovation show on HGTV.;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";seattlematt32;42;FALSE;NA;NA
912;My blood type is coffee. - http://t.co/kqGSQUyvQN;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://www.tumblr.com/"" rel=""nofollow"">Tumblr</a>";Pablooski;0;FALSE;NA;NA
913;@Scanachi Pronounced koh-pee - Kopi is Indonesian for coffee... and the name of our fave cafe in Chicago!;FALSE;Scanachi;8/9/2013;02:32;FALSE;365661;365662;21716260;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";highchairkings;0;FALSE;NA;NA
914;I want this!!! #coffee #icecubes #coolbeans #punny http://t.co/sLg1jdj4TG;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";jelenasaurus;1;FALSE;NA;NA
915;RT @MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renovation show on HGTV.;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Juicy_John23;42;FALSE;NA;NA
916;RT @MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renovation show on HGTV.;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://www.tweetdeck.com"" rel=""nofollow"">TweetDeck</a>";BossHogg6;42;FALSE;NA;NA
917;I miss Georgia coffee so much;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";KraftyThings;0;FALSE;NA;NA
918;Omelette with toast. @ Real Coffee And Tea Cafe http://t.co/Ofuw41TJ4i;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";XyzaPaola;0;FALSE;NA;NA
919;RT @UberFacts: There are more than 1,000 chemicals in a single cup of coffee. Of these, only 26 have been tested and half caused cancer in ?;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";scottymcnee613;1600;FALSE;NA;NA
920;/opens the umbrella/ ah, a cup of coffee will do. /look up to the sky/ hug herself/;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://www.tweetcaster.com"" rel=""nofollow"">TweetCaster for Android</a>";LS_Jinri;0;FALSE;NA;NA
921;Great day with Coffee Friends in Kona... #LuckyWeGrowCoffee ...C/ w/ 3 others) http://t.co/5hLFN6VrLm;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://foursquare.com"" rel=""nofollow"">foursquare</a>";PilianiKopeFarm;0;FALSE;NA;NA
922;@MeganPaige4l easy, we were pretty much going straight on the street right next to NoDa. I will buy you coffee there bc it's perfect;FALSE;MeganPaige4l;8/9/2013;02:32;FALSE;365661;365662;75911707;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";Inktensity;0;FALSE;NA;NA
923;The whole purpose of places lyk Starbucks is for ppl wid no decision-making ability whatsoever to mk 6 decisions jst to buy 1 cup of coffee;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;web;appuzzled;0;FALSE;NA;NA
924;Sushi, coffee, and frozen yogurt. Literally the perfect date. #inlike;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";CollinLouie;0;FALSE;NA;NA
925;Im noticing a pattern;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";Katie_Coffee;0;FALSE;NA;NA
926;Cold ?@MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renovation show on HGTV.?;FALSE;MoveTheSticks;8/9/2013;02:32;FALSE;365661;365662;265758015;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";StampedeBlue;4;FALSE;NA;NA
927;I've never had a cup of coffee. Or more than a sip. I don't like it. #ConfessYourUnpopularOpinion;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";drgoddess;0;FALSE;NA;NA
928;I want in and out and iced coffee is that so much to ask for;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Brontedeione;0;FALSE;NA;NA
929;@kunjal23 recently read they stopped tea coffee vending machines at airport so buy coffee at costa;FALSE;kunjal23;8/9/2013;02:32;FALSE;365661;365662;41072154;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";ManishManke;0;FALSE;NA;NA
930;RT @KekeAndMoreKeke: Y'all females be acting so dumb for a nigga you better wake up and smell the coffee;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";Pardon_MyTweets;5;FALSE;NA;NA
931;Barista made my coffee wrong and still gave me both anyway #Starbucks #coffee #caffeine #upallnight http://t.co/iKCNwO8F6t;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";ErrrrkaMarie;0;FALSE;NA;NA
932;RT @MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renovation show on HGTV.;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://www.echofon.com/"" rel=""nofollow"">Echofon</a>";Ray_ofSunShines;42;FALSE;NA;NA
933;I can never decide if beer snobs or coffee snobs are the most insufferable people. Wah, I had to drink Coors or boohoo instant coffee.;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://www.twitter.com"" rel=""nofollow"">Twitter for BlackBerry</a>";swansonm88;0;FALSE;NA;NA
934;"@sweetpeas4me 4 toasting, coffee....I know I'm missing something here, but you get the idea; I GOT SOME BAKING TO DO! lol";FALSE;sweetpeas4me;8/9/2013;02:32;FALSE;364804;365662;65687210;web;Myheartsathome;0;FALSE;NA;NA
935;One good coffee The views not to bad either http://t.co/adoKicQdmB;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Scunnyoz13;0;FALSE;NA;NA
936;@Atomicdust what a great idea doing a pop up coffee shop!;FALSE;Atomicdust;8/9/2013;02:32;FALSE;365097;365662;44286213;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";amberalesi;0;FALSE;NA;NA
937;@ActualGentlemen LOL The word coffee makes me drool already lol...I think I gotta get myself a cup O.O;FALSE;ActualGentlemen;8/9/2013;02:32;FALSE;365661;365662;750552960;web;Tears_Of_Dragon;0;FALSE;NA;NA
938;RT @MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renovation show on HGTV.;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""https://mobile.twitter.com"" rel=""nofollow"">Mobile Web (M2)</a>";shadowunderfoot;42;FALSE;NA;NA
939;Eating all this coffee icecream so thirsty;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";sonizle_;0;FALSE;NA;NA
940;@MalakAbed @Harvard I drink coffee my self as something warm not to weak me up is up to the person why he is drinking coffee for my opinion;FALSE;MalakAbed;8/9/2013;02:32;FALSE;365657;365662;339496478;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";2Abbis;0;FALSE;NA;NA
941;I want some coffee ice cream right now;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Butkus_Matthew;1;FALSE;NA;NA
942;#vegan blueberry lime coffee cake. http://t.co/WeGXYsidOv;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";HardFeelingsx;0;FALSE;NA;NA
943;frank lost his favorite coffee cup and he's visibally distraught;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/devices"" rel=""nofollow"">txt</a>";littleaamatoo;0;FALSE;NA;NA
944;@Ariana_privx It had alot of sugar plus the coffee;FALSE;Ariana_privx;8/9/2013;02:32;FALSE;365661;365662;1600990621;web;JxstinBieberz;0;FALSE;NA;NA
945;@HannahAkil yeah lol go to my website! It's instant healthy coffee! All you need is hot water.;FALSE;HannahAkil;8/9/2013;02:32;FALSE;365661;365662;811806998;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Higdaddy4;0;FALSE;NA;NA
946;RT @Luke5SOS: just put chocolate milk in the top of my coffee, I think I just changed history;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";omjdirection;11349;FALSE;NA;NA
947;RT @TheMindBlowing: Fat Burning Foods: Grapefruit. Watermelon. Berries. Hot Peppers. Celery. Greek Yogurt. Eggs. Fish. Green Tea. Coffee. ?;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";angelakatryss;926;FALSE;NA;NA
948;@RodKirby BOCI, Business over Coffee International, does social media training weekly!;FALSE;RodKirby;8/9/2013;02:32;FALSE;345203;365662;18891799;"<a href=""http://twitter.com/tweetbutton"" rel=""nofollow"">Tweet Button</a>";LorettaMcNary;0;FALSE;NA;NA
949;I want iced coffee omfg;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";shxo_;0;FALSE;NA;NA
950;#RAC1067 I vote for Coffee Shop by CNBLUE;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";CNcabgt;0;FALSE;NA;NA
951;RT @FrankIero: hahaha @jamiasan :*gives Barista our Starbucks order* Barista: coffee? @jamiasan : yes, isn't this is a coffee store?;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;web;Burymeinblack1;739;FALSE;NA;NA
952;#confessyourunpopularopinion why the f is there a hype about Starbucks. It's a coffee shop not God's child.;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";_Claire_Ledlow;1;FALSE;NA;NA
953;RT @DaniCim: some dude just informed me that coffee has 200 chemicals in it and the 26 that were tested cause cancer as he poured himself?;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";JordynLittle;121;FALSE;NA;NA
954;totally wowed by the talent at the @TBDTheatre Coffee House tonight. Great event!;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;web;glennask;0;FALSE;NA;NA
955;Today stats: One follower, No unfollowers and followed one person via http://t.co/AdYpmhghAJ;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://unfollowers.me"" rel=""nofollow"">Unfollowers.me</a>";CashLife_Coffee;0;FALSE;NA;NA
956;Sorry guyz ill switch back to talking about my coffee drinks now.;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";kittehpieKCCO;0;FALSE;NA;NA
957;RT @srconrad64: Doesn't get better than this! @STLBiz #MIBW honors super @triciazf @Kaldis_Coffee team with @StJoeAngels http://t.co/fdU8VK?;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://tapbots.com/tweetbot"" rel=""nofollow"">Tweetbot for iOS</a>";Kaldis_Coffee;3;FALSE;NA;NA
958;@jzimmermann11 @DerekAggie06 Someone needs to. I can't, too giddy. Had bourbon. Drinking coffee now....;FALSE;jzimmermann11;8/9/2013;02:32;FALSE;365661;365662;178873387;web;thacktor;0;FALSE;NA;NA
959;?@Tiny_Princess28: I drink too much coffee?;FALSE;Tiny_Princess28;8/9/2013;02:32;FALSE;365650;365662;1281508597;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";__catttiie;0;FALSE;NA;NA
960;2nd coffee today;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";LClarkee;0;FALSE;NA;NA
961;Do you prefer tea, coffee or cocoa? ? Coffee http://t.co/tuiCGkOyxS;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://ask.fm/"" rel=""nofollow"">Ask.fm</a>";RealBasedNigga;0;FALSE;NA;NA
962;RT @MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renovation show on HGTV.;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";30AcreFortress;42;FALSE;NA;NA
963;Coffee dates with @kristenayersss are always the best and I'm always sad for them to end.;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Lo_Rowe;0;FALSE;NA;NA
964;@MoveTheSticks: Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renovation show on HGTV@KaneWhitehurst;FALSE;MoveTheSticks;8/9/2013;02:32;FALSE;365661;365662;265758015;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Jack_Tomick;0;FALSE;NA;NA
965;RT @MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renovation show on HGTV.;FALSE;NA;8/9/2013;02:32;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";chandlerprice;42;FALSE;NA;NA
966;Good morning sukabumi #coffee #love #morning #hometown #latepost http://t.co/YPIKo7RVtw;FALSE;NA;8/9/2013;02:31;FALSE;NA;365662;NA;"<a href=""http://instagram.com"" rel=""nofollow"">Instagram</a>";ely_puji;0;FALSE;NA;NA
967;RT @jessyroberts13: I think I want a cup of coffee #JudgeMe;FALSE;NA;8/9/2013;02:31;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";DakotaMcMillan1;3;FALSE;NA;NA
968;RT @MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renovation show on HGTV.;FALSE;NA;8/9/2013;02:31;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";dtreeves;42;FALSE;NA;NA
969;@mal_ingerer @chriskkenny won't get a coffee there then.;FALSE;mal_ingerer;8/9/2013;02:31;FALSE;365661;365662;1043529692;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";wallrad;0;FALSE;NA;NA
970;Tuna sandwich and caramel machiato for breakfast.. ? https://t.co/iAigePJw0j;FALSE;NA;8/9/2013;02:31;FALSE;NA;365662;NA;"<a href=""https://path.com/"" rel=""nofollow"">Path</a>";shandytresna;0;FALSE;NA;NA
971;No coffee tonight...;FALSE;NA;8/9/2013;02:31;FALSE;NA;365662;NA;"<a href=""http://www.iemoji.com"" rel=""nofollow"">iEmoji</a>";niraxuero;0;FALSE;NA;NA
972;RT ?@MoveTheSticks: Charlie Whitehurst looks like he should be working at a coffee shop in Portland or hosting a renovation show on HGTV.?;FALSE;MoveTheSticks;8/9/2013;02:31;FALSE;365661;365662;265758015;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";DMercadette;0;FALSE;NA;NA
973;RFTRFT @YoungGunna28x: I want some coffee;FALSE;NA;8/9/2013;02:31;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";lucifers_vo;0;FALSE;NA;NA
974;?@icamagpantay: Coffee shop Bap?xD Jongup was here~~~ http://t.co/ynNKKTpmcs?;FALSE;icamagpantay;8/9/2013;02:31;FALSE;359019;365662;210719474;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";ChezckaLovesDj;0;FALSE;NA;NA
975;Vintage Coffee Pot Image http://t.co/nEmx1S9PjK;FALSE;NA;8/9/2013;02:31;FALSE;NA;365662;NA;"<a href=""http://pinterest.com"" rel=""nofollow"">Pinterest</a>";VintageCrafts;0;FALSE;NA;NA
976;I need coffee in my life rn.;FALSE;NA;8/9/2013;02:31;FALSE;NA;365662;NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";sexy_soup;0;FALSE;NA;NA
977;I think I want a cup of coffee #JudgeMe;FALSE;NA;8/9/2013;02:31;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";jessyroberts13;3;FALSE;NA;NA
978;RT @UberFacts: There are more than 1,000 chemicals in a single cup of coffee. Of these, only 26 have been tested and half caused cancer in ?;FALSE;NA;8/9/2013;02:31;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";deancartner;1600;FALSE;NA;NA
979;"?If this is coffee, please bring me some tea; but if this is tea, please bring me some coffee.? ~ Abraham Lincoln";FALSE;NA;8/9/2013;02:31;FALSE;NA;365662;NA;web;RemonaWelch;0;FALSE;NA;NA
980;RT @ZayKennedy69: Hoochies better be happy thy got coffee from me today;FALSE;NA;8/9/2013;02:31;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Hannah_Ayeee;1;FALSE;NA;NA
981;RT @Hajabeg: I remember when I stalked you guys in a coffee shop Yeap, great speech. RT @SkyWarrior108: @/Hajabeg Is it Melise's wedding?;FALSE;NA;8/9/2013;02:31;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";HappyAngel103;1;FALSE;NA;NA
982;@RobertZillaSD it's their loss leader. They make money on the coffee. :);FALSE;RobertZillaSD;8/9/2013;02:31;FALSE;365661;365662;14930878;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";YoBeej;0;FALSE;NA;NA
983;Fernwood Coffee http://t.co/shQKZZdApc Site: The Dieline | #UberPatrol;FALSE;NA;8/9/2013;02:31;FALSE;NA;365662;NA;"<a href=""http://uberpatrol.com"" rel=""nofollow"">Uber Patrol</a>";UberPatrol;0;FALSE;NA;NA
984;@BurkieYCP Will you still try to turn every coffee shop into your own personal Lord Of The Flies?;FALSE;BurkieYCP;8/9/2013;02:31;FALSE;365658;365662;305266391;"<a href=""http://ubersocial.com"" rel=""nofollow"">UberSocial for Android</a>";OlegKvasha;0;FALSE;NA;NA
985;@SGanert crying over coffee... Haha no;FALSE;SGanert;8/9/2013;02:31;FALSE;365661;365662;315885581;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";ashton_grace23;0;FALSE;NA;NA
986;Wait. Hasselhoff ... Cumbies Iced Coffee. .. What's happening?;FALSE;NA;8/9/2013;02:31;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Thalia_Patra;0;FALSE;NA;NA
987;RT @DaniCim: some dude just informed me that coffee has 200 chemicals in it and the 26 that were tested cause cancer as he poured himself?;FALSE;NA;8/9/2013;02:31;FALSE;NA;365662;NA;"<a href=""http://twitter.com/#!/download/ipad"" rel=""nofollow"">Twitter for iPad</a>";EduaMares;121;FALSE;NA;NA
988;Craving Coffee and #Biscotti cookies right about now. #Dippin;FALSE;NA;8/9/2013;02:31;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";AmandaPerezFan;0;FALSE;NA;NA
989;Waiting for Brian to bring me coffee;FALSE;NA;8/9/2013;02:31;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";nicolevm1;0;FALSE;NA;NA
990;@Wolfbane_Blood *he chuckles softly* not much of a coffee drinker, besides I was just going with the instinct to help, no need to thank me~;FALSE;Wolfbane_Blood;8/9/2013;02:31;FALSE;365661;365662;1390716212;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";LeoDark_night;0;FALSE;NA;NA
991;I need to learn how to make coffee, I rely on Starbucks too much.;FALSE;NA;8/9/2013;02:31;FALSE;NA;365662;NA;web;MahreeyuuhAshly;0;FALSE;NA;NA
992;RT @whittneestewart: I'm addicted to coffee rush;FALSE;NA;8/9/2013;02:31;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";xo_Jennaaa;2;FALSE;NA;NA
993;RT @kitkatkatie29: Having coffee this late was a terrible idea @Bay_Wini;FALSE;NA;8/9/2013;02:31;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/iphone"" rel=""nofollow"">Twitter for iPhone</a>";Bay_Wini;1;FALSE;NA;NA
994;Coffee Break | By Stephen Criscolo http://t.co/NgNPj7YbtH http://t.co/KVzrY4mEp5;FALSE;NA;8/9/2013;02:31;FALSE;NA;365662;NA;"<a href=""http://www.facebook.com/twitter"" rel=""nofollow"">Facebook</a>";tunaisfresh;0;FALSE;NA;NA
995;RT @UberFacts: There are more than 1,000 chemicals in a single cup of coffee. Of these, only 26 have been tested and half caused cancer in ?;FALSE;NA;8/9/2013;02:31;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";ironmiggs;1600;FALSE;NA;NA
996;Etsy heartbreak on a daily basis: No, I don't need that vintage coffee pot or that handmade terrarium but I want them both and that scarf;FALSE;NA;8/9/2013;02:31;FALSE;NA;365662;NA;web;morgmacd;0;FALSE;NA;NA
997;"@KatrynaCarvalh1 that coffee stuff yess <3 she said she couldn't find the bullet but she didn't even try. My dad went and got it for me :) ) )";FALSE;KatrynaCarvalh1;8/9/2013;02:31;FALSE;365661;365662;500315108;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";haleymaay;0;FALSE;NA;NA
998;How often do you drink coffee? ? Almost everyday when school's in session. http://t.co/tBZkbvyg1C;FALSE;NA;8/9/2013;02:31;FALSE;NA;365662;NA;"<a href=""http://ask.fm/"" rel=""nofollow"">Ask.fm</a>";sarahgriffinnn;0;FALSE;NA;NA
999;First morning coffee after Ramadan http://t.co/ZEu6cl9qGY;FALSE;NA;8/9/2013;02:31;FALSE;NA;365662;NA;"<a href=""http://twitter.com/download/android"" rel=""nofollow"">Twitter for Android</a>";abzsz;0;FALSE;NA;NA