-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnba-convs.csv
We can't make this file beautiful and searchable because it's too large.
3166 lines (2722 loc) · 848 KB
/
nba-convs.csv
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
,head,from,to,tweets,size,dates,names,usernames
623,Well this is going to be a loooonngggg day... what will you be doing while waiting for the #NBASchedule to come out?pic.twitter.com/YYCoU9WODM,Hornets,DallasMavs,"['Well this is going to be a loooonngggg day... what will you be doing while waiting for the #NBASchedule to come out?pic.twitter.com/YYCoU9WODM', ""@hornets Good question. Today is NBA New Year's, but there's no Rose Bowl to watch..."", ""@ATLHawks we'll be patiently twiddling our thumbs over here... Maybe a game of tic tac toe or hangman is in order?"", '@hornets @ATLHawks We are down!', '@dallasmavs @ATLHawks I like where this is going!', '@hornets @dallasmavs\n\n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _\n\nCategory: Phrase', '@ATLHawks is the @dallasmavs vs @hornets? You first Charlotte! #GameON', '@dallasmavs @hornets Can we enforce a timer on Charlotte?', '@ATLHawks @hornets Whilke we wait….http://youtu.be/rTyN-vvFIkE\xa0', '@dallasmavs @hornets But this clip is only an hour. Are you banking on Charlotte playing before then?', '@ATLHawks Well if @hornets don’t answer within the hour I say we wake up @nyknicks or the @OrlandoMagic!', ""@dallasmavs @ATLHawks SORRY!!! We're here we're here!!! S?"", '@hornets @dallasmavs \n\n_ _ _ _ _ _ _ _ _ S_ _ _ _ _ _ _ _ _ _\n\nYour turn Mavs!', '@ATLHawks @hornets E?', ""@dallasmavs @hornets \n\n_E _ _ _ _ _ _E S_ _ E _ _ _ E _ _ _\n\nYou're up Hornets!"", ""@ATLHawks @dallasmavs oh man Mavs you're all over the board... R!"", ""@hornets @dallasmavs \n\n_E _ _ _ _ _ _E S_ _ E _ _ _ E _ _ _\n\nNo 'R's. Charlotte has a head."", '@ATLHawks @hornets How about an “H”? #NBASchedule', '@dallasmavs @hornets \n\n_E _ _ _ _ _ HE S_ HE _ _ _ E _ _ _\n\nTwo more for Dallas. Can Charlotte erase the halftime deficit?', '@ATLHawks @hornets Is this a 3 game series?', ""@dallasmavs @ATLHawks you're on! Ready to get swept?!"", '@hornets @ATLHawks About as ready as you getting a single letter! :)', '@dallasmavs @ATLHawks oh bring it...', '@hornets @dallasmavs \n\n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _\n\nCategory: Person', ""@ATLHawks @dallasmavs Let's get an A"", ""@hornets @dallasmavs \n\n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _\n\nWe're not in Canada Charlotte...no 'A's here."", '@ATLHawks @dallasmavs WHAT??!', '@hornets @ATLHawks our turn! Can we get an R?', '@dallasmavs @hornets \n\n_ _ _ _ _ _ _ _ _ _ _ _ _ _ R\n\nDallas is on the board!', ""@ATLHawks @dallasmavs if it's Mike Budenholzer we're not taking credit! Fan just tweeted it ... If it's that's not it, give us an arm"", ""@hornets @dallasmavs Dang...we made it too easy! Okay...here's a tougher one:\n\n_ _ _ _ _ _ _ _ _\n\nCategory: Thing\n\nYou're up Hornets!"", ""@ATLHawks @dallasmavs let's go with a T!"", ""@hornets @dallasmavs \n\n_ _ _ _ _ _ _ _ _\n\nNo 'T's. Dallas?"", '@ATLHawks @dallasmavs argghhh!', '@hornets @ATLHawks going with our last guess, R??', '@dallasmavs @hornets \n\n_ _ _ _ _ R _ _ _\n\nMavs still perfect on letters. What say you, Hornets?', ""@ATLHawks @dallasmavs we're buying a vowel. E."", ""@hornets @dallasmavs \n\n_ _ _ _ ER _ _ _\n\nThat's Wheel of Fortune lingo...but we'll honor it. Mavs up."", '@ATLHawks @hornets can we get a W?', '@dallasmavs @hornets \n\n_ _ _ _ ER W _ _\n\nRisky! But the perfect morning continues.', ""@ATLHawks @dallasmavs dang Mavs... who's over there feeding you letters?! We guess N"", '@hornets @dallasmavs \n\n_ _ N _ ER W _ _\n\nNice answer by Charlotte...looking to win the close out game of this Best-of-Three!', '@ATLHawks @hornets the pressure!! We\'re going with an ""O""', ""@dallasmavs @hornets \n\n_ _ N _ ER W _ _\n\nNolan Ryan would be disappointed. The perfect game is over. No 'O's"", '@ATLHawks @hornets ', '@dallasmavs @ATLHawks rules clarification: if we solve do we automatically lose or do we get a body part?', '@hornets @dallasmavs Body part. Losing is too harsh.', ""@ATLHawks @dallasmavs Hoorah! Since Dikembe Mutombo doesn't fit, we'd like to guess FINGER WAG"", ""@hornets @dallasmavs You're not going to have to worry about body parts because YOU JUST WON THE SERIES!!!"", '@ATLHawks You taking on the @hornets next? We will mod the series.', ""@dallasmavs @hornets We're game if the Hornets want to put the belt on the line."", '@ATLHawks @dallasmavs bring it...pic.twitter.com/2x2uy3XFrj']",52,"['13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014']","['Charlotte Hornets', 'Atlanta Hawks', 'Charlotte Hornets', 'Dallas Mavericks', 'Charlotte Hornets', 'Atlanta Hawks', 'Dallas Mavericks', 'Atlanta Hawks', 'Dallas Mavericks', 'Atlanta Hawks', 'Dallas Mavericks', 'Charlotte Hornets', 'Atlanta Hawks', 'Dallas Mavericks', 'Atlanta Hawks', 'Charlotte Hornets', 'Atlanta Hawks', 'Dallas Mavericks', 'Atlanta Hawks', 'Dallas Mavericks', 'Charlotte Hornets', 'Dallas Mavericks', 'Charlotte Hornets', 'Atlanta Hawks', 'Charlotte Hornets', 'Atlanta Hawks', 'Charlotte Hornets', 'Dallas Mavericks', 'Atlanta Hawks', 'Charlotte Hornets', 'Atlanta Hawks', 'Charlotte Hornets', 'Atlanta Hawks', 'Charlotte Hornets', 'Dallas Mavericks', 'Atlanta Hawks', 'Charlotte Hornets', 'Atlanta Hawks', 'Dallas Mavericks', 'Atlanta Hawks', 'Charlotte Hornets', 'Atlanta Hawks', 'Dallas Mavericks', 'Atlanta Hawks', 'Dallas Mavericks', 'Charlotte Hornets', 'Atlanta Hawks', 'Charlotte Hornets', 'Atlanta Hawks', 'Dallas Mavericks', 'Atlanta Hawks', 'Charlotte Hornets']","['@hornets', '@ATLHawks', '@hornets', '@dallasmavs', '@hornets', '@ATLHawks', '@dallasmavs', '@ATLHawks', '@dallasmavs', '@ATLHawks', '@dallasmavs', '@hornets', '@ATLHawks', '@dallasmavs', '@ATLHawks', '@hornets', '@ATLHawks', '@dallasmavs', '@ATLHawks', '@dallasmavs', '@hornets', '@dallasmavs', '@hornets', '@ATLHawks', '@hornets', '@ATLHawks', '@hornets', '@dallasmavs', '@ATLHawks', '@hornets', '@ATLHawks', '@hornets', '@ATLHawks', '@hornets', '@dallasmavs', '@ATLHawks', '@hornets', '@ATLHawks', '@dallasmavs', '@ATLHawks', '@hornets', '@ATLHawks', '@dallasmavs', '@ATLHawks', '@dallasmavs', '@hornets', '@ATLHawks', '@hornets', '@ATLHawks', '@dallasmavs', '@ATLHawks', '@hornets']"
2404,"Hey #ripcity, will you be our valentine for the 48th year in a row?pic.twitter.com/Fulo348SLg",MemGrizz,trailblazers,"['Hey #ripcity, will you be our valentine for the 48th year in a row?pic.twitter.com/Fulo348SLg', ' @sixerspic.twitter.com/g7it48YXqY', ' @Buckspic.twitter.com/Gl2lQBYKKI', ' @chicagobullspic.twitter.com/XZMzNwVgzw', ""It's true @cavspic.twitter.com/IGdCPZJJEq"", ' @celticspic.twitter.com/7Fw3sNMOGp', ' @LAClipperspic.twitter.com/w8trke15nm', ' @memgrizzpic.twitter.com/ppOsAavJcd', ' @ATLHawkspic.twitter.com/cgsAcmKR3V', ' @MiamiHEATpic.twitter.com/fbmvz7sleA', ' @hornetspic.twitter.com/fYiGsdDuqd', ' @utahjazzpic.twitter.com/zZDnnTDtdJ', ' @SacramentoKingspic.twitter.com/aK3xGCEdM2', '\[email protected]/nmSzWX6uEg', ' @Lakerspic.twitter.com/A1U7JZeqG7', ' @OrlandoMagicpic.twitter.com/7NaWFFwZzb', ' @dallasmavspic.twitter.com/2a3EXymQk5', ' @BrooklynNetspic.twitter.com/oEMCRRrYKh', ' @nuggetspic.twitter.com/56ubFpLt3Y', ' @Pacerspic.twitter.com/68Jn0RtpnD', 'Get it? @PelicansNBApic.twitter.com/twIX1zGH3L', ' @DetroitPistonspic.twitter.com/6vaxLVlY2D', ' @Raptorspic.twitter.com/D5Z0mufP4z', ' @HoustonRocketspic.twitter.com/ouKBr2h5ih', ' @spurspic.twitter.com/QXGxAgG1EG', ' @Sunspic.twitter.com/RlJ2WJUSCq', ""We're thunderstruck. @okcthunderpic.twitter.com/tEg0SHxGCn"", 'Swipe left', 'sheesh. Tough crowd!']",29,"['Feb 14 2018', 'Feb 14 2018', 'Feb 14 2018', 'Feb 14 2018', 'Feb 14 2018', 'Feb 14 2018', 'Feb 14 2018', 'Feb 14 2018', 'Feb 14 2018', 'Feb 14 2018', 'Feb 14 2018', 'Feb 14 2018', 'Feb 14 2018', 'Feb 14 2018', 'Feb 14 2018', 'Feb 14 2018', 'Feb 14 2018', 'Feb 14 2018', 'Feb 14 2018', 'Feb 14 2018', 'Feb 14 2018', 'Feb 14 2018', 'Feb 14 2018', 'Feb 14 2018', 'Feb 14 2018', 'Feb 14 2018', 'Feb 14 2018', 'Feb 14 2018', 'Feb 14 2018']","['Trail Blazers', 'Trail Blazers', 'Trail Blazers', 'Trail Blazers', 'Trail Blazers', 'Trail Blazers', 'Trail Blazers', 'Trail Blazers', 'Trail Blazers', 'Trail Blazers', 'Trail Blazers', 'Trail Blazers', 'Trail Blazers', 'Trail Blazers', 'Trail Blazers', 'Trail Blazers', 'Trail Blazers', 'Trail Blazers', 'Trail Blazers', 'Trail Blazers', 'Trail Blazers', 'Trail Blazers', 'Trail Blazers', 'Trail Blazers', 'Trail Blazers', 'Trail Blazers', 'Trail Blazers', 'OKC THUNDER', 'Memphis Grizzlies']","['@trailblazers', '@trailblazers', '@trailblazers', '@trailblazers', '@trailblazers', '@trailblazers', '@trailblazers', '@trailblazers', '@trailblazers', '@trailblazers', '@trailblazers', '@trailblazers', '@trailblazers', '@trailblazers', '@trailblazers', '@trailblazers', '@trailblazers', '@trailblazers', '@trailblazers', '@trailblazers', '@trailblazers', '@trailblazers', '@trailblazers', '@trailblazers', '@trailblazers', '@trailblazers', '@trailblazers', '@okcthunder', '@memgrizz']"
2258,"Shout out @Sixers @trailblazers @suns & @ATLHawks for a fun night on Twitter
Yes, we're talking about #NBAMusicians:http://bit.ly/NBAMusicians ",ATLHawks,trailblazers,"[""Shout out @Sixers @trailblazers @suns & @ATLHawks for a fun night on Twitter\n\nYes, we're talking about #NBAMusicians:http://bit.ly/NBAMusicians\xa0"", '@warriors @Sixers @trailblazers @Suns Fun indeed. More nights like those in the future please!', ""@ATLHawks @warriors @Sixers @trailblazers Should be league mandate that we play #HashtagGame at least once a month. Who's got the next one?"", ""@Suns @ATLHawks @warriors @Sixers @trailblazers Can't every day be #HashtagGame day?"", "".@Sixers @ATLHawks @warriors @trailblazers It can be but eventually we're going to get down to #NBAVegetables or #NBAKitchenAppliances."", '@Suns @Sixers @warriors @trailblazers Kale Korver. #NBAVegetables (See, it CAN work)', '.@ATLHawks @Sixers @warriors @trailblazers Gerald Green Beans #NBAVegetables \n\nSee what you made us do.', '@Suns @Sixers @warriors @trailblazerspic.twitter.com/asGAFfkQ2W', '@ATLHawks @Suns @Sixers @warriors @trailblazers cauli-Afflalo-ur.\n\n(Consider this our RSVP to the next game.) #NBAVegetables', '.@denvernuggets @ATLHawks @Sixers @warriors @trailblazers Welcome. Unlike Fight Club, the first rule of #HashtagGame is to talk about it.', '@Suns @denvernuggets @Sixers @warriors @trailblazers Truth! #HashtagGamepic.twitter.com/7x28R6VeyP', '@ATLHawks @Suns @denvernuggets @Sixers @warriors @trailblazers there still room in this party? Our #HashtagGame is up there...', ""@MNTimberwolves @ATLHawks @Suns @denvernuggets @Sixers @warriors @trailblazers Jodie Leeks #NBAVegetables\n\nWe'll show ourselves out"", '@DetroitPistons @MNTimberwolves @Suns @denvernuggets @Sixers @warriors @trailblazerspic.twitter.com/wq6jQQy5eW', '@ATLHawks @DetroitPistons @Suns @denvernuggets @Sixers @warriors @trailblazers you started it... Zach LaBean... #NBAVegetables', '@MNTimberwolves @DetroitPistons @Suns @denvernuggets @Sixers @warriors @trailblazers We blame Phoenix.\n\n(J)Al(apeno) Horford #NBAVegetables', ""Who's up for a real one, #NBASitcoms? @DetroitPistons @MNTimberwolves @ATLHawks @denvernuggets @Sixers @warriors @trailblazers"", ""@Suns @DetroitPistons @MNTimberwolves @denvernuggets @Sixers @warriors @trailblazers Let's Do This! (cc @dallasmavs)"", '.@ATLHawks @Suns @DetroitPistons @MNTimberwolves @denvernuggets @Sixers @warriors @trailblazers Monta Python #NBASitcoms', '@dallasmavs @ATLHawks @DetroitPistons @MNTimberwolves @denvernuggets @Sixers @warriors @trailblazers Nice one Dallas.', '@Suns @ATLHawks @DetroitPistons @MNTimberwolves @denvernuggets @Sixers @warriors @trailblazers 7th Devin #NBASitcoms', ""@dallasmavs @Suns @ATLHawks @DetroitPistons @MNTimberwolves @denvernuggets @warriors @trailblazers Gilliam's Island #NBASitcoms"", '@Sixers @dallasmavs @Suns @ATLHawks @warriors @trailblazers gotta bring in @chicagobulls for this: Derrick Roseanne #NBASitcoms', '.@MNTimberwolves @Sixers @dallasmavs @Suns @ATLHawks @trailblazers @chicagobulls Everybody Loves Draymond #NBASitcomspic.twitter.com/qkNj2kruGy', ""@warriors @MNTimberwolves @Sixers @dallasmavs @ATLHawks @trailblazers @Bucks Guess what's trending in the USA. Yep, #NBASitcoms."", '@Suns @warriors @MNTimberwolves @Sixers @dallasmavs @ATLHawks @trailblazers slow claps everyone', '@Bucks @Suns @warriors @MNTimberwolves @Sixers @dallasmavs @trailblazers Niiiiiiiiiiiiiiiiiiiiice.']",27,"['23 Jul 2014', '23 Jul 2014', '23 Jul 2014', '24 Jul 2014', '24 Jul 2014', '24 Jul 2014', '24 Jul 2014', '24 Jul 2014', '24 Jul 2014', '24 Jul 2014', '24 Jul 2014', '24 Jul 2014', '24 Jul 2014', '24 Jul 2014', '24 Jul 2014', '24 Jul 2014', '24 Jul 2014', '24 Jul 2014', '24 Jul 2014', '24 Jul 2014', '24 Jul 2014', '24 Jul 2014', '24 Jul 2014', '24 Jul 2014', '24 Jul 2014', '24 Jul 2014', '24 Jul 2014']","['Golden State Warriors', 'Atlanta Hawks', 'Phoen1x Šuns', 'Philadelphia 76ers', 'Phoen1x Šuns', 'Atlanta Hawks', 'Phoen1x Šuns', 'Atlanta Hawks', 'Denver Nuggets', 'Phoen1x Šuns', 'Atlanta Hawks', 'Timberwolves', 'Detroit Pistons', 'Atlanta Hawks', 'Timberwolves', 'Atlanta Hawks', 'Phoen1x Šuns', 'Atlanta Hawks', 'Dallas Mavericks', 'Phoen1x Šuns', 'Dallas Mavericks', 'Philadelphia 76ers', 'Timberwolves', 'Golden State Warriors', 'Phoen1x Šuns', 'Milwaukee Bucks', 'Atlanta Hawks']","['@warriors', '@ATLHawks', '@Suns', '@sixers', '@Suns', '@ATLHawks', '@Suns', '@ATLHawks', '@nuggets', '@Suns', '@ATLHawks', '@Timberwolves', '@DetroitPistons', '@ATLHawks', '@Timberwolves', '@ATLHawks', '@Suns', '@ATLHawks', '@dallasmavs', '@Suns', '@dallasmavs', '@sixers', '@Timberwolves', '@warriors', '@Suns', '@Bucks', '@ATLHawks']"
1318,It’s not a #GIFparty unless @zaza27 is there… #justsaying #shotlineblingpic.twitter.com/V1M5Zxq062,WashWizards,Suns,"['It’s not a #GIFparty unless @zaza27 is there… #justsaying #shotlineblingpic.twitter.com/V1M5Zxq062', "".@dallasmavs Did you say #GIFParty? We'll see your Zaza and raise you Mirza.pic.twitter.com/LqLelHlWZy"", "".@Suns @dallasmavs you can't have a #GIFParty without inviting Chuck.pic.twitter.com/mytWPPYgiO"", '.@NBAonTNT @dallasmavspic.twitter.com/Y2CSqdFPv4', '.@Suns @NBAonTNT #GIFpartypic.twitter.com/RIFTbwPgiS', "".@dallasmavs @Suns @NBAonTNT\n\nWhat's a party without balloons!? \n\n#GIFPartypic.twitter.com/u4gopRExDq"", "".@Timberwolves @dallasmavs @NBAonTNT We love balloons. We've got the old school music too. #GIFPartypic.twitter.com/Aig01EG1j3"", '.@Suns @Timberwolves @NBAonTNT Balloons are great. Music is great. We’ll bring the Dirk Dab. #GIFpartypic.twitter.com/r9o77uMPb9', '.@dallasmavs @Suns @Timberwolves @NBAonTNT you guys mind if we turn it up a bit? #GIFPartypic.twitter.com/uzyWaZdxVo', "".@Bucks @dallasmavs @Timberwolves @NBAonTNT We'd prefer if you didn't. #GIFPartypic.twitter.com/E0fLbJqYia"", '.@Suns @Bucks @dallasmavs @Timberwolves @NBAonTNT Walking into the #GIFParty likepic.twitter.com/ZECHS17997', '.@DetroitPistons @Suns @Bucks @dallasmavs @NBAonTNT \n\nWhen everyone comes to the #GIFParty..pic.twitter.com/olH8Kyb8Fh', '@Timberwolves @DetroitPistons @Suns @Bucks @dallasmavs @NBAonTNT hey fam #GIFpartypic.twitter.com/PYlBmJlfle', "".@warriors @Timberwolves @DetroitPistons @Bucks @dallasmavs @NBAonTNT Who's got the best dance moves at #GIFParty?pic.twitter.com/UKtibJe9Zd"", '.@Suns @warriors @Timberwolves @DetroitPistons @dallasmavs @NBAonTNT The Greek Freak cuts a rug at the #GIFPartypic.twitter.com/ZSLiIWBdJH', '.@Bucks @warriors @Timberwolves @DetroitPistons @dallasmavs @NBAonTNT We see Greek Freak and raise you @SunsDancerspic.twitter.com/YJJ4N0kLV9', "".@Suns @Bucks @warriors @Timberwolves @DetroitPistons @dallasmavs @NBAonTNT We'll nominate our guy #GIFPartypic.twitter.com/eNWRamH71D"", '.@WashWizards @Suns @Bucks @warriors @Timberwolves @DetroitPistons @dallasmavs @NBAonTNT Wassup errbody #GIFpartypic.twitter.com/yuqx5xt9uw', '.@Sixers @WashWizards @Bucks @warriors @Timberwolves @DetroitPistons @dallasmavs @NBAonTNT WASSSSSUP!?!?! #GIFPartypic.twitter.com/ZHRJjSadlI', '.@Suns @Sixers @WashWizards @Bucks @warriors @Timberwolves @dallasmavs @NBAonTNT Just in time for the #GIFParty...pic.twitter.com/iDA9TVzv7a', "".@nyknicks @Sixers @WashWizards @Bucks @warriors @Timberwolves @dallasmavs @NBAonTNT Now it's a #GIFparty!pic.twitter.com/Mj9g1c6Ilb"", '.@Suns @nyknicks @Sixers @Bucks @warriors @Timberwolves @dallasmavs @NBAonTNT wait... #tbt AND #GIFparty?pic.twitter.com/cGsWNxSae5', '.@WashWizards @nyknicks @Sixers @Bucks @warriors @Timberwolves @dallasmavs @NBAonTNT Oh yeah! #TBT #GIFpartypic.twitter.com/Qkf02iyVBm', "".@Suns @WashWizards @nyknicks @Sixers @Bucks @warriors @Timberwolves @dallasmavs Flexin' at the #GIFparty pic.twitter.com/blaOU7Rb2H"", '.@HoustonRockets @WashWizards @nyknicks @Sixers @Bucks @warriors @Timberwolves @dallasmavs We call it Bledsoeing.pic.twitter.com/qAEU0JceUt', '.@Suns @HoustonRockets @nyknicks @Sixers @Bucks @warriors @Timberwolves @dallasmavs must be a UK thing... #GIFpartypic.twitter.com/G0sypn5isU']",26,"['3 Mar 2016', '3 Mar 2016', '3 Mar 2016', '3 Mar 2016', '3 Mar 2016', '3 Mar 2016', '3 Mar 2016', '3 Mar 2016', '3 Mar 2016', '3 Mar 2016', '3 Mar 2016', '3 Mar 2016', '3 Mar 2016', '3 Mar 2016', '3 Mar 2016', '3 Mar 2016', '3 Mar 2016', '3 Mar 2016', '3 Mar 2016', '3 Mar 2016', '3 Mar 2016', '3 Mar 2016', '3 Mar 2016', '3 Mar 2016', '3 Mar 2016', '3 Mar 2016']","['Dallas Mavericks', 'Phoen1x Šuns', 'NBA on TNT', 'Phoen1x Šuns', 'Dallas Mavericks', 'Timberwolves', 'Phoen1x Šuns', 'Dallas Mavericks', 'Milwaukee Bucks', 'Phoen1x Šuns', 'Detroit Pistons', 'Timberwolves', 'Golden State Warriors', 'Phoen1x Šuns', 'Milwaukee Bucks', 'Phoen1x Šuns', 'Washington Wizards', 'Philadelphia 76ers', 'Phoen1x Šuns', 'NEW YORK KNICKS', 'Phoen1x Šuns', 'Washington Wizards', 'Phoen1x Šuns', 'Houston Rockets', 'Phoen1x Šuns', 'Washington Wizards']","['@dallasmavs', '@Suns', '@NBAonTNT', '@Suns', '@dallasmavs', '@Timberwolves', '@Suns', '@dallasmavs', '@Bucks', '@Suns', '@DetroitPistons', '@Timberwolves', '@warriors', '@Suns', '@Bucks', '@Suns', '@WashWizards', '@sixers', '@Suns', '@nyknicks', '@Suns', '@WashWizards', '@Suns', '@HoustonRockets', '@Suns', '@WashWizards']"
1029,Anyone enjoying their #NBACereals this morning? We started the day with a bowl of Special Kay pic.twitter.com/DkVMVlDX2O,UtahJazz,DallasMavs,"['Anyone enjoying their #NBACereals this morning? We started the day with a bowl of Special Kay pic.twitter.com/DkVMVlDX2O', 'That sounds like a good one, but have you ever tried Honey Bunches of GOATS? #NBACerealspic.twitter.com/CMNIK0C9WP', 'We’re picking up what you’re putting down… #TBT to Glen Rice Krispies #NBACerealpic.twitter.com/bUFYKsogmk', 'We are getting dunk-a-tized this morning in Orlando #NBACerealspic.twitter.com/SdEo3JPJj2', 'Nothing like starting off your morning with a bowl of Frosted Blakes! #NBACerealspic.twitter.com/2bHDr58cf8', 'We thought we’d add a little #TBT to our #NBACereals this morning!pic.twitter.com/WQx5PcVvMg', 'You guys have cereals, we have Fruit Hoops. #NBACerealspic.twitter.com/EjkWglCUzf', 'How about a cereal classic and a spoonful of KABATUM!\n#NBACerealspic.twitter.com/IjH7CBgQo0', ""You can't start your day without a bowl of Honey Nut Felicios! #NBACerealspic.twitter.com/Wu8G5zQMBb"", 'Gotta love them Zo’s!!! #NBACerealspic.twitter.com/Alhps47Xg9', 'All these #NBACereals are great pic.twitter.com/bUkxcTrFqB', ""But we're gonna have to go with Slam Duncan O's. #NBACerealspic.twitter.com/iKkwRoMwW6"", 'Clearly you guys have never tried Apple Jackson. #NBACerealspic.twitter.com/zrw9HQR2Ro', 'Actually, we have...\n\n#NBACerealspic.twitter.com/iOcmjjXzqw', ""While you guys get all hyped up on sugar, we'll be over here enjoying a classic bowl of HavliChex #NBACerealspic.twitter.com/9hxtvFpfXq"", ""Delicious, but we're sticking with the OG: Cap'n Clutch. #NBACerealspic.twitter.com/iZteE4pLXK"", ""In case you're still hungry, there's always The Greatest (Cereal) of All Time. #NBACerealspic.twitter.com/PdJ2iKwh21"", ""We're on board with cereal for lunch. #NBACerealspic.twitter.com/HPqEWu3tbK"", ""Rudy Pebbles - they're yabba-dabba delicious! #NBACerealspic.twitter.com/lI2UyUpkrd""]",19,"['10 Aug 2017', '10 Aug 2017', '10 Aug 2017', '10 Aug 2017', '10 Aug 2017', '10 Aug 2017', '10 Aug 2017', '10 Aug 2017', '10 Aug 2017', '10 Aug 2017', '10 Aug 2017', '10 Aug 2017', '10 Aug 2017', '10 Aug 2017', '10 Aug 2017', '10 Aug 2017', '10 Aug 2017', '10 Aug 2017', '10 Aug 2017']","['Cleveland Cavaliers', 'Atlanta Hawks', 'Charlotte Hornets', 'Orlando Magic', 'LA Clippers', 'Dallas Mavericks', 'Denver Nuggets', 'Charlotte Hornets', 'Chicago Bulls', 'Charlotte Hornets', 'San Antonio Spurs', 'San Antonio Spurs', 'Sacramen2 Kings', 'Chicago Bulls', 'Boston Celtics', 'Memphis Grizzlies', 'Chicago Bulls', 'Denver Nuggets', 'Utah Jazz']","['@cavs', '@ATLHawks', '@hornets', '@OrlandoMagic', '@LAClippers', '@dallasmavs', '@nuggets', '@hornets', '@chicagobulls', '@hornets', '@spurs', '@spurs', '@SacramentoKings', '@chicagobulls', '@celtics', '@memgrizz', '@chicagobulls', '@nuggets', '@utahjazz']"
1525,@hornets Well hello friends! Thanks for taking some time to chit chat this morning.,Suns,Hornets,"['@hornets Well hello friends! Thanks for taking some time to chit chat this morning.', '@ATLHawks Well hello! And happy game day to you!', ""@hornets Indeed!\n\nYou guys have played in a bunch of close games already. How's the blood pressure after the first week of the season?"", ""@ATLHawks but Wednesday's game against the Heat helped lower the blood pressure for us a bit as we maintained a solid lead to pull out a win"", ""@hornets No kidding! Kemba = Clutch!\n\nObviously the big offseason pickup was Lance Stephenson. How’s he fitting into Clifford's system?"", ""@ATLHawks Great addition! w/ any player going to a new team it takes a few games to get in the groove of things but he's fitting in nicely!"", ""@hornets Let's talk Big Al. He looks like he’s picking up where he left off in last season’s second half. What makes him so tough?"", ""@ATLHawks it's the beard! Big man's been putting up double-figures in each contest so far w/ 3 20pt games! He's hungrier than ever now."", '@hornets It appears so! As you know, we have our own Al. What do you all see that you like about the Hawks?', '@ATLHawks looking forward to seeing which of our Als dominates the matchup down low tonight - nice to see Horford coming back to compete!', ""@hornets We agree...it's great to see him out there! Safe to say that's your matchup to watch? Or is there another that you're focused on?"", ""@ATLHawks Absolutely - we're psyched to see these two going at it tonight. What about you?"", '@hornets When are we gonna get together with the @dallasmavs for another round of Hangman!?', ""@ATLHawks @dallasmavs HA! Just say the word and we'll be ready to uphold our title of hangman champion. **insert finger wag**"", ""@hornets @dallasmavs We'll find a common off day and make it happen soon! Thanks for taking the time...good luck tonight."", '@ATLHawks @hornets @dallasmavs We saw the conversation and thought it was another hashtag game. Alas, it was not. #Sad', ""@Suns @hornets @dallasmavs Do you really think we'd go behind your back and not tell you!?"", '@ATLHawks @hornets @dallasmavs You never know.']",18,"['7 Nov 2014', '7 Nov 2014', '7 Nov 2014', '7 Nov 2014', '7 Nov 2014', '7 Nov 2014', '7 Nov 2014', '7 Nov 2014', '7 Nov 2014', '7 Nov 2014', '7 Nov 2014', '7 Nov 2014', '7 Nov 2014', '7 Nov 2014', '7 Nov 2014', '7 Nov 2014', '7 Nov 2014', '7 Nov 2014']","['Atlanta Hawks', 'Charlotte Hornets', 'Atlanta Hawks', 'Charlotte Hornets', 'Atlanta Hawks', 'Charlotte Hornets', 'Atlanta Hawks', 'Charlotte Hornets', 'Atlanta Hawks', 'Charlotte Hornets', 'Atlanta Hawks', 'Charlotte Hornets', 'Atlanta Hawks', 'Charlotte Hornets', 'Atlanta Hawks', 'Phoen1x Šuns', 'Atlanta Hawks', 'Phoen1x Šuns']","['@ATLHawks', '@hornets', '@ATLHawks', '@hornets', '@ATLHawks', '@hornets', '@ATLHawks', '@hornets', '@ATLHawks', '@hornets', '@ATLHawks', '@hornets', '@ATLHawks', '@hornets', '@ATLHawks', '@Suns', '@ATLHawks', '@Suns']"
2177,The 2014-15 #NBASchedule is released tomorrow! #Nuggetspic.twitter.com/u0sBFqY3ZX,ATLHawks,Bucks,"['The 2014-15 #NBASchedule is released tomorrow! #Nuggetspic.twitter.com/u0sBFqY3ZX', "".@denvernuggets We're pretty pumped too!pic.twitter.com/1RsaaIQbm3"", '. @Sixers @denvernuggets guys...we like #NBAschedule parties too!pic.twitter.com/IMjg3PCwyd', ""@Bucks @Sixers NOW it's a party!"", '.@denvernuggets @Bucks @Sixers the party don’t start till we walk in. #NBASchedulepic.twitter.com/lgbRFSxBme', "".@dallasmavs @denvernuggets @Bucks @Sixers It's not a party without ... SNACKS!pic.twitter.com/RPkSepRhdY"", '@Suns @dallasmavs @denvernuggets @Bucks @Sixers ...or the Carlton dance!pic.twitter.com/vEFlSCstol', ""@warriors @Suns @dallasmavs @denvernuggets @Bucks @Sixers We're so fired up we brought a .gif(t) not just snacks.pic.twitter.com/OkO114nroR"", ""@Suns @warriors @dallasmavs @denvernuggets @Sixers now we're talking!pic.twitter.com/N0q0UIemL2"", ""@Bucks @Suns @warriors @dallasmavs @denvernuggets @Sixers y'all are the GOAT"", ""@Bucks @Suns @warriors @dallasmavs @denvernuggets @Sixers but if only the @ATLHawks would've joined the party."", '@Hoops_Talk_ @Bucks @Suns @warriors @dallasmavs @Sixers we did miss our @ATLHawks.', '@denvernuggets @Hoops_Talk_ @Bucks @Suns @warriors @Sixers @ATLHawks :(', '@dallasmavs @denvernuggets @Hoops_Talk_ @Bucks @warriors @Sixers Heard @ATLHawks is busy in a meeting. https://www.youtube.com/watch?v=gqhQBw5ALHI\xa0…', '@Suns @dallasmavs @denvernuggets @Hoops_Talk_ @Bucks @Sixers @ATLHawks touché, Phoenix.', '@warriors @Suns @dallasmavs @denvernuggets @Hoops_Talk_ @Sixers @ATLHawks time in Atlanta?', ""@Bucks @warriors @Suns @dallasmavs @denvernuggets @Sixers Sorry we missed y'all. Today is NBA New Year's...we were on the town last night.""]",17,"['12 Aug 2014', '12 Aug 2014', '12 Aug 2014', '12 Aug 2014', '12 Aug 2014', '12 Aug 2014', '12 Aug 2014', '12 Aug 2014', '12 Aug 2014', '12 Aug 2014', '12 Aug 2014', '12 Aug 2014', '12 Aug 2014', '12 Aug 2014', '12 Aug 2014', '12 Aug 2014', '13 Aug 2014']","['Denver Nuggets', 'Philadelphia 76ers', 'Milwaukee Bucks', 'Denver Nuggets', 'Dallas Mavericks', 'Phoen1x Šuns', 'Golden State Warriors', 'Phoen1x Šuns', 'Milwaukee Bucks', 'Pro Sports Analysis', 'Pro Sports Analysis', 'Denver Nuggets', 'Dallas Mavericks', 'Phoen1x Šuns', 'Golden State Warriors', 'Milwaukee Bucks', 'Atlanta Hawks']","['@nuggets', '@sixers', '@Bucks', '@nuggets', '@dallasmavs', '@Suns', '@warriors', '@Suns', '@Bucks', '@ProSports_Talk_', '@ProSports_Talk_', '@nuggets', '@dallasmavs', '@Suns', '@warriors', '@Bucks', '@ATLHawks']"
1342,@WashWizards What's up friends! How's your Tuesday?,WashWizards,ATLHawks,"[""@WashWizards What's up friends! How's your Tuesday?"", ""@ATLHawks we're doing great! Can't wait for #WizHawks tonight!"", ""@WashWizards Us too. Looking forward to seeing y'all for the first time.\n\nYou're 9-3 and in first place. What's been key to the hot start?"", '@ATLHawks a lot of keys, for starters the all-star caliber play of @JohnWall, also our bench has really stepped up, 44.5 ppg over the last 7', ""@WashWizards Wall just keeps getting better and better right? What's the most improved part of his game so far? (If you could pick just one)"", '@ATLHawks hard to pick one, but if forced would say his decision-making. Has made huge strides in facilitating since his rookie season', '@WashWizards His AST/TO would certainly support that claim. And now he has his backcourt mate Beal back. How is he looking/feeling?', ""@ATLHawks hasn't missed a beat. Looks like the Beal we remember, shooting well, getting to the hole, & minutes have increased each game."", ""@WashWizards Let's talk Paul Pierce. What have you gained from that pickup?"", '@ATLHawks has been huge, his presence in locker room & intangibles already making a difference, & he can score 25p (like he did Sat night)', '@WashWizards Heck of an offseason move for you all for sure.\n\nAs an outsider looking at our team, what do you like about the Hawks?', ""@ATLHawks like the balanced scoring attack, lots of 3-point shooters, bigs that can stretch the floor, & that you're healthy this season"", '@WashWizards Health has certainly been huge for us, cross our fingers that it stays that way!\n\nLast one for you: Matchup to watch tonight?', ""@ATLHawks always enjoy watching Wall vs. Teague. They've had some good ones in the past, expect another tonight!"", '@WashWizards Should be fun. Thanks for hanging out...good luck tonight!pic.twitter.com/obcTQOqAjR', '@ATLHawks thanks! Nice chatting with you, see you tonight at 7pm! #WizHawks']",16,"['25 Nov 2014', '25 Nov 2014', '25 Nov 2014', '25 Nov 2014', '25 Nov 2014', '25 Nov 2014', '25 Nov 2014', '25 Nov 2014', '25 Nov 2014', '25 Nov 2014', '25 Nov 2014', '25 Nov 2014', '25 Nov 2014', '25 Nov 2014', '25 Nov 2014', '25 Nov 2014']","['Atlanta Hawks', 'Washington Wizards', 'Atlanta Hawks', 'Washington Wizards', 'Atlanta Hawks', 'Washington Wizards', 'Atlanta Hawks', 'Washington Wizards', 'Atlanta Hawks', 'Washington Wizards', 'Atlanta Hawks', 'Washington Wizards', 'Atlanta Hawks', 'Washington Wizards', 'Atlanta Hawks', 'Washington Wizards']","['@ATLHawks', '@WashWizards', '@ATLHawks', '@WashWizards', '@ATLHawks', '@WashWizards', '@ATLHawks', '@WashWizards', '@ATLHawks', '@WashWizards', '@ATLHawks', '@WashWizards', '@ATLHawks', '@WashWizards', '@ATLHawks', '@WashWizards']"
1024,Waiting for the season to begin like... #NBAOffseasonpic.twitter.com/bkQ2z7Jqzn,UtahJazz,Hornets,"['Waiting for the season to begin like... #NBAOffseasonpic.twitter.com/bkQ2z7Jqzn', '.@warriors Saaaame. #NBAOffseasonpic.twitter.com/SGSMNwMLlD', "".@Sixers @warriors We're just going around the office like .. . #NBAOffseasonpic.twitter.com/Zl3YXhtgfh"", "".@Suns @warriors But once it's finally October... #NBAOffseasonpic.twitter.com/mov26u29Fd"", "".@Sixers @Suns @warriors AGREED! Can't wait... #NBAOffseasonpic.twitter.com/ipZ1uxYOJq"", '.@utahjazz @Sixers @warriors The thought of October has us feeling good. #NBAOffseason #Bledsoeingpic.twitter.com/KdqGWzkE9t', '.@Suns @utahjazz @Sixers @warriors That feeling you get when the #NBAOffseason is finally overpic.twitter.com/WDocG3iwkV', '@hornets @Suns @utahjazz @Sixers #NBAOffseasonpic.twitter.com/n7ERqHf0lA', '@warriors @hornets @Suns @Sixers #NBAOffseasonpic.twitter.com/039X0clk8C', '@utahjazz @warriors @hornets @Suns @Sixers @spurs Sorry everyone... the @NFL is up next.pic.twitter.com/DGUYVNjoLE', '.@Chargers @utahjazz @warriors @hornets @Sixers @spurs #NBAOffseasonpic.twitter.com/XNqXIKm9Qw', '@Suns @utahjazz @warriors @hornets @Sixers @spurs 6 points > 2 points #NoMatterWhatTimeOfYearpic.twitter.com/X5OPZX0s57', '@Chargers @Suns @utahjazz @warriors @hornets @Sixers @spurs\n#NBAOffseasonpic.twitter.com/KQNycCIg1p', '@ATLHawks @Suns @utahjazz @warriors @hornets @spurs Watch it, @Chargers.pic.twitter.com/okvWGiENFA', '@Sixers @ATLHawks @Suns @utahjazz @warriors @hornets @spurspic.twitter.com/QIsJjBELlE', '@Chargers @Sixers @ATLHawks @Suns @warriors @hornets @spurspic.twitter.com/FKO8YSvkNK']",16,"['28 Jul 2015', '28 Jul 2015', '28 Jul 2015', '28 Jul 2015', '28 Jul 2015', '28 Jul 2015', '28 Jul 2015', '28 Jul 2015', '28 Jul 2015', '28 Jul 2015', '28 Jul 2015', '28 Jul 2015', '28 Jul 2015', '28 Jul 2015', '28 Jul 2015', '28 Jul 2015']","['Golden State Warriors', 'Philadelphia 76ers', 'Phoen1x Šuns', 'Philadelphia 76ers', 'Utah Jazz', 'Phoen1x Šuns', 'Charlotte Hornets', 'Golden State Warriors', 'Utah Jazz', 'Los Angeles Chargers', 'Phoen1x Šuns', 'Los Angeles Chargers', 'Atlanta Hawks', 'Philadelphia 76ers', 'Los Angeles Chargers', 'Utah Jazz']","['@warriors', '@sixers', '@Suns', '@sixers', '@utahjazz', '@Suns', '@hornets', '@warriors', '@utahjazz', '@Chargers', '@Suns', '@Chargers', '@ATLHawks', '@sixers', '@Chargers', '@utahjazz']"
2018,"And the @hornets are staying true to form, no “A’s” Brah
_ _ _ _ _ _ _ _ _ _ _ _ _
@ATLHawks you are up
Category: Person",ATLHawks,DallasMavs,"['And the @hornets are staying true to form, no “A’s” Brah\n\n_ _ _ _ _ _ _ _ _ _ _ _ _\n\n@ATLHawks you are up\n\nCategory: Person', ""@dallasmavs @hornets 'T' please!"", 'Very nice @ATLHawks! There is a “T”\n \n_ _ _ _ T _ _ _ _ _ _ _ _\n\n@hornets, you’re up!', '@dallasmavs @ATLHawks How about an E?', '@hornets @ATLHawks \n\n_ _ _ _ T E _ _ E _ _ _ _\n\nCharlotte is now on the board with two E’s. What’s your move Hawks?', '@dallasmavs @hornets R?', '@ATLHawks @hornets \n\n_ R _ _ T E _ _ E _ _ _ _ \n\nThere is an R! Who’s going to take this game?! Charlotte you’re up!', '@dallasmavs @ATLHawks N!', '@hornets @ATLHawks \n\n_ R _ _ T E N _ E _ _ _ _ \n\nWell played Charlotte! It’s your turn Hawks!', '@dallasmavs @hornets An S?', '@ATLHawks @hornets \n\n_ R _ S T E N _ E _ _ _ _\n\nWe’re getting close! Anyone willing to solve? Charlotte, you’re up!', ""@dallasmavs @ATLHawks we'd like to solve: Kristen Ledlow?!"", ""@hornets @dallasmavs Well done. She's in our backyard...we should have had that one!"", ""...c'mon, @ATLHawks! I LIVE NEXT DOOR! (By the way, can I borrow an egg?) @hornets @dallasmavs"", ""@KristenLedlow @hornets @dallasmavs You're welcome over anytime. For breakfast or otherwise. Sorry we let you down!""]",15,"['13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014', '13 Aug 2014']","['Dallas Mavericks', 'Atlanta Hawks', 'Dallas Mavericks', 'Charlotte Hornets', 'Dallas Mavericks', 'Atlanta Hawks', 'Dallas Mavericks', 'Charlotte Hornets', 'Dallas Mavericks', 'Atlanta Hawks', 'Dallas Mavericks', 'Charlotte Hornets', 'Atlanta Hawks', 'Kristen Ledlow', 'Atlanta Hawks']","['@dallasmavs', '@ATLHawks', '@dallasmavs', '@hornets', '@dallasmavs', '@ATLHawks', '@dallasmavs', '@hornets', '@dallasmavs', '@ATLHawks', '@dallasmavs', '@hornets', '@ATLHawks', '@KristenLedlow', '@ATLHawks']"
1064,@utahjazz What's up friends! Thanks for taking some time to hang out.,UtahJazz,ATLHawks,"[""@utahjazz What's up friends! Thanks for taking some time to hang out."", ""@ATLHawks Hey guys, thanks for the invite. Can't wait for the game tonight!"", '@utahjazz Us too! Great to see Coach Snyder this morning at shootaround! How are the players buying into his system so far?', '@ATLHawks Nothing but praise & positivity toward Coach Q & his system. Players (and fans) are enjoying the up-tempo/unselfish style of play.', ""@utahjazz Can't see why not, it's fun to watch! What do you all like most about Coach Q?"", ""@ATLHawks BTW, thanks to the Hawks for aiding in the development of Coach's game!"", ""@utahjazz He's got a great young wingman in Gordon Hayward who seems to keep getting better. What has he improved on most from last year?"", ""@ATLHawks Hayward's leadership & confidence seems to grow every game & he has really bulked up. Plus, he has a fresh new haircut!"", ""@utahjazz Tell Trey we said Happy Birthday! He and Exum make for a heck of a point guard duo. How's Dante doing? Can those 2 play together?"", ""@ATLHawks It's a nice luxury that we have, right? It's so fun to watch Danté develop! He is still so young (19) but playing well already."", ""@utahjazz We look forward to watching both develop!\n\nObviously you're familiar with some of our players. What do you all think of our team?"", '@ATLHawks Beyond fmr Jazz, you guys have experience, depth & versatility. It seems like every player on the ATL can do a bit of everything', ""@utahjazz We're spoiled...every time Kyle shoots we think it's going in.\n\nLast question for ya: What's your matchup to watch tonight?"", '@ATLHawks Favors-Millsap. Sap will look to put the hurt on his old team. Intriguing to see how Favs responds in facing the man he replaced.']",14,"['12 Nov 2014', '12 Nov 2014', '12 Nov 2014', '12 Nov 2014', '12 Nov 2014', '12 Nov 2014', '12 Nov 2014', '12 Nov 2014', '12 Nov 2014', '12 Nov 2014', '12 Nov 2014', '12 Nov 2014', '12 Nov 2014', '12 Nov 2014']","['Atlanta Hawks', 'Utah Jazz', 'Atlanta Hawks', 'Utah Jazz', 'Atlanta Hawks', 'Utah Jazz', 'Atlanta Hawks', 'Utah Jazz', 'Atlanta Hawks', 'Utah Jazz', 'Atlanta Hawks', 'Utah Jazz', 'Atlanta Hawks', 'Utah Jazz']","['@ATLHawks', '@utahjazz', '@ATLHawks', '@utahjazz', '@ATLHawks', '@utahjazz', '@ATLHawks', '@utahjazz', '@ATLHawks', '@utahjazz', '@ATLHawks', '@utahjazz', '@ATLHawks', '@utahjazz']"
2700,@Raptors What's up guys! Enjoying our great city?,Raptors,ATLHawks,"[""@Raptors What's up guys! Enjoying our great city?"", '@ATLHawks Always love that Southern hospitality (until tip-off, of course)! Should be a good one tonight between two surging teams.', ""@Raptors Our pleasure.\n\nSo yea, let's talk about that. 5 in a row, top of the conference...what's been the key to your hot start this year?"", ""@ATLHawks @ATLHawks Home-heavy schedule hasn't hurt either, but Raptors also hope to start 4-1 on road for 1st time ever with a W tonight."", ""@Raptors Best road start ever? We'll do our best to make sure that doesn't happen \n\nYou're like us in a lot of ways. How's Kyle developing?"", ""@ATLHawks ... he's posted at least 10 pts, 6 asts, 6 rebs 23 times, only 4 other players have done it more often, including LBJ, KD & Noah."", ""@Raptors So what you're saying is...triple-double coming soon?\n\nWhat do you like about our team, and what's the key to beating us?"", '@ATLHawks Really like balance of your starting 5, but should be interesting to see if our bench can keep it going tonight.', ""@Raptors We'd like to get back to draining that many! And bench play will be key indeed.\n\nLast question for you: Matchup to watch tonight?"", '@ATLHawks Some intriguing matchups, but have to go with a great underrated PG battle in Lowry vs.Teague tonight.', ""@Raptors Also, your fans are letting us have it on Twitter this morning...did we do something to y'all? Ha!"", ""@ATLHawks The claws come out on game days. Play nice Raptors faithful, or we'll take your Drake away for a month."", ""@Raptors @ATLHawks I find this weird as if it's a way to get some key tips on beating us tonight. #WeTheNorth #RTZ What do you guys think?"", ""@MSquared94 @ATLHawks Very sure our two fine coaching staffs don't rely on this chat for strategy.... at least we hope not.""]",14,"['26 Nov 2014', '26 Nov 2014', '26 Nov 2014', '26 Nov 2014', '26 Nov 2014', '26 Nov 2014', '26 Nov 2014', '26 Nov 2014', '26 Nov 2014', '26 Nov 2014', '26 Nov 2014', '26 Nov 2014', '26 Nov 2014', '26 Nov 2014']","['Atlanta Hawks', 'Toronto Raptors', 'Atlanta Hawks', 'Toronto Raptors', 'Atlanta Hawks', 'Toronto Raptors', 'Atlanta Hawks', 'Toronto Raptors', 'Atlanta Hawks', 'Toronto Raptors', 'Atlanta Hawks', 'Toronto Raptors', 'Mark Mangaliman', 'Toronto Raptors']","['@ATLHawks', '@Raptors', '@ATLHawks', '@Raptors', '@ATLHawks', '@Raptors', '@ATLHawks', '@Raptors', '@ATLHawks', '@Raptors', '@ATLHawks', '@Raptors', '@______POLO', '@Raptors']"
2030,"According to our mentions, we should trade for everybody.",ATLHawks,LAClippers,"['According to our mentions, we should trade for everybody.', 'bruh. same.', ""We'll trade you today's tweet for tomorrow's tweet and an unprotected future tweet."", 'the trade machine says this works so u should definitely do itpic.twitter.com/GHCxCk0qAP', 'The Clippers are correct...ESPN trade machine says okay:pic.twitter.com/r1eLa5dptV', 'Throw in a snap with the puppy filter and we’ll talk.', 'Counter offer:pic.twitter.com/f77z3vmU7w', 'Add a future second round Instagram post and we have a deal ', ""You drive a hard bargain, Hornets. You're lucky the trade machine still accepts. Deal!pic.twitter.com/7Jl7unR0oI"", 'DONE Great doing business with you fellas. Looking forward to seeing how this pans out over time.', ""Can't wait to see how the writers grade this trade tomorrow "", 'Charlotte gets a Bee+\nHawks get an A-town', 'We see what you did there ']",13,"['20 Jun 2017', '20 Jun 2017', '20 Jun 2017', '20 Jun 2017', '20 Jun 2017', '20 Jun 2017', '20 Jun 2017', '20 Jun 2017', '20 Jun 2017', '20 Jun 2017', '20 Jun 2017', '20 Jun 2017', '20 Jun 2017']","['Atlanta Hawks', 'Charlotte Hornets', 'Atlanta Hawks', 'LA Clippers', 'Atlanta Hawks', 'Charlotte Hornets', 'Atlanta Hawks', 'Charlotte Hornets', 'Atlanta Hawks', 'Charlotte Hornets', 'Atlanta Hawks', 'Twitter Sports', 'Atlanta Hawks']","['@ATLHawks', '@hornets', '@ATLHawks', '@LAClippers', '@ATLHawks', '@hornets', '@ATLHawks', '@hornets', '@ATLHawks', '@hornets', '@ATLHawks', '@TwitterSports', '@ATLHawks']"
1715,".@warriors How many times have you guys seen this cliche gif?
Our place at 7 pm? We promise we won't use it again.pic.twitter.com/XvEo5UyjQC",Suns,Sixers,"["".@warriors How many times have you guys seen this cliche gif? \n\nOur place at 7 pm? We promise we won't use it again.pic.twitter.com/XvEo5UyjQC"", ""@Suns actually, think you're the first!"", '.@warriors The first? ....pic.twitter.com/JT8IIqKvEc', '@Suns @warriors No respect.https://twitter.com/Sixers/status/549997760208830465\xa0…', '@Sixers @Suns oops... ummm..well technically they said gif....pic.twitter.com/w3Ig9E2sJb', '@warriors @Sunspic.twitter.com/QzKZaQ5tR7', '@Sixers @Sunspic.twitter.com/7Lu5EkkYKW', ""@Sixers @Suns it's one of the best snaps we've seen though. forgive us? "", '@warriors @Suns Okay…pic.twitter.com/iWjzPdcj70', '@Sixers @Suns pic.twitter.com/sAQ9lwpPB2', '.@warriors @Sixerspic.twitter.com/IDfH0GP0hh', '@Suns @warriors @Sixers when interns go rogue....', '@ThemailmanJamie @warriors @Sixers Nope. Full time employees.']",13,"['9 Mar 2015', '9 Mar 2015', '9 Mar 2015', '9 Mar 2015', '9 Mar 2015', '9 Mar 2015', '9 Mar 2015', '9 Mar 2015', '9 Mar 2015', '9 Mar 2015', '9 Mar 2015', '9 Mar 2015', '9 Mar 2015']","['Phoen1x Šuns', 'Golden State Warriors', 'Phoen1x Šuns', 'Philadelphia 76ers', 'Golden State Warriors', 'Philadelphia 76ers', 'Golden State Warriors', 'Golden State Warriors', 'Philadelphia 76ers', 'Golden State Warriors', 'Phoen1x Šuns', 'Jäy Mė السلام عليكم', 'Phoen1x Šuns']","['@Suns', '@warriors', '@Suns', '@sixers', '@warriors', '@sixers', '@warriors', '@warriors', '@sixers', '@warriors', '@Suns', '@ThemailmanJamie', '@Suns']"
1772,"Waiting on @NBA season like...
#IsItOctoberYetpic.twitter.com/bKci9WTkZm",HoustonRockets,DallasMavs,"['Waiting on @NBA season like... \n\n#IsItOctoberYetpic.twitter.com/bKci9WTkZm', 'samepic.twitter.com/aytxIiCcsF', 'Us too.pic.twitter.com/y5suNfW9a6', ""Don't worry guys, only 2 more months!pic.twitter.com/Shxz9GQXj4"", ' season comi\n#IsItOctoberYetpic.twitter.com/PLHZITyhaV', '#ICantWait. #IsItOctoberYetpic.twitter.com/PHGKxkJGYI', 'Not enough. #IsItOctoberYetpic.twitter.com/SqWkkewrBV', '*looks at calendar*pic.twitter.com/LUkLSZ1Nzg', 'Got our eyes on October. #IsItOctoberYetpic.twitter.com/V97aY8OEFw', 'Not just yet... #IsItOctoberYetpic.twitter.com/W4ro1V9qfY', 'Us in October…#IsItOctoberYetpic.twitter.com/pTqn7MuCqw', ""Can't. Wait. \xa0#IsItOctoberYetpic.twitter.com/vBiOgennQa"", ' #IsItOctoberYetpic.twitter.com/dqEQ1EjQzd']",13,"['1 Aug 2017', '1 Aug 2017', '1 Aug 2017', '1 Aug 2017', '1 Aug 2017', '1 Aug 2017', '1 Aug 2017', '1 Aug 2017', '1 Aug 2017', '1 Aug 2017', '1 Aug 2017', '1 Aug 2017', '1 Aug 2017']","['San Antonio Spurs', 'Memphis Grizzlies', 'Washington Wizards', 'Boston Celtics', 'Atlanta Hawks', 'Detroit Pistons', 'LA Clippers', 'Cleveland Cavaliers', 'Timberwolves', 'Milwaukee Bucks', 'Dallas Mavericks', 'Utah Jazz', 'Houston Rockets']","['@spurs', '@memgrizz', '@WashWizards', '@celtics', '@ATLHawks', '@DetroitPistons', '@LAClippers', '@cavs', '@Timberwolves', '@Bucks', '@dallasmavs', '@utahjazz', '@HoustonRockets']"
1052,uh oh. @utahjazz and @suns playing. Who do I root for???,UtahJazz,Suns,"['uh oh. @utahjazz and @suns playing. Who do I root for???', ""@MattNotHipster @utahjazz We vote us but we're biased."", ""@Suns @utahjazz well if the jazz don't respond then I guess I have no choice! Let's see IT go to work!"", '@MattNotHipster @Suns Oh, you have a choice, Matt! > #GoJazz', '@utahjazz @Suns !!! So conflicted. Rock, Paper, Scissors?', '@MattNotHipster @utahjazz 1.. 2... 3... Rock.', '@Suns @utahjazz you know what this seems unfair, how about Hayward vs Dragon box score battle?', ""@MattNotHipster @utahjazz You know what, we're understanding. Why not just root for us both?"", '@Suns Rooting for us both may be too ""Hipster"" for @MattNotHipster', '@utahjazz @MattNotHipster That, or we could have a gif off. Team that sends his favorite gif wins?', '@Suns @MattNotHipster The Suns gif-game is strong, I think we had better odds in the rock-paper-scissors', '@utahjazz @MattNotHipster We play to our strengths.pic.twitter.com/p9WYro6KzT', '@Suns @MattNotHipster Which contrasts with our ""Dine and Dash"" strategypic.twitter.com/glRKDunTqn']",13,"['6 Feb 2015', '6 Feb 2015', '6 Feb 2015', '6 Feb 2015', '6 Feb 2015', '6 Feb 2015', '6 Feb 2015', '6 Feb 2015', '6 Feb 2015', '6 Feb 2015', '6 Feb 2015', '6 Feb 2015', '6 Feb 2015']","['𝔐𝔞𝔱𝔱 𝔇𝔞𝔳𝔦𝔰', 'Phoen1x Šuns', '𝔐𝔞𝔱𝔱 𝔇𝔞𝔳𝔦𝔰', 'Utah Jazz', '𝔐𝔞𝔱𝔱 𝔇𝔞𝔳𝔦𝔰', 'Phoen1x Šuns', '𝔐𝔞𝔱𝔱 𝔇𝔞𝔳𝔦𝔰', 'Phoen1x Šuns', 'Utah Jazz', 'Phoen1x Šuns', 'Utah Jazz', 'Phoen1x Šuns', 'Utah Jazz']","['@MattNotHipster', '@Suns', '@MattNotHipster', '@utahjazz', '@MattNotHipster', '@Suns', '@MattNotHipster', '@Suns', '@utahjazz', '@Suns', '@utahjazz', '@Suns', '@utahjazz']"
1586,I need help choosing a new favourite team. @ATLHawks @Suns @OrlandoMagic @nuggets @WashWizards,Suns,WashWizards,"['I need help choosing a new favourite team. @ATLHawks @Suns @OrlandoMagic @nuggets @WashWizards', 'pic.twitter.com/XJiwSyFrAs', 'Nah, choose us!', 'This is such a hard decision lol', 'heypic.twitter.com/q2WfnlCa9o', 'uhmmmmmm no. pick uspic.twitter.com/RzBji03PR4', ""Wow! Now this is getting really hard . I don't know what team to choose. The Magic are awesome as well and have one of my favourite players!"", '', 'So far the Magic are winning!', 'I mean, we have this very nice signed Devin Booker poster here that could find it’s way to your hands…. All new fans should have one.', 'Wow! Devin Booker is one of my favourite players as well! That would be amazing! This is a hard desicion!', 'pic.twitter.com/Ii2GJOUfnl']",12,"['17 Aug 2017', '17 Aug 2017', '17 Aug 2017', '17 Aug 2017', '17 Aug 2017', '17 Aug 2017', '17 Aug 2017', '17 Aug 2017', '17 Aug 2017', '17 Aug 2017', '17 Aug 2017', '17 Aug 2017']","['Evan P', 'Phoen1x Šuns', 'Atlanta Hawks', 'Evan P', 'Denver Nuggets', 'Orlando Magic', 'Evan P', 'Orlando Magic', 'Evan P', 'Phoen1x Šuns', 'Evan P', 'Phoen1x Šuns']","['@northernhawks17', '@Suns', '@ATLHawks', '@northernhawks17', '@nuggets', '@OrlandoMagic', '@northernhawks17', '@OrlandoMagic', '@northernhawks17', '@Suns', '@northernhawks17', '@Suns']"
1737,"Hey @Suns. We want a rematch. Our place, 7:30 pm. @NBAonTNT is coming, too.
Game Day Hub » http://Rip.City/PORvsPHX pic.twitter.com/j613zxsX4C",Suns,trailblazers,"['Hey @Suns. We want a rematch. Our place, 7:30 pm. @NBAonTNT is coming, too.\n\nGame Day Hub » http://Rip.City/PORvsPHX\xa0pic.twitter.com/j613zxsX4C', "".@trailblazers Wait, you invited the @NBAonTNT guys? Guess we can hang out with them too. Tell @rolopez42 we didn't bring @SunsGorilla."", ""@Suns well, @NBAonTNT will be there physically. But they never respond to our tweets, so don't count them in digitally."", '@trailblazers @Suns Beg your pardon....?!pic.twitter.com/RPKksXiB1b', '.@NBAonTNT @trailblazers Nice of you to join the party and keep it in the Turner family.pic.twitter.com/tAThVyH0GJ', ""@Suns @trailblazers We're just here to party.pic.twitter.com/OSpqoeGosG"", "".@NBAonTNT @trailblazers Trying to figure out a good Rizzoli & Isles or Cougar Town tie-in but we've got nothing.pic.twitter.com/sy2HK5sH9a"", '@Suns @trailblazers Hey @tntdrama - can you help us out?', 'Hey Hey...@NBAonTNT @Suns @trailblazers. Remember that one time Jane Rizzoli played basketball...in jeans?!pic.twitter.com/ximAXl2uy4', '.@tntdrama @NBAonTNT @trailblazers No. But we remember Chuck eating pizza in a jersey and jeans. #TBTpic.twitter.com/OQJyZ7QVuc', '@Suns @tntdrama @NBAonTNT @trailblazers Did someone say PIZZA?pic.twitter.com/XfzjA6cqmt', ""@tbsveryfunny @tntdrama @NBAonTNT @trailblazers We'll bring the napkins.pic.twitter.com/gXQvSnXJls""]",12,"['5 Feb 2015', '5 Feb 2015', '5 Feb 2015', '5 Feb 2015', '5 Feb 2015', '5 Feb 2015', '5 Feb 2015', '5 Feb 2015', '5 Feb 2015', '5 Feb 2015', '5 Feb 2015', '5 Feb 2015']","['Trail Blazers', 'Phoen1x Šuns', 'Trail Blazers', 'NBA on TNT', 'Phoen1x Šuns', 'NBA on TNT', 'Phoen1x Šuns', 'NBA on TNT', 'TNT Drama', 'Phoen1x Šuns', 'TBS Network', 'Phoen1x Šuns']","['@trailblazers', '@Suns', '@trailblazers', '@NBAonTNT', '@Suns', '@NBAonTNT', '@Suns', '@NBAonTNT', '@tntdrama', '@Suns', '@TBSNetwork', '@Suns']"
1564,#ThrowdownThursday is back with a vengeance.https://vine.co/v/eHY3A5UgvAK ,Suns,UtahJazz,"['#ThrowdownThursday is back with a vengeance.https://vine.co/v/eHY3A5UgvAK\xa0', '@Sixers #ThrowdownThursday, eh? We dig it.https://vine.co/v/ewKDuKwtxqq\xa0', '@trailblazers @Sixers \n\nAyyyeee.http://vine.co/v/ewmvhBAZweP\xa0', ""@LAClippers @trailblazers Y'all get it. "", '@Sixers @LAClippers @trailblazers word https://vine.co/v/ewK33PiOA5P\xa0', '#tbt x #ThrowdownThursday (cc: @SacramentoKings @LAClippers @trailblazers @utahjazz @trailblazers)https://vine.co/v/eihBa1eP5Oh\xa0', '#TBT @Sixers @LAClippers @trailblazers @utahjazzpic.twitter.com/PUWSjqpi66', '@SacramentoKings @Sixers @trailblazers @utahjazz\npic.twitter.com/sCotkMgodn', '@LAClippers @SacramentoKings @trailblazers @utahjazzpic.twitter.com/WKQRsLAI4n', ""@Sixers @LAClippers @trailblazers @utahjazz Philly, without your help this #TBT in PHX wouldn't have been possible.pic.twitter.com/KfObdyJD8S""]",10,"['6 Aug 2015', '6 Aug 2015', '6 Aug 2015', '6 Aug 2015', '6 Aug 2015', '6 Aug 2015', '6 Aug 2015', '6 Aug 2015', '6 Aug 2015', '6 Aug 2015']","['Philadelphia 76ers', 'Trail Blazers', 'LA Clippers', 'Philadelphia 76ers', 'Sacramen2 Kings', 'Philadelphia 76ers', 'Sacramen2 Kings', 'LA Clippers', 'Philadelphia 76ers', 'Phoen1x Šuns']","['@sixers', '@trailblazers', '@LAClippers', '@sixers', '@SacramentoKings', '@sixers', '@SacramentoKings', '@LAClippers', '@sixers', '@Suns']"
1686,We're starting a list... pic.twitter.com/HMlyfbhgR5,Suns,SacramentoKings,"[""We're starting a list... pic.twitter.com/HMlyfbhgR5"", 'The audacity to end up on the naughty list while SANTA CLAUS HIMSELF was in the building tonight. Smh @spurspic.twitter.com/hwpK2NATZQ', 'The time has come to hand out our Naughty and Nice gifts... ', 'You were the first to join the nice list this month, @chicagobulls! Reply to inquire how to redeem... Merry Christmas!pic.twitter.com/Uvb2DYk1da', 'We were on the fence about your present, @Bucks. But turned out you made the NAUGHTY LIST!pic.twitter.com/Sx6AZ6DDfi', ""Y'all play today so don't open this 'til later, @cavs...pic.twitter.com/gCHUASSlDK"", ""It was a hard decision... even took some overtime, @PelicansNBA but y'all were nice this year To redeem, hit us with a reply pic.twitter.com/uuuMbooIh1"", 'Only team to make the Naughty list twice... smh @Raptors pic.twitter.com/x2U5po89Qc', 'Hey @Suns, Merry Christmas! You were cool to us... On Dec. 12, specifically.pic.twitter.com/Qw5Ixsk7f4', 'We’re here to redeem. Let’s talk.']",10,"['1 Dec 2017', '23 Dec 2017', '25 Dec 2017', '25 Dec 2017', '25 Dec 2017', '25 Dec 2017', '25 Dec 2017', '25 Dec 2017', '25 Dec 2017', '26 Dec 2017']","['Sacramen2 Kings', 'Sacramen2 Kings', 'Sacramen2 Kings', 'Sacramen2 Kings', 'Sacramen2 Kings', 'Sacramen2 Kings', 'Sacramen2 Kings', 'Sacramen2 Kings', 'Sacramen2 Kings', 'Phoen1x Šuns']","['@SacramentoKings', '@SacramentoKings', '@SacramentoKings', '@SacramentoKings', '@SacramentoKings', '@SacramentoKings', '@SacramentoKings', '@SacramentoKings', '@SacramentoKings', '@Suns']"
1684,greaaat. #RTZ,Suns,Raptors,"['greaaat. #RTZ', ""@Raptors You're welcome. And he called bank."", '@Suns We want a review on that.', '@Raptors Just for you.pic.twitter.com/UVrurmJG5N', '@Suns lol we meant the ""bank"" call. No audio? ', '@Raptors Zoom in and read the lips. He says it...', '@Suns Hmmm tried, this is all we see...pic.twitter.com/wGECLysu0s', '@Raptorspic.twitter.com/kXLvg7pEkN', ""@Suns It's all good, we own it. #WeTheNorth"", '@Raptors You should. The 6 is a beautiful city. Going to be fun next weekend for all the @NBA.']",10,"['2 Feb 2016', '2 Feb 2016', '2 Feb 2016', '2 Feb 2016', '2 Feb 2016', '2 Feb 2016', '2 Feb 2016', '2 Feb 2016', '2 Feb 2016', '2 Feb 2016']","['Toronto Raptors', 'Phoen1x Šuns', 'Toronto Raptors', 'Phoen1x Šuns', 'Toronto Raptors', 'Phoen1x Šuns', 'Toronto Raptors', 'Phoen1x Šuns', 'Toronto Raptors', 'Phoen1x Šuns']","['@Raptors', '@Suns', '@Raptors', '@Suns', '@Raptors', '@Suns', '@Raptors', '@Suns', '@Raptors', '@Suns']"
2202,bruh...https://twitter.com/Timberwolves/status/984230006103527425 …,ATLHawks,SacramentoKings,"['bruh...https://twitter.com/Timberwolves/status/984230006103527425\xa0…', ""I think you guys know this, but this is the best NBA social media account and it's not close"", 'Nah @trailblazers are the best. But the @ATLHawks are a very close 2nd ', '1. @ATLHawks\n2. @trailblazers\n3. @SacramentoKings', 'The fact that @memgrizz isn’t on your list makes this factually inaccurate.', 'I see you @memgrizz . I’ll put you guys in my top 3 accounts just for making your case', 'LIT', 'decent list... wrong order', ""You're right.\n1. @ATLHawks \n2. @UMBCAthletics \n3. @trailblazers \n4. @SacramentoKings \n5. @memgrizz"", 'These names are straight facts.']",10,"['Apr 11 2018', 'Apr 11 2018', 'Apr 11 2018', 'Apr 11 2018', 'Apr 11 2018', 'Apr 11 2018', 'Apr 11 2018', 'Apr 11 2018', 'Apr 11 2018', 'Apr 11 2018']","['Atlanta Hawks', 'Kayden S', 'Bryan Gonzalez\xa0🌹', 'Kayden S', 'Will Bowron', 'Bryan Gonzalez\xa0🌹', 'Memphis Grizzlies', 'Sacramen2 Kings', 'Kayden S', 'Atlanta Hawks']","['@ATLHawks', '@TheVikingsPhan', '@BryanGonz2036', '@TheVikingsPhan', '@willbowron', '@BryanGonz2036', '@memgrizz', '@SacramentoKings', '@TheVikingsPhan', '@ATLHawks']"
2065,"HOME! After five straight on the road, we play at @PhilipsArena tonight vs. the @nuggets, driven by @kia.
Tickets: http://bit.ly/2heRFYG pic.twitter.com/WNr6wshMV8",ATLHawks,nuggets,"['HOME! After five straight on the road, we play at @PhilipsArena tonight vs. the @nuggets, driven by @kia.\n\nTickets: http://bit.ly/2heRFYG\xa0pic.twitter.com/WNr6wshMV8', 'Tonight also includes a concert by @runjewels!\n\nGet your loaded tickets, which includes $10 in food & drink: http://bit.ly/2heQton\xa0pic.twitter.com/vx60bizAnE', 'Spoil your sweetie with the perfect date night, presented by @SVEDKA! Get 2 tickets and $24 in free food & drink: http://bit.ly/2hewFl0\xa0pic.twitter.com/FwZ3h6Z7Nb', 'And finally, our @ChickfilA Fan Night offer returns this season! Get 4 tickets AND 4 meals if you buy here: http://bit.ly/2hehvw0\xa0pic.twitter.com/g0DiSQS2G0', 'Just a couple of offers tonight.', 'You want in on the Date Night package with us?', ""We're a pricey date."", 'High maintenance ', 'So see ya at 7:30 then?', 'pic.twitter.com/0rQqqIQudB']",10,"['27 Oct 2017', '27 Oct 2017', '27 Oct 2017', '27 Oct 2017', '27 Oct 2017', '27 Oct 2017', '27 Oct 2017', '27 Oct 2017', '27 Oct 2017', '27 Oct 2017']","['Atlanta Hawks', 'Atlanta Hawks', 'Atlanta Hawks', 'Atlanta Hawks', 'Denver Nuggets', 'Atlanta Hawks', 'Denver Nuggets', 'Atlanta Hawks', 'Denver Nuggets', 'Atlanta Hawks']","['@ATLHawks', '@ATLHawks', '@ATLHawks', '@ATLHawks', '@nuggets', '@ATLHawks', '@nuggets', '@ATLHawks', '@nuggets', '@ATLHawks']"
1243,"Open this tweet for a secret message
ㅤㅤㅤㅤㅤㅤWe beat the reigning champs",nuggets,SacramentoKings,"['Open this tweet for a secret message\n\nㅤㅤㅤㅤㅤㅤWe beat the reigning champs', 'Open this tweet for a secret message\n\nㅤㅤㅤㅤㅤㅤWe also have a secret msghttps://twitter.com/sacramentokings/status/844585367286132738\xa0…', ""Open this tweet for a secret message\n\nㅤㅤㅤㅤㅤㅤsecrets don't make friends"", 'Okay, truce if you tell us your favorite kind of PB&J', 'Two slices of wheat bread, peanut butter on both slices, raspberry jelly, cut down the middle. Wbu?', 'Crust or no crust? We like both white and wheat, grape jelly on the white and strawberry on the wheat...cut down the middle, ofc.', ""Crust, don't want anything going to waste. What's your peanut butter situation tho? Smooth or crunchy?"", 'pic.twitter.com/n9RrU9TMQg', ""that's brillant tbh""]",9,"['23 Mar 2017', '23 Mar 2017', '23 Mar 2017', '23 Mar 2017', '23 Mar 2017', '23 Mar 2017', '23 Mar 2017', '23 Mar 2017', '23 Mar 2017']","['Denver Nuggets', 'Sacramen2 Kings', 'Denver Nuggets', 'Sacramen2 Kings', 'Denver Nuggets', 'Sacramen2 Kings', 'Denver Nuggets', 'Sacramen2 Kings', 'Denver Nuggets']","['@nuggets', '@SacramentoKings', '@nuggets', '@SacramentoKings', '@nuggets', '@SacramentoKings', '@nuggets', '@SacramentoKings', '@nuggets']"
1937,@ATLHawks hey I have a question,ATLHawks,OrlandoMagic,"['@ATLHawks hey I have a question', ""What's up?"", 'Yeah, how come the @OrlandoMagic suck? \n#TrueToAtlanta', 'uhm rude', 'We u', ""thank you for loving us even when adam doesn't "", 'They were talking about me, they love me Magic ', 'awkwardddddd...', ""Nahhhh...we're talking to you @OrlandoMagic ""]",9,"['25 Aug 2017', '25 Aug 2017', '25 Aug 2017', '25 Aug 2017', '25 Aug 2017', '25 Aug 2017', '25 Aug 2017', '25 Aug 2017', '25 Aug 2017']","['adam', 'Atlanta Hawks', 'adam', 'Orlando Magic', 'Atlanta Hawks', 'Orlando Magic', 'adam', 'Orlando Magic', 'Atlanta Hawks']","['@TheBrodieAdam', '@ATLHawks', '@TheBrodieAdam', '@OrlandoMagic', '@ATLHawks', '@OrlandoMagic', '@TheBrodieAdam', '@OrlandoMagic', '@ATLHawks']"
2917,"INCREDIBLE shot, @ATLHawks!!! Happy birthday to Paul Milsap!!! pic.twitter.com/Vz0f45MLfF",SacramentoKings,ATLHawks,"['INCREDIBLE shot, @ATLHawks!!! Happy birthday to Paul Milsap!!! pic.twitter.com/Vz0f45MLfF', 'Thanks! INCREDIBLE arena you guys have here. First time here...simply gorgeous.', 'You know, we really appreciate Philips Arena too. That organist - just wow. Great touch.', 'Yea, @Sir_Foster is , kind of like those baby blue throwbacks ', ""Don't even get us started on your jerseys. That lime green is special!"", 'We call it ""volt"", but you can call it lime. Whatever works for you, we\'re good with it! ', 'Is it because you guys are playing electric on the court right now? ', ""Don't get discouraged. Three quarters left, we fully expect a run from you guys. Chins up."", ""Really appreciate the support. We're in this together. #BFFL #Friendship""]",9,"['10 Feb 2017', '10 Feb 2017', '10 Feb 2017', '10 Feb 2017', '10 Feb 2017', '10 Feb 2017', '10 Feb 2017', '10 Feb 2017', '10 Feb 2017']","['Sacramen2 Kings', 'Atlanta Hawks', 'Sacramen2 Kings', 'Atlanta Hawks', 'Sacramen2 Kings', 'Atlanta Hawks', 'Sacramen2 Kings', 'Atlanta Hawks', 'Sacramen2 Kings']","['@SacramentoKings', '@ATLHawks', '@SacramentoKings', '@ATLHawks', '@SacramentoKings', '@ATLHawks', '@SacramentoKings', '@ATLHawks', '@SacramentoKings']"
1068,@memgrizz hey do you guys want to hang out tonight?,UtahJazz,MemGrizz,"['@memgrizz hey do you guys want to hang out tonight?', 'Hey fam, ya sounds good. 7pm our place?', 'sounds good should we bring anything?', 'just your smiling faces.', 'this is beautiful.', ""Oooh forgot we were hanging out Friday. Don't worry, we'll be back in time."", 'ugh FOMO', 'Good, don’t be late! Memphis it looks like we’ll have to wait until next month ', 'hey @nba where are we on games with three teams playing at the same time?']",9,"['Feb 7 2018', 'Feb 7 2018', 'Feb 7 2018', 'Feb 7 2018', 'Feb 7 2018', 'Feb 7 2018', 'Feb 7 2018', 'Feb 7 2018', 'Feb 7 2018']","['Utah Jazz', 'Memphis Grizzlies', 'Utah Jazz', 'Memphis Grizzlies', 'Charlotte Hornets', 'Utah Jazz', 'Memphis Grizzlies', 'Charlotte Hornets', 'Utah Jazz']","['@utahjazz', '@memgrizz', '@utahjazz', '@memgrizz', '@hornets', '@utahjazz', '@memgrizz', '@hornets', '@utahjazz']"
2071,"That schedule release day feeling.
#MileHighBasketballpic.twitter.com/dfEBasj2sb",ATLHawks,nuggets,"['That schedule release day feeling.\n\n#MileHighBasketballpic.twitter.com/dfEBasj2sb', 'pic.twitter.com/dtyLTlcsM1', 'pic.twitter.com/HdxmjPk2z3', 'pic.twitter.com/Eqw9dDEEiE', 'pic.twitter.com/JuiSJl15sO', 'pic.twitter.com/rqa69ozITe', 'pic.twitter.com/6ZFXu9AsSI', 'pic.twitter.com/zzG9jSvQgB', 'pic.twitter.com/wFSyCHQqZu']",9,"['14 Aug 2017', '14 Aug 2017', '14 Aug 2017', '14 Aug 2017', '14 Aug 2017', '14 Aug 2017', '14 Aug 2017', '14 Aug 2017', '14 Aug 2017']","['Denver Nuggets', 'Memphis Grizzlies', 'LA Clippers', 'Milwaukee Bucks', 'Charlotte Hornets', 'Washington Wizards', 'Timberwolves', 'San Antonio Spurs', 'Atlanta Hawks']","['@nuggets', '@memgrizz', '@LAClippers', '@Bucks', '@hornets', '@WashWizards', '@Timberwolves', '@spurs', '@ATLHawks']"
1260,"Shout out @Sixers @trailblazers @suns & @ATLHawks for a fun night on Twitter
Yes, we're talking about #NBAMusicians: http://bit.ly/NBAMusicians ",nuggets,Sixers,"[""Shout out @Sixers @trailblazers @suns & @ATLHawks for a fun night on Twitter\n\nYes, we're talking about #NBAMusicians: http://bit.ly/NBAMusicians\xa0"", '@warriors @Sixers @trailblazers @Suns Fun indeed. More nights like those in the future please!', ""@ATLHawks @warriors @Sixers @trailblazers Should be league mandate that we play #HashtagGame at least once a month. Who's got the next one?"", ""@Suns @ATLHawks @warriors @Sixers @trailblazers Can't every day be #HashtagGame day?"", "".@Sixers @ATLHawks @warriors @trailblazers It can be but eventually we're going to get down to #NBAVegetables or #NBAKitchenAppliances."", '@Suns @Sixers @warriors @trailblazers Kale Korver. #NBAVegetables (See, it CAN work)', '.@ATLHawks @Sixers @warriors @trailblazers Gerald Green Beans #NBAVegetables \n\nSee what you made us do.', '@Suns @Sixers @warriors @trailblazerspic.twitter.com/asGAFfkQ2W', '@ATLHawks @Suns @Sixers @warriors @trailblazers cauli-Afflalo-ur.\n\n(Consider this our RSVP to the next game.) #NBAVegetables']",9,"['23 Jul 2014', '23 Jul 2014', '23 Jul 2014', '24 Jul 2014', '24 Jul 2014', '24 Jul 2014', '24 Jul 2014', '24 Jul 2014', '24 Jul 2014']","['Golden State Warriors', 'Atlanta Hawks', 'Phoen1x Šuns', 'Philadelphia 76ers', 'Phoen1x Šuns', 'Atlanta Hawks', 'Phoen1x Šuns', 'Atlanta Hawks', 'Denver Nuggets']","['@warriors', '@ATLHawks', '@Suns', '@sixers', '@Suns', '@ATLHawks', '@Suns', '@ATLHawks', '@nuggets']"
1530, Should be a great time tonight. #SunsVsPistons and College Night sound like a perfect Friday.https://twitter.com/LaurenAshlee19/status/662666682863763456 …,Suns,DetroitPistons,"[' Should be a great time tonight. #SunsVsPistons and College Night sound like a perfect Friday.https://twitter.com/LaurenAshlee19/status/662666682863763456\xa0…', ""@Suns Sounds fun. We'll be there!"", ""@DetroitPistons Now we're talking. \n\n 7:30 at our place work for you?"", ""@Suns Time can't move fast enough. We'll be there.pic.twitter.com/9bjpKiEh7P"", '@DetroitPistons If only we had one of these! #SunsVsPistonspic.twitter.com/0SXhy26lco', '@Suns Well, we do have one of these. No time travel, though.pic.twitter.com/pV9DtUFiMi', ""@DetroitPistons That's not a hoverboard. This is a hoverboard.pic.twitter.com/wka5PgWQdK"", '@Suns WHAT ARE THOSE?', ""@DetroitPistons Don't worry about it. They won't be here until 2017. #SelfLacing""]",9,"['6 Nov 2015', '6 Nov 2015', '6 Nov 2015', '6 Nov 2015', '6 Nov 2015', '6 Nov 2015', '6 Nov 2015', '6 Nov 2015', '6 Nov 2015']","['Phoen1x Šuns', 'Detroit Pistons', 'Phoen1x Šuns', 'Detroit Pistons', 'Phoen1x Šuns', 'Detroit Pistons', 'Phoen1x Šuns', 'Detroit Pistons', 'Phoen1x Šuns']","['@Suns', '@DetroitPistons', '@Suns', '@DetroitPistons', '@Suns', '@DetroitPistons', '@Suns', '@DetroitPistons', '@Suns']"
2489,That first half!! YES!pic.twitter.com/M5ZeHnNuzC,Bucks,LAClippers,"['That first half!! YES!pic.twitter.com/M5ZeHnNuzC', 'pic.twitter.com/2mGgBnUOQG', 'pic.twitter.com/MSBurWz9Ze', 'pic.twitter.com/aRpzvbDBnJ', 'pic.twitter.com/iZ44lt4Dnj', 'pic.twitter.com/H1vdtckjvb', 'pic.twitter.com/NHTWtnUy8d', 'pic.twitter.com/IN4OkH5hXb', 'pic.twitter.com/7zpXyPAGvb']",9,"['3 Mar 2017', '3 Mar 2017', '3 Mar 2017', '3 Mar 2017', '3 Mar 2017', '3 Mar 2017', '3 Mar 2017', '3 Mar 2017', '3 Mar 2017']","['Milwaukee Bucks', 'LA Clippers', 'Milwaukee Bucks', 'LA Clippers', 'Milwaukee Bucks', 'LA Clippers', 'Milwaukee Bucks', 'LA Clippers', 'Milwaukee Bucks']","['@Bucks', '@LAClippers', '@Bucks', '@LAClippers', '@Bucks', '@LAClippers', '@Bucks', '@LAClippers', '@Bucks']"
514,"Hey @MNTimberwolves, We're really glad the T in T-Wolves doesn't stand for Teen. Not sure how we'd guard this guy.pic.twitter.com/Nib1rK530M",Timberwolves,Suns,"[""Hey @MNTimberwolves, We're really glad the T in T-Wolves doesn't stand for Teen. Not sure how we'd guard this guy.pic.twitter.com/Nib1rK530M"", ""@Suns little do you know, that's what Kyrylo Fesenko evolves into as the game progresses...he's a beast."", ""@MNTimberwolves That's a lot of facial hair he'll have to add in the next few quarters."", '@Suns not an issue, we gave him this pre-game:pic.twitter.com/be36qm4hho', '.@MNTimberwolves Have you seen @milesplumlee13? He wrote the book on quality facial hair in the NBA.pic.twitter.com/pCNdUthXzt', ""@Suns @milesplumlee13 agreed, but you really can't rule out @rickyrubio9 for the MVB-Most Valuable Beard.pic.twitter.com/YfhkxwfGEh"", '.@MNTimberwolves #GAME #SET #MATCHpic.twitter.com/VqC33vMKWp', '.@Suns you may have won this round, but Pek would like to have a word with you...pic.twitter.com/0TSNlb9ID9']",8,"['16 Jul 2014', '16 Jul 2014', '16 Jul 2014', '16 Jul 2014', '16 Jul 2014', '16 Jul 2014', '16 Jul 2014', '16 Jul 2014']","['Phoen1x Šuns', 'Timberwolves', 'Phoen1x Šuns', 'Timberwolves', 'Phoen1x Šuns', 'Timberwolves', 'Phoen1x Šuns', 'Timberwolves']","['@Suns', '@Timberwolves', '@Suns', '@Timberwolves', '@Suns', '@Timberwolves', '@Suns', '@Timberwolves']"
1718,.@Sixers ,Suns,Sixers,"['.@Sixers ', '@ATLHawks <3', '@Sixers @ATLHawkspic.twitter.com/f87KJWTdDa', '@Suns @ATLHawkshttp://gph.is/1gvcPKw\xa0', '@Sixers @ATLHawkspic.twitter.com/1DuOKufPF3', ""@Suns @Sixers @ATLHawks We're in the middle of a game, but during this break in the action, we offer our congrats.pic.twitter.com/frhCJLMRLC"", '@OrlandoMagic @Suns @Sixers @ATLHawks all of these teams are having a conversation with eachother and I just think thats awesome', '@kaliq54 @OrlandoMagic @Sixers @ATLHawks Thanks for having fun along with us.']",8,"['3 Dec 2014', '3 Dec 2014', '3 Dec 2014', '3 Dec 2014', '3 Dec 2014', '3 Dec 2014', '3 Dec 2014', '3 Dec 2014']","['Atlanta Hawks', 'Philadelphia 76ers', 'Phoen1x Šuns', 'Philadelphia 76ers', 'Phoen1x Šuns', 'Orlando Magic', 'The Experiment 2.0', 'Phoen1x Šuns']","['@ATLHawks', '@sixers', '@Suns', '@sixers', '@Suns', '@OrlandoMagic', '@kaliq54', '@Suns']"
560,Run With The Young Bucks #OwnTheFuturepic.twitter.com/XNSS8ViUrF,Timberwolves,Bucks,"['Run With The Young Bucks #OwnTheFuturepic.twitter.com/XNSS8ViUrF', '@Bucks #ButNotTonightTho', '@MNTimberwolves keep up if you can. #OwnTheFuture', '@Buckspic.twitter.com/LEIBaKMSJQ', '@MNTimberwolveshttps://vine.co/v/O1VKTObLP6r\xa0', '@Bucks :)pic.twitter.com/Bx84OE8qQl', '@MNTimberwolves pic.twitter.com/6NiRYcnc3G', '@Bucks not going to lie, that triple-double was pretty cool...but the final score of that game was even better :)pic.twitter.com/5kwBoyCscX']",8,"['26 Nov 2014', '26 Nov 2014', '26 Nov 2014', '26 Nov 2014', '26 Nov 2014', '26 Nov 2014', '26 Nov 2014', '26 Nov 2014']","['Milwaukee Bucks', 'Timberwolves', 'Milwaukee Bucks', 'Timberwolves', 'Milwaukee Bucks', 'Timberwolves', 'Milwaukee Bucks', 'Timberwolves']","['@Bucks', '@Timberwolves', '@Bucks', '@Timberwolves', '@Bucks', '@Timberwolves', '@Bucks', '@Timberwolves']"
14,If you're texting your vote to 69622 for Chris Paul it should look something like this.pic.twitter.com/We65rOL1k3,cavs,LAClippers,"[""If you're texting your vote to 69622 for Chris Paul it should look something like this.pic.twitter.com/We65rOL1k3"", '@LAClippers 3!', '@ATLHawks You mean 1, right?', ""@LAClippers @ATLHawks Suppose there's room for two Pauls in New York :)"", '@ATLHawks The 2015 Paul-Star Game?', '@LAClippers That has a nice ring to it! Just for that... Chris Paul #NBABallot', '@ATLHawks Right back at you! Paul Millsap #NBABallot', '.@LAClippers @ATLHawks paul-ease ']",8,"['11 Dec 2014', '11 Dec 2014', '11 Dec 2014', '11 Dec 2014', '11 Dec 2014', '11 Dec 2014', '11 Dec 2014', '11 Dec 2014']","['LA Clippers', 'Atlanta Hawks', 'LA Clippers', 'Atlanta Hawks', 'LA Clippers', 'Atlanta Hawks', 'LA Clippers', 'Cleveland Cavaliers']","['@LAClippers', '@ATLHawks', '@LAClippers', '@ATLHawks', '@LAClippers', '@ATLHawks', '@LAClippers', '@cavs']"
2665,Let’s do this @Rangers! #ALDS #NeverEverQuitpic.twitter.com/mdeXSBCgj8,Raptors,DallasMavs,"['Let’s do this @Rangers! #ALDS #NeverEverQuitpic.twitter.com/mdeXSBCgj8', '.@dallasmavs\n#ComeTOgether #WeTheNorthpic.twitter.com/dY1q0Nm0cN', '@Raptors wassup?pic.twitter.com/UgyAL3KA0q', ""@dallasmavs Nuthin' much. Watching the game. #WeTheNorth #ComeTogetherpic.twitter.com/Ma0p1CgUoo"", ""@Raptors how's that working out for ya?pic.twitter.com/7yM7NYuxgp"", '@dallasmavs Fine. Just fine thanks. #WeTheNorth #ComeTogetherpic.twitter.com/RJYmMQIyK1', '@Raptors alright.pic.twitter.com/HL13vPYTGd', '@dallasmavs Ballgame. ""Okay, Dude. Have it your way.""pic.twitter.com/vBr1k77EZB']",8,"['8 Oct 2015', '8 Oct 2015', '8 Oct 2015', '8 Oct 2015', '8 Oct 2015', '8 Oct 2015', '8 Oct 2015', '8 Oct 2015']","['Dallas Mavericks', 'Toronto Raptors', 'Dallas Mavericks', 'Toronto Raptors', 'Dallas Mavericks', 'Toronto Raptors', 'Dallas Mavericks', 'Toronto Raptors']","['@dallasmavs', '@Raptors', '@dallasmavs', '@Raptors', '@dallasmavs', '@Raptors', '@dallasmavs', '@Raptors']"
3027,Sonics fan seeking new favorite NBA team. I've narrowed my list down to @Timberwolves @Sixers @Pacers @Bucks @PelicansNBA @ATLHawks,Sixers,Timberwolves,"[""Sonics fan seeking new favorite NBA team. I've narrowed my list down to @Timberwolves @Sixers @Pacers @Bucks @PelicansNBA @ATLHawks"", 'pick us!pic.twitter.com/hkxxZyHVpa', ""What's up, @clarknova11? @ATLHawks @Sixers @Pacers @Bucks @PelicansNBApic.twitter.com/f2OTdhgive"", ""There's only right answer here, @clarknova11. @Timberwolves @ATLHawks @Pacers @Bucks @PelicansNBApic.twitter.com/6rYLfgTzeM"", 'we keep it tho. #justsayingpic.twitter.com/nmkGYTluOz', 'woah, woah, woah ... who invited these guys', '@ATLHawks @LAClippers @clarknova11 @Timberwolves @Pacers @Bucks @PelicansNBApic.twitter.com/EVAVcPd5le']",7,"['17 Jun 2016', '17 Jun 2016', '17 Jun 2016', '17 Jun 2016', '17 Jun 2016', '17 Jun 2016', '17 Jun 2016']","['Jeremy', 'Atlanta Hawks', 'Timberwolves', 'Philadelphia 76ers', 'LA Clippers', 'Atlanta Hawks', 'Philadelphia 76ers']","['@clarknova11', '@ATLHawks', '@Timberwolves', '@sixers', '@LAClippers', '@ATLHawks', '@sixers']"
3179,We called the @trailblazers the best NBA social media account. Seems like the @Oregonian concurs. More here:http://bit.ly/1F4psvD ,Sixers,trailblazers,"['We called the @trailblazers the best NBA social media account. Seems like the @Oregonian concurs. More here:http://bit.ly/1F4psvD\xa0', '@Complex_Sports @trailblazers @Oregonian not as good as @sixers tbh', '@FanSince09 @trailblazers @Oregonian @sixers Sixers are way up there too, no doubt.', ""@Complex_Sports @trailblazers @Oregonian @Sixers I'd rank them higher just based on the type of season it was. They kept everyone interested"", ""@FanSince09 You're RoCo, we're Lil Sip (or vice versa).pic.twitter.com/p4kv6PJPBI"", ""@Sixers @FanSince09 but who's Nerlens?pic.twitter.com/JwXpghmSbW"", '@trailblazers @FanSince09 We are.pic.twitter.com/0DnX50VNYO']",7,"['5 May 2015', '5 May 2015', '5 May 2015', '5 May 2015', '5 May 2015', '5 May 2015', '5 May 2015']","['Complex Sports', 'FanSince09', 'Complex Sports', 'FanSince09', 'Philadelphia 76ers', 'Trail Blazers', 'Philadelphia 76ers']","['@ComplexSports', '@FanSince09', '@ComplexSports', '@FanSince09', '@sixers', '@trailblazers', '@sixers']"
1720,THIS! —> RT @Sixers: The fiiirst Noel... pic.twitter.com/vJdTfD1Di2,Suns,Sixers,"['THIS! —> RT @Sixers: The fiiirst Noel... pic.twitter.com/vJdTfD1Di2', "".@AmericasPregame @Sixers You guys aren't starting #NBAChristmasSongs are you?"", '@Suns @AmericasPregame We just went there.', '@Sixers @Suns @AmericasPregame #NoelJoel!!!', '.@EscobarFurious @Suns @AmericasPregame #NoelJoelpic.twitter.com/7seXKD0qPs', '.@Sixers @EscobarFurious @Suns @AmericasPregame I’ve got your musical accompaniment: http://www.nba.com/video/channels/nba_tv/2014/10/22/20141022-starters-sixers-singing.nba/\xa0… #TheStarters', '@TasMelas @Sixers @EscobarFurious @AmericasPregame Bled it snow. Bled it snow. #NBAChristmasSongs']",7,"['20 Nov 2014', '20 Nov 2014', '20 Nov 2014', '20 Nov 2014', '20 Nov 2014', '20 Nov 2014', '20 Nov 2014']","[""America's Pregame"", 'Phoen1x Šuns', 'Philadelphia 76ers', 'Escobar Furious Esq. \xa0🌐', 'Philadelphia 76ers', 'Tas Melas', 'Phoen1x Šuns']","['@AmericasPregame', '@Suns', '@sixers', '@EscobarFurious', '@sixers', '@TasMelas', '@Suns']"
618,"Okay #BuzzCity, this week's hashtag is #NBABedtimeStories! Let's hear them!",Hornets,OrlandoMagic,"[""Okay #BuzzCity, this week's hashtag is #NBABedtimeStories! Let's hear them!"", '@hornets One Fish, Two Fish, Red Fish, Kidd-Gilchrist. #NBABedtimeStories', '@Chrishowrad hahahaha!!!!! This is hilarious... we might need to make this into an image', ""@hornets I'll see what I can do"", ""Dr. Seuss's One Fish, Two Fish, Red Fish, Kidd-Gilchrist #NBABedtimeStories - Kudos @Chrishowradpic.twitter.com/oME66R8Q4A"", '@hornets @Chrishowrad Nice team-fan-work!', '@OrlandoMagic @Chrishowrad #BuzzCity is on a roll over here!']",7,"['3 Sep 2014', '3 Sep 2014', '3 Sep 2014', '3 Sep 2014', '3 Sep 2014', '3 Sep 2014', '3 Sep 2014']","['Charlotte Hornets', 'Chris Howard', 'Charlotte Hornets', 'Chris Howard', 'Charlotte Hornets', 'Orlando Magic', 'Charlotte Hornets']","['@hornets', '@Chrishowrad', '@hornets', '@Chrishowrad', '@hornets', '@OrlandoMagic', '@hornets']"
1639,".@ATLHawks, want to come over to our house?
",Suns,ATLHawks,"['.@ATLHawks, want to come over to our house? \n', ""@dallasmavs How about we crash at the @Suns' house? Weather seems better there..."", "".@ATLHawks @dallasmavs You're welcome to drop by any time. We've got an air mattress for you. Only one though.pic.twitter.com/o7R8LZb11o"", '@Suns are you ready @ATLHawks? #rockpaperscissorspic.twitter.com/7PSRyDNFDR', '.@dallasmavs @ATLHawks Safe travels guys. See you soon.pic.twitter.com/1oO7aVlvAB', 'This conversation between @Suns, @dallasmavs, & @ATLHawks is what makes social media great. #JustSayin', '@BradBaker81 @dallasmavs @ATLHawks Great, or the greatest?']",7,"['25 Feb 2015', '25 Feb 2015', '25 Feb 2015', '25 Feb 2015', '25 Feb 2015', '25 Feb 2015', '25 Feb 2015']","['Dallas Mavericks', 'Atlanta Hawks', 'Phoen1x Šuns', 'Dallas Mavericks', 'Phoen1x Šuns', 'Brad', 'Phoen1x Šuns']","['@dallasmavs', '@ATLHawks', '@Suns', '@dallasmavs', '@Suns', '@BradBaker81', '@Suns']"
3203,"Both @moe_harkless and @PlanetPat5 like the new red 'Statement' jerseys, which the @trailblazers are wearing for the first time tonight, though @eddavisXVII doesn't want to wear red sockshttp://rip.city/2AJvCol ",trailblazers,celtics,"[""Both @moe_harkless and @PlanetPat5 like the new red 'Statement' jerseys, which the @trailblazers are wearing for the first time tonight, though @eddavisXVII doesn't want to wear red sockshttp://rip.city/2AJvCol\xa0"", 'Sorry, @RedSox.', 'That’s cool. We’re kind of into green when it comes to basketball. ', 'Green *is* the color of envy.pic.twitter.com/CYILvbdavo', 'Envious? pic.twitter.com/6OmltkzAWS', 'pic.twitter.com/pp8P0yfBL9', 'pic.twitter.com/I0sI68NiPA']",7,"['30 Nov 2017', '30 Nov 2017', '30 Nov 2017', '30 Nov 2017', '30 Nov 2017', '30 Nov 2017', '30 Nov 2017']","['Casey Holdahl', 'Trail Blazers', 'Red Sox', 'Trail Blazers', 'Red Sox', 'Boston Celtics', 'Trail Blazers']","['@CHold', '@trailblazers', '@RedSox', '@trailblazers', '@RedSox', '@celtics', '@trailblazers']"
901,@RachaelHoops @SacramentoKings What about us?,LAClippers,ATLHawks,"['@RachaelHoops @SacramentoKings What about us?', ""@ATLHawks @RachaelHoops don't let them persuade you."", '@SacramentoKings @ATLHawks @RachaelHoopspic.twitter.com/XmwIpIzZcL', '@LAClippers @SacramentoKings @RachaelHoops You guys...', '@ATLHawks @SacramentoKings @RachaelHoops ', '@LAClippers @ATLHawks @RachaelHoops Kings vs Hawks is so lit that the Clips want in. Understandable.', '@SacramentoKings @ATLHawks @RachaelHoops We were told ""no more parties in L.A.""']",7,"['21 Jan 2016', '21 Jan 2016', '21 Jan 2016', '21 Jan 2016', '21 Jan 2016', '21 Jan 2016', '21 Jan 2016']","['Atlanta Hawks', 'Sacramen2 Kings', 'LA Clippers', 'Atlanta Hawks', 'LA Clippers', 'Sacramen2 Kings', 'LA Clippers']","['@ATLHawks', '@SacramentoKings', '@LAClippers', '@ATLHawks', '@LAClippers', '@SacramentoKings', '@LAClippers']"
2635,'Member @trailblazers?pic.twitter.com/sUHCKnIBoj,Bucks,trailblazers,"[""'Member @trailblazers?pic.twitter.com/sUHCKnIBoj"", 'pic.twitter.com/gjy0VimLtm', 'member this?pic.twitter.com/7dnEwU2pex', 'remember this?pic.twitter.com/Jc2BmLQ9SS', 'you must not have an accurate memory of how the trade actually worked. #RIPTractor', ""I know you still missed out on dirk? And yeah no shade towards tractor I just can't take any more Oden shots"", 'kids man...']",7,"['7 Dec 2016', '7 Dec 2016', '7 Dec 2016', '7 Dec 2016', '7 Dec 2016', '7 Dec 2016', '7 Dec 2016']","['Milwaukee Bucks', 'Trail Blazers', 'Zeegs', 'Domo', 'Milwaukee Bucks', 'Domo', 'Milwaukee Bucks']","['@Bucks', '@trailblazers', '@SirZeegs', '@DomoPowell0', '@Bucks', '@DomoPowell0', '@Bucks']"
1551," ROLL CALL!
We're under way in Phoenix. Where are you watching tonight's game?",Suns,LAClippers,"["" ROLL CALL! \n\nWe're under way in Phoenix. Where are you watching tonight's game?"", '[email protected]/yyypnDhVf6', '@NBAonTNT @LAClippers No love for us?pic.twitter.com/RIuRY6N1w1', '.@Suns @LAClippers Hellopic.twitter.com/gJpODlS8EW', '@NBAonTNT @LAClipperspic.twitter.com/JnLvlnHuBB', '.@Suns @LAClipperspic.twitter.com/w7aZ2qYqhQ', '@NBAonTNT @LAClipperspic.twitter.com/p2EKait9u5']",7,"['12 Nov 2015', '12 Nov 2015', '12 Nov 2015', '12 Nov 2015', '12 Nov 2015', '12 Nov 2015', '12 Nov 2015']","['LA Clippers', 'NBA on TNT', 'Phoen1x Šuns', 'NBA on TNT', 'Phoen1x Šuns', 'NBA on TNT', 'Phoen1x Šuns']","['@LAClippers', '@NBAonTNT', '@Suns', '@NBAonTNT', '@Suns', '@NBAonTNT', '@Suns']"
1317,"Hey @Suns, we did some research and it looks like our point guards might know each other.
#WizSunspic.twitter.com/rYNT1aCkGf",WashWizards,Suns,"['Hey @Suns, we did some research and it looks like our point guards might know each other. \n#WizSunspic.twitter.com/rYNT1aCkGf', '.@WashWizards pic.twitter.com/f6McUFAQko', 'see you tonight!\n\n#WizSunspic.twitter.com/5dKXdv6mfu', '', '.@Suns \n#WizSunspic.twitter.com/EU9Hd6q2Ds', '', 'good game \n#WizSunspic.twitter.com/LRjeGCKzIz']",7,"['21 Nov 2016', '21 Nov 2016', '21 Nov 2016', '21 Nov 2016', '21 Nov 2016', '21 Nov 2016', '21 Nov 2016']","['Washington Wizards', 'Phoen1x Šuns', 'Washington Wizards', 'Phoen1x Šuns', 'Washington Wizards', 'Phoen1x Šuns', 'Washington Wizards']","['@WashWizards', '@Suns', '@WashWizards', '@Suns', '@WashWizards', '@Suns', '@WashWizards']"
3366,Hawks.,trailblazers,ATLHawks,"['Hawks.', 'Blazers.', 'these guyspic.twitter.com/KobaEj460R', 'the guys with the lower numberpic.twitter.com/AZYbUFQtZG', 'yeah, the guys with the lower number http://www.complex.com/sports/2015/01/all-30-nba-twitter-accounts-ranked/portland-trail-blazers\xa0…', 'so we agree then?', 'you convinced us']",7,"['11 May 2016', '11 May 2016', '11 May 2016', '11 May 2016', '11 May 2016', '11 May 2016', '11 May 2016']","['Trail Blazers', 'Atlanta Hawks', 'Trail Blazers', 'Atlanta Hawks', 'Trail Blazers', 'Atlanta Hawks', 'Trail Blazers']","['@trailblazers', '@ATLHawks', '@trailblazers', '@ATLHawks', '@trailblazers', '@ATLHawks', '@trailblazers']"
2601,"14 years ago today, Ray Allen led the Bucks to victory in Game 6 of the 2001 ECF » http://on.nba.com/1GgM2BG pic.twitter.com/bJsEUPtQvv",Bucks,Sixers,"['14 years ago today, Ray Allen led the Bucks to victory in Game 6 of the 2001 ECF » http://on.nba.com/1GgM2BG\xa0pic.twitter.com/bJsEUPtQvv', '@Buckspic.twitter.com/CgxUdTTdya', ""@Sixers whenever you want to rejoin the playoff party, we'll be ready."", '@Bucks Same.pic.twitter.com/1qqkNO5I9F', '@Sixers what was that?https://youtu.be/Z6U-nHXKam4\xa0', '@Bucks http://en.wikipedia.org/wiki/Non_sequitur_%28logic%29\xa0…', '@Sixers see you in a few months. #OwnTheFuture']",7,"['1 Jun 2015', '1 Jun 2015', '1 Jun 2015', '1 Jun 2015', '1 Jun 2015', '1 Jun 2015', '1 Jun 2015']","['Milwaukee Bucks', 'Philadelphia 76ers', 'Milwaukee Bucks', 'Philadelphia 76ers', 'Milwaukee Bucks', 'Philadelphia 76ers', 'Milwaukee Bucks']","['@Bucks', '@sixers', '@Bucks', '@sixers', '@Bucks', '@sixers', '@Bucks']"
2384,When you check the clock at the office on Monday and it's only 4:00...pic.twitter.com/qDxlKAEyI2,MemGrizz,SacramentoKings,"[""When you check the clock at the office on Monday and it's only 4:00...pic.twitter.com/qDxlKAEyI2"", '*checks clock*pic.twitter.com/sUDuWyljxd', ""When it's lunch time on the west coastpic.twitter.com/uWOAuo032V"", ""when it's kind of sort of close to dinner timepic.twitter.com/z8UsQxE8H4"", ""This is the what happens when it's summer time and there's nothing to report on this happens LOL"", 'We appreciate food during all seasons, Josh.']",6,"['7 Aug 2017', '7 Aug 2017', '7 Aug 2017', '7 Aug 2017', '7 Aug 2017', '7 Aug 2017']","['Washington Wizards', 'Memphis Grizzlies', 'Sacramen2 Kings', 'Memphis Grizzlies', 'Josh Berman', 'Memphis Grizzlies']","['@WashWizards', '@memgrizz', '@SacramentoKings', '@memgrizz', '@ravensnationftw', '@memgrizz']"
1834,BINGO! Who will connect on more three-pointers tonight -- Redick or Korver? Now taking predictions.pic.twitter.com/lFpvtCeDMh,warriors,ATLHawks,"['BINGO! Who will connect on more three-pointers tonight -- Redick or Korver? Now taking predictions.pic.twitter.com/lFpvtCeDMh', '@LAClippers Korver.', '@ATLHawks Redick.', ""@LAClippers @ATLHawks you're both wrong. #SplashBrotherspic.twitter.com/FZybD6Y3yX"", '@warriors @ATLHawks but, but, but http://bit.ly/1vkYBkF\xa0', ""@LAClippers @ATLHawks that's cute.http://youtu.be/KuHdLc3mFFA\xa0""]",6,"['23 Dec 2014', '23 Dec 2014', '23 Dec 2014', '23 Dec 2014', '23 Dec 2014', '23 Dec 2014']","['LA Clippers', 'Atlanta Hawks', 'LA Clippers', 'Golden State Warriors', 'LA Clippers', 'Golden State Warriors']","['@LAClippers', '@ATLHawks', '@LAClippers', '@warriors', '@LAClippers', '@warriors']"
2971,.@SacDigitalHQ Thanks for all the #engagements. Everyone appears to be having fun.,SacramentoKings,Sixers,"['.@SacDigitalHQ Thanks for all the #engagements. Everyone appears to be having fun.', '.@Sixers @SacDigitalHQ so does that mean you guys are gonna vote for Boogie or nah?', '.@SacramentoKings hard pass on that.\n\n#NBAVote Joel Embiidpic.twitter.com/YIugjETGRO', '.@Sixers looks like Joel is voting @boogiecousins tho. #NBAVotepic.twitter.com/gDdBMMShgx', '.@SacramentoKings ok yeah you right.\n\nJoel Embiid #NBAVotepic.twitter.com/J6ym9PqZtn', ""we're in the same boat. Joel Embiid #NBAVote""]",6,"['26 Dec 2016', '26 Dec 2016', '26 Dec 2016', '26 Dec 2016', '26 Dec 2016', '26 Dec 2016']","['Philadelphia 76ers', 'Sacramen2 Kings', 'Philadelphia 76ers', 'Sacramen2 Kings', 'Philadelphia 76ers', 'Sacramen2 Kings']","['@sixers', '@SacramentoKings', '@sixers', '@SacramentoKings', '@sixers', '@SacramentoKings']"
3067,Tonight's line up vs @LAClippers »https://amp.twimg.com/v/7aea3eda-1777-44e2-9281-d072d54f6530 …,Sixers,LAClippers,"[""Tonight's line up vs @LAClippers »https://amp.twimg.com/v/7aea3eda-1777-44e2-9281-d072d54f6530\xa0…"", ""@Sixers It's lit "", '.@LAClippers It is indeed ', '@Sixers @LAClippers can I be a part of this friend group', '@AndubC856 @Sixers Drake said ""no new friends."" ¯\\_(ツ)_/¯', '.@LAClippers @AndubC856pic.twitter.com/40nAVZLwbf']",6,"['8 Feb 2016', '8 Feb 2016', '8 Feb 2016', '8 Feb 2016', '8 Feb 2016', '8 Feb 2016']","['Philadelphia 76ers', 'LA Clippers', 'Philadelphia 76ers', 'Andrew Collins', 'LA Clippers', 'Philadelphia 76ers']","['@sixers', '@LAClippers', '@sixers', '@AndubC856', '@LAClippers', '@sixers']"
1752,"With a quarter of the season in the books, what's been your favorite moment so far, Rip City? We'll RT some of the best answers!",Suns,trailblazers,"[""With a quarter of the season in the books, what's been your favorite moment so far, Rip City? We'll RT some of the best answers!"", '@trailblazers Two games come to mind so far.', '@Suns You enjoyed us beating Indy and OKC, too?', ""@trailblazers Like the great Ron Burgundy said: not even mad; that start's impressive."", '@Suns Any tweet with a Ron Burgundy mention is a win. Nicely done.', '@trailblazers So this counts as win No. 3 for us? #SunsVsBlazers']",6,"['10 Dec 2013', '10 Dec 2013', '10 Dec 2013', '10 Dec 2013', '10 Dec 2013', '10 Dec 2013']","['Trail Blazers', 'Phoen1x Šuns', 'Trail Blazers', 'Phoen1x Šuns', 'Trail Blazers', 'Phoen1x Šuns']","['@trailblazers', '@Suns', '@trailblazers', '@Suns', '@trailblazers', '@Suns']"
206,".@spurs are 26-0 at home, matching 1977-78 @TrailBlazers for 4th-longest home win streak to start a season in @NBAHistory. #ELIAS",PelicansNBA,ATLHawks,"['.@spurs are 26-0 at home, matching 1977-78 @TrailBlazers for 4th-longest home win streak to start a season in @NBAHistory. #ELIAS', ""@nbastats @spurs @NBAHistory Don't let them break the record, @PelicansNBA"", '@trailblazers @nbastats @spurs @NBAHistory - We like breaking streaks. Right, @ATLHawks?', '@PelicansNBA @nbastats @spurs @NBAHistory @ATLHawkspic.twitter.com/9z5g5eWUWm', '.@trailblazers @PelicansNBA @nbastats @spurs @NBAHistorypic.twitter.com/GvhAldJWUR', '@ATLHawks @trailblazers @nbastats @spurs @NBAHistory -pic.twitter.com/bXHhXB3THA']",6,"['2 Feb 2016', '2 Feb 2016', '2 Feb 2016', '2 Feb 2016', '2 Feb 2016', '2 Feb 2016']","['NBA.com/Stats', 'Trail Blazers', 'New Orleans Pelicans', 'Trail Blazers', 'Atlanta Hawks', 'New Orleans Pelicans']","['@nbastats', '@trailblazers', '@PelicansNBA', '@trailblazers', '@ATLHawks', '@PelicansNBA']"
341,"#NBASuperHeroes trended worldwide. Here are our favorites from whatever we're calling what just took place.
LIST >> http://on.suns.com/353 ",OrlandoMagic,Suns,"[""#NBASuperHeroes trended worldwide. Here are our favorites from whatever we're calling what just took place. \n\nLIST >> http://on.suns.com/353\xa0"", ""@Suns Great recap! Although, we think you're missing a few tweets... *cough cough*"", ""@warriors It's an in division thing ... We mean inadvertent thing. We'll add a few in..."", '@Suns @warriors just a division thing, huh? :(', '@MNTimberwolves @Suns Well, you know what they say...pic.twitter.com/drPaccHhGe', '@warriors @MNTimberwolves @Suns Agreed!']",6,"['30 Jul 2014', '30 Jul 2014', '30 Jul 2014', '30 Jul 2014', '30 Jul 2014', '30 Jul 2014']","['Phoen1x Šuns', 'Golden State Warriors', 'Phoen1x Šuns', 'Timberwolves', 'Golden State Warriors', 'Orlando Magic']","['@Suns', '@warriors', '@Suns', '@Timberwolves', '@warriors', '@OrlandoMagic']"
2361,"Keep doing work #DubNation
All 5 ways to #DubTheVote » http://bit.ly/DubTheVote17 https://twitter.com/nbaallstar/status/819620278359781381 …",MemGrizz,warriors,"['Keep doing work #DubNation \n\nAll 5 ways to #DubTheVote » http://bit.ly/DubTheVote17\xa0https://twitter.com/nbaallstar/status/819620278359781381\xa0…', ' Kevin Durant #NBAVotepic.twitter.com/DnEqaeyAr4', ' Draymond Green #NBAVotepic.twitter.com/IcuPgsDl11', '.@warriors Mike Conley #NBAVOTEhttps://vine.co/v/53uara53UaO\xa0', 'CHILL.', 'sry not srypic.twitter.com/SlXUFs2aDB']",6,"['12 Jan 2017', '12 Jan 2017', '12 Jan 2017', '12 Jan 2017', '12 Jan 2017', '12 Jan 2017']","['Golden State Warriors', 'Golden State Warriors', 'Golden State Warriors', 'Memphis Grizzlies', 'Golden State Warriors', 'Memphis Grizzlies']","['@warriors', '@warriors', '@warriors', '@memgrizz', '@warriors', '@memgrizz']"
1063,"Our court renovation at Welcome All Park last week was awesome.
#ICYMI, we now have video: http://on.nba.com/1I5hAbE
#TrueToAtlanta",UtahJazz,ATLHawks,"['Our court renovation at Welcome All Park last week was awesome.\n\n#ICYMI, we now have video: http://on.nba.com/1I5hAbE\xa0\n#TrueToAtlanta', '@ATLHawks Nice! We have 12 such community courts ourselves, NBD.http://on.nba.com/1oOdrBv\xa0', '@utahjazz We should play a preseason game on one of those bad boys.', ""@ATLHawks That is the best idea we have heard all #NBAOffseason!! Let's make it happen!"", '@utahjazzpic.twitter.com/Oqn6XPxkT3', ""@ATLHawks And then we'd be feelin' like...pic.twitter.com/jCSXB6rhKv""]",6,"['30 Jul 2015', '30 Jul 2015', '30 Jul 2015', '30 Jul 2015', '30 Jul 2015', '30 Jul 2015']","['Atlanta Hawks', 'Utah Jazz', 'Atlanta Hawks', 'Utah Jazz', 'Atlanta Hawks', 'Utah Jazz']","['@ATLHawks', '@utahjazz', '@ATLHawks', '@utahjazz', '@ATLHawks', '@utahjazz']"
1047,"Game day!
@utahjazz
7 pm
@FOXSPORTSAZ / FOX Sports Go App
@AZSports
Suns Mobile App
#WeArePHXpic.twitter.com/m0qmEboSzF",UtahJazz,Suns,"['Game day!\n\n@utahjazz\n7 pm\n@FOXSPORTSAZ / FOX Sports Go App\n@AZSports\nSuns Mobile App\n\n#WeArePHXpic.twitter.com/m0qmEboSzF', 'pic.twitter.com/gEynCtGiN4', ""yooo, where's the sun at? pic.twitter.com/McWG9qSRYf"", ""Isn't the Sun overrated tho? pic.twitter.com/9tTpcJQiBq"", 'npe. pic.twitter.com/uQMnpClEcI', 'Tell that to this guy... pic.twitter.com/DM6WanKVjo']",6,"['6 Dec 2016', '6 Dec 2016', '6 Dec 2016', '6 Dec 2016', '6 Dec 2016', '6 Dec 2016']","['Phoen1x Šuns', 'Utah Jazz', 'Phoen1x Šuns', 'Utah Jazz', 'Phoen1x Šuns', 'Utah Jazz']","['@Suns', '@utahjazz', '@Suns', '@utahjazz', '@Suns', '@utahjazz']"
2651,Hey @Raptors pic.twitter.com/06mtGGZORK,Raptors,OrlandoMagic,"['Hey @Raptors pic.twitter.com/06mtGGZORK', '.@OrlandoMagic Hello. \n#WeTheNorthpic.twitter.com/V13o6oov5F', ""@Raptors @OrlandoMagic sheeesh!! The North went all Sith on 'em..."", '@Bucks @OrlandoMagic @JayScotlandpic.twitter.com/pXgYNjtU7M', ""@Raptors @Bucks @OrlandoMagic @JayScotland wasn't uspic.twitter.com/JLAJHP0fPj"", '@OrlandoMagic @Bucks @JayScotlandpic.twitter.com/VdFfgBNtmV']",6,"['6 Nov 2015', '6 Nov 2015', '6 Nov 2015', '6 Nov 2015', '6 Nov 2015', '6 Nov 2015']","['Orlando Magic', 'Toronto Raptors', 'Milwaukee Bucks', 'Toronto Raptors', 'Orlando Magic', 'Toronto Raptors']","['@OrlandoMagic', '@Raptors', '@Bucks', '@Raptors', '@OrlandoMagic', '@Raptors']"
469,Timberwolves out to a 21-8 start to the second. Tied at 44pic.twitter.com/cKRol2Zl3V,Timberwolves,LAClippers,"['Timberwolves out to a 21-8 start to the second. Tied at 44pic.twitter.com/cKRol2Zl3V', '@LAClippers started down 18, now we here. ', '@MNTimberwolves But CP3 though', '@LAClippers but LaVine tho....', '@MNTimberwolves Dude can get up, but 17/8 > 12/3', '@LAClippers you right, you right. But 58 > 55.']",6,"['2 Mar 2015', '2 Mar 2015', '2 Mar 2015', '2 Mar 2015', '2 Mar 2015', '2 Mar 2015']","['LA Clippers', 'Timberwolves', 'LA Clippers', 'Timberwolves', 'LA Clippers', 'Timberwolves']","['@LAClippers', '@Timberwolves', '@LAClippers', '@Timberwolves', '@LAClippers', '@Timberwolves']"
1344,@ATLHawks good luck! #WizSummer2014,WashWizards,ATLHawks,"['@ATLHawks good luck! #WizSummer2014', ""@WashWizards You guys too. Hope you weren't out too late."", ""@WashWizards You guys are defending as if you don't like our new logo..."", ""@ATLHawks like the logo, but have no desire to switch. You've got some work to do #WizSummer2014"", '@WashWizards Plenty of time...Holt to the rescue?', '@ATLHawks getting too close for our comfort, these next 7 minutes have a lot riding on them #AvatarBattle #WizSummer2014']",6,"['12 Jul 2014', '12 Jul 2014', '12 Jul 2014', '12 Jul 2014', '12 Jul 2014', '12 Jul 2014']","['Washington Wizards', 'Atlanta Hawks', 'Atlanta Hawks', 'Washington Wizards', 'Atlanta Hawks', 'Washington Wizards']","['@WashWizards', '@ATLHawks', '@ATLHawks', '@WashWizards', '@ATLHawks', '@WashWizards']"
39,".@cavs you don't text, you don't call, and then you expect me to just drop everything when you come back?",cavs,ATLHawks,"["".@cavs you don't text, you don't call, and then you expect me to just drop everything when you come back?"", ""Oops... #awkward RT @Rlynch1989: @cavs you don't text, you don't call, and then you expect me to just drop everything when you come back?"", ""@cavs Someone's got relationship issues..."", '@ATLHawks #CuffingSeason', '@cavs Is he gonna be jealous when we hang out tomorrow?', ""@ATLHawks let's go with: yes. #CavsHawks""]",6,"['14 Nov 2014', '14 Nov 2014', '14 Nov 2014', '14 Nov 2014', '14 Nov 2014', '14 Nov 2014']","['Ryan Lynch', 'Cleveland Cavaliers', 'Atlanta Hawks', 'Cleveland Cavaliers', 'Atlanta Hawks', 'Cleveland Cavaliers']","['@Rlynch1989', '@cavs', '@ATLHawks', '@cavs', '@ATLHawks', '@cavs']"
2437,"Hey, @Bucks! pic.twitter.com/lKG4jRWMZ1",Bucks,OrlandoMagic,"['Hey, @Bucks! pic.twitter.com/lKG4jRWMZ1', 'Hello there @OrlandoMagic!pic.twitter.com/aWGqTUhS7C', '@Bucks You ready to do this thang?pic.twitter.com/kiyn8ZiGBr', "".@OrlandoMagic we're ready!pic.twitter.com/4PhlZh3vYn"", '@Bucks See you in 70 . . .pic.twitter.com/f1Xu8g394C', '@OrlandoMagic pic.twitter.com/WvImsiTVED']",6,"['27 Nov 2015', '27 Nov 2015', '27 Nov 2015', '27 Nov 2015', '27 Nov 2015', '27 Nov 2015']","['Orlando Magic', 'Milwaukee Bucks', 'Orlando Magic', 'Milwaukee Bucks', 'Orlando Magic', 'Milwaukee Bucks']","['@OrlandoMagic', '@Bucks', '@OrlandoMagic', '@Bucks', '@OrlandoMagic', '@Bucks']"
882,@nuggets where can I buy tickets?,LAClippers,nuggets,"['@nuggets where can I buy tickets?', ""for tonight's game? Or in general?"", ""tonight's game in LA."", ""you'd have to ask the @LAClippers..."", 'hey @LAClippers where do I get tickets?', 'http://bit.ly/2gZzJ1k\xa0']",6,"['20 Dec 2016', '20 Dec 2016', '20 Dec 2016', '20 Dec 2016', '20 Dec 2016', '20 Dec 2016']","['Denver Sports: STATS', 'Denver Nuggets', 'Denver Sports: STATS', 'Denver Nuggets', 'Denver Sports: STATS', 'LA Clippers']","['@MHS_Stats', '@nuggets', '@MHS_Stats', '@nuggets', '@MHS_Stats', '@LAClippers']"
1500,.@SlamsonTheLion Drains Reverse Halfcourt Shot » http://spr.ly/60118XyrR pic.twitter.com/4tzIy9ns7m,Suns,OrlandoMagic,"['.@SlamsonTheLion Drains Reverse Halfcourt Shot » http://spr.ly/60118XyrR\xa0pic.twitter.com/4tzIy9ns7m', 'looks familiar pic.twitter.com/cQRoMYTgWf', 'same (@STUFFMagic )pic.twitter.com/IT8IsVcZFL', 'Anyone up for a game of knockout?pic.twitter.com/dLQ6Pmnq4P', ""We're a little late to this party but at least @bennythebull dressed up.pic.twitter.com/JTFgUrXW1I"", '….. @SunsGorilla thoughpic.twitter.com/cMrqiwqrhK']",6,"['2 Mar 2017', '2 Mar 2017', '2 Mar 2017', '2 Mar 2017', '3 Mar 2017', '3 Mar 2017']","['Sacramen2 Kings', 'Denver Nuggets', 'Orlando Magic', 'Atlanta Hawks', 'Chicago Bulls', 'Phoen1x Šuns']","['@SacramentoKings', '@nuggets', '@OrlandoMagic', '@ATLHawks', '@chicagobulls', '@Suns']"
2101,Well.. The @suns and @ATLHawks were the only two teams to respond to my letter. Please present your best case as to why I should pick you!,ATLHawks,Suns,"['Well.. The @suns and @ATLHawks were the only two teams to respond to my letter. Please present your best case as to why I should pick you!', ""@keetont34 It's 36 and snowing where the @ATLHawks are and it's 80 degrees and sunny here. #CaseClosed"", '@Suns btw.. It’s 22 and snowing where I am.. So I can kinda relate more to the @ATLHawks on this one.', ""@keetont34 @ATLHawks But wouldn't you rather visit where it's not cold to see your new favorite team play?"", '@Suns @ATLHawks Valid argument. Idk how often I can make that 1,577 miles trip, though.', ""@keetont34 @Suns well @Tip and 2 Chainz are fans so why wouldn't you be? Also @24Bazemore dances like thispic.twitter.com/hsrBVpb1ct""]",6,"['9 Feb 2016', '9 Feb 2016', '9 Feb 2016', '9 Feb 2016', '9 Feb 2016', '9 Feb 2016']","['Taylor Keeton', 'Phoen1x Šuns', 'Taylor Keeton', 'Phoen1x Šuns', 'Taylor Keeton', 'Atlanta Hawks']","['@keetont34', '@Suns', '@keetont34', '@Suns', '@keetont34', '@ATLHawks']"
2777,Zach with 5 straight!,SacramentoKings,Timberwolves,"['Zach with 5 straight!', '@Timberwolves can he chill?', '.@SacramentoKings #NoChill', '@Timberwolvespic.twitter.com/cQCoFZVCS6', '[email protected]/wLqJqIJsu9', '@Timberwolvespic.twitter.com/QCGc3B77eU']",6,"['27 Nov 2015', '27 Nov 2015', '27 Nov 2015', '27 Nov 2015', '27 Nov 2015', '27 Nov 2015']","['Timberwolves', 'Sacramen2 Kings', 'Timberwolves', 'Sacramen2 Kings', 'Timberwolves', 'Sacramen2 Kings']","['@Timberwolves', '@SacramentoKings', '@Timberwolves', '@SacramentoKings', '@Timberwolves', '@SacramentoKings']"
1736,"Remember when Brandon Roy dropped 52 points against the @Suns on @NBAonTNT? #PORvsPHX
Watch » http://Rip.City/tr8p pic.twitter.com/TYZF1KY22B",Suns,trailblazers,"['Remember when Brandon Roy dropped 52 points against the @Suns on @NBAonTNT? #PORvsPHX\n\nWatch » http://Rip.City/tr8p\xa0pic.twitter.com/TYZF1KY22B', '.@trailblazers Do you remember this crazy Barkley shot in Portland on @NBAonTNT?https://www.youtube.com/watch?v=WFe-71tNPQk\xa0…', '@Suns @NBAonTNT we had a little talk with our clock operator after this one.', '.@trailblazers @NBAonTNT We just fell deeper in love with Sir Charles.', ""@Suns @trailblazers @NBAonTNT Can't we all just get along? How about an Uncle Cliffy pic in both jerseys?"", '.@Michael_Abbott @trailblazers @NBAonTNT Cliff vs. Cliff.pic.twitter.com/sOeKQHrESN']",6,"['5 Feb 2015', '5 Feb 2015', '5 Feb 2015', '5 Feb 2015', '5 Feb 2015', '5 Feb 2015']","['Trail Blazers', 'Phoen1x Šuns', 'Trail Blazers', 'Phoen1x Šuns', 'Mike Abbott', 'Phoen1x Šuns']","['@trailblazers', '@Suns', '@trailblazers', '@Suns', '@Michael_Abbott', '@Suns']"
2767,"KAT AND 1!
*Every day is KAT day*pic.twitter.com/JpPGdhG192",SacramentoKings,Timberwolves,"['KAT AND 1! \n\n*Every day is KAT day*pic.twitter.com/JpPGdhG192', '@Timberwolves #NationalPuppyDaypic.twitter.com/1OBdHVAERj', '.@SacramentoKings ....pic.twitter.com/RwfgJ56b3A', ""@Timberwolves we'll just leave this here.pic.twitter.com/VHYMJjiBLI"", '@SacramentoKings @Timberwolves LEAVE MY GRANDPA OUT OF THIS!', ""@Kyle_Ratke @Timberwolves Kyle's grandpa is a dog guy too...just saying.""]",6,"['23 Mar 2016', '23 Mar 2016', '23 Mar 2016', '23 Mar 2016', '23 Mar 2016', '23 Mar 2016']","['Timberwolves', 'Sacramen2 Kings', 'Timberwolves', 'Sacramen2 Kings', 'Kyle Ratke', 'Sacramen2 Kings']","['@Timberwolves', '@SacramentoKings', '@Timberwolves', '@SacramentoKings', '@Kyle_Ratke', '@SacramentoKings']"
2184,Play The 2014 Draft Lottery Simulator http://on.nba.com/1gjRzLv pic.twitter.com/cqJXuYaewp,ATLHawks,Bucks,"['Play The 2014 Draft Lottery Simulator http://on.nba.com/1gjRzLv\xa0pic.twitter.com/cqJXuYaewp', '@Bucks Hey, we like this thing! pic.twitter.com/dh1yOqtHZA', '@Sixers fun for all teams!', '@Bucks @Sixers Well...not all', '@ATLHawks @Sixers just keep hitting the button...', ""@Bucks @Sixers It's okay...you guys can play and we'll just be the awkward kid on the playground with no friends ;)""]",6,"['13 May 2014', '13 May 2014', '13 May 2014', '13 May 2014', '13 May 2014', '13 May 2014']","['Milwaukee Bucks', 'Philadelphia 76ers', 'Milwaukee Bucks', 'Atlanta Hawks', 'Milwaukee Bucks', 'Atlanta Hawks']","['@Bucks', '@sixers', '@Bucks', '@ATLHawks', '@Bucks', '@ATLHawks']"
1211,"Me: I have 9 friends
Friend: Y’all about to take that L tonight
Me:https://twitter.com/tylerthecreator/status/934116738232344576 …",nuggets,MemGrizz,"['Me: I have 9 friends \n\nFriend: Y’all about to take that L tonight \n\nMe:https://twitter.com/tylerthecreator/status/934116738232344576\xa0…', 'Good tweet', ""you'll play to much "", 'Keep your friends close but your enemies closer?', '', ""Weren't supposed to see that.""]",6,"['4 Dec 2017', '4 Dec 2017', '4 Dec 2017', '4 Dec 2017', '4 Dec 2017', '4 Dec 2017']","['Memphis Grizzlies', 'Denver Nuggets', 'TripleGear_kicks&sports', 'Denver Nuggets', 'Memphis Grizzlies', 'Denver Nuggets']","['@memgrizz', '@nuggets', '@ali_triplegear', '@nuggets', '@memgrizz', '@nuggets']"
2890,My 2 favorite teams goin' head to head. #SunsVsKings @Suns @SacramentoKings,SacramentoKings,Suns,"[""My 2 favorite teams goin' head to head. #SunsVsKings @Suns @SacramentoKings"", ""@jcru02 @Suns but we're your favorite favorite...right?"", '@SacramentoKings @jcru02pic.twitter.com/SbFLmTQdn7', ""@Suns @SacramentoKings Love both of my teams very much!! Glad I'm part of the two best teams in the league."", ""@jcru02 It's alright. You can tell use we're your favorites. The @SacramentoKings won't hear it. ;)"", '@Suns @jcru02 in any case, thanks for the support!']",6,"['4 Nov 2015', '4 Nov 2015', '4 Nov 2015', '4 Nov 2015', '4 Nov 2015', '4 Nov 2015']","['Jan Cruz', 'Sacramen2 Kings', 'Phoen1x Šuns', 'Jan Cruz', 'Phoen1x Šuns', 'Sacramen2 Kings']","['@janncruzz', '@SacramentoKings', '@Suns', '@janncruzz', '@Suns', '@SacramentoKings']"
1559,Clippers lead at the half. They even knocked down a buzzer beater at the end of the 2nd so congrats to them for that. #SunsAtClipperspic.twitter.com/di5xE7ktI5,Suns,LAClippers,"['Clippers lead at the half. They even knocked down a buzzer beater at the end of the 2nd so congrats to them for that. #SunsAtClipperspic.twitter.com/di5xE7ktI5', 'pic.twitter.com/FIoVdNZZzE', 'SPOILER ALERT clippers ain’t making it to the playoffs', ""SPOILER ALERT you're a virgin"", 'Spoiler alert: you have 8 followers', 'pic.twitter.com/48FXf4O2Kl']",6,"['21 Oct 2017', '21 Oct 2017', '21 Oct 2017', '21 Oct 2017', '21 Oct 2017', '21 Oct 2017']","['Phoen1x Šuns', 'LA Clippers', 'ㅤㅤㅤ+®', 'vLawrey', 'ㅤㅤㅤ+®', 'Phoen1x Šuns']","['@Suns', '@LAClippers', '@ltsTigers', '@RyanLawrey', '@ltsTigers', '@Suns']"
2570,Korver Kounter:pic.twitter.com/cPdze8Fx9c,Bucks,ATLHawks,"['Korver Kounter:pic.twitter.com/cPdze8Fx9c', '@ATLHawks ', '@Bucks Sorry?', '@ATLHawks lots of game left here 1 Seed.', '@Bucks @ATLHawks YALL both not winning the title though ', '@_EvTheGod @ATLHawks yeah, only one team can win the title. #DUH']",6,"['30 Mar 2015', '30 Mar 2015', '30 Mar 2015', '30 Mar 2015', '30 Mar 2015', '30 Mar 2015']","['Atlanta Hawks', 'Milwaukee Bucks', 'Atlanta Hawks', 'Milwaukee Bucks', 'SUPER BOWL 52 CHAMPS', 'Milwaukee Bucks']","['@ATLHawks', '@Bucks', '@ATLHawks', '@Bucks', '@GloEv_', '@Bucks']"
1608,James.pic.twitter.com/TClE1rZQDh,Suns,HoustonRockets,"['James.pic.twitter.com/TClE1rZQDh', '@HoustonRockets Boogie.pic.twitter.com/hivWZwPvmx', '@SacramentoKings @HoustonRockets Furkan.pic.twitter.com/FtHWREDwoX', '@Sixers @SacramentoKings @HoustonRockets Wardell.pic.twitter.com/bf3EB9GYlW', '@warriors @Sixers @SacramentoKings @HoustonRockets Chuck.pic.twitter.com/JsVxPTg2dl', '@NBAonTNT @warriors @Sixers @SacramentoKings @HoustonRockets Chuck ... with pizza.pic.twitter.com/Wi1M6MTuvw']",6,"['1 Apr 2015', '1 Apr 2015', '1 Apr 2015', '1 Apr 2015', '1 Apr 2015', '1 Apr 2015']","['Houston Rockets', 'Sacramen2 Kings', 'Philadelphia 76ers', 'Golden State Warriors', 'NBA on TNT', 'Phoen1x Šuns']","['@HoustonRockets', '@SacramentoKings', '@sixers', '@warriors', '@NBAonTNT', '@Suns']"
2287,#IsItOctoberYet?pic.twitter.com/FZd2RTfkWI,MemGrizz,OrlandoMagic,"['#IsItOctoberYet?pic.twitter.com/FZd2RTfkWI', 'pic.twitter.com/AWdvl5utnC', 'we should catch up! Does October 2 work?', ""We'll have our people call your people but currently penciling you in. How's Memphis sound?"", 'throw in some bbq and you have yourself a deal', 'pic.twitter.com/onM0XW2JVR']",6,"['21 Sep 2017', '21 Sep 2017', '21 Sep 2017', '21 Sep 2017', '21 Sep 2017', '21 Sep 2017']","['Orlando Magic', 'Memphis Grizzlies', 'Orlando Magic', 'Memphis Grizzlies', 'Orlando Magic', 'Memphis Grizzlies']","['@OrlandoMagic', '@memgrizz', '@OrlandoMagic', '@memgrizz', '@OrlandoMagic', '@memgrizz']"
2274,Chill. We let your pizza slide.https://twitter.com/memgrizz/status/970364888844591104 …,MemGrizz,BrooklynNets,"['Chill. We let your pizza slide.https://twitter.com/memgrizz/status/970364888844591104\xa0…', 'You vs the guy she told you not to worry aboutpic.twitter.com/9ywe4JOisU', 'You vs the guy she tell you not to worry aboutpic.twitter.com/al2n5RFIej', 'Very clever, Harrison!', 'That seemed very passive aggressive', '*whispers* it was']",6,"['Mar 4 2018', 'Mar 4 2018', 'Mar 4 2018', 'Mar 4 2018', 'Mar 4 2018', 'Mar 4 2018']","['Brooklyn Nets', 'Memphis Grizzlies', 'Harrison Lesnik', 'Memphis Grizzlies', 'Harrison Lesnik', 'Memphis Grizzlies']","['@BrooklynNets', '@memgrizz', '@hflesnik', '@memgrizz', '@hflesnik', '@memgrizz']"
1623,"Orange Slices #NBASweets
It just fits our brand.",Suns,warriors,"['Orange Slices #NBASweets\n\nIt just fits our brand.', ""@Suns This is why we don't like going over to your house, Suns…"", '@Sixers @Suns they probably give away toothbrushes on Halloween.', ""@denvernuggets @Sixers Bring a stronger candy game. We're not talking fruit. #NBASweetspic.twitter.com/wpvPhCWywC"", '@Suns @denvernuggets @Sixers delicious and budget friendly ', '@warriors @denvernuggets @Sixers See? Golden State gets it.']",6,"['6 Aug 2014', '6 Aug 2014', '6 Aug 2014', '6 Aug 2014', '6 Aug 2014', '6 Aug 2014']","['Phoen1x Šuns', 'Philadelphia 76ers', 'Denver Nuggets', 'Phoen1x Šuns', 'Golden State Warriors', 'Phoen1x Šuns']","['@Suns', '@sixers', '@nuggets', '@Suns', '@warriors', '@Suns']"
1185,"Len and Plumlee's Ice Cream. #NBASweets
Bonus:flavor Triple Caramel Dunk",nuggets,Suns,"[""Len and Plumlee's Ice Cream. #NBASweets \n\nBonus:flavor Triple Caramel Dunk"", '@Suns Reach alert…', ""@Sixers They can't all be gold."", '@Suns @Sixers yes, yes they can.', ""@denvernuggets @Sixers You obviously haven't read through the hashtag. #NBASweets"", ""@Suns you're not you when you're hungry. #NBASweets""]",6,"['6 Aug 2014', '6 Aug 2014', '6 Aug 2014', '6 Aug 2014', '6 Aug 2014', '6 Aug 2014']","['Phoen1x Šuns', 'Philadelphia 76ers', 'Phoen1x Šuns', 'Denver Nuggets', 'Phoen1x Šuns', 'Denver Nuggets']","['@Suns', '@sixers', '@Suns', '@nuggets', '@Suns', '@nuggets']"
1575,Jazz hustle leading to Jazz points ... it's a 16-point lead early in the 3rd. #PHXatUTA,Suns,UtahJazz,"[""Jazz hustle leading to Jazz points ... it's a 16-point lead early in the 3rd. #PHXatUTA"", '@utahjazzpic.twitter.com/p3h6q0JniD', '@Sunspic.twitter.com/TsFdkoYrou', '@utahjazzpic.twitter.com/oUViC1nTtD', '@Sunspic.twitter.com/VTUaK6x7CC', '@utahjazzpic.twitter.com/mq8B938bAb']",6,"['21 Dec 2015', '21 Dec 2015', '21 Dec 2015', '21 Dec 2015', '21 Dec 2015', '21 Dec 2015']","['Utah Jazz', 'Phoen1x Šuns', 'Utah Jazz', 'Phoen1x Šuns', 'Utah Jazz', 'Phoen1x Šuns']","['@utahjazz', '@Suns', '@utahjazz', '@Suns', '@utahjazz', '@Suns']"
3273,"We've had some fun with current/former player mashups this summer. Here's a look back.
#TBT » http://rip.city/1HIWlJ1 pic.twitter.com/SABq5SiZpK",trailblazers,LAClippers,"[""We've had some fun with current/former player mashups this summer. Here's a look back.\n\n#TBT » http://rip.city/1HIWlJ1\xa0pic.twitter.com/SABq5SiZpK"", ""Jump over to our IG (@trailblazers) to see today's mashup featuring @Dame_Lillard and @Iambiggie503!\n\nAny suggestions for next week?"", '@trailblazers Our suggestions is Chris Kaman vs. Bill Walton -- two former Clippers.', '@LAClippers this guy? Challenge accepted.pic.twitter.com/ogbOuYQtdX', '@trailblazers pic.twitter.com/8TfOwsETpG', 'Ask and you shall receive, @LAClippers.\n\nBig Red x Air Sasquatchpic.twitter.com/oOMfCa2AhQ']",6,"['13 Aug 2015', '13 Aug 2015', '13 Aug 2015', '13 Aug 2015', '13 Aug 2015', '13 Aug 2015']","['Trail Blazers', 'Trail Blazers', 'LA Clippers', 'Trail Blazers', 'LA Clippers', 'Trail Blazers']","['@trailblazers', '@trailblazers', '@LAClippers', '@trailblazers', '@LAClippers', '@trailblazers']"
1098,Trust the process.pic.twitter.com/sCQTdtmUOw,UtahJazz,Sixers,"['Trust the process.pic.twitter.com/sCQTdtmUOw', '.@SportsCenter Sorry @JoelEmbiid but @RudyGobert27 will be around for a good 15 more years... ¯\\_(ツ)_/¯pic.twitter.com/E5jySttT8y', '[email protected]/K42TjS10B6', '.@Sixers Looking forward to the matchup tonight! Oh wait...', '.@utahjazz oh wait...pic.twitter.com/zNOJJqi6AE', '.@Sixers Are we playing 2 on 1...? pic.twitter.com/DaqVNoPZ9M']",6,"['29 Dec 2016', '29 Dec 2016', '29 Dec 2016', '29 Dec 2016', '29 Dec 2016', '29 Dec 2016']","['SportsCenter', 'Utah Jazz', 'Philadelphia 76ers', 'Utah Jazz', 'Philadelphia 76ers', 'Utah Jazz']","['@SportsCenter', '@utahjazz', '@sixers', '@utahjazz', '@sixers', '@utahjazz']"
1705,"
#SummerSixers // 8:30 p.m. ETpic.twitter.com/gey3IxV2mu",Suns,Sixers,"['\n#SummerSixers // 8:30 p.m. ETpic.twitter.com/gey3IxV2mu', '.@Sixers Did someone say and ? Kind of our thing. #WeArePHX', '@Suns @Sixers Las Vegas has and to lol', ""@jdillihay31 @Sixers We know. Just can't resist having some fun with our Philly brethren."", '@Suns @jdillihay31 OH, you guys.', "".@Sixers You still didn't bring in Bel-Air kid for Summer League but is it true this is the strength coach this week?pic.twitter.com/M7hVBHxaBA""]",6,"['11 Jul 2015', '11 Jul 2015', '11 Jul 2015', '11 Jul 2015', '11 Jul 2015', '11 Jul 2015']","['Philadelphia 76ers', 'Phoen1x Šuns', 'Jeff Dillihay™', 'Phoen1x Šuns', 'Philadelphia 76ers', 'Phoen1x Šuns']","['@sixers', '@Suns', '@jdillihay31', '@Suns', '@sixers', '@Suns']"
91,"Pro: Got my dad tickets to a @celtics game for Christmas
Con: It's against the @ATLHawks",celtics,ATLHawks,"[""Pro: Got my dad tickets to a @celtics game for Christmas\nCon: It's against the @ATLHawks"", ""Pro: After we win maybe he'll be a Hawks fan"", 'pic.twitter.com/JTOgW1n0AU', ""#HawksTwitter got Hawk'd"", 'Last season in Boston: Undefeated\nLast playoff game in Boston: Win\nLast seven games in Boston: 4-3\n\n¯\\_(ツ)_/¯', 'pic.twitter.com/uBzAlBLx1w']",6,"['10 Nov 2017', '10 Nov 2017', '10 Nov 2017', '10 Nov 2017', '10 Nov 2017', '10 Nov 2017']","['Matt Fiedler', 'Atlanta Hawks', 'Boston Celtics', '\xa0🍀BlackLucky_Says\xa0🗣️', 'Atlanta Hawks', 'Boston Celtics']","['@mrf505', '@ATLHawks', '@celtics', '@Cutrolosophy', '@ATLHawks', '@celtics']"
2563,Adam Silver Surfer #NBASuperHeroespic.twitter.com/RE9NWPFgGx,Bucks,warriors,"['Adam Silver Surfer #NBASuperHeroespic.twitter.com/RE9NWPFgGx', '@Bucks Awesome. Setting the bar pretty high there, Milwaukee. #NBASuperHeroes', '@warriors welcome to to fun party our bay area friends!', ""@Bucks you know the party don't start 'til I walk in."", ""@warriors @Bucks or 'til you wake up.\n\nBut, ya know, same difference."", ""@denvernuggets @warriors we weren't judging...much.""]",6,"['30 Jul 2014', '30 Jul 2014', '30 Jul 2014', '30 Jul 2014', '30 Jul 2014', '30 Jul 2014']","['Milwaukee Bucks', 'Golden State Warriors', 'Milwaukee Bucks', 'Golden State Warriors', 'Denver Nuggets', 'Milwaukee Bucks']","['@Bucks', '@warriors', '@Bucks', '@warriors', '@nuggets', '@Bucks']"
2207,IT'S @NBA DRAFT DAY! #PelicansDraftpic.twitter.com/3LIT0nCNYC,ATLHawks,SacramentoKings,"[""IT'S @NBA DRAFT DAY! #PelicansDraftpic.twitter.com/3LIT0nCNYC"", '.@PelicansNBA Excite!pic.twitter.com/6LeZ52nv1V', '.@ATLHawks @PelicansNBA Same, yous guys. #PHILAfirstpic.twitter.com/rKrfGpHT4O', "".@Sixers @ATLHawks @PelicansNBA we're ready for the #BucksDraft too, but first...pic.twitter.com/jBFkucdfK7"", 'Man you guys make NBA twitter the best. Get the @SacramentoKings in on this!', ""The Kings' Twitter is awesome, but it's 6 a.m. there. They be snoozin'""]",6,"['23 Jun 2016', '23 Jun 2016', '23 Jun 2016', '23 Jun 2016', '23 Jun 2016', '23 Jun 2016']","['New Orleans Pelicans', 'Atlanta Hawks', 'Philadelphia 76ers', 'Milwaukee Bucks', 'Alex Urbanik', 'Atlanta Hawks']","['@PelicansNBA', '@ATLHawks', '@sixers', '@Bucks', '@AlexUrbanik', '@ATLHawks']"
1472,Danny Green Lantern #NBASuperHeroes,spurs,Bucks,"['Danny Green Lantern #NBASuperHeroes', 'We see your Danny Green Lantern and raise you...Zach LaVinetern #NBASuperHeroes MT @spurs Danny Green Lanternpic.twitter.com/eebj2zTQ2x', ""@MNTimberwolves @spurs technically there are multiple Green Lanterns.... (or so we've heard...)"", '@Bucks @MNTimberwolves @spurs we heard this too. There may be one watching over Denver...', '@denvernuggets @Bucks @MNTimberwolves the suspense....']",5,"['30 Jul 2014', '30 Jul 2014', '30 Jul 2014', '30 Jul 2014', '30 Jul 2014']","['San Antonio Spurs', 'Timberwolves', 'Milwaukee Bucks', 'Denver Nuggets', 'San Antonio Spurs']","['@spurs', '@Timberwolves', '@Bucks', '@nuggets', '@spurs']"
2253,@trailblazers any open roster spots? I want to try out,ATLHawks,trailblazers,"['@trailblazers any open roster spots? I want to try out', ""@KingJayDeeTV what's your vert?"", ""@trailblazers I can skim the bottom of the rim, but I'm the @ATLHawks kryptonite. They always lose when I go to their games."", ""@KingJayDeeTV @ATLHawks that's all we needed to hear."", '@trailblazers @KingJayDeeTV He must not have been to many games this season then.']",5,"['29 Jan 2015', '29 Jan 2015', '29 Jan 2015', '29 Jan 2015', '29 Jan 2015']","['Big Daddy J \xa0✝️', 'Trail Blazers', 'Big Daddy J \xa0✝️', 'Trail Blazers', 'Atlanta Hawks']","['@True2Atlanta', '@trailblazers', '@True2Atlanta', '@trailblazers', '@ATLHawks']"
2114,Man seeing the tweets from @Suns @trailblazers & @ATLHawks got me thinking that the @OrlandoMagic need to REALLY step up the witty remarks.,ATLHawks,Suns,"['Man seeing the tweets from @Suns @trailblazers & @ATLHawks got me thinking that the @OrlandoMagic need to REALLY step up the witty remarks.', ""@issamawan @trailblazers @ATLHawks We're just happy you listed us first in that grouping unlike some others online."", '@Suns @issamawan @trailblazers :(', ""@ATLHawks @issamawan @trailblazers We're surprised you have kept the L in your Twitter handle. At what point does it become just AtHawk?"", ""@Suns We're saving that for win #74""]",5,"['29 Jan 2015', '29 Jan 2015', '29 Jan 2015', '29 Jan 2015', '29 Jan 2015']","['Awan', 'Phoen1x Šuns', 'Atlanta Hawks', 'Phoen1x Šuns', 'Atlanta Hawks']","['@issamawan', '@Suns', '@ATLHawks', '@Suns', '@ATLHawks']"
798,"Now 2-0 on the homestand, we'll return to #WarriorsGround on Weds. for #GSWSocial Night vs. the @ATLHawks. BE THERE » http://bit.ly/1Ilv1XG ",DallasMavs,ATLHawks,"[""Now 2-0 on the homestand, we'll return to #WarriorsGround on Weds. for #GSWSocial Night vs. the @ATLHawks. BE THERE » http://bit.ly/1Ilv1XG\xa0"", ""@warriors Don't worry, we will be."", '@ATLHawks @warriors Nationally televised? We want to see!!!! ', ""@dallasmavs @warriors Atlanta market gets it on SportSouth. Nationally it's on the Worldwide Leader."", '@ATLHawks @warriors Can’t wait!!!! pic.twitter.com/WCnpyaPs0B']",5,"['16 Mar 2015', '16 Mar 2015', '16 Mar 2015', '16 Mar 2015', '16 Mar 2015']","['Golden State Warriors', 'Atlanta Hawks', 'Dallas Mavericks', 'Atlanta Hawks', 'Dallas Mavericks']","['@warriors', '@ATLHawks', '@dallasmavs', '@ATLHawks', '@dallasmavs']"
2170,.@hornets @LAClippers @Suns @Sixers @warriors When you roll up next to #NBAOffseason...pic.twitter.com/NZtG9ZHehk,ATLHawks,Bucks,"['.@hornets @LAClippers @Suns @Sixers @warriors When you roll up next to #NBAOffseason...pic.twitter.com/NZtG9ZHehk', '@utahjazz @hornets @Suns @Sixers @warriors \n\nTrying to get rid of #NBAOffseason like...pic.twitter.com/BsMpin2vVR', '.@LAClippers @utahjazz @hornets @Suns @Sixers @warriors maybe if we had a handshake the #NBAOffseason would end...pic.twitter.com/pM03dfnF4g', '@Bucks or a hug?pic.twitter.com/6tPKtQEYEy', '@LAClippers @Bucks We prefer fist bumps. #NBAOffseasonpic.twitter.com/MSqAJEQVvq']",5,"['28 Jul 2015', '28 Jul 2015', '28 Jul 2015', '28 Jul 2015', '28 Jul 2015']","['Utah Jazz', 'LA Clippers', 'Milwaukee Bucks', 'LA Clippers', 'Atlanta Hawks']","['@utahjazz', '@LAClippers', '@Bucks', '@LAClippers', '@ATLHawks']"
3421,"Nice digs, @sixers.pic.twitter.com/5nEMuK5uSb – at Philadelphia 76ers Training Complex",trailblazers,Sixers,"['Nice digs, @sixers.pic.twitter.com/5nEMuK5uSb – at Philadelphia 76ers Training Complex', 'Lock up and turn out the lights before you leave. \n\nSee you tomorrow ', 'Oops. ', 'Hope you didn’t touch my snacks.', 'Again, oops.pic.twitter.com/LwwUyiogEK']",5,"['21 Nov 2017', '21 Nov 2017', '21 Nov 2017', '21 Nov 2017', '21 Nov 2017']","['Trail Blazers', 'Philadelphia 76ers', 'Trail Blazers', 'Franklin', 'Trail Blazers']","['@trailblazers', '@sixers', '@trailblazers', '@SixersFranklin', '@trailblazers']"
2165,"If we all agree to just forget the third quarter even happened, we can agree that today has gone well, yes?",ATLHawks,Bucks,"['If we all agree to just forget the third quarter even happened, we can agree that today has gone well, yes?', '@ATLHawks just wait Atlanta. We WILL meet again.', '@Bucks If we play you in the playoffs, can all the games be on your floor?', '@ATLHawks sure!! We would even promise not to give out the bike horns again...', '@Bucks DEAL!!!!!!!!!!!!!!!!']",5,"['22 Feb 2015', '22 Feb 2015', '22 Feb 2015', '22 Feb 2015', '22 Feb 2015']","['Atlanta Hawks', 'Milwaukee Bucks', 'Atlanta Hawks', 'Milwaukee Bucks', 'Atlanta Hawks']","['@ATLHawks', '@Bucks', '@ATLHawks', '@Bucks', '@ATLHawks']"
2157,"IT'S TIME
#NBADraftLotterypic.twitter.com/QLo0SJGRSV",ATLHawks,MemGrizz,"[""IT'S TIME \n\n#NBADraftLotterypic.twitter.com/QLo0SJGRSV"", '.....maybe not quite yet.', 'pic.twitter.com/ox5ZoQlqO3', 'so much same', 'yea, def worth the wait']",5,"['May 15 2018', 'May 15 2018', 'May 15 2018', 'May 15 2018', 'May 16 2018']","['Memphis Grizzlies', 'Memphis Grizzlies', 'Atlanta Hawks', 'Memphis Grizzlies', 'Atlanta Hawks']","['@memgrizz', '@memgrizz', '@ATLHawks', '@memgrizz', '@ATLHawks']"
3392,Our Plumlee is more athletic than your Plumleepic.twitter.com/djNkrbGC8F,trailblazers,Bucks,"['Our Plumlee is more athletic than your Plumleepic.twitter.com/djNkrbGC8F', 'Miles taught Mason well.https://vine.co/v/5DgVJTY1FU1\xa0', 'we see your call and raise you a reverse tip-dunkhttps://vine.co/v/iU5vziumdw7\xa0', 'we’ll put a stop to this before it gets out of hand.https://vine.co/v/iXDAZJ53rOv\xa0', 'we get your POINT (GUARD), SKILLS all the way around for the Plumlees.pic.twitter.com/4iHD9jFCja']",5,"['13 Nov 2016', '13 Nov 2016', '13 Nov 2016', '13 Nov 2016', '13 Nov 2016']","['Trail Blazers', 'Milwaukee Bucks', 'Trail Blazers', 'Milwaukee Bucks', 'Trail Blazers']","['@trailblazers', '@Bucks', '@trailblazers', '@Bucks', '@trailblazers']"
306,#LeavingThisRightHere #IsItGameTimeYet ?pic.twitter.com/x9oJrwAj9z,OrlandoMagic,Timberwolves,"['#LeavingThisRightHere #IsItGameTimeYet ?pic.twitter.com/x9oJrwAj9z', '.@OrlandoMagic Soon.pic.twitter.com/I6l2YCDa1f', '@Timberwolves Trying to pass the time like...pic.twitter.com/LRB8e0c5Kb', '.@OrlandoMagic Pretty much... #ORLatMINpic.twitter.com/qbI76Hcije', '@Timberwolves see you soon! #ORLatMINpic.twitter.com/gav7iPSg2P']",5,"['1 Dec 2015', '1 Dec 2015', '1 Dec 2015', '1 Dec 2015', '1 Dec 2015']","['Orlando Magic', 'Timberwolves', 'Orlando Magic', 'Timberwolves', 'Orlando Magic']","['@OrlandoMagic', '@Timberwolves', '@OrlandoMagic', '@Timberwolves', '@OrlandoMagic']"
760,"Somebody asked me today who I love more, the @trailblazers or the @DetroitPistons? It's a tough question but I have an answer. Both. Eat it!",DetroitPistons,trailblazers,"[""Somebody asked me today who I love more, the @trailblazers or the @DetroitPistons? It's a tough question but I have an answer. Both. Eat it!"", '@Strable @DetroitPistons not sure how we feel about that.', '@trailblazers @Strable You can get with this, or you can get with that', '@DetroitPistons @trailblazers oh crap. What have I done.', '@Strable @trailblazers We have dancing ushers!pic.twitter.com/AksjKfObyJ']",5,"['4 Feb 2015', '4 Feb 2015', '4 Feb 2015', '4 Feb 2015', '4 Feb 2015']","['Tyler', 'Trail Blazers', 'Detroit Pistons', 'Tyler', 'Detroit Pistons']","['@Strable', '@trailblazers', '@DetroitPistons', '@Strable', '@DetroitPistons']"
2123,.@MNTimberwolves @trailblazers @denvernuggets @ATLHawks With great power comes great responsibility. #NBASuperHeroes is No. 1 trending topic,ATLHawks,Suns,"['.@MNTimberwolves @trailblazers @denvernuggets @ATLHawks With great power comes great responsibility. #NBASuperHeroes is No. 1 trending topic', ""@Suns @MNTimberwolves @trailblazers @denvernuggets Well done all! Don't forget @spurs, they started it!"", '@ATLHawks @Suns @MNTimberwolves @trailblazers @denvernuggets Is this the competition in which we see which team can spit out the worst puns', ""@azaH1499 @ATLHawks @MNTimberwolves @trailblazers @denvernuggets We're tweeting them out. Not spitting them out."", '@Suns You guys make us smile :)']",5,"['30 Jul 2014', '30 Jul 2014', '30 Jul 2014', '30 Jul 2014', '30 Jul 2014']","['Phoen1x Šuns', 'Atlanta Hawks', 'Aaron\xa0🌹', 'Phoen1x Šuns', 'Atlanta Hawks']","['@Suns', '@ATLHawks', '@aaronhorsley14', '@Suns', '@ATLHawks']"
2122,Pretty sure @ATLHawks and @Suns are in a romantic relationship,ATLHawks,Suns,"['Pretty sure @ATLHawks and @Suns are in a romantic relationship', ""@humancasino @Suns But it's not Facebook official..."", '@ATLHawks @humancasino #ItsComplicated', '@Suns so that\'s where you been staying all the nights you said you said you ""had to work"". @ATLHawks @humancasino so', '@dallasmavs @Suns @humancasino They treat us well.']",5,"['30 Jul 2014', '30 Jul 2014', '30 Jul 2014', '30 Jul 2014', '30 Jul 2014']","['Tyler', 'Atlanta Hawks', 'Phoen1x Šuns', 'Dallas Mavericks', 'Atlanta Hawks']","['@humancasino', '@ATLHawks', '@Suns', '@dallasmavs', '@ATLHawks']"
853,"So. Many. Dunks.
Clippers lead the @Timberwolves 29-25 at the end of Q1.pic.twitter.com/367tidurSG",LAClippers,Timberwolves,"['So. Many. Dunks. \nClippers lead the @Timberwolves 29-25 at the end of Q1.pic.twitter.com/367tidurSG', '[email protected]/VEyZjZpJRF', '@Timberwolvespic.twitter.com/Es01x7d9a5', '[email protected]/ZSlEIrPq6B', '@Timberwolvespic.twitter.com/1GogGPEU9M']",5,"['7 Dec 2015', '7 Dec 2015', '7 Dec 2015', '7 Dec 2015', '7 Dec 2015']","['LA Clippers', 'Timberwolves', 'LA Clippers', 'Timberwolves', 'LA Clippers']","['@LAClippers', '@Timberwolves', '@LAClippers', '@Timberwolves', '@LAClippers']"
2972,@Sixers @SacramentoKings whichever team loses should tweet #NBAVote for the player on the other team it's only fair.,SacramentoKings,Sixers,"[""@Sixers @SacramentoKings whichever team loses should tweet #NBAVote for the player on the other team it's only fair."", ""we're in. Waiting on Philly's approval."", '*rings Sixers Twitter doorbell again*', 'pic.twitter.com/y3vRGGDvkP', '....so are you in or nah?']",5,"['26 Dec 2016', '26 Dec 2016', '26 Dec 2016', '26 Dec 2016', '26 Dec 2016']","['υℓϮιмαтє ѕνєиgαℓι ✿', 'Sacramen2 Kings', 'Sacramen2 Kings', 'Philadelphia 76ers', 'Sacramen2 Kings']","['@imtheShizzniyee', '@SacramentoKings', '@SacramentoKings', '@sixers', '@SacramentoKings']"
1353,"really?
#WizGrizz",WashWizards,MemGrizz,"['really? \n\n#WizGrizz', '.@WashWizards yes', '.@memgrizz like that actually happened? \n\n#WizGrizz', 'v crazy.', ""ok. fun game, let's play 5 more min \n\n#WizGrizz""]",5,"['30 Oct 2016', '30 Oct 2016', '30 Oct 2016', '30 Oct 2016', '30 Oct 2016']","['Washington Wizards', 'Memphis Grizzlies', 'Washington Wizards', 'Memphis Grizzlies', 'Washington Wizards']","['@WashWizards', '@memgrizz', '@WashWizards', '@memgrizz', '@WashWizards']"
900,"Mondays aren't so bad when it's GAMEDAY! Clippers continue the roadie tonight vs. the @ATLHawks.
Pregame Report http://on.nba.com/2iS8Z8L pic.twitter.com/OaQT22vWN9",LAClippers,ATLHawks,"[""Mondays aren't so bad when it's GAMEDAY! Clippers continue the roadie tonight vs. the @ATLHawks.\n\nPregame Report http://on.nba.com/2iS8Z8L\xa0pic.twitter.com/OaQT22vWN9"", 'Welcome to Atlanta where the players play and the football team plays in the Super Bowl', "" (also that Matt Ryan guy's pretty good tbh)"", 'Agreed...we think he might even be MVP-good.', ""Matt Ryan #NBAVote (probably doesn't help but u never know)""]",5,"['23 Jan 2017', '23 Jan 2017', '23 Jan 2017', '23 Jan 2017', '23 Jan 2017']","['LA Clippers', 'Atlanta Hawks', 'LA Clippers', 'Atlanta Hawks', 'LA Clippers']","['@LAClippers', '@ATLHawks', '@LAClippers', '@ATLHawks', '@LAClippers']"
3165,Previously on Ish's Dishes » @ishsmithhttps://amp.twimg.com/v/f03db766-739c-493e-8dfb-a4b94e130bb1 …,Sixers,SacramentoKings,"[""Previously on Ish's Dishes » @ishsmithhttps://amp.twimg.com/v/f03db766-739c-493e-8dfb-a4b94e130bb1\xa0…"", ""@Sixers can y'all shoot the next episode some other day/not tonight? Thanks."", '[email protected]/tONewCzmGj', '@Sixerspic.twitter.com/Ls7aquOXk4', '[email protected]/oEPWvHCEoJ']",5,"['30 Dec 2015', '30 Dec 2015', '30 Dec 2015', '30 Dec 2015', '30 Dec 2015']","['Philadelphia 76ers', 'Sacramen2 Kings', 'Philadelphia 76ers', 'Sacramen2 Kings', 'Philadelphia 76ers']","['@sixers', '@SacramentoKings', '@sixers', '@SacramentoKings', '@sixers']"
1695,pic.twitter.com/xLVvzdesPh,Suns,SacramentoKings,"['pic.twitter.com/xLVvzdesPh', '.@Suns pic.twitter.com/uBCJjgG3ck', '[email protected]/4mN49zRTYo', ""Well played...see y'all in March :)"", '']",5,"['19 Oct 2016', '26 Oct 2016', '3 Feb 2017', '3 Feb 2017', '3 Feb 2017']","['Phoen1x Šuns', 'Sacramen2 Kings', 'Phoen1x Šuns', 'Sacramen2 Kings', 'Phoen1x Šuns']","['@Suns', '@SacramentoKings', '@Suns', '@SacramentoKings', '@Suns']"
1697,Kings increasing that lead. Need to put a stop to that. #SunsAtKings,Suns,SacramentoKings,"['Kings increasing that lead. Need to put a stop to that. #SunsAtKings', '@Sunspic.twitter.com/u4qBRnysTx', '@SacramentoKingspic.twitter.com/MpoEP7OlQq', '@Sunspic.twitter.com/YKpWwLvSM7', '@SacramentoKingspic.twitter.com/fmFGZ5BpMY']",5,"['25 Mar 2016', '25 Mar 2016', '25 Mar 2016', '25 Mar 2016', '25 Mar 2016']","['Phoen1x Šuns', 'Sacramen2 Kings', 'Phoen1x Šuns', 'Sacramen2 Kings', 'Phoen1x Šuns']","['@Suns', '@SacramentoKings', '@Suns', '@SacramentoKings', '@Suns']"
1699,"Hey @Suns, control your llamas!",Suns,SacramentoKings,"['Hey @Suns, control your llamas!', ""@SacramentoKings They were just following coach's instructions.pic.twitter.com/0rqVpzAbHL"", '@Suns they were like, nope!pic.twitter.com/tgeD58JiFW', '@SacramentoKings @Sunspic.twitter.com/F8ssshxGK7', '.@warriors @SacramentoKings @cavspic.twitter.com/OW3x32fR4v']",5,"['26 Feb 2015', '26 Feb 2015', '26 Feb 2015', '26 Feb 2015', '26 Feb 2015']","['Sacramen2 Kings', 'Phoen1x Šuns', 'Sacramen2 Kings', 'Golden State Warriors', 'Phoen1x Šuns']","['@SacramentoKings', '@Suns', '@SacramentoKings', '@warriors', '@Suns']"
3160,"Dunks, handles, jumpers.
The 1st half vs the @sixers had it all!pic.twitter.com/dDtRbOqctH",Sixers,SacramentoKings,"['Dunks, handles, jumpers.\n\nThe 1st half vs the @sixers had it all!pic.twitter.com/dDtRbOqctH', '.@memgrizz Where that JoJo put back tho', '.@Sixers new phone who dis', 'Where have we seen this before... ', '.@SacramentoKings @memgrizzpic.twitter.com/S6MlBIPp5Q']",5,"['11 Oct 2016', '11 Oct 2016', '11 Oct 2016', '11 Oct 2016', '11 Oct 2016']","['Memphis Grizzlies', 'Philadelphia 76ers', 'Memphis Grizzlies', 'Sacramen2 Kings', 'Philadelphia 76ers']","['@memgrizz', '@sixers', '@memgrizz', '@SacramentoKings', '@sixers']"
3294,.@nuggets you guys forget to pay your power bill?pic.twitter.com/xGwlE5H06n,trailblazers,nuggets,"['.@nuggets you guys forget to pay your power bill?pic.twitter.com/xGwlE5H06n', 'our basket is lit up perfectly fine ', '', 'Good comeback. Blazers got the saltiest twitter account out there.', 'you misspelled best http://www.complex.com/sports/2016/05/2015-16-nba-twitter-account-rankings/\xa0…']",5,"['29 Oct 2016', '29 Oct 2016', '29 Oct 2016', '29 Oct 2016', '29 Oct 2016']","['Trail Blazers', 'Denver Nuggets', 'Trail Blazers', 'Harden Is Scared of Klay', 'Trail Blazers']","['@trailblazers', '@nuggets', '@trailblazers', '@DVSWhatItTweets', '@trailblazers']"
1726,"Which past or present Hawks player be the best named for a pirate, do y’think?
We'll retweet ARRRRR favorites.pic.twitter.com/9gt6O2TXvl",Suns,Sixers,"[""Which past or present Hawks player be the best named for a pirate, do y’think?\n\nWe'll retweet ARRRRR favorites.pic.twitter.com/9gt6O2TXvl"", '@ATLHawks Perhaps he knows Mr. Iv-ARRR-son? #TalkLikeAPirateDaypic.twitter.com/2tDleZi98y', ""Hey, @Sixers @ATLHawks. We'll see yours and raise you Dick Van Arrrrrsdale. #TalkLikeAPirateDay"", '@Suns @ATLHawks Har! Har! #TalkLikeAPirateDay', ""@Sixers @ATLHawks Don't you mean harrrr! harrrr!? #TalkLikeAPirateDay""]",5,"['19 Sep 2013', '19 Sep 2013', '19 Sep 2013', '19 Sep 2013', '19 Sep 2013']","['Atlanta Hawks', 'Philadelphia 76ers', 'Phoen1x Šuns', 'Philadelphia 76ers', 'Phoen1x Šuns']","['@ATLHawks', '@sixers', '@Suns', '@sixers', '@Suns']"
3137,"Taking on @memgrizz at the Forum
[ » http://on.nba.com/2gZEidp ]pic.twitter.com/fjNhvtl6Pf",Sixers,MemGrizz,"['Taking on @memgrizz at the Forum\n\n[ » http://on.nba.com/2gZEidp\xa0 ]pic.twitter.com/fjNhvtl6Pf', '', 'suh dude', 'ready to play the basketball, you?', '.@memgrizz yeah... same... ok see ya then.pic.twitter.com/RGvYZYwRFH']",5,"['6 Dec 2016', '6 Dec 2016', '6 Dec 2016', '6 Dec 2016', '6 Dec 2016']","['Philadelphia 76ers', 'Memphis Grizzlies', 'Philadelphia 76ers', 'Memphis Grizzlies', 'Philadelphia 76ers']","['@sixers', '@memgrizz', '@sixers', '@memgrizz', '@sixers']"
3126,".@MCW1 at the break: 6 points,7 dimes, 3 boards. Dare we say, #TripleDoubleWatch?",Sixers,ATLHawks,"['.@MCW1 at the break: 6 points,7 dimes, 3 boards. Dare we say, #TripleDoubleWatch?', ""@Sixers @MCW1 DeMarre with 7/8/3 if we're playing that game"", ""@ATLHawks Let's play."", ""@Sixers What's the Twitter Triple-Double? 10-10-10 Retweets, Replies, Mentions?"", '@ATLHawks Gotta aim for the triple-triple on Twitter, no? 100 of each.']",5,"['10 Dec 2014', '10 Dec 2014', '10 Dec 2014', '10 Dec 2014', '10 Dec 2014']","['Philadelphia 76ers', 'Atlanta Hawks', 'Philadelphia 76ers', 'Atlanta Hawks', 'Philadelphia 76ers']","['@sixers', '@ATLHawks', '@sixers', '@ATLHawks', '@sixers']"
3122,Hey @Sixers - What do you think of @VICESports' new uniform rankings? http://bit.ly/1JM5QJb pic.twitter.com/zlTlAIyGEH,Sixers,ATLHawks,"[""Hey @Sixers - What do you think of @VICESports' new uniform rankings? http://bit.ly/1JM5QJb\xa0pic.twitter.com/zlTlAIyGEH"", '.@ATLHawks @VICESports Yeah, we like where their heads are at. #MadeInPHILApic.twitter.com/83bOVoYeFz', '.@Sixers @ATLHawks @VICESports Sixers got that Classic vibe going. @LAClippers...pic.twitter.com/Yo655MaHy2', '@dallasmavs @Sixers @VICESports @LAClippers Why you tag the Clippers tho?pic.twitter.com/bqH5LToCNC', '@ATLHawks @dallasmavs @VICESports @LAClippers *grabs popcorn*pic.twitter.com/M0an9hvDad']",5,"['27 Jul 2015', '27 Jul 2015', '27 Jul 2015', '27 Jul 2015', '27 Jul 2015']","['Atlanta Hawks', 'Philadelphia 76ers', 'Dallas Mavericks', 'Atlanta Hawks', 'Philadelphia 76ers']","['@ATLHawks', '@sixers', '@dallasmavs', '@ATLHawks', '@sixers']"
131,"Joe Harris and Devin Booker lead all scorers with 14 each.
@BrooklynNets have 47-41 halftime lead over @Suns on #NBA League Pass.pic.twitter.com/M3QFKQuEkK",BrooklynNets,Suns,"['Joe Harris and Devin Booker lead all scorers with 14 each. \n\n@BrooklynNets have 47-41 halftime lead over @Suns on #NBA League Pass.pic.twitter.com/M3QFKQuEkK', 'If the suns lose they will be considered the worst team in the league', 'Statistically this is incorrect.', ""You're the one losing to the nets think about it"", 'your math is still wrong though, mike']",5,"['6 Nov 2017', '6 Nov 2017', '6 Nov 2017', '6 Nov 2017', '6 Nov 2017']","['NBA', 'mike', 'Phoen1x Šuns', 'mike', 'Brooklyn Nets']","['@NBA', '@Mikefobfan101', '@Suns', '@Mikefobfan101', '@BrooklynNets']"
1200,Were the @nuggets or @ATLHawks uniforms better?pic.twitter.com/k2y3ow5Yvk,nuggets,ATLHawks,"['Were the @nuggets or @ATLHawks uniforms better?pic.twitter.com/k2y3ow5Yvk', ' duh', 'pic.twitter.com/w0TQL940ru', 'We recognize that guy...', 'old friends?']",5,"['Mar 23 2018', 'Mar 23 2018', 'Mar 23 2018', 'Mar 23 2018', 'Mar 23 2018']","['80s Sports N Stuff', 'Atlanta Hawks', 'Denver Nuggets', 'Atlanta Hawks', 'Denver Nuggets']","['@80sSportsNStuff', '@ATLHawks', '@nuggets', '@ATLHawks', '@nuggets']"
1591,Just a reminder. You can watch today's #SummerSuns game on http://NBA.com/SummerLeagueLive ….pic.twitter.com/ki9chGAms3,Suns,WashWizards,"[""Just a reminder. You can watch today's #SummerSuns game on http://NBA.com/SummerLeagueLive\xa0….pic.twitter.com/ki9chGAms3"", '@Suns graphic, see you at 3pm #WizSuns #WizSummer', "".@WashWizards We'll pick you up around 2:30 p.m. if you want to share a ride. #VegasBaby #SummerSunspic.twitter.com/rHBQcJfaoG"", "".@Suns We've got a ride covered but thanks for the offer! #WizSummerpic.twitter.com/wj8MNGNFYT"", "".@WashWizards If you're going to roll with those guys just remember tigers love pepper and they hate cinnamon. #VegasTips #SummerSuns""]",5,"['11 Jul 2015', '11 Jul 2015', '11 Jul 2015', '11 Jul 2015', '11 Jul 2015']","['Phoen1x Šuns', 'Washington Wizards', 'Phoen1x Šuns', 'Washington Wizards', 'Phoen1x Šuns']","['@Suns', '@WashWizards', '@Suns', '@WashWizards', '@Suns']"
1595,"GO BLUE! RT @NBA: You rockin' with the White or Blue team?
@NBATV Real Training Camp: @usabasketball at 3pm/et!pic.twitter.com/aPPDV5XVGt",Suns,WashWizards,"[""GO BLUE! RT @NBA: You rockin' with the White or Blue team?\n\n@NBATV Real Training Camp: @usabasketball at 3pm/et!pic.twitter.com/aPPDV5XVGt"", '@trailblazers Great teams think alike.', 'Yes we are #TeamBlue as well. :) @ATLHawks @trailblazers', ""@dallasmavs @trailblazers Glad we're on the same page. The @WashWizards seem confused..."", ""@ATLHawks @dallasmavs @trailblazers @WashWizards We're waiting for an @nba ruling on which Plumlee before deciding.""]",5,"['29 Jul 2014', '29 Jul 2014', '29 Jul 2014', '29 Jul 2014', '29 Jul 2014']","['Trail Blazers', 'Atlanta Hawks', 'Dallas Mavericks', 'Atlanta Hawks', 'Phoen1x Šuns']","['@trailblazers', '@ATLHawks', '@dallasmavs', '@ATLHawks', '@Suns']"
1210,"Grizz fall in Utah 107-97
#MEMvUTApic.twitter.com/TouBCUwe0T",nuggets,MemGrizz,"['Grizz fall in Utah 107-97 \n\n#MEMvUTApic.twitter.com/TouBCUwe0T', 'k, guess not', 'sry', ""Y'all are ridiculous."", ""that's just your opinion, Colin""]",5,"['Mar 30 2018', 'Mar 30 2018', 'Mar 30 2018', 'Mar 30 2018', 'Mar 30 2018']","['Memphis Grizzlies', 'Denver Nuggets', 'Memphis Grizzlies', 'Colin Baker', 'Denver Nuggets']","['@memgrizz', '@nuggets', '@memgrizz', '@_ColinBaker', '@nuggets']"
97,"You call bank, Terry? pic.twitter.com/Z1UQJ37yYL",celtics,trailblazers,"['You call bank, Terry? pic.twitter.com/Z1UQJ37yYL', 'thx for not posting that Gerald Green dunk. Check is in the mail.', '.@trailblazers This one?pic.twitter.com/23GtyZ0fEX', 'thought we had a deal ', '¯\\_(ツ)_/¯pic.twitter.com/oyR3DsqTKe']",5,"['9 Feb 2017', '9 Feb 2017', '9 Feb 2017', '9 Feb 2017', '9 Feb 2017']","['Boston Celtics', 'Trail Blazers', 'Boston Celtics', 'Trail Blazers', 'Boston Celtics']","['@celtics', '@trailblazers', '@celtics', '@trailblazers', '@celtics']"
64,RETWEET this to #NBAVote for @RealTristan13!pic.twitter.com/2pOYswBIeA,cavs,trailblazers,"['RETWEET this to #NBAVote for @RealTristan13!pic.twitter.com/2pOYswBIeA', 'RETWEET this to #NBAVote for @KyrieIrving!pic.twitter.com/UL0AYshjNB', 'RETWEET this to #NBAVote for @KevinLove!pic.twitter.com/qd69lzxWas', 'only if you cast an #NBAVote for @Dame_Lillard', 'hmmmm']",5,"['1 Jan 2017', '1 Jan 2017', '1 Jan 2017', '1 Jan 2017', '1 Jan 2017']","['Cleveland Cavaliers', 'Cleveland Cavaliers', 'Cleveland Cavaliers', 'Trail Blazers', 'Cleveland Cavaliers']","['@cavs', '@cavs', '@cavs', '@trailblazers', '@cavs']"
1631,@keetont34 @ATLHawks Does this argument work?pic.twitter.com/CtlE22pceV,Suns,ATLHawks,"['@keetont34 @ATLHawks Does this argument work?pic.twitter.com/CtlE22pceV', '@Suns Another very strong argument. What do you have to say about that, @ATLHawks??', '@keetont34 @Suns #standings ?', '@ATLHawks @Suns I’m trying! You guys are making it really tough!', ""@keetont34 @ATLHawks We've got a solution. They're Eastern Conference. We're Western Conference. Unlike rap, there's no beef. Why not both?""]",5,"['9 Feb 2016', '9 Feb 2016', '9 Feb 2016', '9 Feb 2016', '9 Feb 2016']","['Phoen1x Šuns', 'Taylor Keeton', 'Atlanta Hawks', 'Taylor Keeton', 'Phoen1x Šuns']","['@Suns', '@keetont34', '@ATLHawks', '@keetont34', '@Suns']"
1637,P.J. Tucker was on fire from beyond the arc after today's shoot-around. #SunsVsHawkshttps://vine.co/v/O9TdrQeIdWD ,Suns,ATLHawks,"[""P.J. Tucker was on fire from beyond the arc after today's shoot-around. #SunsVsHawkshttps://vine.co/v/O9TdrQeIdWD\xa0"", ""@Suns Glad to see he's getting them all out of his system now."", '@ATLHawks We\'ve got the ""Tucker Counter: "" fired up and ready to go. (*Patent Pending)', '@Suns We know someone who will have something to say about that...pic.twitter.com/dHkr2syDZQ', '@ATLHawks You should really have the team doc look at that. #Ouch']",5,"['13 Mar 2015', '13 Mar 2015', '13 Mar 2015', '13 Mar 2015', '13 Mar 2015']","['Phoen1x Šuns', 'Atlanta Hawks', 'Phoen1x Šuns', 'Atlanta Hawks', 'Phoen1x Šuns']","['@Suns', '@ATLHawks', '@Suns', '@ATLHawks', '@Suns']"
3105,Lunch plans set: Get 50% off your @PapaJohns order today with code SIXERS when you order online.,Sixers,Suns,"['Lunch plans set: Get 50% off your @PapaJohns order today with code SIXERS when you order online.', ""@Sixers We're in Philly can we take advantage? Our fans back in Phoenix are getting the same @PapaJohns deal today but we're missing out."", '@Suns 1) Welcome to Philly, 2) PIZZA FOR EVERYONE. ', ""@Sixers got a cheesesteak hookup too? We're going to need dinner too. See you tomorrow."", ""@Suns We're gonna let the good people of Philadelphia weigh in on this one.""]",5,"['20 Nov 2014', '20 Nov 2014', '20 Nov 2014', '20 Nov 2014', '20 Nov 2014']","['Philadelphia 76ers', 'Phoen1x Šuns', 'Philadelphia 76ers', 'Phoen1x Šuns', 'Philadelphia 76ers']","['@sixers', '@Suns', '@sixers', '@Suns', '@sixers']"
970,"Hoodie 3!
#CLEatUTA",UtahJazz,cavs,"['Hoodie 3! \n#CLEatUTA', 'do less, Jazz.', 'pic.twitter.com/FiRBzjEa6M', 'but really - can you not?', ""Y'all know we're the new Cavs, right? ""]",5,"['10 Jan 2017', '10 Jan 2017', '10 Jan 2017', '10 Jan 2017', '10 Jan 2017']","['Utah Jazz', 'Cleveland Cavaliers', 'Utah Jazz', 'Cleveland Cavaliers', 'Utah Jazz']","['@utahjazz', '@cavs', '@utahjazz', '@cavs', '@utahjazz']"
1510,"Hey @Timberwolves, ready for the second half? #SunsVsWolvespic.twitter.com/IMvIcuYRMT",Suns,Timberwolves,"['Hey @Timberwolves, ready for the second half? #SunsVsWolvespic.twitter.com/IMvIcuYRMT', '.@Suns You know it. #MINatPHXpic.twitter.com/ISA9GzIsSU', ""@therealcbigz @Timberwolves Chatroom? Nah, we're good."", '.@therealcbigz @Suns This is more fun.pic.twitter.com/nh4StddepN', ""@Timberwolves @therealcbigz Here's what's going on behind the door.pic.twitter.com/JFgjnODEHd""]",5,"['13 Dec 2015', '13 Dec 2015', '13 Dec 2015', '13 Dec 2015', '13 Dec 2015']","['Phoen1x Šuns', 'Timberwolves', 'Phoen1x Šuns', 'Timberwolves', 'Phoen1x Šuns']","['@Suns', '@Timberwolves', '@Suns', '@Timberwolves', '@Suns']"
3013,"Ok, Air Pierre. #SummerSixers",Sixers,PelicansNBA,"['Ok, Air Pierre. #SummerSixers', '@Sixers - You rang?pic.twitter.com/4bwn5qwyDq', '@PelicansNBA -_-pic.twitter.com/pUE7z3z0Bi', '@Sixers -pic.twitter.com/Mr8QDmk7nT', '@PelicansNBA oh you']",5,"['7 Jul 2015', '7 Jul 2015', '7 Jul 2015', '7 Jul 2015', '7 Jul 2015']","['Philadelphia 76ers', 'New Orleans Pelicans', 'Philadelphia 76ers', 'New Orleans Pelicans', 'Philadelphia 76ers']","['@sixers', '@PelicansNBA', '@sixers', '@PelicansNBA', '@sixers']"
3354,"Welcome to Rip City, @warriors!
#GSWatPOR
Game Day Hub » http://rip.city/1Jzkl9b pic.twitter.com/64X1gnfHsV",trailblazers,warriors,"['Welcome to Rip City, @warriors!\n\n#GSWatPOR\n\nGame Day Hub » http://rip.city/1Jzkl9b\xa0pic.twitter.com/64X1gnfHsV', '@trailblazerspic.twitter.com/LsPmzSRi9r', '@warriorspic.twitter.com/FGkZhB1Uni', ""@trailblazers just chillin', waiting for game time.pic.twitter.com/B4GU5saiTY"", '@warriors same.pic.twitter.com/DoHt9xkuPw']",5,"['8 Jan 2016', '8 Jan 2016', '8 Jan 2016', '8 Jan 2016', '8 Jan 2016']","['Trail Blazers', 'Golden State Warriors', 'Trail Blazers', 'Golden State Warriors', 'Trail Blazers']","['@trailblazers', '@warriors', '@trailblazers', '@warriors', '@trailblazers']"
919,LA MIL. pic.twitter.com/1Ca3ZgkRNC,LAClippers,Bucks,"['LA MIL. pic.twitter.com/1Ca3ZgkRNC', 'see you tomorrow.', 'pic.twitter.com/N4OvHPr2ce', 'please wear pants...or shorts. - MGMT', 'if you say sopic.twitter.com/wozDaSW452']",5,"['2 Mar 2017', '2 Mar 2017', '2 Mar 2017', '2 Mar 2017', '2 Mar 2017']","['LA Clippers', 'Milwaukee Bucks', 'LA Clippers', 'Milwaukee Bucks', 'LA Clippers']","['@LAClippers', '@Bucks', '@LAClippers', '@Bucks', '@LAClippers']"
2044,Offense working for both teams in the 1Q. Good guys lead 31-25:pic.twitter.com/YwgeXb5YAi,ATLHawks,LAClippers,"['Offense working for both teams in the 1Q. Good guys lead 31-25:pic.twitter.com/YwgeXb5YAi', ""@ATLHawks Hey, we're good guys too."", '@LAClippers 363 nights a year, yes. Or maybe (doing math) 356?', '@ATLHawks 356! 356! #NBAFinalsPreview', ""@LAClippers How does home court get determined? Is it still who wins All-Star Game? Just kidding, that'd be silly.""]",5,"['23 Dec 2014', '23 Dec 2014', '23 Dec 2014', '23 Dec 2014', '23 Dec 2014']","['Atlanta Hawks', 'LA Clippers', 'Atlanta Hawks', 'LA Clippers', 'Atlanta Hawks']","['@ATLHawks', '@LAClippers', '@ATLHawks', '@LAClippers', '@ATLHawks']"
1566,67 days until we play basketball again... #NBAOffseasonpic.twitter.com/OgGarPxWbk,Suns,UtahJazz,"['67 days until we play basketball again... #NBAOffseasonpic.twitter.com/OgGarPxWbk', ""@utahjazz We'll make it, right? #NBAOffseasonpic.twitter.com/gmkhi0EnEv"", '.@ATLHawks @utahjazz Not ... so ...sure... #NBAOffseasonpic.twitter.com/w6fa2GGntR', ""@Suns @utahjazz It's okay. Everything's going according to plan...\n\n#NBAOffseasonpic.twitter.com/rWxwLXMshc"", '.@ATLHawks @Suns @utahjazz #NBAOffseasonpic.twitter.com/Nk8qeNurTf']",5,"['28 Jul 2015', '28 Jul 2015', '28 Jul 2015', '28 Jul 2015', '28 Jul 2015']","['Utah Jazz', 'Atlanta Hawks', 'Phoen1x Šuns', 'Atlanta Hawks', 'Phoen1x Šuns']","['@utahjazz', '@ATLHawks', '@Suns', '@ATLHawks', '@Suns']"
3024,"MCW & Nerlens were selected for Team USA at the Rising Stars Challenge.
Info + Rosters: http://on.nba.com/1Hej1H0 pic.twitter.com/2Mm0S0KltZ",Sixers,OrlandoMagic,"['MCW & Nerlens were selected for Team USA at the Rising Stars Challenge. \n\nInfo + Rosters: http://on.nba.com/1Hej1H0\xa0pic.twitter.com/2Mm0S0KltZ', '@Sixers Looks like @VicOladipo and @MCW1 will be teaming up again. And @Elfrid & @NerlensNoel3 are joining the party!', '@OrlandoMagic @VicOladipo @MCW1 @Elfrid @NerlensNoel3pic.twitter.com/QCmCOvD4c3', '@Sixerspic.twitter.com/xVGHJZsGLH', '@OrlandoMagicpic.twitter.com/Ghs4m9o1rM']",5,"['28 Jan 2015', '28 Jan 2015', '28 Jan 2015', '28 Jan 2015', '28 Jan 2015']","['Philadelphia 76ers', 'Orlando Magic', 'Philadelphia 76ers', 'Orlando Magic', 'Philadelphia 76ers']","['@sixers', '@OrlandoMagic', '@sixers', '@OrlandoMagic', '@sixers']"
319,"Alright, I'm looking for a new NBA team to pledge my fandom to..
@PelicansNBA @nuggets @Timberwolves @utahjazz @OrlandoMagic are in the race",OrlandoMagic,UtahJazz,"[""Alright, I'm looking for a new NBA team to pledge my fandom to..\n@PelicansNBA @nuggets @Timberwolves @utahjazz @OrlandoMagic are in the race"", 'Stockton. Malone. Shepherd. ', 'Shaq. Penny. T-Mac. Hedo. #AirGordon.', 'magic showing up likepic.twitter.com/LlczHxYkAJ', 'Check the timeline. We stepped up early.']",5,"['11 Jul 2016', '11 Jul 2016', '12 Jul 2016', '12 Jul 2016', '12 Jul 2016']","['Will S', 'Utah Jazz', 'Orlando Magic', 'JodiEthan Meeks', 'Orlando Magic']","['@shepwill14', '@utahjazz', '@OrlandoMagic', '@JortsEthan', '@OrlandoMagic']"
3097,"Let's make it a streak.
@CSNPhilly / #LeaguePass
@975TheFanatic
http://Sixers.com pic.twitter.com/89tle7ekZW",Sixers,Suns,"[""Let's make it a streak.\n\n @CSNPhilly / #LeaguePass\n @975TheFanatic\n http://Sixers.com\xa0pic.twitter.com/89tle7ekZW"", ""@Sixers Watch out. If the Blazers don't get you the dysentery or forging the river might."", '@Suns Many wagons fail to make it through Oregon, We gotta be on-point tonight.', ""@Sixers Just do what we used to do with the Oregon Trail and press CTRL-ALT-DEL if you aren't liking the result."", '@Suns Rage quit.']",5,"['26 Dec 2014', '26 Dec 2014', '26 Dec 2014', '26 Dec 2014', '26 Dec 2014']","['Philadelphia 76ers', 'Phoen1x Šuns', 'Philadelphia 76ers', 'Phoen1x Šuns', 'Philadelphia 76ers']","['@sixers', '@Suns', '@sixers', '@Suns', '@sixers']"
3087,Talk to the hand.https://vine.co/v/OLLdL7OJw0i ,Sixers,WashWizards,"['Talk to the hand.https://vine.co/v/OLLdL7OJw0i\xa0', '@Sixers but that dribble and pass ', '@WashWizards butpic.twitter.com/yeyQa2jFwn', ""@Sixers didn't want to, but had to #kslifepic.twitter.com/OmIaOclQ7J"", '@WashWizards Fair enough, Wizards.']",5,"['1 Apr 2015', '1 Apr 2015', '1 Apr 2015', '1 Apr 2015', '1 Apr 2015']","['Philadelphia 76ers', 'Washington Wizards', 'Philadelphia 76ers', 'Washington Wizards', 'Philadelphia 76ers']","['@sixers', '@WashWizards', '@sixers', '@WashWizards', '@sixers']"
1036,"Jazz // Wizards // TONIGHT
Be There: http://bit.ly/2nn5swu
#WASatUTApic.twitter.com/zliShMR0gh",UtahJazz,WashWizards,"['Jazz // Wizards // TONIGHT\n\nBe There: http://bit.ly/2nn5swu\xa0 \n#WASatUTApic.twitter.com/zliShMR0gh', 'Ok', 'pic.twitter.com/y2VWIMmxHI', 'pic.twitter.com/fv2vXZHFUO', ""The air up here is thin. Don't let this happen to you...pic.twitter.com/dMX8zaUNDH""]",5,"['31 Mar 2017', '31 Mar 2017', '31 Mar 2017', '31 Mar 2017', '31 Mar 2017']","['Utah Jazz', 'Washington Wizards', 'Utah Jazz', 'Washington Wizards', 'Utah Jazz']","['@utahjazz', '@WashWizards', '@utahjazz', '@WashWizards', '@utahjazz']"
58,Y'all bring umbrellas? @KyrieIrving bringing a rainstorm tonight! 6-8 3PM (28PTS) #ThreesAllDay #MakeItRain,cavs,trailblazers,"[""Y'all bring umbrellas? @KyrieIrving bringing a rainstorm tonight! 6-8 3PM (28PTS) #ThreesAllDay #MakeItRain"", ""@cavs Portlanders don't use umbrellas."", "".@trailblazers we can lend you one while you're in #TheLand! "", ""@cavs aren't you guys glad you didn't give away your umbrella?"", 'Nah. We good on that. ""@trailblazers @cavs aren\'t you guys glad you didn\'t give away your umbrella?""']",5,"['28 Jan 2015', '28 Jan 2015', '28 Jan 2015', '28 Jan 2015', '28 Jan 2015']","['Cleveland Cavaliers', 'Trail Blazers', 'Cleveland Cavaliers', 'Trail Blazers', 'Cleveland Cavaliers']","['@cavs', '@trailblazers', '@cavs', '@trailblazers', '@cavs']"
3029,DUNK EM!pic.twitter.com/Rl1rIuENdR,Sixers,Timberwolves,"['DUNK EM!pic.twitter.com/Rl1rIuENdR', '.@Sixers ....pic.twitter.com/50rFKmTAuc', '[email protected]/X0sSOW7YYt', '.@Sixers ', '.@Timberwolves ']",5,"['4 Jan 2016', '4 Jan 2016', '4 Jan 2016', '4 Jan 2016', '4 Jan 2016']","['Philadelphia 76ers', 'Timberwolves', 'Philadelphia 76ers', 'Timberwolves', 'Philadelphia 76ers']","['@sixers', '@Timberwolves', '@sixers', '@Timberwolves', '@sixers']"
1513,"Wiggs applying the sunblock tonight!
Get it, @Suns? ",Suns,Timberwolves,"['Wiggs applying the sunblock tonight! \n\nGet it, @Suns? ', '@Timberwolvespic.twitter.com/qkOQFXfNVm', '.@Suns pic.twitter.com/k2xuJLYXqN', '@Timberwolves to the @Sunspic.twitter.com/fU08W8VAlM', '@doctor_wheat @Timberwolvespic.twitter.com/59MT0dLeVT']",5,"['28 Mar 2016', '28 Mar 2016', '28 Mar 2016', '28 Mar 2016', '28 Mar 2016']","['Timberwolves', 'Phoen1x Šuns', 'Timberwolves', 'Nathan Wheat, DC', 'Phoen1x Šuns']","['@Timberwolves', '@Suns', '@Timberwolves', '@doctor_wheat', '@Suns']"
656,What are your thoughts on the #ESPNForecast that says we're the 5 seed in the East this season?http://espn.go.com/nba/story/_/id/11334160/2014-summer-forecast-east-standings&ex_cid=espnnbaTwitter …,Hornets,ATLHawks,"[""What are your thoughts on the #ESPNForecast that says we're the 5 seed in the East this season?http://espn.go.com/nba/story/_/id/11334160/2014-summer-forecast-east-standings&ex_cid=espnnbaTwitter\xa0…"", '@hornets You and us are on opposite sides of their bracket. See you in the conference Finals?', ""@ATLHawks Marking it on the calendar as we speak! We'll see you then."", ""@hornets Atlanta is nice in early June. You'll like it."", ""@ATLHawks oh it's onnnn...""]",5,"['11 Aug 2014', '11 Aug 2014', '11 Aug 2014', '11 Aug 2014', '11 Aug 2014']","['Charlotte Hornets', 'Atlanta Hawks', 'Charlotte Hornets', 'Atlanta Hawks', 'Charlotte Hornets']","['@hornets', '@ATLHawks', '@hornets', '@ATLHawks', '@hornets']"
2428,When KCB shows up at your house in an @Uber_NOLA with a special delivery! #PelicansKCBpic.twitter.com/yCeJBUxn17,Bucks,PelicansNBA,"['When KCB shows up at your house in an @Uber_NOLA with a special delivery! #PelicansKCBpic.twitter.com/yCeJBUxn17', 'Welp, so much for sleeping tonight.', 'Really, guys?pic.twitter.com/u4j35aAy5F', 'Sliding into your nightmares likepic.twitter.com/PXAUbQLHCu', 'you were saying?http://www.espn.com/blog/sportscenter/post/_/id/79445/bango-wins-nba-mascot-of-the-year-seriously\xa0…']",5,"['6 Jan 2017', '6 Jan 2017', '6 Jan 2017', '6 Jan 2017', '6 Jan 2017']","['New Orleans Pelicans', 'Sacramen2 Kings', 'Milwaukee Bucks', 'Sacramen2 Kings', 'Milwaukee Bucks']","['@PelicansNBA', '@SacramentoKings', '@Bucks', '@SacramentoKings', '@Bucks']"
2560,Here are tonight's MegaBucks Starters and we are underway on @fswisconsin!! #MILvGSWpic.twitter.com/8ZCeJGCeHG,Bucks,warriors,"[""Here are tonight's MegaBucks Starters and we are underway on @fswisconsin!! #MILvGSWpic.twitter.com/8ZCeJGCeHG"", ""@Bucks diggin' the 90s logos."", '@warriors ', '@Bucks no purple unis though?', '@warriors rules and stuff. So nah... ']",5,"['28 Mar 2015', '28 Mar 2015', '28 Mar 2015', '28 Mar 2015', '28 Mar 2015']","['Milwaukee Bucks', 'Golden State Warriors', 'Milwaukee Bucks', 'Golden State Warriors', 'Milwaukee Bucks']","['@Bucks', '@warriors', '@Bucks', '@warriors', '@Bucks']"
2724,pic.twitter.com/L2NkmCfTpm,Raptors,trailblazers,"['pic.twitter.com/L2NkmCfTpm', 'that haircut or...?', 'I mean if we wanna talk about hair...pic.twitter.com/mDLvhK4waJ', ""that's an old pic.\n\nSpeaking of old, you guys still dabbing in Canada?pic.twitter.com/fl2lp4BAN4"", '[email protected]/Lg1QqSN6jC']",5,"['26 Dec 2016', '26 Dec 2016', '26 Dec 2016', '26 Dec 2016', '26 Dec 2016']","['Toronto Raptors', 'Trail Blazers', 'Toronto Raptors', 'Trail Blazers', 'Toronto Raptors']","['@Raptors', '@trailblazers', '@Raptors', '@trailblazers', '@Raptors']"
2542,"How many days until tip-off in #RipCity? Our Snapchat account will always have the answer.
» trailblazerspic.twitter.com/0Ea0PHvT4N",Bucks,Suns,"['How many days until tip-off in #RipCity? Our Snapchat account will always have the answer.\n\n » trailblazerspic.twitter.com/0Ea0PHvT4N', ""@trailblazers always? that's a big commitment."", '@Bucks we like to give the people what they want.', ""@trailblazers @Bucks Will you go negative days after the season starts? Then it'd truly be 'always.'"", '@Suns @trailblazers or does it just start counting down till 16-17?']",5,"['18 Aug 2015', '18 Aug 2015', '18 Aug 2015', '18 Aug 2015', '18 Aug 2015']","['Trail Blazers', 'Milwaukee Bucks', 'Trail Blazers', 'Phoen1x Šuns', 'Milwaukee Bucks']","['@trailblazers', '@Bucks', '@trailblazers', '@Suns', '@Bucks']"
2431,Today's #BucksSportsNutrition Lunch: Crawfish Boilpic.twitter.com/F9qvuxcB97,Bucks,PelicansNBA,"[""Today's #BucksSportsNutrition Lunch: Crawfish Boilpic.twitter.com/F9qvuxcB97"", '@Bucks -pic.twitter.com/o4ow08im4u', ""@PelicansNBA we'll save a plate for you guys!pic.twitter.com/eTmuAgssyI"", ""@Bucks - Plate? ... we're gonna need a bigger boat!pic.twitter.com/PSQk0i6f6v"", '@PelicansNBA ']",5,"['5 Apr 2016', '5 Apr 2016', '5 Apr 2016', '5 Apr 2016', '5 Apr 2016']","['Milwaukee Bucks', 'New Orleans Pelicans', 'Milwaukee Bucks', 'New Orleans Pelicans', 'Milwaukee Bucks']","['@Bucks', '@PelicansNBA', '@Bucks', '@PelicansNBA', '@Bucks']"
2577,"ESPN's Playoff Odds give us a 64.3% chance of playing into late April.
Your thoughts? http://espn.go.com/nba/hollinger/playoffodds …pic.twitter.com/7FSoOnlHYW",Bucks,ATLHawks,"[""ESPN's Playoff Odds give us a 64.3% chance of playing into late April. \n\nYour thoughts? http://espn.go.com/nba/hollinger/playoffodds\xa0…pic.twitter.com/7FSoOnlHYW"", '@Bucks We like those stats!', ""@ATLHawks next time we'll close you out at home. ;)"", '@Bucks http://gph.is/1m8VA3o\xa0', ""@ATLHawks it was 2010. You weren't hip to the Twitter then.""]",5,"['8 Dec 2014', '8 Dec 2014', '8 Dec 2014', '8 Dec 2014', '8 Dec 2014']","['Milwaukee Bucks', 'Atlanta Hawks', 'Milwaukee Bucks', 'Atlanta Hawks', 'Milwaukee Bucks']","['@Bucks', '@ATLHawks', '@Bucks', '@ATLHawks', '@Bucks']"
2401,pic.twitter.com/gzKjiAvgJE,MemGrizz,trailblazers,"['pic.twitter.com/gzKjiAvgJE', '""This trade is a blessing. I\'m ready to grind, Rip City. I think I can make an immediate impact out on the floor."" -- Cash Considerationspic.twitter.com/iRkC5vfwps', 'Ugh we missed the presser is there a link?', 'FB Live crashed on us.', 'hate when that happens']",5,"['28 Jun 2017', '28 Jun 2017', '28 Jun 2017', '28 Jun 2017', '28 Jun 2017']","['Trail Blazers', 'Trail Blazers', 'Memphis Grizzlies', 'Trail Blazers', 'Memphis Grizzlies']","['@trailblazers', '@trailblazers', '@memgrizz', '@trailblazers', '@memgrizz']"
384,"Hello, @SacramentoKings. pic.twitter.com/qgmpTYhX5a",OrlandoMagic,SacramentoKings,"['Hello, @SacramentoKings. pic.twitter.com/qgmpTYhX5a', '@OrlandoMagicpic.twitter.com/LHk31DzjHB', '@SacramentoKingspic.twitter.com/xmy7jp561O', '@OrlandoMagicpic.twitter.com/7HgjuptdE1', '@SacramentoKingspic.twitter.com/md2dnvAUCv']",5,"['11 Mar 2016', '11 Mar 2016', '11 Mar 2016', '11 Mar 2016', '11 Mar 2016']","['Orlando Magic', 'Sacramen2 Kings', 'Orlando Magic', 'Sacramen2 Kings', 'Orlando Magic']","['@OrlandoMagic', '@SacramentoKings', '@OrlandoMagic', '@SacramentoKings', '@OrlandoMagic']"
2321,ZBO with the movez!pic.twitter.com/B3st4JDHK3,MemGrizz,UtahJazz,"['ZBO with the movez!pic.twitter.com/B3st4JDHK3', 'Do less of this. K, thanks.pic.twitter.com/WtZgRNzQ6K', 'but zbo is a teddy bear', 'Memphis Teddy Bears. We like the sound of that!', 'chill']",5,"['28 Jan 2017', '28 Jan 2017', '28 Jan 2017', '28 Jan 2017', '28 Jan 2017']","['Memphis Grizzlies', 'Utah Jazz', 'Memphis Grizzlies', 'Utah Jazz', 'Memphis Grizzlies']","['@memgrizz', '@utahjazz', '@memgrizz', '@utahjazz', '@memgrizz']"
2627,"@Bucks I'm getting emails about deals you guys have 4 games, though I appreciate it, I live in Oregon, maybe u can get me off the email list",Bucks,trailblazers,"[""@Bucks I'm getting emails about deals you guys have 4 games, though I appreciate it, I live in Oregon, maybe u can get me off the email list"", '@germanlo123 you can manage your settings in the email!', ""@Bucks cool, thanks\nIt was weird getting messages from you guys, especially since I'm a @trailblazers fan"", '@germanlo123 stop trying to steal our fans, @Bucks...', '@trailblazers @germanlo123 what are marketing rules?']",5,"['25 Mar 2015', '25 Mar 2015', '25 Mar 2015', '25 Mar 2015', '25 Mar 2015']","['German Lopez', 'Milwaukee Bucks', 'German Lopez', 'Trail Blazers', 'Milwaukee Bucks']","['@germanlo123', '@Bucks', '@germanlo123', '@trailblazers', '@Bucks']"
2695,"We got all four @TheStarters headed down to The Fortress tonight for some @Raptors / @ATLHawks action.
Holla if you see us.",Raptors,ATLHawks,"['We got all four @TheStarters headed down to The Fortress tonight for some @Raptors / @ATLHawks action. \n\nHolla if you see us.', ""Can't wait to see you all in your Hawks jerseys!"", 'Ummm ... pic.twitter.com/q4qYJC4h3K', ""Wow y'all look great! Thanks for coming pic.twitter.com/aetWQ9kbHg"", 'No photoshop neededpic.twitter.com/6QVGwrhrXz']",5,"['Jan 24 2018', 'Jan 24 2018', 'Jan 24 2018', 'Jan 24 2018', 'Jan 24 2018']","['J.E. Skeets', 'Atlanta Hawks', 'J.E. Skeets', 'Atlanta Hawks', 'Toronto Raptors']","['@jeskeets', '@ATLHawks', '@jeskeets', '@ATLHawks', '@Raptors']"
417,Which #Twolves player do you predict will put up the most points tonight against the Pelicans?,Timberwolves,PelicansNBA,"['Which #Twolves player do you predict will put up the most points tonight against the Pelicans?', '@MNTimberwolves pek with 26', '.@NickLadwig as long as Anthony Davis is okay with this, sounds like a plan to us! What do you think, @PelicansNBA?', ""@MNTimberwolves - Ummm...we're gonna need to renegotiate that to a lower number."", ""@PelicansNBA we'll compromise. 20 Points for Pek...0 Blocks for Anthony. No backsies.""]",5,"['14 Nov 2014', '14 Nov 2014', '14 Nov 2014', '14 Nov 2014', '14 Nov 2014']","['Timberwolves', 'Nick Ladwig', 'Timberwolves', 'New Orleans Pelicans', 'Timberwolves']","['@Timberwolves', '@NickLadwig', '@Timberwolves', '@PelicansNBA', '@Timberwolves']"
1069,Just landed in LA in advance of our game tomorrow versus the Clippers. Anything happen while we were in the air?,UtahJazz,MemGrizz,"['Just landed in LA in advance of our game tomorrow versus the Clippers. Anything happen while we were in the air?', '@grizz found love!', 'Is it serious?', 'Wow this is how we find out?']",4,"['Jan 29 2018', 'Jan 29 2018', 'Jan 29 2018', 'Jan 29 2018']","['Trail Blazers', 'Memphis Grizzlies', 'Trail Blazers', 'Utah Jazz']","['@trailblazers', '@memgrizz', '@trailblazers', '@utahjazz']"
2501,"GAMEFLOW!
Check it out on the Utah Jazz App!
: http://utahjazz.com/app
#UTAatMILpic.twitter.com/5diwyVSSaD",Bucks,UtahJazz,"['GAMEFLOW!\n\nCheck it out on the Utah Jazz App!\n\n: http://utahjazz.com/app\xa0\n#UTAatMILpic.twitter.com/5diwyVSSaD', '@utahjazz we liked it better when it was green.', '@Bucks ¯\\_(ツ)_/¯', '@utahjazz ']",4,"['20 Mar 2016', '20 Mar 2016', '20 Mar 2016', '20 Mar 2016']","['Utah Jazz', 'Milwaukee Bucks', 'Utah Jazz', 'Milwaukee Bucks']","['@utahjazz', '@Bucks', '@utahjazz', '@Bucks']"
145,Omw to the Barclay's center to see @SacramentoKings at @BrooklynNets #ShouldBeGood ,BrooklynNets,SacramentoKings,"[""Omw to the Barclay's center to see @SacramentoKings at @BrooklynNets #ShouldBeGood "", '@TijaySwavii_ @BrooklynNets who you rooting for? ', ""@SacramentoKings Im from Brooklyn but I'm rooting for you guys "", '@TijaySwavii_ @SacramentoKingspic.twitter.com/6WdqU9N8n1']",4,"['5 Feb 2016', '5 Feb 2016', '5 Feb 2016', '5 Feb 2016']","['\xa0🉐\xa0🎙Tijay,MC \xa0🔑\xa0📿', 'Sacramen2 Kings', '\xa0🉐\xa0🎙Tijay,MC \xa0🔑\xa0📿', 'Brooklyn Nets']","['@TijaySwavii_', '@SacramentoKings', '@TijaySwavii_', '@BrooklynNets']"
2499,@Bucks pic.twitter.com/zyREvWqMP8,Bucks,UtahJazz,"['@Bucks pic.twitter.com/zyREvWqMP8', 'Gold unis tonight huh?', 'Nothing but the best for ‘sconsins finest... ', 'We’ve…uh…taken note ']",4,"['25 Nov 2017', '25 Nov 2017', '25 Nov 2017', '25 Nov 2017']","['Utah Jazz', 'Milwaukee Bucks', 'Utah Jazz', 'Milwaukee Bucks']","['@utahjazz', '@Bucks', '@utahjazz', '@Bucks']"
1733,".@Sixers, @trailblazers, @LAClippers Makin' Posters #ThrowdownThursdayhttps://vine.co/v/ewKQmpBDzWe ",Suns,trailblazers,"["".@Sixers, @trailblazers, @LAClippers Makin' Posters #ThrowdownThursdayhttps://vine.co/v/ewKQmpBDzWe\xa0"", '@utahjazz @Sixers @LAClippers did someone say poster?https://vine.co/v/OFiqLLBjD7v\xa0', '@trailblazers @utahjazz @Sixers \n\nThe rim is too low...pic.twitter.com/QIBcyE1hG5', ""@LAClippers @trailblazers @utahjazz @Sixers Posters? Oh, we've got posters. #ThrowdownThursdaypic.twitter.com/FEvn74ViX6""]",4,"['6 Aug 2015', '6 Aug 2015', '6 Aug 2015', '6 Aug 2015']","['Utah Jazz', 'Trail Blazers', 'LA Clippers', 'Phoen1x Šuns']","['@utahjazz', '@trailblazers', '@LAClippers', '@Suns']"
3162,DO YALL SEE ME COURTSIDE AT GAME 7,Sixers,SacramentoKings,"['DO YALL SEE ME COURTSIDE AT GAME 7', '.@lildickytweets pic.twitter.com/pjdY99zHEF', 'this you fam?pic.twitter.com/6fq0ZCZr7O', '.@SacramentoKings @lildickytweetspic.twitter.com/GQYOcX9Vha']",4,"['19 Jun 2016', '19 Jun 2016', '19 Jun 2016', '19 Jun 2016']","['LD', 'Philadelphia 76ers', 'Sacramen2 Kings', 'Philadelphia 76ers']","['@lildickytweets', '@sixers', '@SacramentoKings', '@sixers']"
3158,It's like that huh @paparoach...pic.twitter.com/tJkrubA8F9,Sixers,SacramentoKings,"[""It's like that huh @paparoach...pic.twitter.com/tJkrubA8F9"", '@SacramentoKings @paparoach #DubNationpic.twitter.com/ZUMZFg1sVi', '@warriors @paparoach just sayin...pic.twitter.com/BjtVOUH9Q6', '@SacramentoKings @warriors Ya’ll really over here fighting over @paparoach?']",4,"['6 May 2015', '6 May 2015', '6 May 2015', '6 May 2015']","['Sacramen2 Kings', 'Golden State Warriors', 'Sacramen2 Kings', 'Philadelphia 76ers']","['@SacramentoKings', '@warriors', '@SacramentoKings', '@sixers']"
2512,"Giannis has 7 points and 7 boards in his first qtr back from the All-Star break!!
#OwnTheFuturepic.twitter.com/xQNb3h0nKe",Bucks,UtahJazz,"['Giannis has 7 points and 7 boards in his first qtr back from the All-Star break!!\n\n#OwnTheFuturepic.twitter.com/xQNb3h0nKe', ""hey the @utahjazz don't use that logo anymore"", 'pic.twitter.com/JEPsz1p1WM', '']",4,"['24 Feb 2017', '24 Feb 2017', '24 Feb 2017', '24 Feb 2017']","['Milwaukee Bucks', 'Dell', 'Utah Jazz', 'Milwaukee Bucks']","['@Bucks', '@delltreasure', '@utahjazz', '@Bucks']"
391,"We're hosting a team that goes by 'Magic' on Friday the 13th.
The irony.
Game Day Hub » http://rip.city/2jsaBma pic.twitter.com/KUmtMxjgOk",OrlandoMagic,trailblazers,"[""We're hosting a team that goes by 'Magic' on Friday the 13th.\n\nThe irony.\n\nGame Day Hub » http://rip.city/2jsaBma\xa0pic.twitter.com/KUmtMxjgOk"", 'when the stars align for a Magic win....pic.twitter.com/3QeZh0DxCC', 'see u guys soon!', 'bye friends! see you later ']",4,"['13 Jan 2017', '13 Jan 2017', '13 Jan 2017', '13 Jan 2017']","['Trail Blazers', 'Orlando Magic', 'Trail Blazers', 'Orlando Magic']","['@trailblazers', '@OrlandoMagic', '@trailblazers', '@OrlandoMagic']"
1152,Jae Day! #NBASweetpic.twitter.com/4SqxPxxzam,nuggets,DallasMavs,"['Jae Day! #NBASweetpic.twitter.com/4SqxPxxzam', '@dallasmavs there you are. How was lunch?', '@denvernuggets still working on it! :)', '@dallasmavs all this #NBASweets talk is making US hungry for lunch.']",4,"['6 Aug 2014', '6 Aug 2014', '6 Aug 2014', '6 Aug 2014']","['Dallas Mavericks', 'Denver Nuggets', 'Dallas Mavericks', 'Denver Nuggets']","['@dallasmavs', '@nuggets', '@dallasmavs', '@nuggets']"
1654,3rd Rock from the Suns #NBASitcoms,Suns,ATLHawks,"['3rd Rock from the Suns #NBASitcoms', '@Suns We were waiting for that one. Well done.', '@ATLHawks @Suns that one is almost TOO easy.', '@denvernuggets @ATLHawks Thus the beauty of it.']",4,"['24 Jul 2014', '24 Jul 2014', '24 Jul 2014', '24 Jul 2014']","['Phoen1x Šuns', 'Atlanta Hawks', 'Denver Nuggets', 'Phoen1x Šuns']","['@Suns', '@ATLHawks', '@nuggets', '@Suns']"
1660,...........,Suns,MemGrizz,"['...........', 'Same.', 'v stressful', 'Agreed. Good game though! See you back here Tuesday!']",4,"['21 Dec 2017', '21 Dec 2017', '21 Dec 2017', '21 Dec 2017']","['Memphis Grizzlies', 'Phoen1x Šuns', 'Memphis Grizzlies', 'Phoen1x Šuns']","['@memgrizz', '@Suns', '@memgrizz', '@Suns']"
2692,10-point game...pic.twitter.com/BiUyVL1YeR,Raptors,warriors,"['10-point game...pic.twitter.com/BiUyVL1YeR', '.@warriors *6pic.twitter.com/MPcVCSyzIW', ""turn the 6 upside down, it's a 9 now*"", '']",4,"['16 Nov 2016', '16 Nov 2016', '16 Nov 2016', '16 Nov 2016']","['Golden State Warriors', 'Toronto Raptors', 'Golden State Warriors', 'Toronto Raptors']","['@warriors', '@Raptors', '@warriors', '@Raptors']"
3182,"Best smile in the @NBA, and it's not even close. pic.twitter.com/XVKrXl93FZ",Sixers,trailblazers,"[""Best smile in the @NBA, and it's not even close. pic.twitter.com/XVKrXl93FZ"", 'Idk...pic.twitter.com/HnGKdSJbFU', 'lolpic.twitter.com/EEXpbikYpJ', 'Yeah no, I hear ya, but...pic.twitter.com/CNmuQWhTIr']",4,"['25 Sep 2017', '25 Sep 2017', '25 Sep 2017', '25 Sep 2017']","['Trail Blazers', 'Philadelphia 76ers', 'Trail Blazers', 'Philadelphia 76ers']","['@trailblazers', '@sixers', '@trailblazers', '@sixers']"
1667,@suns hey guys!pic.twitter.com/CZiQkciin7,Suns,Bucks,"['@suns hey guys!pic.twitter.com/CZiQkciin7', '.@Bucks We like that number.pic.twitter.com/EVdIBJsEA9', "".@Suns that's funny, because so do we... http://on.nba.com/1qUwVXq\xa0pic.twitter.com/q0lYTPKMM0"", ""@Bucks We ain't mad at ya. Got nothin' but love for ya.""]",4,"['6 Jan 2015', '6 Jan 2015', '6 Jan 2015', '6 Jan 2015']","['Milwaukee Bucks', 'Phoen1x Šuns', 'Milwaukee Bucks', 'Phoen1x Šuns']","['@Bucks', '@Suns', '@Bucks', '@Suns']"
1669,Maybe we'll make other plans on December 20th then. @Suns #OwnTheFuturepic.twitter.com/VKnfozIVRT,Suns,Bucks,"[""Maybe we'll make other plans on December 20th then. @Suns #OwnTheFuturepic.twitter.com/VKnfozIVRT"", '[email protected]/uroDfTwhCv', ""@Suns @Bucks whoever's running the suns Twitter account deserves a medal"", ""@BGeneus @Bucks if a medal isn't available, we'll take cash considerations.""]",4,"['20 Nov 2015', '20 Nov 2015', '20 Nov 2015', '20 Nov 2015']","['Milwaukee Bucks', 'Phoen1x Šuns', 'LeBron vs Rockets in the NBA Finals', 'Phoen1x Šuns']","['@Bucks', '@Suns', '@BGeneus', '@Suns']"
1673,".@Suns fans, know your Sir Charles trivia? 1st one to meet me @ the TOP TOP of Camelback Mt at 7am wins game tixs.pic.twitter.com/vqdy2gVdFq",Suns,Bucks,"['.@Suns fans, know your Sir Charles trivia? 1st one to meet me @ the TOP TOP of Camelback Mt at 7am wins game tixs.pic.twitter.com/vqdy2gVdFq', '.@ReggieMillerTNT We love this! The only thing the @Bucks left on the top of Camelback was a bobble head.https://twitter.com/suns/status/678638730597437440\xa0…', '@Suns @ReggieMillerTNT we salute the exercise tho! #NBAFit', ""@Bucks @ReggieMillerTNT We're still waiting for that apology for littering...""]",4,"['20 Jan 2016', '20 Jan 2016', '20 Jan 2016', '20 Jan 2016']","['Reggie Miller', 'Phoen1x Šuns', 'Milwaukee Bucks', 'Phoen1x Šuns']","['@ReggieMillerTNT', '@Suns', '@Bucks', '@Suns']"
3175,"It's been real, but we have to get to live coverage of the Kemper Open this afternoon.",Sixers,trailblazers,"[""It's been real, but we have to get to live coverage of the Kemper Open this afternoon."", 'lol ur team sucks', ""lol how'd '77 go?"", 'Alright, you two. Play nice.']",4,"['5 Jun 2017', '5 Jun 2017', '5 Jun 2017', '5 Jun 2017']","['Trail Blazers', '♛ ᴛʜᴏᴍᴀs ♛ - lost avi bet', 'Trail Blazers', 'Philadelphia 76ers']","['@trailblazers', '@SimmonsOverMJ', '@trailblazers', '@sixers']"
542,Thanks Andrew!,Timberwolves,ATLHawks,"['Thanks Andrew!', ""@ATLHawks we have no clue what you're talking about..."", '@MNTimberwolves ', ""@ATLHawks look, it's #NationalPizzaDay. You really want to deprive all of MN of pizza? Rude.""]",4,"['9 Feb 2015', '9 Feb 2015', '9 Feb 2015', '9 Feb 2015']","['Atlanta Hawks', 'Timberwolves', 'Atlanta Hawks', 'Timberwolves']","['@ATLHawks', '@Timberwolves', '@ATLHawks', '@Timberwolves']"
1688,"Sacramento begins its season in Phoenix versus the @Suns on Wednesday, Oct. 26 at 7 p.m.",Suns,SacramentoKings,"['Sacramento begins its season in Phoenix versus the @Suns on Wednesday, Oct. 26 at 7 p.m.', 'see ya in 75 days!pic.twitter.com/ywdgextM3u', '@Sunspic.twitter.com/9yGGiwd6FL', '@SacramentoKingspic.twitter.com/DRjSunXN90']",4,"['11 Aug 2016', '11 Aug 2016', '11 Aug 2016', '11 Aug 2016']","['Sacramen2 Kings', 'Phoen1x Šuns', 'Sacramen2 Kings', 'Phoen1x Šuns']","['@SacramentoKings', '@Suns', '@SacramentoKings', '@Suns']"
2520,Hey @Sixers @MNTimberwolves @OrlandoMagic @hornets @Bucks @denvernuggets @WashWizards Who's ready for another round of hashtag game?,Bucks,WashWizards,"[""Hey @Sixers @MNTimberwolves @OrlandoMagic @hornets @Bucks @denvernuggets @WashWizards Who's ready for another round of hashtag game?"", ""@Suns @Sixers @OrlandoMagic @hornets @Bucks @denvernuggets @WashWizards more than ready. Let's go!"", "".@MNTimberwolves @Sixers @OrlandoMagic @hornets @Bucks @denvernuggets @WashWizards It's #NBADramas. Hopefully you know your TV/Movies."", ""@Suns @MNTimberwolves @Sixers @OrlandoMagic @hornets @denvernuggets @WashWizards we're late but ready to go! #NBADramas""]",4,"['17 Sep 2014', '17 Sep 2014', '17 Sep 2014', '17 Sep 2014']","['Phoen1x Šuns', 'Timberwolves', 'Phoen1x Šuns', 'Milwaukee Bucks']","['@Suns', '@Timberwolves', '@Suns', '@Bucks']"
545,,Timberwolves,ATLHawks,"['', '.@ATLHawks ', ""@dallasmavs Let's save that for after the game, cool?"", ""@ATLHawks @dallasmavs oh, this wasn't about lunch?pic.twitter.com/3xT2e0ROxO""]",4,"['22 Dec 2014', '22 Dec 2014', '22 Dec 2014', '22 Dec 2014']","['Atlanta Hawks', 'Dallas Mavericks', 'Atlanta Hawks', 'Timberwolves']","['@ATLHawks', '@dallasmavs', '@ATLHawks', '@Timberwolves']"
546,Let's go! RT @ATLHawks: It's time for some more hashtag games! Let's play #NBASweets today...,Timberwolves,ATLHawks,"[""Let's go! RT @ATLHawks: It's time for some more hashtag games! Let's play #NBASweets today..."", '@Sixers @ATLHawks Hold on we just woke up.', '@trailblazers @Sixers In that case, brush your teeth before you start talking to us.', '@ATLHawks @trailblazers @Sixers they probably already did, to be honest. They just do it quickly. .9 seconds to be exact.']",4,"['6 Aug 2014', '6 Aug 2014', '6 Aug 2014', '6 Aug 2014']","['Philadelphia 76ers', 'Trail Blazers', 'Atlanta Hawks', 'Timberwolves']","['@sixers', '@trailblazers', '@ATLHawks', '@Timberwolves']"
2699,We were actually thinking about this one: https://twitter.com/raptors/status/840281491506642944 …,Raptors,ATLHawks,"['We were actually thinking about this one: https://twitter.com/raptors/status/840281491506642944\xa0…', ""That's a good one but we checked and all these have yet to be used: \n\nJuuuuust a suggestion"", 'We used last time we played you...we could repeat that?', ""Hmmm can't recall that. We were wrong tho, you did use on 12/3. That was a good day.pic.twitter.com/EBCAPYKn6m""]",4,"['10 Mar 2017', '10 Mar 2017', '10 Mar 2017', '10 Mar 2017']","['Atlanta Hawks', 'Toronto Raptors', 'Atlanta Hawks', 'Toronto Raptors']","['@ATLHawks', '@Raptors', '@ATLHawks', '@Raptors']"
144,.@BrooklynNets please control your cowshttps://twitter.com/NYCityAlerts/status/920319045760626689 …,BrooklynNets,SacramentoKings,"['.@BrooklynNets please control your cowshttps://twitter.com/NYCityAlerts/status/920319045760626689\xa0…', ""Not sure he is one of ours. Let's check with the @chicagobulls. \n\[email protected] this a friend of yours?"", 'What, you think all bulls know each other?', 'It would be a cowincidence, but we know how friendly you are']",4,"['17 Oct 2017', '17 Oct 2017', '17 Oct 2017', '17 Oct 2017']","['Sacramen2 Kings', 'Brooklyn Nets', 'Benny', 'Brooklyn Nets']","['@SacramentoKings', '@BrooklynNets', '@bennythebull', '@BrooklynNets']"
2514,"Mudiay travels coast-to-coast and then hits the THREE!
We’re within 2. #Nuggets",Bucks,nuggets,"['Mudiay travels coast-to-coast and then hits the THREE!\n\nWe’re within 2. #Nuggets', '@nuggets he traveled?', '@Bucks we realized our choice of words after pressing send… \n\nWHATEVER we’re closing in.', '@nuggets it would appear so.']",4,"['30 Nov 2015', '30 Nov 2015', '30 Nov 2015', '30 Nov 2015']","['Denver Nuggets', 'Milwaukee Bucks', 'Denver Nuggets', 'Milwaukee Bucks']","['@nuggets', '@Bucks', '@nuggets', '@Bucks']"
172,Who you got tonight?,PelicansNBA,OrlandoMagic,"['Who you got tonight?', '@OrlandoMagic - You misspelled Pelicans.', '@PelicansNBA This is you, right??pic.twitter.com/Io8yYLH1pd', '@OrlandoMagic - More like this...pic.twitter.com/v3aeQnZATx']",4,"['28 Dec 2015', '28 Dec 2015', '28 Dec 2015', '28 Dec 2015']","['Orlando Magic', 'New Orleans Pelicans', 'Orlando Magic', 'New Orleans Pelicans']","['@OrlandoMagic', '@PelicansNBA', '@OrlandoMagic', '@PelicansNBA']"
1032,LATE GAME ALERT! Spend your Friday night with us as the Mavs take on the Jazz TONIGHT! Game tips off at 9:30PM CT on @FoxSportsSW #MFFLpic.twitter.com/Gj6l0sdOEV,UtahJazz,DallasMavs,"['LATE GAME ALERT! Spend your Friday night with us as the Mavs take on the Jazz TONIGHT! Game tips off at 9:30PM CT on @FoxSportsSW #MFFLpic.twitter.com/Gj6l0sdOEV', 'pic.twitter.com/zoQXlDlUxq', 'pic.twitter.com/EkJgIp4vhm', 'We can hardly contain our excitement for tonight!! pic.twitter.com/szLTak8uj2']",4,"['16 Dec 2016', '16 Dec 2016', '16 Dec 2016', '16 Dec 2016']","['Dallas Mavericks', 'Utah Jazz', 'Dallas Mavericks', 'Utah Jazz']","['@dallasmavs', '@utahjazz', '@dallasmavs', '@utahjazz']"
2467,"Roundball One lands in Milwaukee, where the sun remains an unconfirmed rumorpic.twitter.com/zXJBV3QEiM",Bucks,DetroitPistons,"['Roundball One lands in Milwaukee, where the sun remains an unconfirmed rumorpic.twitter.com/zXJBV3QEiM', '@Keith_Langlois @DetroitPistons that white stuff is just covering the red carpet we rolled out for you guys.', ""@Bucks You're too kind"", '@DetroitPistons you guys can return the favor Wednesday!']",4,"['24 Nov 2014', '24 Nov 2014', '24 Nov 2014', '24 Nov 2014']","['Keith Langlois', 'Milwaukee Bucks', 'Detroit Pistons', 'Milwaukee Bucks']","['@Keith_Langlois', '@Bucks', '@DetroitPistons', '@Bucks']"
3044,The Social Media Representatives for the @Sixers @ATLHawks @Suns @utahjazz @warriors @hornets and the @spurs all deserves raises ,Sixers,Hornets,"['The Social Media Representatives for the @Sixers @ATLHawks @Suns @utahjazz @warriors @hornets and the @spurs all deserves raises ', '@mikecarey_ @Sixers @ATLHawks @Suns @utahjazz @hornets @spurspic.twitter.com/YNbbpijh3Q', '@warriors @Sixers @ATLHawks @Suns @utahjazz @hornets @spurs I appreciate you all making my day betterpic.twitter.com/QEfBgML2mU', '@mikecarey_ @warriors @ATLHawks @Suns @utahjazz @hornets @spurspic.twitter.com/Do0Y3tMu4n']",4,"['4 Aug 2015', '4 Aug 2015', '4 Aug 2015', '4 Aug 2015']","['Michael Carey', 'Golden State Warriors', 'Michael Carey', 'Philadelphia 76ers']","['@MichaeICarey', '@warriors', '@MichaeICarey', '@sixers']"
599,Good memories here #MFFLpic.twitter.com/xKZsChUY9V – at American Airlines Arena,MiamiHEAT,DallasMavs,"['Good memories here #MFFLpic.twitter.com/xKZsChUY9V – at American Airlines Arena', 'touché. We have a few good memories in here of our own pic.twitter.com/DhmyktVeiF', 'um are you guys still running dial-up? ', ""ha. 2006 may have been awhile back but we'll never forget it!""]",4,"['19 Jan 2017', '27 Feb 2017', '27 Feb 2017', '27 Feb 2017']","['Dallas Mavericks', 'Miami HEAT', 'Dallas Mavericks', 'Miami HEAT']","['@dallasmavs', '@MiamiHEAT', '@dallasmavs', '@MiamiHEAT']"
982, @KingCakeBaby is waiting for you outside section 101 #PelicansKCBpic.twitter.com/v3tGKRGo7H,UtahJazz,PelicansNBA,"[' @KingCakeBaby is waiting for you outside section 101 #PelicansKCBpic.twitter.com/v3tGKRGo7H', 'We hope @ZachLowe_NBA is there', 'He hasn’t opened my latest Snapchat to him ', ""He's probably saving it""]",4,"['Feb 7 2018', 'Feb 7 2018', 'Feb 7 2018', 'Feb 7 2018']","['New Orleans Pelicans', 'Utah Jazz', 'King Cake Baby', 'Utah Jazz']","['@PelicansNBA', '@utahjazz', '@KingCakeBaby', '@utahjazz']"
2734,"tfw it's Friday the 13th and you realize you already have more points than the opponent
Kev: 9
SAC: 7
#NBAVOTE @kevinlovepic.twitter.com/oqVT0L4XCr",SacramentoKings,cavs,"[""tfw it's Friday the 13th and you realize you already have more points than the opponent \n\nKev: 9\nSAC: 7\n\n#NBAVOTE @kevinlovepic.twitter.com/oqVT0L4XCr"", 'pic.twitter.com/Wza8UMffnW', 'pic.twitter.com/JIGrFiXyFH', 'remember when it was tied at the start of the game? Good times']",4,"['13 Jan 2017', '13 Jan 2017', '13 Jan 2017', '13 Jan 2017']","['Cleveland Cavaliers', 'Sacramen2 Kings', 'Cleveland Cavaliers', 'Sacramen2 Kings']","['@cavs', '@SacramentoKings', '@cavs', '@SacramentoKings']"
2737,4/4 start from the field for @KingJames. #CavsKings,SacramentoKings,cavs,"['4/4 start from the field for @KingJames. #CavsKings', '@cavs pls stop', '@SacramentoKingspic.twitter.com/sgBsnsDNgS', '@cavspic.twitter.com/iGOhZ1lKNX']",4,"['9 Mar 2016', '9 Mar 2016', '9 Mar 2016', '9 Mar 2016']","['Cleveland Cavaliers', 'Sacramen2 Kings', 'Cleveland Cavaliers', 'Sacramen2 Kings']","['@cavs', '@SacramentoKings', '@cavs', '@SacramentoKings']"
973,Hello Brooklyn! #CavsNetspic.twitter.com/I0Sf5Na0bH,UtahJazz,cavs,"['Hello Brooklyn! #CavsNetspic.twitter.com/I0Sf5Na0bH', '¿Qué pasa, Phoenix?\nLOTS of #CavsNation in the house tonight \n#WestCoastCavs → #CavsSuns pic.twitter.com/pJGm8qRp8k', 'Sup, Salt Lake? \n#WestCoastCavs → #CavsJazz pic.twitter.com/rnISVzXw8J', 'What up! pic.twitter.com/eOwvK4KR5g']",4,"['6 Jan 2017', '8 Jan 2017', '10 Jan 2017', '10 Jan 2017']","['Cleveland Cavaliers', 'Cleveland Cavaliers', 'Cleveland Cavaliers', 'Utah Jazz']","['@cavs', '@cavs', '@cavs', '@utahjazz']"
1927,Looks like some new signs are going up around #NOLA tomorrow!pic.twitter.com/Fef81IMfmW,ATLHawks,PelicansNBA,"['Looks like some new signs are going up around #NOLA tomorrow!pic.twitter.com/Fef81IMfmW', '@PelicansNBApic.twitter.com/5hUbNgbc7r', '@ATLHawks -pic.twitter.com/rbfmdAsrIW', '@PelicansNBApic.twitter.com/Ixm61k02uq']",4,"['2 Feb 2015', '2 Feb 2015', '2 Feb 2015', '2 Feb 2015']","['New Orleans Pelicans', 'Atlanta Hawks', 'New Orleans Pelicans', 'Atlanta Hawks']","['@PelicansNBA', '@ATLHawks', '@PelicansNBA', '@ATLHawks']"
963,"Game Day in LA, the sequel
7:30 pm
@STAPLESCenter
@RipCityRadio620
[http://rip.city/1OKLFTb ]pic.twitter.com/pRMBt9GeYr",LAClippers,trailblazers,"['Game Day in LA, the sequel \n 7:30 pm\n @STAPLESCenter\n @RipCityRadio620\n\n[http://rip.city/1OKLFTb\xa0]pic.twitter.com/pRMBt9GeYr', '@trailblazers Did you bring us @BlueStarDonuts? ', ""@LAClippers @BlueStarDonuts you're hosting! What do you have for us??"", '@trailblazers We have In-Out for you -- double doubles for everyone, but the players. #punsarefun']",4,"['22 Oct 2015', '22 Oct 2015', '22 Oct 2015', '22 Oct 2015']","['Trail Blazers', 'LA Clippers', 'Trail Blazers', 'LA Clippers']","['@trailblazers', '@LAClippers', '@trailblazers', '@LAClippers']"
962,"The home team put a dent in the good guys' lead in the second quarter.
Dame leads all scorers with 21, CJ has 17.pic.twitter.com/nM2DaO76Xf",LAClippers,trailblazers,"[""The home team put a dent in the good guys' lead in the second quarter. \n\nDame leads all scorers with 21, CJ has 17.pic.twitter.com/nM2DaO76Xf"", '@trailblazers The bad guys will go H.A.M. in the second half!', '@LAClipperspic.twitter.com/4guOR88nYn', '@trailblazerspic.twitter.com/Jal5PCCuiu']",4,"['22 Oct 2015', '22 Oct 2015', '22 Oct 2015', '22 Oct 2015']","['Trail Blazers', 'LA Clippers', 'Trail Blazers', 'LA Clippers']","['@trailblazers', '@LAClippers', '@trailblazers', '@LAClippers']"
1935,"Back at it tonight, the Pacers seek revenge on the @ATLHawks, who've won both meetings this year - http://on.nba.com/YBarZ1 ",ATLHawks,Pacers,"[""Back at it tonight, the Pacers seek revenge on the @ATLHawks, who've won both meetings this year - http://on.nba.com/YBarZ1\xa0"", ""@ScottAgness Rumor is you're rooting for the #ATLHawks tonight Scott. How nice of you ;)"", ""@ATLHawks Keep your distance from @ScottAgness. He's with us."", '@Pacers @ScottAgness Ha. Okay okay...good luck tonight.']",4,"['5 Feb 2013', '5 Feb 2013', '5 Feb 2013', '5 Feb 2013']","['Scott Agness', 'Atlanta Hawks', 'Indiana Pacers', 'Atlanta Hawks']","['@ScottAgness', '@ATLHawks', '@Pacers', '@ATLHawks']"
3017,Statement made.pic.twitter.com/ttpRCukdqd,Sixers,OrlandoMagic,"['Statement made.pic.twitter.com/ttpRCukdqd', '@Sixers oh', '@MNTimberwolves @Sixers oh', '@OrlandoMagicpic.twitter.com/hWdD6GcMga']",4,"['20 Mar 2015', '20 Mar 2015', '20 Mar 2015', '20 Mar 2015']","['Philadelphia 76ers', 'Timberwolves', 'Orlando Magic', 'Philadelphia 76ers']","['@sixers', '@Timberwolves', '@OrlandoMagic', '@sixers']"
1943,"GAME TIME!
: @FOXSportsFLpic.twitter.com/FryKOisoEL",ATLHawks,OrlandoMagic,"['GAME TIME! \n: @FOXSportsFLpic.twitter.com/FryKOisoEL', 'pic.twitter.com/M2cMTb4OmK', 'pic.twitter.com/jGjcWYlhXr', 'pic.twitter.com/6fMCJ6ir0v']",4,"['6 Dec 2017', '6 Dec 2017', '6 Dec 2017', '6 Dec 2017']","['Orlando Magic', 'Atlanta Hawks', 'Orlando Magic', 'Atlanta Hawks']","['@OrlandoMagic', '@ATLHawks', '@OrlandoMagic', '@ATLHawks']"
1970,"BIG GAME, BIG WIN! #AllEyesNorthpic.twitter.com/G1tTfnNZdC",ATLHawks,Timberwolves,"['BIG GAME, BIG WIN! #AllEyesNorthpic.twitter.com/G1tTfnNZdC', 'BIG', 'Now it’s your turn!', 'Mission complete.']",4,"['Mar 20 2018', 'Mar 20 2018', 'Mar 20 2018', 'Mar 20 2018']","['Timberwolves', 'Atlanta Hawks', 'Timberwolves', 'Atlanta Hawks']","['@Timberwolves', '@ATLHawks', '@Timberwolves', '@ATLHawks']"
367,Jonas Valan-Big League Chew-nas #NBASweetspic.twitter.com/8hGJ9VAxSa,OrlandoMagic,ATLHawks,"['Jonas Valan-Big League Chew-nas #NBASweetspic.twitter.com/8hGJ9VAxSa', '@Raptors As the originators of Paul Mill-ky Way-sap, we love this!', ""@ATLHawks @Sixers Bar's getting higher by the week on these!"", ""@Raptors @ATLHawks @Sixers It's definitely Outta' Here Original!""]",4,"['6 Aug 2014', '6 Aug 2014', '6 Aug 2014', '6 Aug 2014']","['Toronto Raptors', 'Atlanta Hawks', 'Toronto Raptors', 'Orlando Magic']","['@Raptors', '@ATLHawks', '@Raptors', '@OrlandoMagic']"
1984,"Chuck Barkley Norris (We count Norris as a super hero now, right? ) #NBASuperHeroes",ATLHawks,MiamiHEAT,"['Chuck Barkley Norris (We count Norris as a super hero now, right? ) #NBASuperHeroes', '@Suns Oh definitely!', ""@ATLHawks @Suns if that's the case, @spurs are missing out on a Chuck Boris opportunity..."", '@MNTimberwolves Touche! and Where are the @MiamiHEAT with Chuck Norris Cole?']",4,"['30 Jul 2014', '30 Jul 2014', '30 Jul 2014', '30 Jul 2014']","['Phoen1x Šuns', 'Atlanta Hawks', 'Timberwolves', 'Atlanta Hawks']","['@Suns', '@ATLHawks', '@Timberwolves', '@ATLHawks']"
3015,"Hey @sixers
: @FOXSportsFL
: 7:00 p.m.
: Magic vs. Sixerspic.twitter.com/pVWFWWsOvX",Sixers,OrlandoMagic,"['Hey @sixers \n: @FOXSportsFL\n: 7:00 p.m.\n: Magic vs. Sixerspic.twitter.com/pVWFWWsOvX', '.@OrlandoMagic Headband JoJo ', '.@Sixers you think the floor is gonna be good to go tonight orrrrr?', 'creative.']",4,"['2 Dec 2016', '2 Dec 2016', '2 Dec 2016', '2 Dec 2016']","['Orlando Magic', 'Philadelphia 76ers', 'Orlando Magic', 'Philadelphia 76ers']","['@OrlandoMagic', '@sixers', '@OrlandoMagic', '@sixers']"
1833,The #NBAFinals start tonight. Who wins the series?,warriors,ATLHawks,"['The #NBAFinals start tonight. Who wins the series?', 'will you live tweet the Finals for us?', 'The @warriors would probably be better for that. You should follow them.', 'good call pic.twitter.com/VlabAKhAdG']",4,"['2 Jun 2016', '2 Jun 2016', '2 Jun 2016', '2 Jun 2016']","['Atlanta Hawks', 'katylanders', 'Atlanta Hawks', 'Golden State Warriors']","['@ATLHawks', '@katylanders', '@ATLHawks', '@warriors']"
3052,"Tonight's starters »
: @KButter5
: @SiP03
: @Holla_At_Rob33
: @NerlensNoel3
: @JahlilOkaforpic.twitter.com/bqN8ULVOjB",Sixers,DetroitPistons,"[""Tonight's starters » \n\n: @KButter5\n\n: @SiP03\n: @Holla_At_Rob33\n: @NerlensNoel3\n: @JahlilOkaforpic.twitter.com/bqN8ULVOjB"", '.@DetroitPistons starters » \n\n: Jackson\n\n: Caldwell-Pope\n\n: Morris\n\n: Ilyasova\n\n: Drummondpic.twitter.com/RWz1woRjY0', '@Sixers Ha! Very nice.', '[email protected]/XMhK1Tyr1m']",4,"['11 Dec 2015', '11 Dec 2015', '11 Dec 2015', '11 Dec 2015']","['Philadelphia 76ers', 'Philadelphia 76ers', 'Detroit Pistons', 'Philadelphia 76ers']","['@sixers', '@sixers', '@DetroitPistons', '@sixers']"
3111,"Hey @Sixers, we're disappointed this guy didn't make the Summer League roster. Seen his demo reel for 20+ years now.pic.twitter.com/UEHNhWw4cM",Sixers,Suns,"[""Hey @Sixers, we're disappointed this guy didn't make the Summer League roster. Seen his demo reel for 20+ years now.pic.twitter.com/UEHNhWw4cM"", '@Suns We think his mom wanted him to focus more on his studies than his b-ballin… #ParentsJustDontUnderstand', '.@Sixers The city of Philly lost in the trade when his mom sent him to Bel Air.', ""@Suns You're telling us! It took us 23 years to fill the void…pic.twitter.com/lIGf1i9evr""]",4,"['15 Jul 2014', '15 Jul 2014', '15 Jul 2014', '15 Jul 2014']","['Phoen1x Šuns', 'Philadelphia 76ers', 'Phoen1x Šuns', 'Philadelphia 76ers']","['@Suns', '@sixers', '@Suns', '@sixers']"
3099,Still no Fresh Prince on @sixers roster? At least the Fresh Princes of US Air are in Philly tonight. #SunsAt76erspic.twitter.com/g98Riyo8Ac,Sixers,Suns,"['Still no Fresh Prince on @sixers roster? At least the Fresh Princes of US Air are in Philly tonight. #SunsAt76erspic.twitter.com/g98Riyo8Ac', '@Suns Close enough.pic.twitter.com/QA73JodjtV', ""@Sixers We see what you did there. We're good with the comparison as long as there's none of this tonight,pic.twitter.com/5k00wyAAeq"", ""@Suns Can't make any promises.pic.twitter.com/6Enuh1yfUx""]",4,"['21 Nov 2014', '21 Nov 2014', '21 Nov 2014', '21 Nov 2014']","['Phoen1x Šuns', 'Philadelphia 76ers', 'Phoen1x Šuns', 'Philadelphia 76ers']","['@Suns', '@sixers', '@Suns', '@sixers']"
2716,"
44.5 | 4Q | TOR 115 PHILA 109",Raptors,Sixers,"['\n\n44.5 | 4Q | TOR 115 PHILA 109', '', 'pic.twitter.com/aSwMwRlxOg', 'pic.twitter.com/WN156GZcLz']",4,"['14 Dec 2016', '14 Dec 2016', '14 Dec 2016', '14 Dec 2016']","['Philadelphia 76ers', 'Toronto Raptors', 'Philadelphia 76ers', 'Toronto Raptors']","['@sixers', '@Raptors', '@sixers', '@Raptors']"
2722, from a rainy day by the Bay » http://rip.city/2hONvJy pic.twitter.com/7pb9LWn9hW,Raptors,trailblazers,"[' from a rainy day by the Bay » http://rip.city/2hONvJy\xa0pic.twitter.com/7pb9LWn9hW', '""How bout I just go eat some hay""', 'I can make things out of clay', '#GamePrep']",4,"['3 Jan 2017', '3 Jan 2017', '3 Jan 2017', '3 Jan 2017']","['Trail Blazers', 'Toronto Raptors', 'Trail Blazers', 'Toronto Raptors']","['@trailblazers', '@Raptors', '@trailblazers', '@Raptors']"
124,Squad up! Let's go @DetroitPistons @Sixers @hornets @BrooklynNets @MNTimberwolves @utahjazz! Team USA!pic.twitter.com/4lM01xMvcd,BrooklynNets,UtahJazz,"[""Squad up! Let's go @DetroitPistons @Sixers @hornets @BrooklynNets @MNTimberwolves @utahjazz! Team USA!pic.twitter.com/4lM01xMvcd"", ""@OrlandoMagic @DetroitPistons @Sixers @hornets @BrooklynNets @utahjazz we're conflicted here..."", '@MNTimberwolves The @utahjazz understand your struggle.', '@OrlandoMagic @MNTimberwolves @utahjazzpic.twitter.com/TLDgA0MQUB']",4,"['13 Feb 2015', '13 Feb 2015', '13 Feb 2015', '13 Feb 2015']","['Orlando Magic', 'Timberwolves', 'Orlando Magic', 'Brooklyn Nets']","['@OrlandoMagic', '@Timberwolves', '@OrlandoMagic', '@BrooklynNets']"
1796,.9 on the clock? No problem.https://vine.co/v/5Ie5F0I2wDt ,HoustonRockets,SacramentoKings,"['.9 on the clock? No problem.https://vine.co/v/5Ie5F0I2wDt\xa0', 'is this a jab at the @HoustonRockets?', 'We tweeted it just for you. We still love you, @HoustonRockets. That shot was pretty epic though.', 'pic.twitter.com/Osap074gF0']",4,"['11 Nov 2016', '11 Nov 2016', '11 Nov 2016', '11 Nov 2016']","['Sacramen2 Kings', 'Trail Blazers', 'Sacramen2 Kings', 'Houston Rockets']","['@SacramentoKings', '@trailblazers', '@SacramentoKings', '@HoustonRockets']"
584,Meyers!pic.twitter.com/LOWcJEAqUu,Timberwolves,trailblazers,"['Meyers!pic.twitter.com/LOWcJEAqUu', '.@trailblazers He can stop any time now...', '@Timberwolves one does not simply “stop"" Legendpic.twitter.com/o2Z9Tjj6Jf', '.@trailblazers umm..you mean *Legend*pic.twitter.com/zVzU0dfKYB']",4,"['5 Dec 2015', '5 Dec 2015', '5 Dec 2015', '5 Dec 2015']","['Trail Blazers', 'Timberwolves', 'Trail Blazers', 'Timberwolves']","['@trailblazers', '@Timberwolves', '@trailblazers', '@Timberwolves']"
1799,Let's just put this behind us and play a good clean game tonight. Okay @HoustonRockets?pic.twitter.com/jPtEWAoP7g,HoustonRockets,trailblazers,"[""Let's just put this behind us and play a good clean game tonight. Okay @HoustonRockets?pic.twitter.com/jPtEWAoP7g"", ""@trailblazers We've already put you behind us. Gotta keep you there tonight.pic.twitter.com/gQUoM4UWoT"", '@HoustonRockets just gonna put this right here.pic.twitter.com/Qpp2NTwxtj', '@trailblazerspic.twitter.com/viAYrhcbrD']",4,"['11 Mar 2015', '11 Mar 2015', '11 Mar 2015', '11 Mar 2015']","['Trail Blazers', 'Houston Rockets', 'Trail Blazers', 'Houston Rockets']","['@trailblazers', '@HoustonRockets', '@trailblazers', '@HoustonRockets']"
2476,Tomorrow's practice is open to the public! RT @RachaelHoops: is the open practice tomorrow for students only or also the general public?,Bucks,DallasMavs,"[""Tomorrow's practice is open to the public! RT @RachaelHoops: is the open practice tomorrow for students only or also the general public?"", '@Bucks can we come?', '@trailblazers @Bucks Ask Coach if its okay that we come, he knows us.', '@dallasmavs @trailblazers you west coast teams sure have a lot of free time…']",4,"['18 Feb 2015', '18 Feb 2015', '18 Feb 2015', '18 Feb 2015']","['Milwaukee Bucks', 'Trail Blazers', 'Dallas Mavericks', 'Milwaukee Bucks']","['@Bucks', '@trailblazers', '@dallasmavs', '@Bucks']"
1802,"This is how he earned the nickname ""The Glide"".
#TBT Video » http://Rip.City/h7qw pic.twitter.com/GSPCLHk1S7",HoustonRockets,trailblazers,"['This is how he earned the nickname ""The Glide"".\n\n#TBT Video » http://Rip.City/h7qw\xa0pic.twitter.com/GSPCLHk1S7', ""@trailblazers So is the Glyde's twitter acct @ClydeDrexler22, as @PaulGAllen tweeted? Or Nah?https://twitter.com/PaulGAllen/status/582330690974281728\xa0…"", '@heykim good question. Maybe the @HoustonRockets know?', ""@trailblazers @heykim Mr. Drexler is not on Twitter that we're aware of, but if he were, it would be glorious.""]",4,"['2 Apr 2015', '2 Apr 2015', '2 Apr 2015', '2 Apr 2015']","['Trail Blazers', 'heykim', 'Trail Blazers', 'Houston Rockets']","['@trailblazers', '@heykim', '@trailblazers', '@HoustonRockets']"
208,"W
W
W
W
W
W?
Back at it tonight against the @PelicansNBA! Action on @FOXSportsSE & @929TheGame at 8:00.pic.twitter.com/sINaYfvIWp",PelicansNBA,ATLHawks,"['W\nW\nW\nW\nW\nW?\n\nBack at it tonight against the @PelicansNBA! Action on @FOXSportsSE & @929TheGame at 8:00.pic.twitter.com/sINaYfvIWp', '@ATLHawks you remember last time you faced the @PelicansNBA when you guys had a winning streak?pic.twitter.com/IK9FqqI9Lm', '@BDBLotteryPicK @PelicansNBA Nope. Not coming back to us...', '@ATLHawks - Oh we can help too!pic.twitter.com/qFZWHIpVhG']",4,"['6 Nov 2015', '6 Nov 2015', '6 Nov 2015', '6 Nov 2015']","['Atlanta Hawks', ""N'Jadaka Flocka James"", 'Atlanta Hawks', 'New Orleans Pelicans']","['@ATLHawks', '@BDBLotteryPicK', '@ATLHawks', '@PelicansNBA']"
1819,"And now, thanks to Toronto's own @Drake, a message from President @BarackObama ...
RT #NBAVote Andre Drummondhttps://amp.twimg.com/v/a4c8247a-ef33-4b01-b258-62a8b09af260 …",warriors,DetroitPistons,"[""And now, thanks to Toronto's own @Drake, a message from President @BarackObama ...\n \nRT #NBAVote Andre Drummondhttps://amp.twimg.com/v/a4c8247a-ef33-4b01-b258-62a8b09af260\xa0…"", '@DetroitPistons alright, this is .', '@warriorspic.twitter.com/f953HD5WRx', '@DetroitPistons still gonna #NBAVote for Draymond Green tho ']",4,"['5 Jan 2016', '5 Jan 2016', '5 Jan 2016', '5 Jan 2016']","['Detroit Pistons', 'Golden State Warriors', 'Detroit Pistons', 'Golden State Warriors']","['@DetroitPistons', '@warriors', '@DetroitPistons', '@warriors']"
213,"Pelicans 6-6 from three this quarter.
¯\_(ツ)_/¯",PelicansNBA,ATLHawks,"['Pelicans 6-6 from three this quarter.\n\n¯\\_(ツ)_/¯', '@ATLHawks -pic.twitter.com/XeNBq0GvPA', '@PelicansNBApic.twitter.com/6LbrjWir1L', '@ATLHawks -pic.twitter.com/zTxK17WIZR']",4,"['11 Nov 2015', '11 Nov 2015', '11 Nov 2015', '11 Nov 2015']","['Atlanta Hawks', 'New Orleans Pelicans', 'Atlanta Hawks', 'New Orleans Pelicans']","['@ATLHawks', '@PelicansNBA', '@ATLHawks', '@PelicansNBA']"
214,"RIP, 19pic.twitter.com/e0PIYhGM53",PelicansNBA,ATLHawks,"['RIP, 19pic.twitter.com/e0PIYhGM53', '@ATLHawks -pic.twitter.com/J4O6X7qMVU', '@PelicansNBApic.twitter.com/SKaJeYJXWT', '@ATLHawks -pic.twitter.com/vjlKG6e4jQ']",4,"['3 Feb 2015', '3 Feb 2015', '3 Feb 2015', '3 Feb 2015']","['Atlanta Hawks', 'New Orleans Pelicans', 'Atlanta Hawks', 'New Orleans Pelicans']","['@ATLHawks', '@PelicansNBA', '@ATLHawks', '@PelicansNBA']"
1008,"Here we go! 2nd half from Utah!
#LetsGoWolvespic.twitter.com/w15aeWrLZv",UtahJazz,Timberwolves,"['Here we go! 2nd half from Utah!\n\n#LetsGoWolvespic.twitter.com/w15aeWrLZv', '@Timberwolves Very proper GIF usage. ', '.@utahjazz *head nod* \n\nThank you ', '@Timberwolvespic.twitter.com/TEDzD2gN9J']",4,"['29 Jan 2016', '29 Jan 2016', '29 Jan 2016', '29 Jan 2016']","['Timberwolves', 'Utah Jazz', 'Timberwolves', 'Utah Jazz']","['@Timberwolves', '@utahjazz', '@Timberwolves', '@utahjazz']"
1826,"FINAL.
Good game, @warriors.
#GSWatUTApic.twitter.com/SRF76GLvwW",warriors,UtahJazz,"['FINAL.\n\nGood game, @warriors.\n\n#GSWatUTApic.twitter.com/SRF76GLvwW', '', 'Good luck next round.pic.twitter.com/C6uF5s4zSc', 'Thanks fam.pic.twitter.com/bASq4WpMMT']",4,"['8 May 2017', '8 May 2017', '8 May 2017', '8 May 2017']","['Utah Jazz', 'Golden State Warriors', 'Utah Jazz', 'Golden State Warriors']","['@utahjazz', '@warriors', '@utahjazz', '@warriors']"
2598,Fleetwood McLemore #NBABandspic.twitter.com/MgUzJzdiaJ,Bucks,SacramentoKings,"['Fleetwood McLemore #NBABandspic.twitter.com/MgUzJzdiaJ', '@SacramentoKings you guys are really doing this today huh?', '@Bucks over here making #NBABands names like...pic.twitter.com/vW4L1iMOpa', '@freejoshgordon3 @SacramentoKings cool story bro.']",4,"['18 Mar 2015', '18 Mar 2015', '18 Mar 2015', '18 Mar 2015']","['Sacramen2 Kings', 'Milwaukee Bucks', 'Sacramen2 Kings', 'Milwaukee Bucks']","['@SacramentoKings', '@Bucks', '@SacramentoKings', '@Bucks']"
1489,HOW? pic.twitter.com/opvGhpqvF6,Suns,BrooklynNets,"['HOW? pic.twitter.com/opvGhpqvF6', 'pic.twitter.com/d5wKyNrsX2', 'pic.twitter.com/r0U8hDEsmV', 'pic.twitter.com/mNuzV01hTl']",4,"['6 Nov 2017', '6 Nov 2017', '6 Nov 2017', '6 Nov 2017']","['Brooklyn Nets', 'Phoen1x Šuns', 'Brooklyn Nets', 'Phoen1x Šuns']","['@BrooklynNets', '@Suns', '@BrooklynNets', '@Suns']"
1495,One more hour! #NBASchedulepic.twitter.com/7GKPk3ReJ9,Suns,PelicansNBA,"['One more hour! #NBASchedulepic.twitter.com/7GKPk3ReJ9', '@PelicansNBA yassssspic.twitter.com/YO2f3Wlo2l', '@spurs @Suns - Group hug!pic.twitter.com/UhpRqXq2nM', '@PelicansNBA @spurs Yay! #ExceptWhenWePlayEachOtherpic.twitter.com/2vVwjazv2f']",4,"['12 Aug 2015', '12 Aug 2015', '12 Aug 2015', '12 Aug 2015']","['New Orleans Pelicans', 'San Antonio Spurs', 'New Orleans Pelicans', 'Phoen1x Šuns']","['@PelicansNBA', '@spurs', '@PelicansNBA', '@Suns']"
474, #Goberted #UTAatMINpic.twitter.com/JkI3j5yz1K,Timberwolves,UtahJazz,"[' #Goberted #UTAatMINpic.twitter.com/JkI3j5yz1K', '.@utahjazz Never Forget..pic.twitter.com/3AEF3470dZ', "".@Timberwolves Oh, we won't...pic.twitter.com/FoIHv3CA9d"", '.@utahjazz Agree to disagree..pic.twitter.com/jihtgsmH7N']",4,"['26 Mar 2016', '26 Mar 2016', '26 Mar 2016', '26 Mar 2016']","['Utah Jazz', 'Timberwolves', 'Utah Jazz', 'Timberwolves']","['@utahjazz', '@Timberwolves', '@utahjazz', '@Timberwolves']"
2590,NBA promo and giveaway schedules being released. Still waiting on @memgrizz & @Bucks. Best stuff each year seems to come out of those two.,Bucks,MemGrizz,"['NBA promo and giveaway schedules being released. Still waiting on @memgrizz & @Bucks. Best stuff each year seems to come out of those two.', 'ours is out!http://www.nba.com/grizzlies/news/grizzlies-announce-1718-promotional-schedule-170918\xa0…', 'You guys are the best. Thanks.', 'v soon! ;)']",4,"['22 Sep 2017', '22 Sep 2017', '22 Sep 2017', '22 Sep 2017']","['Jonathan Hopwood', 'Memphis Grizzlies', 'Jonathan Hopwood', 'Milwaukee Bucks']","['@jonathanhopwood', '@memgrizz', '@jonathanhopwood', '@Bucks']"
3351,"Zaza with 13 Dubs up 83-78, 7:01 left in 3Q. #DubNation",trailblazers,warriors,"['Zaza with 13 Dubs up 83-78, 7:01 left in 3Q. #DubNation', '#NBAVote', 'the entire team?pic.twitter.com/1cLYoUaFJm', 'they get our vote just for this.pic.twitter.com/c9UtVmMGJq']",4,"['4 Jan 2017', '4 Jan 2017', '4 Jan 2017', '4 Jan 2017']","['Golden State Warriors', 'Trail Blazers', 'Golden State Warriors', 'Trail Blazers']","['@warriors', '@trailblazers', '@warriors', '@trailblazers']"
3340,Rockets up 9 with 1:17 remaining. Finish them.pic.twitter.com/zE70ADrMxC,trailblazers,HoustonRockets,"['Rockets up 9 with 1:17 remaining. Finish them.pic.twitter.com/zE70ADrMxC', '@HoustonRockets GIF game strong.', '@trailblazers Still not talking to you.', '@HoustonRockets understandable ']",4,"['7 Jan 2015', '7 Jan 2015', '7 Jan 2015', '7 Jan 2015']","['Houston Rockets', 'Trail Blazers', 'Houston Rockets', 'Trail Blazers']","['@HoustonRockets', '@trailblazers', '@HoustonRockets', '@trailblazers']"
3333,"Happy 30th birthday to the GIF! Join the @GIPHY party & reply with your best #Rockets GIF.
#HappyBirthdayGIF pic.twitter.com/M9i18FX2Vl",trailblazers,HoustonRockets,"['Happy 30th birthday to the GIF! Join the @GIPHY party & reply with your best #Rockets GIF. \n\n#HappyBirthdayGIF pic.twitter.com/M9i18FX2Vl', 'or did you want this anglepic.twitter.com/qw1bQuQZ0y', 'pic.twitter.com/SoXllQjMOR', 'cold']",4,"['15 Jun 2017', '15 Jun 2017', '15 Jun 2017', '15 Jun 2017']","['Houston Rockets', 'Trail Blazers', 'Houston Rockets', 'Trail Blazers']","['@HoustonRockets', '@trailblazers', '@HoustonRockets', '@trailblazers']"
1507,"Hey @Suns I know it's the holiday season, but you guys are too generous! pic.twitter.com/iETSKmefxt",Suns,Timberwolves,"[""Hey @Suns I know it's the holiday season, but you guys are too generous! pic.twitter.com/iETSKmefxt"", ""We point this out like... an hour ago Wolves. You can't just use our own joke about us against us. \npic.twitter.com/kfPrMEI6fx"", 'YoU CaNt UsE oUr OwN jOkE aBoUt Us aGaInSt Uspic.twitter.com/YQ27chbPEP', 'pic.twitter.com/gDXUT2oIdb']",4,"['16 Dec 2017', '16 Dec 2017', '16 Dec 2017', '16 Dec 2017']","['Timberwolves', 'Phoen1x Šuns', 'Timberwolves', 'Phoen1x Šuns']","['@Timberwolves', '@Suns', '@Timberwolves', '@Suns']"
1514,T-Wolves hosts are in the building @Suns !pic.twitter.com/AQmZEmaCs7,Suns,Timberwolves,"['T-Wolves hosts are in the building @Suns !pic.twitter.com/AQmZEmaCs7', '@ktandres Wait a second ...', '.@Suns @ktandres #WolvesNation is everywhere! ', ""@Timberwolves @ktandres We'll have to talk to someone about that...""]",4,"['14 Mar 2016', '14 Mar 2016', '14 Mar 2016', '14 Mar 2016']","['Katie Andres', 'Phoen1x Šuns', 'Timberwolves', 'Phoen1x Šuns']","['@ktandres', '@Suns', '@Timberwolves', '@Suns']"
1518,"#MIAvsPHX: HEAT are from Downtown in the desert. 7-10 from beyond the arc.
Wayne 2
JJ 2
Dragic 1
Winslow 1
Olynyk 1",Suns,MiamiHEAT,"['#MIAvsPHX: HEAT are from Downtown in the desert. 7-10 from beyond the arc.\n\nWayne 2\nJJ 2\nDragic 1\nWinslow 1\nOlynyk 1', 'pic.twitter.com/NJIYXha5Up', 'pic.twitter.com/7qmXHxJLA6', 'pic.twitter.com/NOUNHlqbAR']",4,"['8 Nov 2017', '8 Nov 2017', '8 Nov 2017', '8 Nov 2017']","['Miami HEAT', 'Phoen1x Šuns', 'Miami HEAT', 'Phoen1x Šuns']","['@MiamiHEAT', '@Suns', '@MiamiHEAT', '@Suns']"
2582,Pero Antick #NBASuperHeroespic.twitter.com/VLlGuk579b,Bucks,ATLHawks,"['Pero Antick #NBASuperHeroespic.twitter.com/VLlGuk579b', '@ATLHawks You win this round, Hawks...', '@Sixers You guys have been pretty fantastic today too. We think we all win.', '@ATLHawks @Sixers everyone wins...yay!!!pic.twitter.com/rxXXznTU2V']",4,"['30 Jul 2014', '30 Jul 2014', '30 Jul 2014', '30 Jul 2014']","['Atlanta Hawks', 'Philadelphia 76ers', 'Atlanta Hawks', 'Milwaukee Bucks']","['@ATLHawks', '@sixers', '@ATLHawks', '@Bucks']"
3313,OK! Starting off with a quick 8-0 run ,trailblazers,chicagobulls,"['OK! Starting off with a quick 8-0 run ', ""we're being pretty nice hosts huh."", 'can you ask @chicagobulls to unblock me?', ""that's on you player.""]",4,"['15 Nov 2016', '15 Nov 2016', '15 Nov 2016', '15 Nov 2016']","['Chicago Bulls', 'Trail Blazers', 'Kevin 🅥', 'Trail Blazers']","['@chicagobulls', '@trailblazers', '@2KEVlN', '@trailblazers']"
1527,"Caddy@Shaq #NBAMovies
(Just for you @NBAonTNT)pic.twitter.com/kuXikVDwKj",Suns,Hornets,"['Caddy@Shaq #NBAMovies\n\n(Just for you @NBAonTNT)pic.twitter.com/kuXikVDwKj', '@Suns Brilliant!', ""@hornets @Suns we've got the Australian version with Pattyshack #NBAMovies"", '@spurs @hornets How about PattyShaq and you make it a buddy film? #NBAMovies']",4,"['20 Aug 2014', '20 Aug 2014', '20 Aug 2014', '20 Aug 2014']","['Phoen1x Šuns', 'Charlotte Hornets', 'San Antonio Spurs', 'Phoen1x Šuns']","['@Suns', '@hornets', '@spurs', '@Suns']"
1532,"Thanks to all those who sent us your #NBACartoons today! Good game, @bucks @suns @MNTimberwolves @ATLHawks @spurs @DetroitPistons et al.",Suns,DetroitPistons,"['Thanks to all those who sent us your #NBACartoons today! Good game, @bucks @suns @MNTimberwolves @ATLHawks @spurs @DetroitPistons et al.', ""@Sixers @Bucks @Suns @ATLHawks @spurs @DetroitPistons oh, we're just getting started!"", ""@MNTimberwolves @Sixers @Bucks @Suns @spurs @DetroitPistons We're with you guys. It ain't over 'till it's over!"", '@ATLHawks @MNTimberwolves @Sixers @Bucks @spurs @DetroitPistons There are still plenty of bad puns and photoshops to be had.']",4,"['27 Aug 2014', '27 Aug 2014', '27 Aug 2014', '27 Aug 2014']","['Philadelphia 76ers', 'Timberwolves', 'Atlanta Hawks', 'Phoen1x Šuns']","['@sixers', '@Timberwolves', '@ATLHawks', '@Suns']"
1533,Isiah Thomas the Train #NBACartoonspic.twitter.com/HnJtK4oa8e,Suns,DetroitPistons,"['Isiah Thomas the Train #NBACartoonspic.twitter.com/HnJtK4oa8e', '@DetroitPistons Never sleeping again. Thx guys…', '@Sixers Had to do it. Sorry @Suns!', ""@DetroitPistons @Sixers We had the same one in the queue. But we'll give it to you.""]",4,"['27 Aug 2014', '27 Aug 2014', '27 Aug 2014', '27 Aug 2014']","['Detroit Pistons', 'Philadelphia 76ers', 'Detroit Pistons', 'Phoen1x Šuns']","['@DetroitPistons', '@sixers', '@DetroitPistons', '@Suns']"
1536,"it's interesting following the @Suns v. @DetroitPistons game, considering I follow both teams on twitter. Let the twitter war commence!",Suns,DetroitPistons,"[""it's interesting following the @Suns v. @DetroitPistons game, considering I follow both teams on twitter. Let the twitter war commence!"", '@RevilingNeptune @DetroitPistons War? Nah. But we think we know who would take a friendly battle. Enjoy #SunsVsPistons.', '@Suns @RevilingNeptune (snapping fingers ""West Side Story"" style)', '@DetroitPistons @RevilingNeptune Timely reference. #WhenYoureAJetYoureAJet']",4,"['21 Mar 2014', '21 Mar 2014', '21 Mar 2014', '21 Mar 2014']","['k.m. hanton', 'Phoen1x Šuns', 'Detroit Pistons', 'Phoen1x Šuns']","['@RevilingNeptune', '@Suns', '@DetroitPistons', '@Suns']"
486,"Use the Force, Jameer!
Within one, we are.
#EpisodeXI #Nuggets",Timberwolves,nuggets,"['Use the Force, Jameer!\n\nWithin one, we are. \n#EpisodeXI #Nuggets', '[email protected]/u03hvfuXHR', '@Timberwolves happens to every team, sometimes this does.', '.@nuggets Calm my nerves, this does not. #MINatDEN']",4,"['11 Dec 2015', '11 Dec 2015', '11 Dec 2015', '11 Dec 2015']","['Denver Nuggets', 'Timberwolves', 'Denver Nuggets', 'Timberwolves']","['@nuggets', '@Timberwolves', '@nuggets', '@Timberwolves']"
3364,Maaaaaaaaaan ,trailblazers,ATLHawks,"['Maaaaaaaaaan ', '@ATLHawks You guys lost?! To who?', '@trailblazers @ATLHawks - Oh hey guys!', ""@PelicansNBA @ATLHawks we thought it couldn't be done. Tried twice.pic.twitter.com/wBNTilLB94""]",4,"['2 Feb 2015', '2 Feb 2015', '2 Feb 2015', '2 Feb 2015']","['Atlanta Hawks', 'Trail Blazers', 'New Orleans Pelicans', 'Trail Blazers']","['@ATLHawks', '@trailblazers', '@PelicansNBA', '@trailblazers']"
2600,@SacramentoKings @Bucks please note that the score is not anymore uptaded please check perhaps and maybe there is a problem,Bucks,SacramentoKings,"['@SacramentoKings @Bucks please note that the score is not anymore uptaded please check perhaps and maybe there is a problem', ""@xavrugbystras Sorry for inconvenience. We're looking into the issue & hope to have it resolved ASAP. Kings defeat Bucks 117-102. Thank you!"", '@SacramentoKings thanks for the information \n@Bucks \nplease try to solve the problem\ngood night', ""@xavrugbystras @SacramentoKings we're aware of the scoreboard feed issues and have been working to fix them. Thank you for understanding.""]",4,"['5 Mar 2014', '5 Mar 2014', '5 Mar 2014', '5 Mar 2014']","['xavrug', 'Sacramen2 Kings', 'xavrug', 'Milwaukee Bucks']","['@xavrug67', '@SacramentoKings', '@xavrug67', '@Bucks']"
1549,@Suns until next time!pic.twitter.com/TroQv98n2V,Suns,LAClippers,"['@Suns until next time!pic.twitter.com/TroQv98n2V', '@LAClippers Until then.pic.twitter.com/xrhID51d6X', '.@Suns @LAClippers Goodnight!pic.twitter.com/LflLvFSPJ4', '@NBAonTNT @LAClipperspic.twitter.com/ldAFA2sU0i']",4,"['12 Nov 2015', '12 Nov 2015', '12 Nov 2015', '12 Nov 2015']","['LA Clippers', 'Phoen1x Šuns', 'NBA on TNT', 'Phoen1x Šuns']","['@LAClippers', '@Suns', '@NBAonTNT', '@Suns']"
2621,Dame hits from Madison to give the good guys the lead late in the third.pic.twitter.com/qGkJK8hku6,Bucks,trailblazers,"['Dame hits from Madison to give the good guys the lead late in the third.pic.twitter.com/qGkJK8hku6', '@trailblazers A+ on the local reference.', '@Bucks First to 75 wins?', '@trailblazers can we get there first? Then sure....']",4,"['7 Dec 2015', '7 Dec 2015', '7 Dec 2015', '7 Dec 2015']","['Trail Blazers', 'Milwaukee Bucks', 'Trail Blazers', 'Milwaukee Bucks']","['@trailblazers', '@Bucks', '@trailblazers', '@Bucks']"
3429,".@brianseltzer recaps a much-anticipated first day of training camp.
[ » http://on.nba.com/2dBhkuk ]pic.twitter.com/Q5jcMtFfV0",trailblazers,Sixers,"['.@brianseltzer recaps a much-anticipated first day of training camp. \n\n[ » http://on.nba.com/2dBhkuk\xa0 ]pic.twitter.com/Q5jcMtFfV0', 'how did it go', 'very enjoyable hbu', 'super']",4,"['27 Sep 2016', '27 Sep 2016', '27 Sep 2016', '27 Sep 2016']","['Philadelphia 76ers', 'Trail Blazers', 'Philadelphia 76ers', 'Trail Blazers']","['@sixers', '@trailblazers', '@sixers', '@trailblazers']"
3424,"Starters vs @SacramentoKings
- @SergioRodriguez
- @GhJr09
- @Holla_At_Rob33
- @JoelEmbiid
- @JahlilOkafor",trailblazers,Sixers,"['Starters vs @SacramentoKings\n - @SergioRodriguez\n - @GhJr09\n - @Holla_At_Rob33\n - @JoelEmbiid\n - @JahlilOkafor', ""gerald's avi still lit."", 'arent you guys playing rn', 'we always have one eye on you ']",4,"['26 Dec 2016', '26 Dec 2016', '26 Dec 2016', '26 Dec 2016']","['Philadelphia 76ers', 'Trail Blazers', 'Philadelphia 76ers', 'Trail Blazers']","['@sixers', '@trailblazers', '@sixers', '@trailblazers']"
2613,Want another taste of our 3D court projection? Of course you do.https://vine.co/v/OMj76Pwpmri ,Bucks,Sixers,"['Want another taste of our 3D court projection? Of course you do.https://vine.co/v/OMj76Pwpmri\xa0', 'And if you REALLY want, we just might tease a little more later. Only if you want though.', 'You asked for it: One more look at the 3D court projection technology.https://vine.co/v/OMIv7bxMaXu\xa0', '@Sixers fancy. can you bring that on Friday?']",4,"['29 Oct 2014', '29 Oct 2014', '29 Oct 2014', '29 Oct 2014']","['Philadelphia 76ers', 'Philadelphia 76ers', 'Philadelphia 76ers', 'Milwaukee Bucks']","['@sixers', '@sixers', '@sixers', '@Bucks']"
2612,"From #WiltStamp to #WiltSnaps.
Add 'sixers' on @Snapchat. pic.twitter.com/HEY4Hkw864",Bucks,Sixers,"[""From #WiltStamp to #WiltSnaps. \n\n Add 'sixers' on @Snapchat. pic.twitter.com/HEY4Hkw864"", '@Sixers @Snapchat no way you drew that in the app. not buying it.', '@Bucks Doubt us all you want. It happened.', '@Sixers prove it.']",4,"['5 Dec 2014', '5 Dec 2014', '5 Dec 2014', '5 Dec 2014']","['Philadelphia 76ers', 'Milwaukee Bucks', 'Philadelphia 76ers', 'Milwaukee Bucks']","['@sixers', '@Bucks', '@sixers', '@Bucks']"
1412,@trailblazers How come the Jan 1 game against the Bulls in Chi isn't up for the single ticket presale today? Can only see the Jan 31 game.,chicagobulls,trailblazers,"[""@trailblazers How come the Jan 1 game against the Bulls in Chi isn't up for the single ticket presale today? Can only see the Jan 31 game."", ""You'll have to ask the @chicagobulls when their Single Game tickets go on-sale."", ""Ah, it's based on home games! Thanks very much :)"", ""They'll go on sale Sept. 22. If you download our app and allow notifications you will get the chance to buy them before the general public.""]",4,"['8 Sep 2017', '8 Sep 2017', '8 Sep 2017', '8 Sep 2017']","['Lynda Galea', 'Trail Blazers', 'Lynda Galea', 'Chicago Bulls']","['@lynnie11', '@trailblazers', '@lynnie11', '@chicagobulls']"
3404,"No matter the outcome, we’ll always have this in common, Raptors fans. #RTZpic.twitter.com/qAPnpl2tDc",trailblazers,Raptors,"['No matter the outcome, we’ll always have this in common, Raptors fans. #RTZpic.twitter.com/qAPnpl2tDc', '@trailblazers #AlsoNorth', '@MNTimberwolves @trailblazers @Raptors does the #NorthCoast count, too?', '@cavs @MNTimberwolves @Raptors depends on your latitude coordinates.']",4,"['15 Mar 2015', '15 Mar 2015', '15 Mar 2015', '15 Mar 2015']","['Trail Blazers', 'Timberwolves', 'Cleveland Cavaliers', 'Trail Blazers']","['@trailblazers', '@Timberwolves', '@cavs', '@trailblazers']"
1370,Preseason OT? Preseason OT.,WashWizards,Sixers,"['Preseason OT? Preseason OT.', "".@Sixers first basket wins? We're down if you are\n\n#WizSixers"", '.@WashWizards Down for another 12 minutes tbqh', "".@Sixers some of us have a to catch, but let's play ball! \n\n#WizSixers""]",4,"['6 Oct 2016', '6 Oct 2016', '6 Oct 2016', '6 Oct 2016']","['Philadelphia 76ers', 'Washington Wizards', 'Philadelphia 76ers', 'Washington Wizards']","['@sixers', '@WashWizards', '@sixers', '@WashWizards']"
1436,"Getting closer...
#NBASchedulepic.twitter.com/3h4tBboqTW",spurs,LAClippers,"['Getting closer...\n\n#NBASchedulepic.twitter.com/3h4tBboqTW', '@LAClipperspic.twitter.com/1gAM346PsQ', '@spurspic.twitter.com/UbhxS2Z8CO', '@LAClipperspic.twitter.com/scN0BsJ2KB']",4,"['11 Aug 2016', '11 Aug 2016', '11 Aug 2016', '11 Aug 2016']","['LA Clippers', 'San Antonio Spurs', 'LA Clippers', 'San Antonio Spurs']","['@LAClippers', '@spurs', '@LAClippers', '@spurs']"
1365,.@WashWizards Suh dude?pic.twitter.com/X2bYsjCKY5,WashWizards,Sixers,"['.@WashWizards Suh dude?pic.twitter.com/X2bYsjCKY5', '.@Sixers sup?pic.twitter.com/dssFmUsWiX', '.@WashWizards Double OT again tonight or', "".@Sixers can't, have plans later.pic.twitter.com/pyyXSwzjnW""]",4,"['13 Oct 2016', '13 Oct 2016', '13 Oct 2016', '13 Oct 2016']","['Philadelphia 76ers', 'Washington Wizards', 'Philadelphia 76ers', 'Washington Wizards']","['@sixers', '@WashWizards', '@sixers', '@WashWizards']"
1364,"#Wizards' west coast swing stops in Sacramento tonight (6pm | TV: CSN)
#WizKings Preview: …http://washingtonwizardsblog.monumentalnetwork.com/2015/03/22/wizards-swing-through-sacramento-for-battle-with-kings …pic.twitter.com/bxqZ42LWBU",WashWizards,SacramentoKings,"[""#Wizards' west coast swing stops in Sacramento tonight (6pm | TV: CSN) \n\n#WizKings Preview: …http://washingtonwizardsblog.monumentalnetwork.com/2015/03/22/wizards-swing-through-sacramento-for-battle-with-kings\xa0…pic.twitter.com/bxqZ42LWBU"", '@WashWizardspic.twitter.com/56R769q18Z', '@SacramentoKings quit trying to get in our head before the game #WizKingspic.twitter.com/hNroVdHOkn', '@SacramentoKings we can be friends afterwards #WizKingspic.twitter.com/k4vIrOzekx']",4,"['22 Mar 2015', '22 Mar 2015', '22 Mar 2015', '22 Mar 2015']","['Washington Wizards', 'Sacramen2 Kings', 'Washington Wizards', 'Washington Wizards']","['@WashWizards', '@SacramentoKings', '@WashWizards', '@WashWizards']"
1362,Boogie looking for his fourth consecutive 30-point game and the team's 4th W in 5 games.https://vine.co/v/5UuDtXFKh1Q ,WashWizards,SacramentoKings,"[""Boogie looking for his fourth consecutive 30-point game and the team's 4th W in 5 games.https://vine.co/v/5UuDtXFKh1Q\xa0"", 'why they got our old logo on the screen bar?!', ' @WashWizards', ""let's be thankful the big screen operator got the memo pic.twitter.com/LKwcyHYSCv""]",4,"['28 Nov 2016', '28 Nov 2016', '28 Nov 2016', '28 Nov 2016']","['Sacramen2 Kings', 'Alex', 'Sacramen2 Kings', 'Washington Wizards']","['@SacramentoKings', '@lexis916', '@SacramentoKings', '@WashWizards']"
2632,@Bucks good game fellas.,Bucks,trailblazers,"['@Bucks good game fellas.', '@trailblazers it was. see you in the MIL.', '@Bucks @trailblazers see you in the playof... Oh wait', '@Finn_Carlson3 @trailblazers yeah...you meant FINALS. We know. WE KNOW.']",4,"['17 Dec 2014', '17 Dec 2014', '17 Dec 2014', '17 Dec 2014']","['Trail Blazers', 'Milwaukee Bucks', 'Finn Carlson', 'Milwaukee Bucks']","['@trailblazers', '@Bucks', '@FinnxCarlson', '@Bucks']"
3378,Look at All-Star Marc Gasol out here balling.,trailblazers,MemGrizz,"['Look at All-Star Marc Gasol out here balling.', 'what is an all star', 'you both suck, just saying.', 'go to bed, Jerry.']",4,"['27 Jan 2017', '27 Jan 2017', '27 Jan 2017', '27 Jan 2017']","['Memphis Grizzlies', 'Trail Blazers', 'Jerry Colvin', 'Trail Blazers']","['@memgrizz', '@trailblazers', '@RealJerryColvin', '@trailblazers']"
1354,"Hey @WashWizards, we heard it was @StarWars Night!!pic.twitter.com/NmnDMr6pVE",WashWizards,Bucks,"['Hey @WashWizards, we heard it was @StarWars Night!!pic.twitter.com/NmnDMr6pVE', '.@Bucks @starwars night, it is.pic.twitter.com/HXphoCCHbR', '.@WashWizards @starwars May The Force Be With You!pic.twitter.com/jQu4fh3QJR', '[email protected]/622LC42ySG']",4,"['10 Dec 2016', '10 Dec 2016', '10 Dec 2016', '10 Dec 2016']","['Milwaukee Bucks', 'Washington Wizards', 'Milwaukee Bucks', 'Washington Wizards']","['@Bucks', '@WashWizards', '@Bucks', '@WashWizards']"
428,We're headed to overtime!!!!!!! Watch OT on @FOXSportsMagic! #LetsGoMagic,Timberwolves,OrlandoMagic,"[""We're headed to overtime!!!!!!! Watch OT on @FOXSportsMagic! #LetsGoMagic"", '@OrlandoMagic Hey, so are we! #FreeBasketball', '@ATLHawks Have to love #FreeBasketball!', ""@OrlandoMagic @ATLHawks well, I mean we would've been okay with that game winner...but we can make it more interesting I suppose!""]",4,"['7 Nov 2014', '7 Nov 2014', '7 Nov 2014', '7 Nov 2014']","['Orlando Magic', 'Atlanta Hawks', 'Orlando Magic', 'Timberwolves']","['@OrlandoMagic', '@ATLHawks', '@OrlandoMagic', '@Timberwolves']"
3286,"To be fair - his arms are really, really long.
#DPOY
#PORatUTApic.twitter.com/GZ9kfEMtmI",trailblazers,UtahJazz,"['To be fair - his arms are really, really long. \n#DPOY\n#PORatUTApic.twitter.com/GZ9kfEMtmI', 'see what you did there ', '', 'were his arms long this time?pic.twitter.com/PFByhhkLDH']",4,"['15 Feb 2017', '15 Feb 2017', '15 Feb 2017', '15 Feb 2017']","['Utah Jazz', 'Trail Blazers', 'Utah Jazz', 'Trail Blazers']","['@utahjazz', '@trailblazers', '@utahjazz', '@trailblazers']"
422,RT to congratulate @NikolaVucevic on a career-high points -- that's 35! #PureMagic,Timberwolves,OrlandoMagic,"[""RT to congratulate @NikolaVucevic on a career-high points -- that's 35! #PureMagic"", '@OrlandoMagic *unfollows', '.@MNTimberwolves Good thing the ""Follows You"" is still there. We were nervous for a second.pic.twitter.com/4hRS50hua8', ""@OrlandoMagic don't tempt us...""]",4,"['3 Apr 2015', '3 Apr 2015', '3 Apr 2015', '3 Apr 2015']","['Orlando Magic', 'Timberwolves', 'Orlando Magic', 'Timberwolves']","['@OrlandoMagic', '@Timberwolves', '@OrlandoMagic', '@Timberwolves']"
2541,.@TonyWarrenJr's 2nd quarter is so good even the most famous Milwaukian has to give it a thumbs up. #SunsVsBuckspic.twitter.com/k4dj4H5k9O,Bucks,Suns,"["".@TonyWarrenJr's 2nd quarter is so good even the most famous Milwaukian has to give it a thumbs up. #SunsVsBuckspic.twitter.com/k4dj4H5k9O"", '@Suns quality gif workpic.twitter.com/AgVBZg9gcK', '@Bucks Feel free to take notes. #SunsVsBuckspic.twitter.com/DTyAJ33CrJ', ""@Suns we're good.pic.twitter.com/thEnMEMcyS""]",4,"['20 Dec 2015', '20 Dec 2015', '20 Dec 2015', '20 Dec 2015']","['Phoen1x Šuns', 'Milwaukee Bucks', 'Phoen1x Šuns', 'Milwaukee Bucks']","['@Suns', '@Bucks', '@Suns', '@Bucks']"
1201,"11,105 people in attendance tonight for the @warriors vs @denvernuggets #nbadm",nuggets,ATLHawks,"['11,105 people in attendance tonight for the @warriors vs @denvernuggets #nbadm', 'Wow, there are 11,000 #Nuggets fans in Iowa! RT“@IAEventsCenter: 11,105 people in attendance tonight for the @warriors vs @denvernuggets”', '@denvernuggets Those other 105 are gonna feel left out!', '@ATLHawks we had to give the @warriors a little credit.']",4,"['16 Oct 2014', '16 Oct 2014', '16 Oct 2014', '16 Oct 2014']","['Iowa Events Center', 'Denver Nuggets', 'Atlanta Hawks', 'Denver Nuggets']","['@IAEventsCenter', '@nuggets', '@ATLHawks', '@nuggets']"
521,"After 3, Rockets lead Timberwolves 84-75. Ricky Rubio may be dead.
Harden: 24p/10a/9r
Smith: 12p/2r/2a
D-Mo: 12ppic.twitter.com/t1Paysjnrp",Timberwolves,HoustonRockets,"['After 3, Rockets lead Timberwolves 84-75. Ricky Rubio may be dead.\n\nHarden: 24p/10a/9r\nSmith: 12p/2r/2a\nD-Mo: 12ppic.twitter.com/t1Paysjnrp', '@HoustonRocketspic.twitter.com/BBryOZTnIJ', ""@MNTimberwolves Ask that girl if the hospital she's in has crutches. For Ricky."", '@HoustonRockets .........']",4,"['23 Feb 2015', '23 Feb 2015', '23 Feb 2015', '23 Feb 2015']","['Houston Rockets', 'Timberwolves', 'Houston Rockets', 'Timberwolves']","['@HoustonRockets', '@Timberwolves', '@HoustonRockets', '@Timberwolves']"
1620,Join us on #ThrowbackThursday as we celebrate #Warriors90sNight against the @Suns. GET TICKETS » http://bit.ly/189qGGM ,Suns,warriors,"['Join us on #ThrowbackThursday as we celebrate #Warriors90sNight against the @Suns. GET TICKETS » http://bit.ly/189qGGM\xa0', ""@warriors We'll be there.pic.twitter.com/qklN7nu6qZ"", '@Sunspic.twitter.com/h6YXmRzPXC', ""@warriors As long as you guys don't sign San Francisco's famous Uncle Joey to a 10-day, we're in.pic.twitter.com/O6IMIRrbZK""]",4,"['1 Apr 2015', '1 Apr 2015', '1 Apr 2015', '1 Apr 2015']","['Golden State Warriors', 'Phoen1x Šuns', 'Golden State Warriors', 'Phoen1x Šuns']","['@warriors', '@Suns', '@warriors', '@Suns']"
1196,So THIS is how the Kings felt on Monday?,nuggets,ATLHawks,"['So THIS is how the Kings felt on Monday?', '@ATLHawks here, we’ll tag the @SacramentoKings for you… #subtweet', ""@denvernuggets @SacramentoKings Thanks. Apparently the game isn't the only thing we're struggling with tonight."", '@ATLHawks @SacramentoKings it happens to the best of us.\n\n(Literally, obviously.)']",4,"['11 Mar 2015', '11 Mar 2015', '11 Mar 2015', '11 Mar 2015']","['Atlanta Hawks', 'Denver Nuggets', 'Atlanta Hawks', 'Denver Nuggets']","['@ATLHawks', '@nuggets', '@ATLHawks', '@nuggets']"
101,"T
B
Tpic.twitter.com/ES64TgdFcX",celtics,trailblazers,"['T\nB\nTpic.twitter.com/ES64TgdFcX', 'those are some short shorts', '', '.@trailblazers @Peter1678 Looks like not much has changed pic.twitter.com/kwvsfjYkUd']",4,"['9 Feb 2017', '9 Feb 2017', '9 Feb 2017', '9 Feb 2017']","['Trail Blazers', 'Peter.', 'Trail Blazers', 'Boston Celtics']","['@trailblazers', '@Peter1678', '@trailblazers', '@celtics']"
1189,"Well, at least we won't see the Nuggets in the playoffs.pic.twitter.com/aYLWA0HaWU",nuggets,ATLHawks,"[""Well, at least we won't see the Nuggets in the playoffs.pic.twitter.com/aYLWA0HaWU"", '@ATLHawks …………………………………………. TOO SOON.', '@denvernuggets Meant as a compliment. The Pepsi Center is our House of Horrors so far!', '@ATLHawks okay ']",4,"['11 Mar 2015', '11 Mar 2015', '11 Mar 2015', '11 Mar 2015']","['Atlanta Hawks', 'Denver Nuggets', 'Atlanta Hawks', 'Denver Nuggets']","['@ATLHawks', '@nuggets', '@ATLHawks', '@nuggets']"
1180,Can we do the fun tweets now or https://twitter.com/anonymous2384/status/922589279150276612 …,nuggets,Suns,"['Can we do the fun tweets now or https://twitter.com/anonymous2384/status/922589279150276612\xa0…', 'There will be no fun on NBA twitter.', 'None?', 'Deleted it so fun is allowed again.pic.twitter.com/PaSVAglufK']",4,"['23 Oct 2017', '23 Oct 2017', '23 Oct 2017', '23 Oct 2017']","['Philadelphia 76ers', 'Denver Nuggets', 'Phoen1x Šuns', 'Denver Nuggets']","['@sixers', '@nuggets', '@Suns', '@nuggets']"
3208,"Fcus. #Knicks #NYKvsPOR
NYK 55 POR 48 | 2:31 2Q
WATCH on @MSGNetworks!pic.twitter.com/XUWmlAbMVg",trailblazers,NYKnicks,"['Fcus. #Knicks #NYKvsPOR\n\nNYK 55 POR 48 | 2:31 2Q\n\nWATCH on @MSGNetworks!pic.twitter.com/XUWmlAbMVg', 'foocus?', ""mannnnnn get off my mans like that son. Bro I hope we beet y'all so we can just shit on ur account"", 'beat*']",4,"['22 Nov 2016', '22 Nov 2016', '22 Nov 2016', '22 Nov 2016']","['NEW YORK KNICKS', 'Trail Blazers', 'JayMitch', 'Trail Blazers']","['@nyknicks', '@trailblazers', '@NYGKnicks', '@trailblazers']"
3201,"We see you, @RedSox.https://twitter.com/russnelligan/status/858128124688703491 …",trailblazers,celtics,"['We see you, @RedSox.https://twitter.com/russnelligan/status/858128124688703491\xa0…', ""TBH we're pretty big @celtics fans... pic.twitter.com/seBIjb6eIa"", ""Sorry guys, we've already locked them up!pic.twitter.com/S4E7uYdO62"", 'right.pic.twitter.com/qIpU6b0f0Q']",4,"['28 Apr 2017', '28 Apr 2017', '28 Apr 2017', '28 Apr 2017']","['Trail Blazers', 'Red Sox', 'Boston Celtics', 'Trail Blazers']","['@trailblazers', '@RedSox', '@celtics', '@trailblazers']"
3200,Keep an eye on @celtics Twitter and Instagram pic.twitter.com/W9mx57lWvs,trailblazers,celtics,"['Keep an eye on @celtics Twitter and Instagram pic.twitter.com/W9mx57lWvs', ""what's happening?pic.twitter.com/NXYxZxvpX7"", "" you'll have to wait until 3 just like everyone elsepic.twitter.com/GwYRb0JnKI"", 'so... noon?pic.twitter.com/42rY6k1XsA']",4,"['18 Aug 2017', '18 Aug 2017', '18 Aug 2017', '18 Aug 2017']","['Boston Celtics', 'Trail Blazers', 'Boston Celtics', 'Trail Blazers']","['@celtics', '@trailblazers', '@celtics', '@trailblazers']"
1640,"Last-second losses are no fun, right @Suns?",Suns,ATLHawks,"['Last-second losses are no fun, right @Suns?', '@ATLHawks Call us when it happens three more times to you. Then you can feel our pain.', '@Suns But...\n\nhttp://bit.ly/1MeHPib\xa0\nhttp://bit.ly/1MeHQCG\xa0\nhttp://bit.ly/1MeHPic\xa0', ""@ATLHawks This is getting more depressing than a singles party on Valentine's Day.""]",4,"['11 Feb 2015', '11 Feb 2015', '11 Feb 2015', '11 Feb 2015']","['Atlanta Hawks', 'Phoen1x Šuns', 'Atlanta Hawks', 'Phoen1x Šuns']","['@ATLHawks', '@Suns', '@ATLHawks', '@Suns']"
1163,"Tonight's Matchup: Derrick Favors vs. Nikola Jokic
Tipoff: 8 PM MT
#DENatUTApic.twitter.com/RsFogJJJLy",nuggets,UtahJazz,"[""Tonight's Matchup: Derrick Favors vs. Nikola Jokic\n\nTipoff: 8 PM MT\n\n#DENatUTApic.twitter.com/RsFogJJJLy"", 'ć', 'pic.twitter.com/A17taOpRWE', 'Things we do not control:\n\n1. How ESPN spells names']",4,"['28 Nov 2017', '28 Nov 2017', '28 Nov 2017', '28 Nov 2017']","['Utah Jazz', 'Denver Nuggets', 'Utah Jazz', 'Denver Nuggets']","['@utahjazz', '@nuggets', '@utahjazz', '@nuggets']"
2550,"Or Doug Funnie's favorite dessert, Joel Embeets!pic.twitter.com/Pyig6N7lIS",Bucks,Suns,"[""Or Doug Funnie's favorite dessert, Joel Embeets!pic.twitter.com/Pyig6N7lIS"", ""@Sixers We're going to need a #NBASweets ruling on this one. You went three levels deep on that joke."", ""@Suns @Sixers We'll allow it. #Offseason"", '@ATLHawks @Suns @Sixers fair game. #carryon']",4,"['6 Aug 2014', '6 Aug 2014', '6 Aug 2014', '6 Aug 2014']","['Philadelphia 76ers', 'Phoen1x Šuns', 'Atlanta Hawks', 'Milwaukee Bucks']","['@sixers', '@Suns', '@ATLHawks', '@Bucks']"
90,The two hottest teams in the NBA meet when the Warriors take on the @Celtics in Boston http://on.nba.com/2AKtit9 ,celtics,ATLHawks,"['The two hottest teams in the NBA meet when the Warriors take on the @Celtics in Boston http://on.nba.com/2AKtit9\xa0', 'Is ""hottest"" not defined by largest +/- in a 24-hour timeframe?', '.......', 'pic.twitter.com/tn9u8qR2A3']",4,"['16 Nov 2017', '16 Nov 2017', '16 Nov 2017', '16 Nov 2017']","['Golden State Warriors', 'Atlanta Hawks', 'Golden State Warriors', 'Boston Celtics']","['@warriors', '@ATLHawks', '@warriors', '@celtics']"
3269,We see you reppin' in Portland #ClipperNation! #TogetherAsOnepic.twitter.com/vN5jXObJtc,trailblazers,LAClippers,"[""We see you reppin' in Portland #ClipperNation! #TogetherAsOnepic.twitter.com/vN5jXObJtc"", '@LAClippers who let those guys in?pic.twitter.com/vgEKdUE9mU', '@trailblazers We gave them Voodoo Doughnuts.', ""@LAClippers just proves they're tourists...""]",4,"['23 Apr 2016', '23 Apr 2016', '23 Apr 2016', '23 Apr 2016']","['LA Clippers', 'Trail Blazers', 'LA Clippers', 'Trail Blazers']","['@LAClippers', '@trailblazers', '@LAClippers', '@trailblazers']"
1558,"Halfway through your Monday. You've almost made it to #SunsAtClippers.
5 THINGS TO WATCH >> http://on.suns.com/3he pic.twitter.com/IfWaMkX2TR",Suns,LAClippers,"[""Halfway through your Monday. You've almost made it to #SunsAtClippers.\n\n5 THINGS TO WATCH >> http://on.suns.com/3he\xa0pic.twitter.com/IfWaMkX2TR"", '@Suns Is it too late to add #6 - Earth Shattering Dunks?', '.@LAClippers We figured with these two rosters that was a given. Not necessary to put it on a list.', '@CalVital3 @LAClippers No fight. Just some fun and friendly banter.']",4,"['8 Dec 2014', '8 Dec 2014', '8 Dec 2014', '8 Dec 2014']","['Phoen1x Šuns', 'LA Clippers', 'Phoen1x Šuns', 'Phoen1x Šuns']","['@Suns', '@LAClippers', '@Suns', '@Suns']"
1561,"Hey there, @Suns
7:30 pm
@STAPLESCenter
#PrimeTicket
@TheBeast980
http://on.nba.com/1GW6bhe
#BeastNight",Suns,LAClippers,"['Hey there, @Suns\n 7:30 pm \n @STAPLESCenter\n #PrimeTicket\n @TheBeast980\n http://on.nba.com/1GW6bhe\xa0\n #BeastNight', '@LAClippers @STAPLESCenter @TheBeast980pic.twitter.com/F0ER2Ulm3u', '@Sunspic.twitter.com/1YsZSRC408', '@LAClipperspic.twitter.com/OOc4rwJ6Pm']",4,"['2 Nov 2015', '2 Nov 2015', '2 Nov 2015', '2 Nov 2015']","['LA Clippers', 'Phoen1x Šuns', 'LA Clippers', 'Phoen1x Šuns']","['@LAClippers', '@Suns', '@LAClippers', '@Suns']"
494,Wall to Rasual x 2! This time the alley-oop variety! That's 20p for @RasualButler45! #WizWolves,Timberwolves,WashWizards,"[""Wall to Rasual x 2! This time the alley-oop variety! That's 20p for @RasualButler45! #WizWolves"", ""@WashWizards John is playing like it's @NBA2K out there..."", ""@MNTimberwolves we have to put it on 'rookie' to perform like this #WizWolves"", '@WashWizards we kid, we kid. We know what you mean.']",4,"['16 Dec 2014', '16 Dec 2014', '16 Dec 2014', '16 Dec 2014']","['Washington Wizards', 'Timberwolves', 'Washington Wizards', 'Timberwolves']","['@WashWizards', '@Timberwolves', '@WashWizards', '@Timberwolves']"
1251,Which Draft Day fit did you get? pic.twitter.com/BmQpEh3PFI,nuggets,SacramentoKings,"['Which Draft Day fit did you get? pic.twitter.com/BmQpEh3PFI', ""June, but we're feeling that November look pic.twitter.com/J5jvKW7Jpo"", 'No love for July?! ', ""it's aightpic.twitter.com/1HBpHkzWjm""]",4,"['20 Jun 2017', '20 Jun 2017', '20 Jun 2017', '20 Jun 2017']","['Sacramen2 Kings', 'Denver Nuggets', 'Sacramen2 Kings', 'Denver Nuggets']","['@SacramentoKings', '@nuggets', '@SacramentoKings', '@nuggets']"
2664,Let's Go Rangers! You ready @Raptors? #NeverEverQuit #ALDSpic.twitter.com/2gQ8WSXz0u,Raptors,DallasMavs,"[""Let's Go Rangers! You ready @Raptors? #NeverEverQuit #ALDSpic.twitter.com/2gQ8WSXz0u"", '.@dallasmavs YUP. Better question, you ready for this guy? #ComeTOgether #TakeOctober #WeTheNorthpic.twitter.com/nZZyoVZz8X', '.@Raptors the answer is yes. #NeverEverQuitpic.twitter.com/93asTkSnv4', '.@dallasmavs Game On #ComeTOgether #TakeOctober #WeTheNorthpic.twitter.com/9zN8gIHMeW']",4,"['9 Oct 2015', '9 Oct 2015', '9 Oct 2015', '9 Oct 2015']","['Dallas Mavericks', 'Toronto Raptors', 'Dallas Mavericks', 'Toronto Raptors']","['@dallasmavs', '@Raptors', '@dallasmavs', '@Raptors']"
1233,Manimal Man. #NBASuperHeroespic.twitter.com/zw5kn0zkzf,nuggets,Bucks,"['Manimal Man. #NBASuperHeroespic.twitter.com/zw5kn0zkzf', '@denvernuggets ', '@Bucks @denvernuggets they have the emoji keyboard ', '@AngryBirdsLegos @Bucks yeah we do ']",4,"['30 Jul 2014', '30 Jul 2014', '30 Jul 2014', '30 Jul 2014']","['Denver Nuggets', 'Milwaukee Bucks', 'Ayanna Criswell', 'Denver Nuggets']","['@nuggets', '@Bucks', '@TLittleMinion', '@nuggets']"
3238,KAT from Deep!!,trailblazers,Timberwolves,"['KAT from Deep!!', '@Timberwolvespic.twitter.com/RyYI6x31jn', 'The @trailblazers trying to stop KAT..pic.twitter.com/hVfFGUem8Y', '@Timberwolvespic.twitter.com/J4ELMTJnT1']",4,"['31 Jan 2016', '31 Jan 2016', '31 Jan 2016', '31 Jan 2016']","['Timberwolves', 'Trail Blazers', 'Timberwolves', 'Trail Blazers']","['@Timberwolves', '@trailblazers', '@Timberwolves', '@trailblazers']"
1226,"We'd watch this for sure!!
South Parker. #NBACartoonspic.twitter.com/8Gz8GecM4J",nuggets,Bucks,"[""We'd watch this for sure!!\n\nSouth Parker. #NBACartoonspic.twitter.com/8Gz8GecM4J"", '@Bucks Jabari is in Colorado!?', ""@denvernuggets he was just visiting...don't get any ideas!"", '@Bucks we just wanted to say hello...']",4,"['27 Aug 2014', '27 Aug 2014', '27 Aug 2014', '27 Aug 2014']","['Milwaukee Bucks', 'Denver Nuggets', 'Milwaukee Bucks', 'Denver Nuggets']","['@Bucks', '@nuggets', '@Bucks', '@nuggets']"
1596,"It's late, but the bank is open for Jimmy Buckets.",Suns,chicagobulls,"[""It's late, but the bank is open for Jimmy Buckets."", ""@chicagobulls We're checking on those hours."", '@Suns @chicagobulls Bye Felicia ', '@JimmyBuckets21_ @chicagobullspic.twitter.com/lzkEb40N6o']",4,"['18 Nov 2015', '18 Nov 2015', '18 Nov 2015', '18 Nov 2015']","['Chicago Bulls', 'Phoen1x Šuns', 'Amaryah \xa0😜', 'Phoen1x Šuns']","['@chicagobulls', '@Suns', '@_Amaryahx3', '@Suns']"
1602,"Tipoff in 20. #Bulls fan roll call: who is staying up late with us tonight?
",Suns,chicagobulls,"['Tipoff in 20. #Bulls fan roll call: who is staying up late with us tonight? \n\n', "". @chicagobulls We're here. s vs. s always fun for the last few decades. #WeArePHX"", ""@Suns Let's do this!"", ""@chicagobulls As long as John Paxson isn't out here shooting s we're all in. #CantForget93""]",4,"['18 Nov 2015', '18 Nov 2015', '18 Nov 2015', '18 Nov 2015']","['Chicago Bulls', 'Phoen1x Šuns', 'Chicago Bulls', 'Phoen1x Šuns']","['@chicagobulls', '@Suns', '@chicagobulls', '@Suns']"
2329,We'll probably get more likes on this than your SoundCloud mixtape.https://twitter.com/HarryWAvery/status/907734960328597510 …,MemGrizz,nuggets,"[""We'll probably get more likes on this than your SoundCloud mixtape.https://twitter.com/HarryWAvery/status/907734960328597510\xa0…"", 'pic.twitter.com/vSAQEUxmBh', 'A perfect loop exists', 'IKR']",4,"['12 Sep 2017', '12 Sep 2017', '13 Sep 2017', '13 Sep 2017']","['Denver Nuggets', 'Memphis Grizzlies', 'A Panera Bread Bowl', 'Memphis Grizzlies']","['@nuggets', '@memgrizz', '@bestbreadbowl', '@memgrizz']"
2002,"#Pistons right now =
We're 10 of 11 from the field and lead 25-14 with 5:08 to play in the first.",ATLHawks,DetroitPistons,"[""#Pistons right now = \n\nWe're 10 of 11 from the field and lead 25-14 with 5:08 to play in the first."", "".@DetroitPistons You guys need to chill.\n\nLiterally...you're making too many shots."", '@ATLHawks There, we missed one.', ""@DetroitPistons That's a start.""]",4,"['31 Mar 2015', '31 Mar 2015', '31 Mar 2015', '31 Mar 2015']","['Detroit Pistons', 'Atlanta Hawks', 'Detroit Pistons', 'Atlanta Hawks']","['@DetroitPistons', '@ATLHawks', '@DetroitPistons', '@ATLHawks']"
837,"Are the Pelicans the next great #BucksRivalry!?!
@alexboeder examines » http://on.nba.com/1UQWEeb pic.twitter.com/knpS2RKEVU",LAClippers,PelicansNBA,"['Are the Pelicans the next great #BucksRivalry!?!\n\n@alexboeder examines » http://on.nba.com/1UQWEeb\xa0pic.twitter.com/knpS2RKEVU', '@Bucks -pic.twitter.com/uLN6xGm2kb', '@PelicansNBApic.twitter.com/egsvDJ9OtF', '@Bucks @PelicansNBApic.twitter.com/c7hS59q0Rd']",4,"['19 Aug 2015', '19 Aug 2015', '19 Aug 2015', '19 Aug 2015']","['Milwaukee Bucks', 'New Orleans Pelicans', 'Milwaukee Bucks', 'LA Clippers']","['@Bucks', '@PelicansNBA', '@Bucks', '@LAClippers']"
345,Ever hear about the adventures of Zach and LaVinestalk? It's a classic. #NBABedtimeStoriespic.twitter.com/ksLofSFHWj,OrlandoMagic,warriors,"[""Ever hear about the adventures of Zach and LaVinestalk? It's a classic. #NBABedtimeStoriespic.twitter.com/ksLofSFHWj"", ""@MNTimberwolves So it's story time? Ok... #NBABedtimeStories"", ""@Bucks @hornets @OrlandoMagic @DetroitPistons @ATLHawks @warriors Let's do this..."", ""@MNTimberwolves @Bucks @hornets @DetroitPistons @ATLHawks @warriors We're on board and ready to go!""]",4,"['3 Sep 2014', '3 Sep 2014', '3 Sep 2014', '3 Sep 2014']","['Timberwolves', 'Milwaukee Bucks', 'Timberwolves', 'Orlando Magic']","['@Timberwolves', '@Bucks', '@Timberwolves', '@OrlandoMagic']"
2121,.@Sixers @Suns @Bucks @MNTimberwolves @ATLHawks Why must you guys start this during lunch??? We are eating wings today! #nofreehands :(,ATLHawks,Suns,"['.@Sixers @Suns @Bucks @MNTimberwolves @ATLHawks Why must you guys start this during lunch??? We are eating wings today! #nofreehands :(', '@dallasmavs @Sixers @Bucks @MNTimberwolves @ATLHawks Consider #NBASweets as your desert during lunch.', ""@Suns @Sixers @Bucks @MNTimberwolves @ATLHawks Not as filling. We'll just sit back, tear up some wings (sorry Hawks) & enjoy the tweets!"", '@dallasmavs @Suns @Sixers @Bucks @MNTimberwolves It does sound delicious. Maybe we can do #NBASauce soon...pic.twitter.com/DwxHEplok2']",4,"['6 Aug 2014', '6 Aug 2014', '6 Aug 2014', '6 Aug 2014']","['Dallas Mavericks', 'Phoen1x Šuns', 'Dallas Mavericks', 'Atlanta Hawks']","['@dallasmavs', '@Suns', '@dallasmavs', '@ATLHawks']"
662,@Raptors Tell Coach Casey to put Dre in.,Hornets,Raptors,"['@Raptors Tell Coach Casey to put Dre in.', 'Straight to voicemail ', 'Looks like he checked his messages.', 'We left a message for Kemba too']",4,"['Feb 18 2018', 'Feb 18 2018', 'Feb 18 2018', 'Feb 18 2018']","['Detroit Pistons', 'Toronto Raptors', 'Detroit Pistons', 'Charlotte Hornets']","['@DetroitPistons', '@Raptors', '@DetroitPistons', '@hornets']"
2132,"I'm still partial to @Suns being the best on social media, but @ATLHawks sure is in the running.",ATLHawks,Suns,"[""I'm still partial to @Suns being the best on social media, but @ATLHawks sure is in the running."", '@AndrewLynch @Suns A little wager with our Phoenix friends perhaps?', '@ATLHawks @AndrewLynch No need to wager. We have the utmost respect for what you guys do on social. Enough room for all of us to be great.', '@Suns @AndrewLynch Agreed! And right back atcha!']",4,"['16 Sep 2013', '16 Sep 2013', '16 Sep 2013', '16 Sep 2013']","['Andrew Lynch', 'Atlanta Hawks', 'Phoen1x Šuns', 'Atlanta Hawks']","['@AndrewLynch', '@ATLHawks', '@Suns', '@ATLHawks']"
2141,"Congrats Travis and best of luck with the new gig! @ATLHawks, you got a good one.https://twitter.com/ATLHawks/status/867759777073565696 …",ATLHawks,warriors,"['Congrats Travis and best of luck with the new gig! @ATLHawks, you got a good one.https://twitter.com/ATLHawks/status/867759777073565696\xa0…', ""Thanks! We promise we'll take good care of him. Good luck in the Finals!"", 'Did u just say good luck in. The finals to the Warriors', 'yes, but without the period after the word ""in""']",4,"['25 May 2017', '25 May 2017', '25 May 2017', '25 May 2017']","['Golden State Warriors', 'Atlanta Hawks', 'Atlanta™', 'Atlanta Hawks']","['@warriors', '@ATLHawks', '@Atl66016762', '@ATLHawks']"
2966,"Another former Raptor, Quincy Acy, commits the foul on Biyombo. Different jersey, same immaculate beard. #RTZ",SacramentoKings,Raptors,"['Another former Raptor, Quincy Acy, commits the foul on Biyombo. Different jersey, same immaculate beard. #RTZ', ""@Raptors you guys know what's up."", '@SacramentoKings We always got love for Quincy.', '@Raptors ']",4,"['15 Nov 2015', '15 Nov 2015', '15 Nov 2015', '15 Nov 2015']","['Toronto Raptors', 'Sacramen2 Kings', 'Toronto Raptors', 'Sacramen2 Kings']","['@Raptors', '@SacramentoKings', '@Raptors', '@SacramentoKings']"
2160,.@JamesDa_Truth starts out the 3rd with a jam!pic.twitter.com/clj9eAcQvS,ATLHawks,MemGrizz,"['.@JamesDa_Truth starts out the 3rd with a jam!pic.twitter.com/clj9eAcQvS', 'pic.twitter.com/1AbOWhtmcr', 'is he ok?', 'We good over here, fam.']",4,"['Feb 6 2018', 'Feb 6 2018', 'Feb 6 2018', 'Feb 6 2018']","['Memphis Grizzlies', 'Atlanta Hawks', 'Memphis Grizzlies', 'Atlanta Hawks']","['@memgrizz', '@ATLHawks', '@memgrizz', '@ATLHawks']"
2161,"Our schedule:
",ATLHawks,MemGrizz,"['Our schedule:\n\n', ""This year's schedule:\n\n"", 'the bear is the cutest emoji tbqh', 'Sure...']",4,"['11 Aug 2016', '14 Aug 2017', '14 Aug 2017', '14 Aug 2017']","['Atlanta Hawks', 'Atlanta Hawks', 'Memphis Grizzlies', 'Atlanta Hawks']","['@ATLHawks', '@ATLHawks', '@memgrizz', '@ATLHawks']"
2164,Now do I root for @ATLHawks or @memgrizz for NBA season ? New area need a team,ATLHawks,MemGrizz,"['Now do I root for @ATLHawks or @memgrizz for NBA season ? New area need a team', 'Sup', 'just moved to TN and wanting NBA team to root for. I mean you guys do have @ZMyersOfficial &@jtimberlake as fans', 'We think you should pick the team that won the most recent matchup:pic.twitter.com/36ALF8LUtj']",4,"['13 Oct 2016', '13 Oct 2016', '13 Oct 2016', '13 Oct 2016']","['cdwill77', 'Memphis Grizzlies', 'cdwill77', 'Atlanta Hawks']","['@cdwill77', '@memgrizz', '@cdwill77', '@ATLHawks']"
2363,Our furry friends at @RocketDogRescue agreed to help us unveil a few key games for the 2017-18 season pic.twitter.com/bb8HgSEc6M,MemGrizz,warriors,"['Our furry friends at @RocketDogRescue agreed to help us unveil a few key games for the 2017-18 season pic.twitter.com/bb8HgSEc6M', 'good dogs', '15/10 we would say ', '20/10 would snuggle']",4,"['10 Aug 2017', '10 Aug 2017', '10 Aug 2017', '10 Aug 2017']","['Golden State Warriors', 'Memphis Grizzlies', 'Golden State Warriors', 'Memphis Grizzlies']","['@warriors', '@memgrizz', '@warriors', '@memgrizz']"
2778,KAT turned that Rondo lay-up attempt away like...pic.twitter.com/QAZipgEELZ,SacramentoKings,Timberwolves,"['KAT turned that Rondo lay-up attempt away like...pic.twitter.com/QAZipgEELZ', '@Timberwolves https://twitter.com/SacramentoKings/status/670443678461136897\xa0… :)', '.@SacramentoKings must be a UK thing?', ""@Timberwolves as long as our UK power is a little stronger tonight, we'll take it.""]",4,"['27 Nov 2015', '27 Nov 2015', '27 Nov 2015', '27 Nov 2015']","['Timberwolves', 'Sacramen2 Kings', 'Timberwolves', 'Sacramen2 Kings']","['@Timberwolves', '@SacramentoKings', '@Timberwolves', '@SacramentoKings']"
2987,literally waiting for this @SacramentoKings/@spurs game to end likepic.twitter.com/piAutNIc9z,SacramentoKings,trailblazers,"['literally waiting for this @SacramentoKings/@spurs game to end likepic.twitter.com/piAutNIc9z', 'r u happy now', 'yes thx u', 'k ur welcome']",4,"['15 Jul 2016', '15 Jul 2016', '15 Jul 2016', '15 Jul 2016']","['Trail Blazers', 'Sacramen2 Kings', 'Trail Blazers', 'Sacramen2 Kings']","['@trailblazers', '@SacramentoKings', '@trailblazers', '@SacramentoKings']"
884,@SportsAMileHigh pretty exciting?,LAClippers,nuggets,"['@SportsAMileHigh pretty exciting?', ""@nuggets @SportsAMileHigh Hye we're playing tonight too which is, ummmh pretty exciting."", '@LAClippers @nuggets @SportsAMileHigh Supporting the clippers from the mile high!', '@bigbird874 @nuggets @SportsAMileHigh ']",4,"['2 Oct 2015', '2 Oct 2015', '2 Oct 2015', '2 Oct 2015']","['Denver Nuggets', 'LA Clippers', 'BYRDO-SAMA', 'LA Clippers']","['@nuggets', '@LAClippers', '@bigbird874', '@LAClippers']"
883,"Six quick points for the good guys!
#Nuggets",LAClippers,nuggets,"['Six quick points for the good guys!\n\n#Nuggets', ""@nuggets You're the bad guys and you know it!"", '@LAClippers quiet over there!', '@nuggetspic.twitter.com/xC2SELyZDi']",4,"['24 Nov 2015', '24 Nov 2015', '24 Nov 2015', '24 Nov 2015']","['Denver Nuggets', 'LA Clippers', 'Denver Nuggets', 'LA Clippers']","['@nuggets', '@LAClippers', '@nuggets', '@LAClippers']"
2410,Get you a Plumlee that can do both.pic.twitter.com/BnivrZrDwN,MemGrizz,trailblazers,"['Get you a Plumlee that can do both.pic.twitter.com/BnivrZrDwN', 'https://twitter.com/memgrizz/status/792924975644614656\xa0…', 'you really wanna play that game?https://twitter.com/trailblazers/status/788935238827200513\xa0…', 'good tweet tbh']",4,"['6 Nov 2016', '6 Nov 2016', '6 Nov 2016', '6 Nov 2016']","['Trail Blazers', 'Memphis Grizzlies', 'Trail Blazers', 'Memphis Grizzlies']","['@trailblazers', '@memgrizz', '@trailblazers', '@memgrizz']"
2409,The best shooter NBA takes a break from making all of his shots.pic.twitter.com/DbSTWsUCAm,MemGrizz,trailblazers,"['The best shooter NBA takes a break from making all of his shots.pic.twitter.com/DbSTWsUCAm', '...Troy Daniels is out tonight tho', 'trying to find him on this list...http://bleacherreport.com/articles/2688230-nba-metrics-101-identifying-the-nbas-10-best-shooters\xa0…', 'they sleep tbh']",4,"['27 Jan 2017', '27 Jan 2017', '27 Jan 2017', '27 Jan 2017']","['Trail Blazers', 'Memphis Grizzlies', 'Trail Blazers', 'Memphis Grizzlies']","['@trailblazers', '@memgrizz', '@trailblazers', '@memgrizz']"
2084,Happy #FirstDayofFall...even if it is going to be 90 degrees in Chicago today!pic.twitter.com/O0xKnOhcOn,ATLHawks,chicagobulls,"['Happy #FirstDayofFall...even if it is going to be 90 degrees in Chicago today!pic.twitter.com/O0xKnOhcOn', 'Feel free to come down to Atlanta if you want to ""cool off""pic.twitter.com/GwGi4WT3tg', ""Hmmm that's an intriguing offer...we may have to wait until January 20th though."", 'Weather might be a little different then ']",4,"['22 Sep 2017', '22 Sep 2017', '22 Sep 2017', '22 Sep 2017']","['Chicago Bulls', 'Atlanta Hawks', 'Chicago Bulls', 'Atlanta Hawks']","['@chicagobulls', '@ATLHawks', '@chicagobulls', '@ATLHawks']"
2091,"It's Wednesday so do you think our friends are up for a #Hashtag game?
@warriors @MNTimberwolves @Suns @ATLHawks @Sixers @spurs @utahjazz",ATLHawks,spurs,"[""It's Wednesday so do you think our friends are up for a #Hashtag game?\n@warriors @MNTimberwolves @Suns @ATLHawks @Sixers @spurs @utahjazz"", ""@Bucks @warriors @MNTimberwolves @Suns @Sixers @spurs @utahjazz We're always up for being awesome..."", '@ATLHawks @Bucks @warriors @Suns @Sixers @spurs @utahjazz are we ready to get this trending nationally (again)?', '@MNTimberwolves @Bucks @warriors @Suns @Sixers @spurs @utahjazz Prediction: Trending by 12:20 ET']",4,"['27 Aug 2014', '27 Aug 2014', '27 Aug 2014', '27 Aug 2014']","['Milwaukee Bucks', 'Atlanta Hawks', 'Timberwolves', 'Atlanta Hawks']","['@Bucks', '@ATLHawks', '@Timberwolves', '@ATLHawks']"
2103," Counter:
#SunsVsHornets",ATLHawks,Suns,"[' Counter: \n#SunsVsHornets', '@Suns @ATLHawks every team tryna copy us now smh', '@Fruityyy07 @ATLHawks \nConsider it a homage.', '@Suns @Fruityyy07 homage accepted #SincerestFormOfFlattery']",4,"['6 Jan 2016', '6 Jan 2016', '6 Jan 2016', '6 Jan 2016']","['Phoen1x Šuns', 'Foroutan', 'Phoen1x Šuns', 'Atlanta Hawks']","['@Suns', '@Fruityyy07', '@Suns', '@ATLHawks']"
806,@ItsLarryPaul79 @dallasmavs @NBA Good pick Larry!,DallasMavs,ATLHawks,"['@ItsLarryPaul79 @dallasmavs @NBA Good pick Larry!', 'Bad pick Larry! LOL RT @ATLHawks: @ItsLarryPaul79 @dallasmavs @NBA Good pick Larry!', ""@dallasmavs @ItsLarryPaul79 @NBA Ugh oh...it's on now!"", ""Let's do this! :) @ATLHawks: @dallasmavs @ItsLarryPaul79 @NBA Ugh oh...it's on now!""]",4,"['18 Mar 2013', '18 Mar 2013', '18 Mar 2013', '18 Mar 2013']","['Atlanta Hawks', 'Dallas Mavericks', 'Atlanta Hawks', 'Dallas Mavericks']","['@ATLHawks', '@dallasmavs', '@ATLHawks', '@dallasmavs']"
2892,The movement finds Ryno for an open 3! He's got 10pts.pic.twitter.com/888zr0ZSGL,SacramentoKings,HoustonRockets,"[""The movement finds Ryno for an open 3! He's got 10pts.pic.twitter.com/888zr0ZSGL"", "".@HoustonRockets the Anderson's got tickets to the game? How'd they get tickets?!"", '.@SacramentoKings Did you try http://NBATickets.com\xa0?pic.twitter.com/JFls3wIL9z', "".@HoustonRockets Good suggestion, heard they're never sold out there. Brb, checking.""]",4,"['31 Jan 2017', '31 Jan 2017', '31 Jan 2017', '31 Jan 2017']","['Houston Rockets', 'Sacramen2 Kings', 'Houston Rockets', 'Sacramen2 Kings']","['@HoustonRockets', '@SacramentoKings', '@HoustonRockets', '@SacramentoKings']"
299,"Back at it -
vs @OrlandoMagic
7 pm CT
@SmoothieKingCtr
@FOXSportsNOLA
@995WRNO
http://bit.ly/2z1oxOz
#DoItBigpic.twitter.com/zKKqKCqR6B",OrlandoMagic,PelicansNBA,"['Back at it -\n\n vs @OrlandoMagic\n 7 pm CT\n @SmoothieKingCtr\n @FOXSportsNOLA\n @995WRNO\n http://bit.ly/2z1oxOz\xa0\n#DoItBigpic.twitter.com/zKKqKCqR6B', 'Ready to put on a show, @PelicansNBA?!', 'pic.twitter.com/fUpoIO0njy', 'pic.twitter.com/wxMaK25pIC']",4,"['30 Oct 2017', '30 Oct 2017', '30 Oct 2017', '30 Oct 2017']","['New Orleans Pelicans', 'Orlando Magic', 'New Orleans Pelicans', 'Orlando Magic']","['@PelicansNBA', '@OrlandoMagic', '@PelicansNBA', '@OrlandoMagic']"
2889,They were down by 17. But now your Suns lead it by 3. #SunsAtKings,SacramentoKings,Suns,"['They were down by 17. But now your Suns lead it by 3. #SunsAtKings', '@Sunspic.twitter.com/jL2GQvuIvl', '@SacramentoKingspic.twitter.com/CB3lDQCN2n', '@Sunspic.twitter.com/DQn02tPNyC']",4,"['2 Jan 2016', '2 Jan 2016', '2 Jan 2016', '2 Jan 2016']","['Phoen1x Šuns', 'Sacramen2 Kings', 'Phoen1x Šuns', 'Sacramen2 Kings']","['@Suns', '@SacramentoKings', '@Suns', '@SacramentoKings']"
2245,CONFIRMED: We have no bad games.https://twitter.com/Deadspin/status/897244937124818944 …,ATLHawks,trailblazers,"['CONFIRMED: We have no bad games.https://twitter.com/Deadspin/status/897244937124818944\xa0…', 'CONFIRMED: We should play you 7 times instead of 2.', '2018 NBA Finals?', 'Seems reasonable.']",4,"['14 Aug 2017', '14 Aug 2017', '14 Aug 2017', '14 Aug 2017']","['Trail Blazers', 'Atlanta Hawks', 'Trail Blazers', 'Atlanta Hawks']","['@trailblazers', '@ATLHawks', '@trailblazers', '@ATLHawks']"
2828,"John Stockton is his typical clutch self against the Kings in game 4.
MUST WATCH: http://on.nba.com/1bSADtz
#TBTpic.twitter.com/OCAoVhM90I",SacramentoKings,UtahJazz,"['John Stockton is his typical clutch self against the Kings in game 4.\n\nMUST WATCH: http://on.nba.com/1bSADtz\xa0\n#TBTpic.twitter.com/OCAoVhM90I', '@utahjazz is this payback for last week?pic.twitter.com/BAbxShibsU', '@SacramentoKingspic.twitter.com/PLoqwoDpXo', ""@utahjazz John's last game ever was in our building and his son is on our team. #AllLove pic.twitter.com/MjIusIxg8T""]",4,"['14 May 2015', '14 May 2015', '14 May 2015', '14 May 2015']","['Utah Jazz', 'Sacramen2 Kings', 'Utah Jazz', 'Sacramen2 Kings']","['@utahjazz', '@SacramentoKings', '@utahjazz', '@SacramentoKings']"
2871,This game... @SacramentoKings,SacramentoKings,spurs,"['This game... @SacramentoKings', 'can you guys wrap this up by 3 pm? Thx.', ""we're working on it."", 'plz stop working']",4,"['15 Jul 2016', '15 Jul 2016', '15 Jul 2016', '15 Jul 2016']","['San Antonio Spurs', 'Trail Blazers', 'San Antonio Spurs', 'Sacramen2 Kings']","['@spurs', '@trailblazers', '@spurs', '@SacramentoKings']"
2280,You guys pack an overnight bag @memgrizz? We got top bunkpic.twitter.com/XkRSbL4myS,MemGrizz,PelicansNBA,"['You guys pack an overnight bag @memgrizz? We got top bunkpic.twitter.com/XkRSbL4myS', '.@PelicansNBA well actually...', 'guess you get top bunk \n\nGood game, safe travels back', 'What a game! #Respect']",4,"['5 Dec 2016', '5 Dec 2016', '5 Dec 2016', '5 Dec 2016']","['New Orleans Pelicans', 'Memphis Grizzlies', 'New Orleans Pelicans', 'Memphis Grizzlies']","['@PelicansNBA', '@memgrizz', '@PelicansNBA', '@memgrizz']"
722,Another one *DJ Khaled voice*pic.twitter.com/1KFkbHFu8B,DetroitPistons,ATLHawks,"['Another one *DJ Khaled voice*pic.twitter.com/1KFkbHFu8B', 'Another one for us: WWWW', 'gg ', 'See you next time.pic.twitter.com/eYjM7JZEsc']",4,"['10 Nov 2017', '10 Nov 2017', '10 Nov 2017', '10 Nov 2017']","['Atlanta Hawks', 'Detroit Pistons', 'Atlanta Hawks', 'Detroit Pistons']","['@ATLHawks', '@DetroitPistons', '@ATLHawks', '@DetroitPistons']"
2294,END OF 1Q: There are 36 minutes left.,MemGrizz,Timberwolves,"['END OF 1Q: There are 36 minutes left.', '', '#math', 'pic.twitter.com/1B08dZf23o']",4,"['Apr 9 2018', 'Apr 9 2018', 'Apr 9 2018', 'Apr 9 2018']","['Timberwolves', 'Memphis Grizzlies', 'Timberwolves', 'Memphis Grizzlies']","['@Timberwolves', '@memgrizz', '@Timberwolves', '@memgrizz']"
2314,Mike Conley with his SEVENTH three tonight!,MemGrizz,LAClippers,"['Mike Conley with his SEVENTH three tonight!', 'can he stop plz', ""we'll stop if you stop how about that"", 'we had a deal what are you doing']",4,"['4 Nov 2016', '4 Nov 2016', '4 Nov 2016', '4 Nov 2016']","['Memphis Grizzlies', 'LA Clippers', 'Memphis Grizzlies', 'Memphis Grizzlies']","['@memgrizz', '@LAClippers', '@memgrizz', '@memgrizz']"
2843,"Fun fact: Movie trailers were originally shown after the movie, which is why they were called “trailers”.pic.twitter.com/1MxGABnNri",SacramentoKings,nuggets,"['Fun fact: Movie trailers were originally shown after the movie, which is why they were called “trailers”.pic.twitter.com/1MxGABnNri', 'You know what else is commonly referred to as a ""trailer?"" This play.pic.twitter.com/EPY5fPCuf3', 'And, also. You guys.', 'pic.twitter.com/OUSxsPOapx']",4,"['21 Oct 2017', '21 Oct 2017', '21 Oct 2017', '21 Oct 2017']","['Sacramen2 Kings', 'Denver Nuggets', 'Denver Nuggets', 'Sacramen2 Kings']","['@SacramentoKings', '@nuggets', '@nuggets', '@SacramentoKings']"
2812,"Is this real life @SacramentoKings?
#TooColdpic.twitter.com/DQ4W09Gv9t",SacramentoKings,LAClippers,"['Is this real life @SacramentoKings? \n #TooColdpic.twitter.com/DQ4W09Gv9t', ""@LAClippers hopefully that's how y'all shoot in the second half."", '@SacramentoKings second half forecast... pic.twitter.com/UI0BenvfWM', ""@LAClippers how'd y'all already get that selfie of Boogie""]",4,"['26 Feb 2016', '26 Feb 2016', '26 Feb 2016', '26 Feb 2016']","['LA Clippers', 'Sacramen2 Kings', 'LA Clippers', 'Sacramen2 Kings']","['@LAClippers', '@SacramentoKings', '@LAClippers', '@SacramentoKings']"
758,#WallaceWednesdayspic.twitter.com/HLdnfUZbAF,DetroitPistons,trailblazers,"['#WallaceWednesdayspic.twitter.com/HLdnfUZbAF', '@trailblazerspic.twitter.com/QwlQMkwaFZ', '@DetroitPistons ', '@trailblazerspic.twitter.com/4CkIBhHrKg']",4,"['7 Oct 2015', '7 Oct 2015', '7 Oct 2015', '7 Oct 2015']","['Trail Blazers', 'Detroit Pistons', 'Trail Blazers', 'Detroit Pistons']","['@trailblazers', '@DetroitPistons', '@trailblazers', '@DetroitPistons']"
2951,Get you a center who can do both pic.twitter.com/3pKUvRaZci,SacramentoKings,MemGrizz,"['Get you a center who can do both pic.twitter.com/3pKUvRaZci', 'ok!pic.twitter.com/IyBCtIdqtg', 'See you in December?', ""can't wait! ""]",4,"['30 Oct 2016', '30 Oct 2016', '30 Oct 2016', '30 Oct 2016']","['Memphis Grizzlies', 'Sacramen2 Kings', 'Memphis Grizzlies', 'Sacramen2 Kings']","['@memgrizz', '@SacramentoKings', '@memgrizz', '@SacramentoKings']"
2185,Bo Ryan on seeing Devin Harris Saturday in an @ATLHawks win: 'The @Bucks asked me not to come back again to see any former players.',ATLHawks,Bucks,"[""Bo Ryan on seeing Devin Harris Saturday in an @ATLHawks win: 'The @Bucks asked me not to come back again to see any former players.'"", '@TheBadgerNation @Bucks Ha! No kidding, great quote.', '@ATLHawks @TheBadgerNation he was joking. Bo is always welcome at the BMOHBC.', ""@Bucks @TheBadgerNation We know. Bo's a great coach. Thank you guys and your fans for welcoming Devin back with open arms.""]",4,"['25 Feb 2013', '25 Feb 2013', '25 Feb 2013', '25 Feb 2013']","['Benjamin Worgull', 'Atlanta Hawks', 'Milwaukee Bucks', 'Atlanta Hawks']","['@TheBadgerNation', '@ATLHawks', '@Bucks', '@ATLHawks']"
783,"Like picking a fav child. We hope for a good game MT @NBA: Who gets the win at tonight's @USABasketball Showcase: Team White, or Team Blue?",DallasMavs,WashWizards,"[""Like picking a fav child. We hope for a good game MT @NBA: Who gets the win at tonight's @USABasketball Showcase: Team White, or Team Blue?"", '@WashWizards @NBA @USABasketball Tell us who you are really rooting for! :)', '@dallasmavs @NBA @USABasketball no favorites, we love both teams equally', '@WashWizards @NBA @USABasketball Well we are & we are all about @RealDealBeal23 & his awesome teammate @ChandlerParsons! :)']",4,"['1 Aug 2014', '1 Aug 2014', '1 Aug 2014', '1 Aug 2014']","['Washington Wizards', 'Dallas Mavericks', 'Washington Wizards', 'Dallas Mavericks']","['@WashWizards', '@dallasmavs', '@WashWizards', '@dallasmavs']"
2927,Need more fun in your life? @JoelEmbiid and the @ATLHawks are among the best follows in the league http://ble.ac/2ko8KQ2 pic.twitter.com/WaH4LxA6AF,SacramentoKings,ATLHawks,"['Need more fun in your life? @JoelEmbiid and the @ATLHawks are among the best follows in the league http://ble.ac/2ko8KQ2\xa0pic.twitter.com/WaH4LxA6AF', 'Hey, we know those @ATLHawks guys! Well deserved!', 'Thanks friends! You guys have any tweets lately? ', ""We're still trying to figure this whole Twitter thing out. Maybe one day!""]",4,"['26 Jan 2017', '26 Jan 2017', '26 Jan 2017', '26 Jan 2017']","['Bleacher Report NBA', 'Sacramen2 Kings', 'Atlanta Hawks', 'Sacramen2 Kings']","['@BR_NBA', '@SacramentoKings', '@ATLHawks', '@SacramentoKings']"
2911,See how the Dubs came back to win it in Sacramento » http://on.nba.com/2i4Atrp pic.twitter.com/folHKXulOR,SacramentoKings,warriors,"['See how the Dubs came back to win it in Sacramento » http://on.nba.com/2i4Atrp\xa0pic.twitter.com/folHKXulOR', 'no', 'pic.twitter.com/Veoi7AOpiJ', ""That's A1 meme usage. Until next time, guys. Gg.""]",4,"['8 Jan 2017', '8 Jan 2017', '8 Jan 2017', '8 Jan 2017']","['Golden State Warriors', 'Sacramen2 Kings', 'Golden State Warriors', 'Sacramen2 Kings']","['@warriors', '@SacramentoKings', '@warriors', '@SacramentoKings']"
2371,"""Is he on the current roster?""
A thread ",MemGrizz,ATLHawks,"['""Is he on the current roster?""\n\nA thread ', 'Nopic.twitter.com/AsLdco6EPo', 'Nopic.twitter.com/xc4SEP52Ly', 'hey! We know him!']",4,"['Feb 26 2018', 'Feb 26 2018', 'Feb 26 2018', 'Feb 26 2018']","['Atlanta Hawks', 'Atlanta Hawks', 'Atlanta Hawks', 'Memphis Grizzlies']","['@ATLHawks', '@ATLHawks', '@ATLHawks', '@memgrizz']"
930,BUDDY!!!!!!,LAClippers,SacramentoKings,"['BUDDY!!!!!!', 'well that escalated quickly', ""Looks like he's not your buddy, friends"", ""he's not our Buddy, guy.""]",4,"['26 Mar 2017', '26 Mar 2017', '26 Mar 2017', '26 Mar 2017']","['Sacramen2 Kings', 'LA Clippers', 'Sacramen2 Kings', 'LA Clippers']","['@SacramentoKings', '@LAClippers', '@SacramentoKings', '@LAClippers']"
2763,Any guess as to who these young pups came to see play? #SACatMINpic.twitter.com/GRuXmLOh2z,SacramentoKings,Timberwolves,"['Any guess as to who these young pups came to see play? #SACatMINpic.twitter.com/GRuXmLOh2z', '@Timberwolves DeMarcus Cousins?', ""@SacramentoKings - They see us rollin', they hatin'.pic.twitter.com/imIEDx0DZ6"", '@Timberwolvespic.twitter.com/2JrwfiqxwT']",4,"['18 Dec 2015', '18 Dec 2015', '18 Dec 2015', '18 Dec 2015']","['Timberwolves', 'Sacramen2 Kings', 'Timberwolves', 'Sacramen2 Kings']","['@Timberwolves', '@SacramentoKings', '@Timberwolves', '@SacramentoKings']"
907,Well...,LAClippers,ATLHawks,"['Well...', '@ATLHawks Brrr.', ""@LAClippers First time we've seen snow in L.A."", ""@ATLHawks For halftime entertainment we'll build a snowman at half court.""]",4,"['5 Jan 2015', '5 Jan 2015', '5 Jan 2015', '5 Jan 2015']","['Atlanta Hawks', 'LA Clippers', 'Atlanta Hawks', 'LA Clippers']","['@ATLHawks', '@LAClippers', '@ATLHawks', '@LAClippers']"
2427,"What to Watch vs. @Bucks: http://www.nba.com/nets/news/nets-vs-bucks-game-28 … 1) The Backcourts 2) The @larrysanders 1-Man Block Party 3) Lopez, a Pivotal Difference?",Bucks,BrooklynNets,"['What to Watch vs. @Bucks: http://www.nba.com/nets/news/nets-vs-bucks-game-28\xa0… 1) The Backcourts 2) The @larrysanders 1-Man Block Party 3) Lopez, a Pivotal Difference?', ""@BrooklynNets that's @LARRYSANDERS! to you."", '@Bucks @brooklynnets @larrysanders hey hey hey calm down Milwaukee. The nets are winning tonight!!', '@GreenbergBlake @brooklynnets @larrysanders let us remind you of what happened last time. http://www.nba.com/bucks/gallery/bucks-nets-12912\xa0…']",4,"['26 Dec 2012', '26 Dec 2012', '26 Dec 2012', '26 Dec 2012']","['Brooklyn Nets', 'Milwaukee Bucks', 'Blake Greenberg', 'Milwaukee Bucks']","['@BrooklynNets', '@Bucks', '@greenberg30', '@Bucks']"
2750,"RT if this should be the Western Conference starters
Stephen Cury
Russell Westbrok
James Haren
Kevin Duran
DeMarcus Cousins
#NBAVote",SacramentoKings,PelicansNBA,"['RT if this should be the Western Conference starters\n\nStephen Cury\nRussell Westbrok\nJames Haren\nKevin Duran\nDeMarcus Cousins\n \n#NBAVote', 'pic.twitter.com/0j5udgcSCA', 'pic.twitter.com/UUMoNMYSb3', 'pic.twitter.com/Epx0Ht5GLS']",4,"['28 Dec 2016', '28 Dec 2016', '28 Dec 2016', '28 Dec 2016']","['Sacramen2 Kings', 'Golden State Warriors', 'New Orleans Pelicans', 'Sacramen2 Kings']","['@SacramentoKings', '@warriors', '@PelicansNBA', '@SacramentoKings']"
2005,"@ATLHawks @JesMTaylor Friends, check out our shoutout/challenge to you from @PistonsWrap in this week's episode!http://ow.ly/Ei84W ",ATLHawks,DetroitPistons,"[""@ATLHawks @JesMTaylor Friends, check out our shoutout/challenge to you from @PistonsWrap in this week's episode!http://ow.ly/Ei84W\xa0"", '@DetroitPistons @ATLHawks @PistonsWrap Game on :) After shootaround?!', '@JesMTaylor @ATLHawks Our people (aka @PistonsWrap) will be in touch with your people (aka you) when the time is right. Get practicing!', '@DetroitPistons @JesMTaylor @PistonsWrap This is going to be hilarious.']",4,"['14 Nov 2014', '14 Nov 2014', '14 Nov 2014', '14 Nov 2014']","['Detroit Pistons', 'Jessica Taylor', 'Detroit Pistons', 'Atlanta Hawks']","['@DetroitPistons', '@JesMTaylor', '@DetroitPistons', '@ATLHawks']"
2742,"This shot counted in our hearts, @kostakoufos. #3Kpic.twitter.com/4AJVp8DSv2",SacramentoKings,celtics,"['This shot counted in our hearts, @kostakoufos. #3Kpic.twitter.com/4AJVp8DSv2', 'This would have been his first career 3-pointer. Thanks a lot, @celtics. ', 'pic.twitter.com/7z1e7N7Iiv', 'pic.twitter.com/661Y3B1Moc']",4,"['1 Nov 2017', '1 Nov 2017', '1 Nov 2017', '1 Nov 2017']","['Sacramen2 Kings', 'Sacramen2 Kings', 'Boston Celtics', 'Sacramen2 Kings']","['@SacramentoKings', '@SacramentoKings', '@celtics', '@SacramentoKings']"
2203,Why you trying to start fights... us and @ATLHawks are #BFFL ,ATLHawks,SacramentoKings,"['Why you trying to start fights... us and @ATLHawks are #BFFL ', 'We got you', ""That's right, #BFFL since the days of NBA social media memos!!""]",3,"['4 May 2017', '4 May 2017', '4 May 2017']","['Sacramen2 Kings', 'Sacramen2 Kings', 'Atlanta Hawks']","['@SacramentoKings', '@SacramentoKings', '@ATLHawks']"
3018,The stage is set for morning shoot-around in Orlando.pic.twitter.com/Urk6jflPCt,Sixers,OrlandoMagic,"['The stage is set for morning shoot-around in Orlando.pic.twitter.com/Urk6jflPCt', ""@Sixers Psst ... It's @STUFFMagic's birthday today. Make sure you wish him a Happy Birthday while you're there.pic.twitter.com/nF38YpvqrW"", ""@OrlandoMagic We'll be sure to make sure our well wishes are EXTREME.""]",3,"['22 Feb 2015', '22 Feb 2015', '22 Feb 2015']","['Philadelphia 76ers', 'Orlando Magic', 'Philadelphia 76ers']","['@sixers', '@OrlandoMagic', '@sixers']"
3301,Good game @WashWizards… we’re outta herepic.twitter.com/QkatH8tchx,trailblazers,WashWizards,"['Good game @WashWizards… we’re outta herepic.twitter.com/QkatH8tchx', ""'@trailblazers nobody makes @the_real_Gwiz bleed his own blood. Good game\n\n*sorry had to steal your GIF\n\n#WizBlazerspic.twitter.com/eL9x4ikAtI"", '@WashWizards @the_real_Gwiz well done ']",3,"['16 Mar 2015', '16 Mar 2015', '16 Mar 2015']","['Trail Blazers', 'Washington Wizards', 'Trail Blazers']","['@trailblazers', '@WashWizards', '@trailblazers']"
1539,"Hey @dallasmavs, our place on October 28th? #WeArePHXpic.twitter.com/Qp1NAbXOMh",Suns,DallasMavs,"['Hey @dallasmavs, our place on October 28th? #WeArePHXpic.twitter.com/Qp1NAbXOMh', 'YES! @Sunspic.twitter.com/mDr8zVoRlH', '.@dallasmavs Oh, and if you want to have a practice round, we can fire up the NBA Live 95.pic.twitter.com/ZqViBhnm5g']",3,"['12 Aug 2015', '12 Aug 2015', '12 Aug 2015']","['Phoen1x Šuns', 'Dallas Mavericks', 'Phoen1x Šuns']","['@Suns', '@dallasmavs', '@Suns']"
2343,@WashWizards ggpic.twitter.com/cbi1QuIvT7,MemGrizz,WashWizards,"['@WashWizards ggpic.twitter.com/cbi1QuIvT7', ""gg Grizz, can't hit game-tying 3's against us every time pic.twitter.com/ex8xlwQmqc"", 'too soon']",3,"['18 Jan 2017', '18 Jan 2017', '18 Jan 2017']","['Memphis Grizzlies', 'Washington Wizards', 'Memphis Grizzlies']","['@memgrizz', '@WashWizards', '@memgrizz']"
2206,Just toss it in his direction...pic.twitter.com/ugHSxM2pZM,ATLHawks,SacramentoKings,"['Just toss it in his direction...pic.twitter.com/ugHSxM2pZM', ""No pls don't"", 'Sorry ']",3,"['31 Oct 2016', '31 Oct 2016', '31 Oct 2016']","['Atlanta Hawks', 'Sacramen2 Kings', 'Atlanta Hawks']","['@ATLHawks', '@SacramentoKings', '@ATLHawks']"
1544,.@dallasmavs Don't worry. We'll be bringing something for you. #SunsAtMavs,Suns,DallasMavs,"["".@dallasmavs Don't worry. We'll be bringing something for you. #SunsAtMavs"", "".@Suns sounds a little creepy but we'll go ahead and have something waiting for you as well. #DALvsPHX #goodguys"", "".@dallasmavs We're just trying to be good guests and bring the host something. So we'll bring it. #SunsAtMavs #WeAreTheGoodGuys""]",3,"['12 Apr 2014', '12 Apr 2014', '12 Apr 2014']","['Phoen1x Šuns', 'Dallas Mavericks', 'Phoen1x Šuns']","['@Suns', '@dallasmavs', '@Suns']"
2934,Run DMC #NBAMusicians,SacramentoKings,ATLHawks,"['Run DMC #NBAMusicians', ""@SacramentoKings Oh that's nice."", '@ATLHawks ']",3,"['22 Jul 2014', '22 Jul 2014', '22 Jul 2014']","['Sacramen2 Kings', 'Atlanta Hawks', 'Sacramen2 Kings']","['@SacramentoKings', '@ATLHawks', '@SacramentoKings']"
2575,"Montell Jordan is performing at halftime Friday!!
AND it's Bucks Night Out! , , and pint glass for $20!
Tix http://bit.ly/BNO1617 pic.twitter.com/wwrg4P2SCP",Bucks,ATLHawks,"[""Montell Jordan is performing at halftime Friday!!\n\nAND it's Bucks Night Out! , , and pint glass for $20! \n\nTix http://bit.ly/BNO1617\xa0pic.twitter.com/wwrg4P2SCP"", 'That GIF...pic.twitter.com/IexCC20d5x', 'got your attention tho...pic.twitter.com/Q2kcCLAMat']",3,"['6 Dec 2016', '6 Dec 2016', '6 Dec 2016']","['Milwaukee Bucks', 'Atlanta Hawks', 'Milwaukee Bucks']","['@Bucks', '@ATLHawks', '@Bucks']"
1548,Ready for the @Suns @LAClippers game pic.twitter.com/GpG8vlRRQc,Suns,LAClippers,"['Ready for the @Suns @LAClippers game pic.twitter.com/GpG8vlRRQc', ' good luck in the @WMPhoenixOpen!', '^^what they said^^']",3,"['1 Feb 2017', '1 Feb 2017', '1 Feb 2017']","['Smylie Kaufman', 'LA Clippers', 'Phoen1x Šuns']","['@SmylieKaufman10', '@LAClippers', '@Suns']"
2933,"Sure, we'll play... The JETsons #NBACartoonspic.twitter.com/mO3HTcIm3D",SacramentoKings,ATLHawks,"[""Sure, we'll play... The JETsons #NBACartoonspic.twitter.com/mO3HTcIm3D"", '@SacramentoKings Off to a hot start!', '@ATLHawks @bucks Glad we could join!']",3,"['27 Aug 2014', '27 Aug 2014', '27 Aug 2014']","['Sacramen2 Kings', 'Atlanta Hawks', 'Sacramen2 Kings']","['@SacramentoKings', '@ATLHawks', '@SacramentoKings']"
2573,"We ranked all 30 NBA Twitter accounts:
5. @Bucks
4. @DallasMavs
3. @Sixers
2. @ATLHawks
1. http://trib.al/JzXYMxo ",Bucks,ATLHawks,"['We ranked all 30 NBA Twitter accounts: \n5. @Bucks\n4. @DallasMavs\n3. @Sixers\n2. @ATLHawks\n1. http://trib.al/JzXYMxo\xa0', ""@ComplexMag @Bucks @DallasMavs @Sixers We're protesting"", '@ATLHawks @ComplexMag @DallasMavs @Sixers maybe the order was backwards? But regardless...pic.twitter.com/Q9juuj1K59']",3,"['27 Jan 2015', '27 Jan 2015', '27 Jan 2015']","['Complex', 'Atlanta Hawks', 'Milwaukee Bucks']","['@Complex', '@ATLHawks', '@Bucks']"
3307,need ,trailblazers,WashWizards,"['need ', '#WizBlazerspic.twitter.com/szx54GUaJU', 'pic.twitter.com/hddmUZ22Bg']",3,"['16 Jan 2017', '16 Jan 2017', '16 Jan 2017']","['Trail Blazers', 'Washington Wizards', 'Trail Blazers']","['@trailblazers', '@WashWizards', '@trailblazers']"
2667,Who's mans is this in the non Raptors jersey... #WeTheNorthpic.twitter.com/4FstIBeApA,Raptors,LAClippers,"[""Who's mans is this in the non Raptors jersey... #WeTheNorthpic.twitter.com/4FstIBeApA"", ""don't see the issue tbh "", ""Well he didn't make a shot ""]",3,"['28 Sep 2017', '28 Sep 2017', '28 Sep 2017']","['Toronto Raptors', 'LA Clippers', 'Toronto Raptors']","['@Raptors', '@LAClippers', '@Raptors']"
2450,Start your morning off right with a cup #NBAFastFoodpic.twitter.com/kkUdYOl0Ud,Bucks,Hornets,"['Start your morning off right with a cup #NBAFastFoodpic.twitter.com/kkUdYOl0Ud', '@Bucks aha... of course!', '@hornets we got these layups handled']",3,"['24 Sep 2014', '24 Sep 2014', '24 Sep 2014']","['Milwaukee Bucks', 'Charlotte Hornets', 'Milwaukee Bucks']","['@Bucks', '@hornets', '@Bucks']"
1516,Here's your @iasishealthcare #SunsVsWolves starting lineup:pic.twitter.com/dxCl5n5f31,Suns,Timberwolves,"[""Here's your @iasishealthcare #SunsVsWolves starting lineup:pic.twitter.com/dxCl5n5f31"", "".@Suns Let's do this.pic.twitter.com/FGZkYu2xti"", "".@Timberwolves It's on.pic.twitter.com/HIhUrZLfK0""]",3,"['13 Dec 2015', '13 Dec 2015', '13 Dec 2015']","['Phoen1x Šuns', 'Timberwolves', 'Phoen1x Šuns']","['@Suns', '@Timberwolves', '@Suns']"
2825,@SacramentoKings wydpic.twitter.com/ve1gIpCT31,SacramentoKings,UtahJazz,"['@SacramentoKings wydpic.twitter.com/ve1gIpCT31', ""Apparently that did not strike the right note with y'all."", ""Glad that joke didn't fall flat. ""]",3,"['Jan 17 2018', 'Jan 17 2018', 'Jan 17 2018']","['Utah Jazz', 'Sacramen2 Kings', 'Sacramen2 Kings']","['@utahjazz', '@SacramentoKings', '@SacramentoKings']"
2641,Nate Wolters takes one out of Aaron Rodgers' playbook » http://on.nba.com/1pCGbtk #NatersGonnaNatepic.twitter.com/Wb7LipU8qO,Bucks,trailblazers,"[""Nate Wolters takes one out of Aaron Rodgers' playbook » http://on.nba.com/1pCGbtk\xa0 #NatersGonnaNatepic.twitter.com/Wb7LipU8qO"", '@Bucks discount double check?', '@trailblazers yeah that’s it…just don’t click the link. take our word for it.']",3,"['22 Oct 2014', '22 Oct 2014', '22 Oct 2014']","['Milwaukee Bucks', 'Trail Blazers', 'Milwaukee Bucks']","['@Bucks', '@trailblazers', '@Bucks']"
3327,@suns this booker guy can shoot pretty good huh,trailblazers,Suns,"['@suns this booker guy can shoot pretty good huh', '. @trailblazers I mean….pic.twitter.com/or8nARhU46', ""do you mind asking why he's trying so hard in preseason""]",3,"['7 Oct 2016', '7 Oct 2016', '7 Oct 2016']","['Trail Blazers', 'Phoen1x Šuns', 'Trail Blazers']","['@trailblazers', '@Suns', '@trailblazers']"
3326,Is it too late to join the Eastern Conference? Asking for a friend.,trailblazers,Suns,"['Is it too late to join the Eastern Conference? Asking for a friend.', '@trailblazers We asked you to keep that on the down low. That eager to get rid of us already?', '@Suns Well played']",3,"['4 Dec 2013', '4 Dec 2013', '4 Dec 2013']","['Trail Blazers', 'Phoen1x Šuns', 'Trail Blazers']","['@trailblazers', '@Suns', '@trailblazers']"
3314,ain't too many can bang with uspic.twitter.com/wHiezYNvtN,trailblazers,chicagobulls,"[""ain't too many can bang with uspic.twitter.com/wHiezYNvtN"", 'Cute.pic.twitter.com/LRz7pDNKUm', ""if at first you don't succeedpic.twitter.com/COivjtVyIP""]",3,"['12 Jul 2017', '12 Jul 2017', '12 Jul 2017']","['Trail Blazers', 'Chicago Bulls', 'Trail Blazers']","['@trailblazers', '@chicagobulls', '@trailblazers']"
2955,"SPOILER ALERT, WE KNOW WHO IT IS @starwarspic.twitter.com/ma1fXwSWRX",SacramentoKings,Bucks,"['SPOILER ALERT, WE KNOW WHO IT IS @starwarspic.twitter.com/ma1fXwSWRX', 'No one likes Star Wars spoilers.', ""Sorry guys. But did you know Vader is Skywalker's fath....nvm""]",3,"['23 Jan 2017', '23 Jan 2017', '23 Jan 2017']","['Sacramen2 Kings', 'Milwaukee Bucks', 'Sacramen2 Kings']","['@SacramentoKings', '@Bucks', '@SacramentoKings']"
3310,Hi @WashWizardspic.twitter.com/dwxGriL9iT,trailblazers,WashWizards,"['Hi @WashWizardspic.twitter.com/dwxGriL9iT', ""@trailblazers hey, felt better up 25, but y'all are pretty good at these comebacks #WizBlazers"", '@WashWizards ¯\\_(ツ)_/¯']",3,"['16 Mar 2015', '16 Mar 2015', '16 Mar 2015']","['Trail Blazers', 'Washington Wizards', 'Trail Blazers']","['@trailblazers', '@WashWizards', '@trailblazers']"
2579,"We're crashing the #NBACartoons Party - what cha got for us, #CavsNation?",Bucks,ATLHawks,"[""We're crashing the #NBACartoons Party - what cha got for us, #CavsNation?"", ""@cavs You can't crash a party you're invited to"", '@ATLHawks @cavs everyone is invited!']",3,"['27 Aug 2014', '27 Aug 2014', '27 Aug 2014']","['Cleveland Cavaliers', 'Atlanta Hawks', 'Milwaukee Bucks']","['@cavs', '@ATLHawks', '@Bucks']"
3309,THAT'S MORE LIKE ITpic.twitter.com/SQeh9CytXP,trailblazers,WashWizards,"[""THAT'S MORE LIKE ITpic.twitter.com/SQeh9CytXP"", '@trailblazers\n#WizBlazerspic.twitter.com/7grozVwUwC', '@WashWizardspic.twitter.com/rkGuh3mePg']",3,"['18 Jan 2016', '18 Jan 2016', '18 Jan 2016']","['Trail Blazers', 'Washington Wizards', 'Trail Blazers']","['@trailblazers', '@WashWizards', '@trailblazers']"
1531,"With two days until the #NBADraft, @Keith_Langlois collects his thoughts on what may happen: http://on.nba.com/1KaA3H3 pic.twitter.com/3MeNq5dO5B",Suns,DetroitPistons,"['With two days until the #NBADraft, @Keith_Langlois collects his thoughts on what may happen: http://on.nba.com/1KaA3H3\xa0pic.twitter.com/3MeNq5dO5B', '@DetroitPistons You’re gonna have to trade up if you want him.pic.twitter.com/1XANIc0AKH', ""@Sixers @DetroitPistons We hear he's a bit of a question mark. #WeWillSeeOurselvesOut""]",3,"['23 Jun 2015', '23 Jun 2015', '23 Jun 2015']","['Detroit Pistons', 'Philadelphia 76ers', 'Phoen1x Šuns']","['@DetroitPistons', '@sixers', '@Suns']"
2349,#IsItOctoberYetpic.twitter.com/06K5om3W5m,MemGrizz,spurs,"['#IsItOctoberYetpic.twitter.com/06K5om3W5m', 'seriously tho. #IsItOctoberYetpic.twitter.com/0QTjjxeLKz', 'Fam goals']",3,"['16 Aug 2017', '16 Aug 2017', '16 Aug 2017']","['Memphis Grizzlies', 'San Antonio Spurs', 'Memphis Grizzlies']","['@memgrizz', '@spurs', '@memgrizz']"
2179,Harry The Hawkeye! #NBASuperHeroespic.twitter.com/jrU9gBDTKs,ATLHawks,Bucks,"['Harry The Hawkeye! #NBASuperHeroespic.twitter.com/jrU9gBDTKs', '@ATLHawks luckily Milwaukee has a defense mechanism built in for that.http://youtu.be/_tTbBFthGQQ\xa0', '@Bucks And here we thought the Midwest was so welcoming...']",3,"['30 Jul 2014', '30 Jul 2014', '30 Jul 2014']","['Atlanta Hawks', 'Milwaukee Bucks', 'Atlanta Hawks']","['@ATLHawks', '@Bucks', '@ATLHawks']"
3020,"We'll see you tomorrow, Allentown. Tickets: http://bit.ly/1zacrgH pic.twitter.com/hZm2Dsrfak",Sixers,OrlandoMagic,"[""We'll see you tomorrow, Allentown. Tickets: http://bit.ly/1zacrgH\xa0pic.twitter.com/hZm2Dsrfak"", ""@Sixers We'll be there!"", ""@OrlandoMagic Well we'd hope that's the case. ""]",3,"['17 Oct 2014', '17 Oct 2014', '17 Oct 2014']","['Philadelphia 76ers', 'Orlando Magic', 'Philadelphia 76ers']","['@sixers', '@OrlandoMagic', '@sixers']"
3246,GIF: One of @YoungWhiteside's 4 first half blockspic.twitter.com/rAEuJlXE1V,trailblazers,MiamiHEAT,"[""GIF: One of @YoungWhiteside's 4 first half blockspic.twitter.com/rAEuJlXE1V"", ""“@MiamiHEAT: GIF: One of @YoungWhiteside's 4 first half blocks pic.twitter.com/HWWnxKZmJi” @trailblazers "", '@Awkward_Juice18 @MiamiHEAT @YoungWhiteside photoshop.']",3,"['18 Mar 2015', '18 Mar 2015', '18 Mar 2015']","['Miami HEAT', 'JUiCE18©®™', 'Trail Blazers']","['@MiamiHEAT', '@Jooz_4187', '@trailblazers']"
3237,"Greetings from the Twin Cities!
» http://rip.city/2mtZQDZ pic.twitter.com/SlpgIreaJ0",trailblazers,Timberwolves,"['Greetings from the Twin Cities!\n\n » http://rip.city/2mtZQDZ\xa0pic.twitter.com/SlpgIreaJ0', '.@trailblazers Hi ', 'pic.twitter.com/LMnna4Tl2u']",3,"['6 Mar 2017', '6 Mar 2017', '6 Mar 2017']","['Trail Blazers', 'Timberwolves', 'Trail Blazers']","['@trailblazers', '@Timberwolves', '@trailblazers']"
3254,Tonight's game vs. the @DetroitPistons has been POSTPONED until tomorrow at 6pm due to inclement weather » http://rip.city/2jfEdlV pic.twitter.com/8zMBcgHSP0,trailblazers,DetroitPistons,"[""Tonight's game vs. the @DetroitPistons has been POSTPONED until tomorrow at 6pm due to inclement weather » http://rip.city/2jfEdlV\xa0pic.twitter.com/8zMBcgHSP0"", ""Stay safe. We'll see you tomorrow."", 'pic.twitter.com/T13H7jtOdY']",3,"['7 Jan 2017', '7 Jan 2017', '7 Jan 2017']","['Trail Blazers', 'Detroit Pistons', 'Trail Blazers']","['@trailblazers', '@DetroitPistons', '@trailblazers']"
1573,@utahjazz beat @Suns,Suns,UtahJazz,"['@utahjazz beat @Suns', 'pic.twitter.com/CS0p2FYHWr', 'pic.twitter.com/N2mtNHbWMA']",3,"['9 Oct 2017', '9 Oct 2017', '10 Oct 2017']","['Kevin', 'Utah Jazz', 'Phoen1x Šuns']","['@YoungStarKev', '@utahjazz', '@Suns']"
1892,"Just sign Cleveland's whole team up for the three-point contest, apparently.",ATLHawks,cavs,"[""Just sign Cleveland's whole team up for the three-point contest, apparently."", '@ATLHawks #sorrynotsorry', '@cavs Just waiting for the #RegressionToTheMean']",3,"['15 Nov 2014', '15 Nov 2014', '15 Nov 2014']","['Atlanta Hawks', 'Cleveland Cavaliers', 'Atlanta Hawks']","['@ATLHawks', '@cavs', '@ATLHawks']"
2022,Twitter user Ross is repping us on his vacation in England!pic.twitter.com/1rsFI1Ehjd,ATLHawks,DallasMavs,"['Twitter user Ross is repping us on his vacation in England!pic.twitter.com/1rsFI1Ehjd', ""@ATLHawks don't get too excited, he was also reppin us as well! #mfflpic.twitter.com/VUIA5R6V9F"", ""@dallasmavs Are you saying he's cheating on us?""]",3,"['31 Jul 2014', '31 Jul 2014', '31 Jul 2014']","['Atlanta Hawks', 'Dallas Mavericks', 'Atlanta Hawks']","['@ATLHawks', '@dallasmavs', '@ATLHawks']"
1574,"2Q down, 2 to play.
@utahjazz in control behind 15 PTS from Rubio. They lead @Suns 55-30.pic.twitter.com/vxdAnfUFw9",Suns,UtahJazz,"['2Q down, 2 to play. \n\n@utahjazz in control behind 15 PTS from Rubio. They lead @Suns 55-30.pic.twitter.com/vxdAnfUFw9', 'pic.twitter.com/2cgh4TOEMK', 'pic.twitter.com/hAKuYV3zjp']",3,"['9 Oct 2017', '9 Oct 2017', '9 Oct 2017']","['NBA', 'Utah Jazz', 'Phoen1x Šuns']","['@NBA', '@utahjazz', '@Suns']"
3253,"Let's try this again, @DetroitPistons...
HUB » http://rip.city/DET-39 pic.twitter.com/6cUSz6g2Jj",trailblazers,DetroitPistons,"[""Let's try this again, @DetroitPistons... \n\nHUB » http://rip.city/DET-39\xa0pic.twitter.com/6cUSz6g2Jj"", ""Let's make it a good one.pic.twitter.com/kgTRkon6ux"", 'pic.twitter.com/BPzbdTCliP']",3,"['8 Jan 2017', '8 Jan 2017', '8 Jan 2017']","['Trail Blazers', 'Detroit Pistons', 'Trail Blazers']","['@trailblazers', '@DetroitPistons', '@trailblazers']"
1579,"Utterly excited to announce that @j_josh11 is the face of this year’s @AzMilkProducers growth poster! #NationalMilkDay
The first 2,500 kids in attendance at Sunday’s game will receive the Josh Jackson growth poster!
And yes! That’s a real cow pic.twitter.com/j5fzUDVFLS",Suns,nuggets,"['Utterly excited to announce that @j_josh11 is the face of this year’s @AzMilkProducers growth poster! #NationalMilkDay \n\nThe first 2,500 kids in attendance at Sunday’s game will receive the Josh Jackson growth poster! \n\nAnd yes! That’s a real cow pic.twitter.com/j5fzUDVFLS', 'utterlypic.twitter.com/Ksc9FFeu34', 'Y’all have something against cow puns?pic.twitter.com/xHa7NBepa5']",3,"['Jan 11 2018', 'Jan 11 2018', 'Jan 11 2018']","['Phoen1x Šuns', 'Denver Nuggets', 'Phoen1x Šuns']","['@Suns', '@nuggets', '@Suns']"
1890,"Season Recap:
",ATLHawks,cavs,"['Season Recap:\n\n', '', 'Sorry?']",3,"['25 Nov 2016', '25 Nov 2016', '25 Nov 2016']","['Atlanta Hawks', 'Cleveland Cavaliers', 'Atlanta Hawks']","['@ATLHawks', '@cavs', '@ATLHawks']"
2816,Kings fall 111-104 in the final Home Opener at @SleepTrainArena.pic.twitter.com/MWJrQmcbXv,SacramentoKings,LAClippers,"['Kings fall 111-104 in the final Home Opener at @SleepTrainArena.pic.twitter.com/MWJrQmcbXv', '@SacramentoKings Good game guys!pic.twitter.com/ArbxxoyzCu', ""@LAClippers until we meet again! Great game, y'all.""]",3,"['28 Oct 2015', '28 Oct 2015', '28 Oct 2015']","['Sacramen2 Kings', 'LA Clippers', 'Sacramen2 Kings']","['@SacramentoKings', '@LAClippers', '@SacramentoKings']"
2946,"Ready to watch the best bigs in the NBA face off?
RT for DeMarcus Cousins
RT for Marc GasoI
#NBAVote",SacramentoKings,MemGrizz,"['Ready to watch the best bigs in the NBA face off?\nRT for DeMarcus Cousins\nRT for Marc GasoI\n#NBAVote', 'we see you with the capital ""i"" smh', ""Not sure what you're talking about guys. We're just trying to show our support. Marc GasoI #NBAVote""]",3,"['31 Dec 2016', '31 Dec 2016', '31 Dec 2016']","['Sacramen2 Kings', 'Memphis Grizzlies', 'Sacramen2 Kings']","['@SacramentoKings', '@memgrizz', '@SacramentoKings']"
1583,The NBA is doing #StarWars night right. I've only seen @nuggets @memgrizz and @Suns so far - but everyone is having fun wih it. Nice work,Suns,nuggets,"[""The NBA is doing #StarWars night right. I've only seen @nuggets @memgrizz and @Suns so far - but everyone is having fun wih it. Nice work"", '@MWCoyote @memgrizz @Suns Do. Or do not. There is no try.', '@nuggets @MWCoyote @memgrizzpic.twitter.com/J8dxf5BUJ6']",3,"['11 Dec 2015', '11 Dec 2015', '11 Dec 2015']","['Matt Wiley', 'Denver Nuggets', 'Phoen1x Šuns']","['@MWCoyote', '@nuggets', '@Suns']"
1585,"You're welcome, @nuggets. #TheStarterspic.twitter.com/jxTwMFHMmB",Suns,nuggets,"[""You're welcome, @nuggets. #TheStarterspic.twitter.com/jxTwMFHMmB"", ""@treykerby it's official: we love you."", ""@nuggets @treykerby That makes one of us. We're just glad Trey didn't inhale all the water in the container.""]",3,"['18 May 2015', '18 May 2015', '18 May 2015']","['Taco Trey Kerby', 'Denver Nuggets', 'Phoen1x Šuns']","['@treykerby', '@nuggets', '@Suns']"
2738,"The ""LeBron James kid"" and @kingjames prior to tip-off!pic.twitter.com/OYBrdpbhJf",SacramentoKings,cavs,"['The ""LeBron James kid"" and @kingjames prior to tip-off!pic.twitter.com/OYBrdpbhJf', '@SacramentoKingspic.twitter.com/25i92VlnzY', '@cavshttps://vine.co/v/ibJTqOIMrzP\xa0']",3,"['9 Mar 2016', '9 Mar 2016', '9 Mar 2016']","['Sacramen2 Kings', 'Cleveland Cavaliers', 'Sacramen2 Kings']","['@SacramentoKings', '@cavs', '@SacramentoKings']"
1571,It's go time on #StarWarsNight. Are you ready? #SunsVsCeltics starts now on @FOXSportsAZ Pluspic.twitter.com/PbYkeOq18m,Suns,UtahJazz,"[""It's go time on #StarWarsNight. Are you ready? #SunsVsCeltics starts now on @FOXSportsAZ Pluspic.twitter.com/PbYkeOq18m"", '@Suns May the Force be with you', '@utahjazz And also with you.pic.twitter.com/jIfGXSObyK']",3,"['23 Feb 2015', '23 Feb 2015', '23 Feb 2015']","['Phoen1x Šuns', 'Utah Jazz', 'Phoen1x Šuns']","['@Suns', '@utahjazz', '@Suns']"
2174,"...
RT @Bucks: !!! RT @ATLHawks: ...",ATLHawks,Bucks,"['...\n\nRT @Bucks: !!! RT @ATLHawks: ...', ""@ATLHawks there's a lot of game left and all that jazz..."", ""@Bucks Promise you're not saying that just because you're supposed to?""]",3,"['26 Dec 2014', '26 Dec 2014', '26 Dec 2014']","['Atlanta Hawks', 'Milwaukee Bucks', 'Atlanta Hawks']","['@ATLHawks', '@Bucks', '@ATLHawks']"
1557,.@ATolliver44 from DEEP! #SunsAtClippers,Suns,LAClippers,"['.@ATolliver44 from DEEP! #SunsAtClippers', ""@Suns It wasn't that deep!"", ""@LAClippers We'll ask him to take a few steps back next time.""]",3,"['8 Dec 2014', '8 Dec 2014', '8 Dec 2014']","['Phoen1x Šuns', 'LA Clippers', 'Phoen1x Šuns']","['@Suns', '@LAClippers', '@Suns']"
3267,"He's not the same Mason you saw in the playoffs, @LAClipperspic.twitter.com/2PCV4TzmEu",trailblazers,LAClippers,"[""He's not the same Mason you saw in the playoffs, @LAClipperspic.twitter.com/2PCV4TzmEu"", ' Ummm new handle Who Dis...?@trailblazers', 'promise not to delete any tweets tonight?https://www.msn.com/en-us/sports/nba/clippers-delete-poll-tweet-after-getting-burned-by-trail-blazers/ar-AAiqk3f?li=BBnba9I\xa0…']",3,"['27 Oct 2016', '27 Oct 2016', '27 Oct 2016']","['Trail Blazers', 'LA Clippers', 'Trail Blazers']","['@trailblazers', '@LAClippers', '@trailblazers']"
2201,"Paul Millsap's birthday so far:
4-4
12 pointspic.twitter.com/BPsMZ5ZasX",ATLHawks,SacramentoKings,"[""Paul Millsap's birthday so far:\n\n4-4\n12 pointspic.twitter.com/BPsMZ5ZasX"", 'Someone call an ambulance, this guy is on \n32 never looked so good!', '1 of 2 guys on the court tonight who has been selected to at least 3 straight All Star games. The other is really good too.']",3,"['10 Feb 2017', '10 Feb 2017', '10 Feb 2017']","['Atlanta Hawks', 'Sacramen2 Kings', 'Atlanta Hawks']","['@ATLHawks', '@SacramentoKings', '@ATLHawks']"
2453,The Karate Kidd #NBAMoviespic.twitter.com/8kXH6cPtXi,Bucks,Hornets,"['The Karate Kidd #NBAMoviespic.twitter.com/8kXH6cPtXi', '@Bucks The fact that you made him Mr. Miyagi just makes it 20 times better...', '@hornets why thank you!']",3,"['20 Aug 2014', '20 Aug 2014', '20 Aug 2014']","['Milwaukee Bucks', 'Charlotte Hornets', 'Milwaukee Bucks']","['@Bucks', '@hornets', '@Bucks']"
2938,"Down 11, time to bring in the secret weapon #nevergiveuppic.twitter.com/ERKioQwziL",SacramentoKings,MemGrizz,"['Down 11, time to bring in the secret weapon #nevergiveuppic.twitter.com/ERKioQwziL', 'that is a very good dog', 'the goodest']",3,"['4 Nov 2017', '4 Nov 2017', '4 Nov 2017']","['Sacramen2 Kings', 'Memphis Grizzlies', 'Sacramen2 Kings']","['@SacramentoKings', '@memgrizz', '@SacramentoKings']"
2752,LET'S GOOOOhttps://twitter.com/NBASummerLeague/status/752678369108434944 …,SacramentoKings,PelicansNBA,"[""LET'S GOOOOhttps://twitter.com/NBASummerLeague/status/752678369108434944\xa0…"", ""@NBASummerLeague @buddyhield @SacramentoKings Let's Geaux Pelicans"", '@NUTTKAZE @PelicansNBApic.twitter.com/huN1N4UBXe']",3,"['11 Jul 2016', '11 Jul 2016', '11 Jul 2016']","['New Orleans Pelicans', 'NUTT KAZE SOLOMON', 'Sacramen2 Kings']","['@PelicansNBA', '@NUTTKAZESOLOMON', '@SacramentoKings']"
2339,"Yeah, this is ridiculous. https://twitter.com/harrisonwind/status/904010044336779266 …",MemGrizz,nuggets,"['Yeah, this is ridiculous. https://twitter.com/harrisonwind/status/904010044336779266\xa0…', 'Centers drop the best dimes.pic.twitter.com/GsgxUKyGL6', 'Can confirm ']",3,"['2 Sep 2017', '2 Sep 2017', '2 Sep 2017']","['Memphis Grizzlies', 'Denver Nuggets', 'Memphis Grizzlies']","['@memgrizz', '@nuggets', '@memgrizz']"
1914,Brook Lo-PEZ! #NBASweets @BrooklynNetspic.twitter.com/ZbaYpE39pN,ATLHawks,BrooklynNets,"['Brook Lo-PEZ! #NBASweets @BrooklynNetspic.twitter.com/ZbaYpE39pN', 'We see what you did there... RT @MikeKing00: Brook Lo-PEZ! #NBASweets @BrooklynNetspic.twitter.com/srWf9BminL', '@BrooklynNets Very nice!']",3,"['6 Aug 2014', '6 Aug 2014', '6 Aug 2014']","['Mike King', 'Brooklyn Nets', 'Atlanta Hawks']","['@MikeKing00', '@BrooklynNets', '@ATLHawks']"
2195,Final from San Antonio:pic.twitter.com/WaGJIU1Ins,ATLHawks,SacramentoKings,"['Final from San Antonio:pic.twitter.com/WaGJIU1Ins', 'That bus is really making it everywhere today.https://twitter.com/SacramentoKings/status/932814179097985024\xa0…', 'Wonder what the gas mileage is on that thing...']",3,"['20 Nov 2017', '20 Nov 2017', '20 Nov 2017']","['Atlanta Hawks', 'Sacramen2 Kings', 'Atlanta Hawks']","['@ATLHawks', '@SacramentoKings', '@ATLHawks']"
2649,We The North is our battle cry ... And this ... this is our shield.http://youtu.be/wUQnl_nnOGs ,Raptors,BrooklynNets,"['We The North is our battle cry ... And this ... this is our shield.http://youtu.be/wUQnl_nnOGs\xa0', '.@Raptors Looks familiar', '@BrooklynNets #WetheNorthpic.twitter.com/UUPCUA8dX9']",3,"['19 Dec 2014', '19 Dec 2014', '19 Dec 2014']","['Toronto Raptors', 'Brooklyn Nets', 'Toronto Raptors']","['@Raptors', '@BrooklynNets', '@Raptors']"
3260,Anyone else waiting for the #NBASchedule release like this?pic.twitter.com/kIBSXy5oYx,trailblazers,DallasMavs,"['Anyone else waiting for the #NBASchedule release like this?pic.twitter.com/kIBSXy5oYx', '@dallasmavs the wait has us like:pic.twitter.com/HCeq3cTuB9', '@MNTimberwolves @dallasmavs we were a little more emotional.pic.twitter.com/eeTrhrq8jS']",3,"['12 Aug 2014', '12 Aug 2014', '12 Aug 2014']","['Dallas Mavericks', 'Timberwolves', 'Trail Blazers']","['@dallasmavs', '@Timberwolves', '@trailblazers']"
3257,pic.twitter.com/f8lCR8NSVc,trailblazers,DallasMavs,"['pic.twitter.com/f8lCR8NSVc', '@trailblazers pic.twitter.com/Obf8OC69eo', '@dallasmavs sorry for your loss.']",3,"['11 Jul 2015', '11 Jul 2015', '11 Jul 2015']","['Trail Blazers', 'Dallas Mavericks', 'Trail Blazers']","['@trailblazers', '@dallasmavs', '@trailblazers']"
2654,".@OrlandoMagic @Real_T_Mac Hmm, looks familiar.https://amp.twimg.com/v/953463da-1baa-406c-9ddd-c667c2645aa9 …",Raptors,OrlandoMagic,"['.@OrlandoMagic @Real_T_Mac Hmm, looks familiar.https://amp.twimg.com/v/953463da-1baa-406c-9ddd-c667c2645aa9\xa0…', '@Raptors @Real_T_Mac Ouch, Raptors.pic.twitter.com/Fpa2qHzaTE', '@OrlandoMagic @Real_T_Mac We play for keeps.pic.twitter.com/SL6nTpEOpS']",3,"['12 Feb 2016', '12 Feb 2016', '12 Feb 2016']","['Toronto Raptors', 'Orlando Magic', 'Toronto Raptors']","['@Raptors', '@OrlandoMagic', '@Raptors']"
2945,When you're dressed for the game but it doesn't start for 9 hours... pic.twitter.com/5ae7Wiaacl,SacramentoKings,MemGrizz,"[""When you're dressed for the game but it doesn't start for 9 hours... pic.twitter.com/5ae7Wiaacl"", 'good dog', 'v good dog ']",3,"['18 Jan 2017', '18 Jan 2017', '18 Jan 2017']","['Sacramen2 Kings', 'Memphis Grizzlies', 'Sacramen2 Kings']","['@SacramentoKings', '@memgrizz', '@SacramentoKings']"
1556,So the @LAClippers tweeted my buddy @Tonziilla and the @Suns followed me today... safe to say its a good sports Friday for the both of us!,Suns,LAClippers,"['So the @LAClippers tweeted my buddy @Tonziilla and the @Suns followed me today... safe to say its a good sports Friday for the both of us!', '@BMurray6 We remember when the @Suns first followed us too.. best day ever! ', '@LAClippers @BMurray6 Wait,we followed you? We probably should go back and check that. #JustKidding']",3,"['17 Jul 2015', '17 Jul 2015', '17 Jul 2015']","['Billy Murray', 'LA Clippers', 'Phoen1x Šuns']","['@BMurray6', '@LAClippers', '@Suns']"
2765,Are you two the same person... #NIKExNBApic.twitter.com/4AeB9MjCDd,SacramentoKings,Timberwolves,"['Are you two the same person... #NIKExNBApic.twitter.com/4AeB9MjCDd', ""We're all here to make a Statement "", 'apparently the same one ']",3,"['15 Sep 2017', '15 Sep 2017', '15 Sep 2017']","['Sacramen2 Kings', 'Timberwolves', 'Sacramen2 Kings']","['@SacramentoKings', '@Timberwolves', '@SacramentoKings']"
2905,Seth Curry trending in the United Statespic.twitter.com/gx03WSlEnv,SacramentoKings,warriors,"['Seth Curry trending in the United Statespic.twitter.com/gx03WSlEnv', ""@SacramentoKings them Curry boys are up to somethin'"", '@warriors can yours not be up to anything tomorrow though?']",3,"['6 Nov 2015', '6 Nov 2015', '6 Nov 2015']","['Sacramen2 Kings', 'Golden State Warriors', 'Sacramen2 Kings']","['@SacramentoKings', '@warriors', '@SacramentoKings']"
2275,Don't forget to wear your special #SolarEclipse glasses today! pic.twitter.com/uZcgHF6la3,MemGrizz,BrooklynNets,"[""Don't forget to wear your special #SolarEclipse glasses today! pic.twitter.com/uZcgHF6la3"", 'Ready for this pic.twitter.com/pI1vyAWvy4', 'Make sure you get the right kind! ']",3,"['21 Aug 2017', '21 Aug 2017', '21 Aug 2017']","['Memphis Grizzlies', 'Brooklyn Nets', 'Memphis Grizzlies']","['@memgrizz', '@BrooklynNets', '@memgrizz']"
2829,"From MJ to LBJ, Kings players share their favorite playoff memories.
Gallery » http://spr.ly/6010AaCi pic.twitter.com/0EyNyvIxMb",SacramentoKings,UtahJazz,"['From MJ to LBJ, Kings players share their favorite playoff memories.\n\nGallery » http://spr.ly/6010AaCi\xa0pic.twitter.com/0EyNyvIxMb', '@SacramentoKings Ugh, did you have to use that picture? ', '@utahjazz To be fair, this one is also in there...pic.twitter.com/uMg3BbWhGv']",3,"['6 May 2015', '6 May 2015', '6 May 2015']","['Sacramen2 Kings', 'Utah Jazz', 'Sacramen2 Kings']","['@SacramentoKings', '@utahjazz', '@SacramentoKings']"
2866,Spurs take the lead 69-68 after a three-point play from Kawhi!,SacramentoKings,spurs,"['Spurs take the lead 69-68 after a three-point play from Kawhi!', 'OH MY KAWHI!!!', 'Yo can he stop pls']",3,"['27 Oct 2016', '27 Oct 2016', '27 Oct 2016']","['San Antonio Spurs', 'San Antonio Spurs', 'Sacramen2 Kings']","['@spurs', '@spurs', '@SacramentoKings']"
2606,"Who are the next Bucks rivals?
@alexboeder examines » http://on.nba.com/1UQWEeb pic.twitter.com/j7sZA3MPtJ",Bucks,Sixers,"['Who are the next Bucks rivals?\n\n@alexboeder examines » http://on.nba.com/1UQWEeb\xa0pic.twitter.com/j7sZA3MPtJ', '@Bucks @alexboederpic.twitter.com/FS72kE23er', ""@Sixers he won't be there to help you next time we're in the ECF.""]",3,"['18 Aug 2015', '18 Aug 2015', '18 Aug 2015']","['Milwaukee Bucks', 'Philadelphia 76ers', 'Milwaukee Bucks']","['@Bucks', '@sixers', '@Bucks']"
2629,Thank you Milwaukee for our second sell out of the season!! Let’s do this again next week!! #OwnTheFuture,Bucks,trailblazers,"['Thank you Milwaukee for our second sell out of the season!! Let’s do this again next week!! #OwnTheFuture', ""@Bucks you're welcome?"", '@trailblazers come back soon! Free tomorrow?']",3,"['31 Jan 2015', '31 Jan 2015', '31 Jan 2015']","['Milwaukee Bucks', 'Trail Blazers', 'Milwaukee Bucks']","['@Bucks', '@trailblazers', '@Bucks']"
3386,GIMME DATpic.twitter.com/YywhpSu6Te,trailblazers,MemGrizz,"['GIMME DATpic.twitter.com/YywhpSu6Te', 'this was kinda rude tbh', ""we will not apologize for CJ's interior presence""]",3,"['6 Nov 2016', '6 Nov 2016', '6 Nov 2016']","['Trail Blazers', 'Memphis Grizzlies', 'Trail Blazers']","['@trailblazers', '@memgrizz', '@trailblazers']"
2269,"do y'all ever miss from 3? Asking for a friend, @okcthunder",MemGrizz,okcthunder,"[""do y'all ever miss from 3? Asking for a friend, @okcthunder"", 'New phone. Who dis?', ""hey there! We thought you'd never answer.""]",3,"['Feb 11 2018', 'Feb 11 2018', 'Feb 11 2018']","['Memphis Grizzlies', 'OKC THUNDER', 'Memphis Grizzlies']","['@memgrizz', '@okcthunder', '@memgrizz']"
1961,And again...https://twitter.com/atlhawks/status/958138937796648966 …,ATLHawks,Timberwolves,"['And again...https://twitter.com/atlhawks/status/958138937796648966\xa0…', '-_-', 'Sorry bruh.']",3,"['Jan 29 2018', 'Jan 29 2018', 'Jan 29 2018']","['Atlanta Hawks', 'Timberwolves', 'Atlanta Hawks']","['@ATLHawks', '@Timberwolves', '@ATLHawks']"
3381,Us > thempic.twitter.com/l69RPM0ncG,trailblazers,MemGrizz,"['Us > thempic.twitter.com/l69RPM0ncG', 'alternate factspic.twitter.com/j5zwFVFi6q', 'well played.']",3,"['27 Jan 2017', '27 Jan 2017', '27 Jan 2017']","['Trail Blazers', 'Memphis Grizzlies', 'Trail Blazers']","['@trailblazers', '@memgrizz', '@trailblazers']"
2262,"A Blazers lead at halftime means we will be tweeting with the @trailblazers logo for Q3.
Sometimes you lose bets while in Vegas...",ATLHawks,trailblazers,"['A Blazers lead at halftime means we will be tweeting with the @trailblazers logo for Q3.\n\nSometimes you lose bets while in Vegas...', ""@ATLHawks @trailblazers Next time be real adventurous and allow the other team's social person to run both accounts. #MakeItInteresting"", '@Suns @trailblazers We suggested it actually!']",3,"['15 Jul 2014', '15 Jul 2014', '15 Jul 2014']","['Atlanta Hawks', 'Phoen1x Šuns', 'Atlanta Hawks']","['@ATLHawks', '@Suns', '@ATLHawks']"
2631,The BMOHBC straight poppin off @Bucks,Bucks,trailblazers,"['The BMOHBC straight poppin off @Bucks', '@mattheinen1 @Bucks those beanies must be legit', '@trailblazers @mattheinen1 we got dunks and stuff too.']",3,"['31 Jan 2015', '31 Jan 2015', '31 Jan 2015']","['mathew', 'Trail Blazers', 'Milwaukee Bucks']","['@mattheinen1', '@trailblazers', '@Bucks']"
1948,We're celebrating #21 on the 21st of each month leading up to @DWilkins21's statue unveiling in March!,ATLHawks,OrlandoMagic,"[""We're celebrating #21 on the 21st of each month leading up to @DWilkins21's statue unveiling in March!"", '@ATLHawks Show him some love from us!pic.twitter.com/eMMZ0LZyfQ', '@OrlandoMagic Thanks, we will! ']",3,"['21 Nov 2014', '21 Nov 2014', '21 Nov 2014']","['Atlanta Hawks', 'Orlando Magic', 'Atlanta Hawks']","['@ATLHawks', '@OrlandoMagic', '@ATLHawks']"
3399,"You asked, we delivered...https://twitter.com/trailblazers/status/925214176141647873 …",trailblazers,Raptors,"['You asked, we delivered...https://twitter.com/trailblazers/status/925214176141647873\xa0…', 'A ""lil"" gift from @Raptors & our friends @DoritosCanada.\n\nEat \'em quick before customs.pic.twitter.com/iXwmU29Yqo', 'Chips made it through customs no problem']",3,"['Feb 2 2018', 'Feb 2 2018', 'Feb 3 2018']","['Toronto Raptors', 'Toronto Raptors', 'Trail Blazers']","['@Raptors', '@Raptors', '@trailblazers']"
2637,"Days Till The #BucksOpener!!
Get Tickets » http://bit.ly/BucksOpener15 pic.twitter.com/ksZqKBs7P8",Bucks,trailblazers,"['Days Till The #BucksOpener!!\n\nGet Tickets » http://bit.ly/BucksOpener15\xa0pic.twitter.com/ksZqKBs7P8', '@Bucks Joel!', '@trailblazers young Pryz!']",3,"['22 Oct 2015', '22 Oct 2015', '22 Oct 2015']","['Milwaukee Bucks', 'Trail Blazers', 'Milwaukee Bucks']","['@Bucks', '@trailblazers', '@Bucks']"
2282,"Yo, @PelicansNBA can you check our basket? Something's wrong with it.",MemGrizz,PelicansNBA,"[""Yo, @PelicansNBA can you check our basket? Something's wrong with it."", 'Just sent our guy to check it out. He said all good pic.twitter.com/pK4AKrnJUU', 'this is terrifying']",3,"['Jan 20 2018', 'Jan 20 2018', 'Jan 20 2018']","['Memphis Grizzlies', 'New Orleans Pelicans', 'Memphis Grizzlies']","['@memgrizz', '@PelicansNBA', '@memgrizz']"
1408,E'Twaun Moore is on track to score 80 points tonight.,chicagobulls,SacramentoKings,"[""E'Twaun Moore is on track to score 80 points tonight."", '@chicagobulls .............', '@SacramentoKings just spitting facts over here']",3,"['3 Feb 2016', '3 Feb 2016', '3 Feb 2016']","['Chicago Bulls', 'Sacramen2 Kings', 'Chicago Bulls']","['@chicagobulls', '@SacramentoKings', '@chicagobulls']"
2624,"Fall is here, basketball is near & we're like....pic.twitter.com/WxyuHuIZrI",Bucks,trailblazers,"[""Fall is here, basketball is near & we're like....pic.twitter.com/WxyuHuIZrI"", '@spurs we still have two days left in summer up here.pic.twitter.com/aIumKsPEUG', "".@trailblazers @spurs We're just trying to soak up these last two days like...pic.twitter.com/AEmNyoci0v""]",3,"['21 Sep 2015', '21 Sep 2015', '21 Sep 2015']","['San Antonio Spurs', 'Trail Blazers', 'Milwaukee Bucks']","['@spurs', '@trailblazers', '@Bucks']"
2833,#TBT Found on @YouTube: @UtahJazz feature on cowbells at ARCO Arena! https://amp.twimg.com/v/7c0387db-f678-4b46-a449-53cf59a05e27 …,SacramentoKings,UtahJazz,"['#TBT Found on @YouTube: @UtahJazz feature on cowbells at ARCO Arena! https://amp.twimg.com/v/7c0387db-f678-4b46-a449-53cf59a05e27\xa0…', '@SacramentoKings Nice find, too funny #morecowbellpic.twitter.com/hi3Sj5V3vM', '@utahjazzpic.twitter.com/XuypT7MU1f']",3,"['7 May 2015', '7 May 2015', '7 May 2015']","['Sacramen2 Kings', 'Utah Jazz', 'Sacramen2 Kings']","['@SacramentoKings', '@utahjazz', '@SacramentoKings']"
1411,"Solid first quarter here @UnitedCenter!
Butler: 9pts/2ast/2rb
Zipser/Wade: 5ptspic.twitter.com/3XmMKc0br0",chicagobulls,SacramentoKings,"['Solid first quarter here @UnitedCenter!\n \nButler: 9pts/2ast/2rb\nZipser/Wade: 5ptspic.twitter.com/3XmMKc0br0', ""so y'all still just gonna use our old logo smh"", 'we thought it was 2000s night for a second there']",3,"['21 Jan 2017', '21 Jan 2017', '21 Jan 2017']","['Chicago Bulls', 'Sacramen2 Kings', 'Chicago Bulls']","['@chicagobulls', '@SacramentoKings', '@chicagobulls']"
2625,What's #NationalDogDay without the BIG DOG!?!https://amp.twimg.com/v/ce28cf23-595e-475e-b877-926f64f6e7b3 …,Bucks,trailblazers,"[""What's #NationalDogDay without the BIG DOG!?!https://amp.twimg.com/v/ce28cf23-595e-475e-b877-926f64f6e7b3\xa0…"", '@Bucks well played.', '@trailblazers why thank you Rip City.']",3,"['26 Aug 2015', '26 Aug 2015', '26 Aug 2015']","['Milwaukee Bucks', 'Trail Blazers', 'Milwaukee Bucks']","['@Bucks', '@trailblazers', '@Bucks']"
3420,"good game, @sixers",trailblazers,Sixers,"['good game, @sixers', 'Happy Thanksgiving, @trailblazers. ', 'you too ']",3,"['22 Nov 2017', '22 Nov 2017', '22 Nov 2017']","['Trail Blazers', 'Philadelphia 76ers', 'Trail Blazers']","['@trailblazers', '@sixers', '@trailblazers']"
3415,BLAZERS WIN! BLAZERS WIN!pic.twitter.com/kSg4jUStDt,trailblazers,SacramentoKings,"['BLAZERS WIN! BLAZERS WIN!pic.twitter.com/kSg4jUStDt', ""good game, y'all."", 'word.']",3,"['11 Nov 2016', '11 Nov 2016', '11 Nov 2016']","['Trail Blazers', 'Sacramen2 Kings', 'Trail Blazers']","['@trailblazers', '@SacramentoKings', '@trailblazers']"
2322,Down to the wire! #MEM: 90 #UTA: 88 | 42.7 remaining in the game!,MemGrizz,UtahJazz,"['Down to the wire! #MEM: 90 #UTA: 88 | 42.7 remaining in the game!', '@memgrizz You know you want this to go to OT! ', '@utahjazz haha, we cool.']",3,"['4 Mar 2016', '4 Mar 2016', '4 Mar 2016']","['Memphis Grizzlies', 'Utah Jazz', 'Memphis Grizzlies']","['@memgrizz', '@utahjazz', '@memgrizz']"
3411,Caption this.pic.twitter.com/dokHnb501a,trailblazers,SacramentoKings,"['Caption this.pic.twitter.com/dokHnb501a', '@trailblazers ""they\'re showing Boogie\'s highlights from last night""', '@SacramentoKings followed by the final score ']",3,"['26 Jan 2016', '26 Jan 2016', '26 Jan 2016']","['Trail Blazers', 'Sacramen2 Kings', 'Trail Blazers']","['@trailblazers', '@SacramentoKings', '@trailblazers']"
1414,For the 2nd title!pic.twitter.com/KoVV6dI5od,chicagobulls,trailblazers,"['For the 2nd title!pic.twitter.com/KoVV6dI5od', '*eyeroll*', '¯\\_(ツ)_/¯']",3,"['14 Jun 2017', '14 Jun 2017', '14 Jun 2017']","['Chicago Bulls', 'Trail Blazers', 'Chicago Bulls']","['@chicagobulls', '@trailblazers', '@chicagobulls']"
1416,Jimmy G...you already know what the G stands for!,chicagobulls,trailblazers,"['Jimmy G...you already know what the G stands for!', 'G...onna stop scoring so much?', 'pic.twitter.com/44IQHA816z']",3,"['15 Nov 2016', '15 Nov 2016', '15 Nov 2016']","['Chicago Bulls', 'Trail Blazers', 'Chicago Bulls']","['@chicagobulls', '@trailblazers', '@chicagobulls']"
3406,"Hey @Raptors fans, let's be friends.
Technically #WeTheNorthToo.pic.twitter.com/7SiUhpT2y9",trailblazers,Raptors,"[""Hey @Raptors fans, let's be friends.\n\nTechnically #WeTheNorthToo.pic.twitter.com/7SiUhpT2y9"", ""@trailblazers @Raptors oh, so you're just going to forget about us..."", '@MNTimberwolves @Raptors brb gonna remake the graphic.pic.twitter.com/O5w2rAkalr']",3,"['30 Dec 2014', '30 Dec 2014', '30 Dec 2014']","['Trail Blazers', 'Timberwolves', 'Trail Blazers']","['@trailblazers', '@Timberwolves', '@trailblazers']"
2285,"It's a close one, Grizz Nation. Tie game with 1:03 left.
Just a reminder to breathe. #GrindCity",MemGrizz,PelicansNBA,"[""It's a close one, Grizz Nation. Tie game with 1:03 left. \n\nJust a reminder to breathe. #GrindCity"", '', 'you breathe too.']",3,"['2 Nov 2016', '2 Nov 2016', '2 Nov 2016']","['Memphis Grizzlies', 'New Orleans Pelicans', 'Memphis Grizzlies']","['@memgrizz', '@PelicansNBA', '@memgrizz']"
2255,KYLE. KORVER!pic.twitter.com/9pCIaxnpBd,ATLHawks,trailblazers,"['KYLE. KORVER!pic.twitter.com/9pCIaxnpBd', '@ATLHawks well played.', '@trailblazers Thanks! Admirable that you took a break from all that first half scoring to give us a shoutout.']",3,"['12 Nov 2014', '12 Nov 2014', '12 Nov 2014']","['Atlanta Hawks', 'Trail Blazers', 'Atlanta Hawks']","['@ATLHawks', '@trailblazers', '@ATLHawks']"
1944,"Quick: Favorite moment of the 2015-16 season at @AmwayCenter? Go . . .
#MagicSixthMan",ATLHawks,OrlandoMagic,"['Quick: Favorite moment of the 2015-16 season at @AmwayCenter? Go . . .\n\n#MagicSixthMan', '@OrlandoMagic @NikolaVucevic game winner against the @ATLHawks!', '@wright_way97 @OrlandoMagic @NikolaVucevicpic.twitter.com/2yrRxLMnYt']",3,"['11 Apr 2016', '11 Apr 2016', '11 Apr 2016']","['Orlando Magic', 'Brenden', 'Atlanta Hawks']","['@OrlandoMagic', '@wright_way97', '@ATLHawks']"
2252,Ball movement is good. Ball movement in transition is https://vine.co/v/iKF9d92mlYQ ,ATLHawks,trailblazers,"['Ball movement is good. Ball movement in transition is https://vine.co/v/iKF9d92mlYQ\xa0', ""@ATLHawks you're welcome"", ""@trailblazers We're gonna be thanking you a lot.""]",3,"['21 Dec 2015', '21 Dec 2015', '21 Dec 2015']","['Atlanta Hawks', 'Trail Blazers', 'Atlanta Hawks']","['@ATLHawks', '@trailblazers', '@ATLHawks']"
1497,"Mmhm....@sixers @Suns @PelicansNBA On your @StarWars Night, May the force be w/ you. #GrizzYoda #GrizzStarWarsNightpic.twitter.com/XJ7iN4cfal",Suns,PelicansNBA,"['Mmhm....@sixers @Suns @PelicansNBA On your @StarWars Night, May the force be w/ you. #GrizzYoda #GrizzStarWarsNightpic.twitter.com/XJ7iN4cfal', '.@memgrizz @Suns @PelicansNBA @StarWars Hey right back at yous.pic.twitter.com/71BZJHM3zZ', '@Sixers @memgrizz @PelicansNBA @starwarspic.twitter.com/ZRvUn5R1Dq']",3,"['11 Dec 2015', '11 Dec 2015', '11 Dec 2015']","['Memphis Grizzlies', 'Philadelphia 76ers', 'Phoen1x Šuns']","['@memgrizz', '@sixers', '@Suns']"
3347,3J from San Fransiscopic.twitter.com/rAXNNuQKEp,trailblazers,warriors,"['3J from San Fransiscopic.twitter.com/rAXNNuQKEp', '@trailblazers San Francisco*', ""@warriors sry we're not from around here""]",3,"['11 Mar 2016', '11 Mar 2016', '11 Mar 2016']","['Trail Blazers', 'Golden State Warriors', 'Trail Blazers']","['@trailblazers', '@warriors', '@trailblazers']"
2589,"@ATLHawks start their 6-game #roadtrip tonight against the @Bucks
Who's your choice for tonights game?
#LoveOfTheGame",Bucks,ATLHawks,"[""@ATLHawks start their 6-game #roadtrip tonight against the @Bucks \n\nWho's your choice for tonights game?\n\n#LoveOfTheGame"", '@CourtsideUK @Bucks We take the #ATLHawks :)', '@ATLHawks @CourtsideUK we’re going to disagree. #GoBucksGo']",3,"['23 Feb 2013', '23 Feb 2013', '23 Feb 2013']","['CourtsideUK', 'Atlanta Hawks', 'Milwaukee Bucks']","['@CourtsideUK', '@ATLHawks', '@Bucks']"
1501,It's SUNSday! Let's get your #BoldSunsPrediction now before #SunsAtWizards tips off on @FOXSportsAZ at 4 p.m.,Suns,OrlandoMagic,"[""It's SUNSday! Let's get your #BoldSunsPrediction now before #SunsAtWizards tips off on @FOXSportsAZ at 4 p.m."", '@Suns Well played Suns, well played.', ""@OrlandoMagic We're all about the easy puns.""]",3,"['21 Dec 2014', '21 Dec 2014', '21 Dec 2014']","['Phoen1x Šuns', 'Orlando Magic', 'Phoen1x Šuns']","['@Suns', '@OrlandoMagic', '@Suns']"
3003,"Before leaving Pallet Town, Professor Oak made sure we left with proper defense…We chose Chandmander! #NBAPokemonpic.twitter.com/9npzCQyOs0",Sixers,cavs,"['Before leaving Pallet Town, Professor Oak made sure we left with proper defense…We chose Chandmander! #NBAPokemonpic.twitter.com/9npzCQyOs0', '.@dallasmavs Not bad, but when the enemy is weak against a fiery opponent, you really need Charmanderson! #NBAPokemonpic.twitter.com/5iZX5uZVKi', '@cavs @dallasmavs That hair tho…']",3,"['10 Sep 2014', '10 Sep 2014', '10 Sep 2014']","['Dallas Mavericks', 'Cleveland Cavaliers', 'Philadelphia 76ers']","['@dallasmavs', '@cavs', '@sixers']"
2220,"This @BuzzFeed NBA logo quiz is actually pretty hard.
Test your skills: http://bzfd.it/2aWRJr0 pic.twitter.com/6JJju7Z2e3",ATLHawks,Sixers,"['This @BuzzFeed NBA logo quiz is actually pretty hard.\n\nTest your skills: http://bzfd.it/2aWRJr0\xa0pic.twitter.com/6JJju7Z2e3', '.@ATLHawks @BuzzFeed pic.twitter.com/Kr9XWek4OY', ""Don't worry, we'll have a word with them.""]",3,"['10 Aug 2016', '10 Aug 2016', '10 Aug 2016']","['Atlanta Hawks', 'Philadelphia 76ers', 'Atlanta Hawks']","['@ATLHawks', '@sixers', '@ATLHawks']"
2172,Ersan shot 90.9% (!!!) from three over the weekend pic.twitter.com/6fq9rUy6PY,ATLHawks,Bucks,"['Ersan shot 90.9% (!!!) from three over the weekend pic.twitter.com/6fq9rUy6PY', '*Bucks All 50th Team member Ersan Ilyasova', '10-11 from three since being named to that team. Coincidence?pic.twitter.com/52601r4ZVM']",3,"['11 Dec 2017', '11 Dec 2017', '11 Dec 2017']","['Atlanta Hawks', 'Milwaukee Bucks', 'Atlanta Hawks']","['@ATLHawks', '@Bucks', '@ATLHawks']"
1509,43-points off of 25 @Timberwolves turnovers. #SunsVsWolvespic.twitter.com/rKKBtrCCxX,Suns,Timberwolves,"['43-points off of 25 @Timberwolves turnovers. #SunsVsWolvespic.twitter.com/rKKBtrCCxX', '.@Suns ', "".@Timberwolves We can count them as assists if you'd like. #TeamWorkMakesTheDreamWork""]",3,"['13 Dec 2015', '13 Dec 2015', '13 Dec 2015']","['Phoen1x Šuns', 'Timberwolves', 'Phoen1x Šuns']","['@Suns', '@Timberwolves', '@Suns']"
2336,when we do a good tweethttps://twitter.com/gucci1017/status/926143704921989122 …,MemGrizz,nuggets,"['when we do a good tweethttps://twitter.com/gucci1017/status/926143704921989122\xa0…', '', 'pic.twitter.com/95v8Lcyv6F']",3,"['2 Nov 2017', '2 Nov 2017', '2 Nov 2017']","['Memphis Grizzlies', 'Denver Nuggets', 'Memphis Grizzlies']","['@memgrizz', '@nuggets', '@memgrizz']"
2338,"Have a game, Marc!
advance to the semi-finals behind @marcgasol’s HUGE 28p/10r/4a/2b game
#EuroBasketpic.twitter.com/AFXkS8695Y",MemGrizz,nuggets,"['Have a game, Marc!\n\n advance to the semi-finals behind @marcgasol’s HUGE 28p/10r/4a/2b game \n#EuroBasketpic.twitter.com/AFXkS8695Y', 'pic.twitter.com/y8SqWFw5hX', 'FAM!']",3,"['12 Sep 2017', '12 Sep 2017', '12 Sep 2017']","['Memphis Grizzlies', 'Denver Nuggets', 'Memphis Grizzlies']","['@memgrizz', '@nuggets', '@memgrizz']"
1512,"Game day!
@Timberwolves
@TSRarena
7 pm
@FOXSPORTSAZ / FOX Sports Go App
@AZSports
Suns Mobile App
#WeArePHXpic.twitter.com/SkQFjG0fKY",Suns,Timberwolves,"['Game day!\n\n @Timberwolves\n @TSRarena\n 7 pm\n @FOXSPORTSAZ / FOX Sports Go App\n @AZSports\n Suns Mobile App\n\n#WeArePHXpic.twitter.com/SkQFjG0fKY', 'sup? ', 'pic.twitter.com/KegOBYP7xB']",3,"['24 Jan 2017', '24 Jan 2017', '24 Jan 2017']","['Phoen1x Šuns', 'Timberwolves', 'Phoen1x Šuns']","['@Suns', '@Timberwolves', '@Suns']"
3358,Dirk ties the game.pic.twitter.com/ps5tx3jVOW,trailblazers,warriors,"['Dirk ties the game.pic.twitter.com/ps5tx3jVOW', '@trailblazers FREE BASKETBALL!', '@warriors ugh, shouldn’t be.']",3,"['7 Feb 2015', '7 Feb 2015', '7 Feb 2015']","['Trail Blazers', 'Golden State Warriors', 'Trail Blazers']","['@trailblazers', '@warriors', '@trailblazers']"
3367,"Hey @ATLHawks, who do you got in the Skills Challenge?",trailblazers,ATLHawks,"['Hey @ATLHawks, who do you got in the Skills Challenge?', ""@trailblazers When Jeff and Dennis both make the finals, maybe they'll let them split it."", '@ATLHawks fair enough. Just make sure they thank Dame for sitting this one out.pic.twitter.com/9d2SRuXKhJ']",3,"['14 Feb 2015', '14 Feb 2015', '14 Feb 2015']","['Trail Blazers', 'Atlanta Hawks', 'Trail Blazers']","['@trailblazers', '@ATLHawks', '@trailblazers']"
2330,.@MarcGasol hitting threes for @baloncestofeb pic.twitter.com/Ty16xSkEER,MemGrizz,nuggets,"['.@MarcGasol hitting threes for @baloncestofeb pic.twitter.com/Ty16xSkEER', 'Juancho threes and Marc threes pic.twitter.com/BA9jbhgczQ', '']",3,"['5 Sep 2017', '5 Sep 2017', '5 Sep 2017']","['Memphis Grizzlies', 'Denver Nuggets', 'Memphis Grizzlies']","['@memgrizz', '@nuggets', '@memgrizz']"
1461,Can't forget about Lancel and Gret-al! #NBABedtimeStoriespic.twitter.com/TfSiRo5k4w,spurs,ATLHawks,"[""Can't forget about Lancel and Gret-al! #NBABedtimeStoriespic.twitter.com/TfSiRo5k4w"", ""@hornets Lancel - he's so hot right now."", '@ATLHawks we see what you did there.']",3,"['3 Sep 2014', '3 Sep 2014', '3 Sep 2014']","['Charlotte Hornets', 'Atlanta Hawks', 'San Antonio Spurs']","['@hornets', '@ATLHawks', '@spurs']"
1466,PAU GASLpic.twitter.com/omQGjIv419,spurs,MemGrizz,"['PAU GASLpic.twitter.com/omQGjIv419', ""'s must run in the fam pic.twitter.com/5bM5yn6fgl"", 'indeed.pic.twitter.com/0GqlsuUDgh']",3,"['3 Mar 2017', '3 Mar 2017', '3 Mar 2017']","['San Antonio Spurs', 'Memphis Grizzlies', 'San Antonio Spurs']","['@spurs', '@memgrizz', '@spurs']"
1469,.@BeckyHammon & the #SummerSpurs will be back on the court tomorrow night to take on the @Bucks.pic.twitter.com/m49TY8TF5R,spurs,Bucks,"['.@BeckyHammon & the #SummerSpurs will be back on the court tomorrow night to take on the @Bucks.pic.twitter.com/m49TY8TF5R', '@spurs see you then!', '@Bucks ']",3,"['11 Jul 2015', '11 Jul 2015', '11 Jul 2015']","['San Antonio Spurs', 'Milwaukee Bucks', 'San Antonio Spurs']","['@spurs', '@Bucks', '@spurs']"
2634,Do work Delly!! #OwnTheFuturepic.twitter.com/I84Vm7mqOK,Bucks,trailblazers,"['Do work Delly!! #OwnTheFuturepic.twitter.com/I84Vm7mqOK', 'ugh', 'deja vu?']",3,"['7 Dec 2016', '7 Dec 2016', '7 Dec 2016']","['Milwaukee Bucks', 'Trail Blazers', 'Milwaukee Bucks']","['@Bucks', '@trailblazers', '@Bucks']"
2597,Offense tonight feeling like.pic.twitter.com/2O0oAhFfU7,Bucks,SacramentoKings,"['Offense tonight feeling like.pic.twitter.com/2O0oAhFfU7', '@Bucks hey, us too! Can you guys chill though?', ""@SacramentoKings it's your turn thopic.twitter.com/rhRbZ7LZML""]",3,"['25 Nov 2015', '25 Nov 2015', '25 Nov 2015']","['Milwaukee Bucks', 'Sacramen2 Kings', 'Milwaukee Bucks']","['@Bucks', '@SacramentoKings', '@Bucks']"
3360,"Any #TBT photo requests, Rip City?",trailblazers,warriors,"['Any #TBT photo requests, Rip City?', '@trailblazers Steve Kerr!', '@warriors so photogenic.pic.twitter.com/fdTMphG6bk']",3,"['15 Jan 2015', '15 Jan 2015', '15 Jan 2015']","['Trail Blazers', 'Golden State Warriors', 'Trail Blazers']","['@trailblazers', '@warriors', '@trailblazers']"
2669,.@LAClippers And we are all tied up. #RTZpic.twitter.com/xuPolfHwgk,Raptors,LAClippers,"['.@LAClippers And we are all tied up. #RTZpic.twitter.com/xuPolfHwgk', '@Raptors Not for long.pic.twitter.com/TwjNHsqg18', '@LAClippers you were saying?pic.twitter.com/JxDJRZ4TXu']",3,"['24 Jan 2016', '24 Jan 2016', '24 Jan 2016']","['Toronto Raptors', 'LA Clippers', 'Toronto Raptors']","['@Raptors', '@LAClippers', '@Raptors']"
2557,We rewrote the script. #FearTheDeerhttps://twitter.com/warriors/status/675523330720436224 …,Bucks,warriors,"['We rewrote the script. #FearTheDeerhttps://twitter.com/warriors/status/675523330720436224\xa0…', '@Bucks good game, see you at our place on Fridaypic.twitter.com/6bDfFmHqM8', '@warriors deal. See you soon!pic.twitter.com/RFEphfzmvs']",3,"['12 Dec 2015', '12 Dec 2015', '12 Dec 2015']","['Milwaukee Bucks', 'Golden State Warriors', 'Milwaukee Bucks']","['@Bucks', '@warriors', '@Bucks']"
2038,We have a sunglass/shoelace combo up for grabs today. RETWEET for your chance to win it for #FreebieFriday!pic.twitter.com/WxkDuTuQWB,ATLHawks,LAClippers,"['We have a sunglass/shoelace combo up for grabs today. RETWEET for your chance to win it for #FreebieFriday!pic.twitter.com/WxkDuTuQWB', '@ATLHawks do you ship to CA? (Asking for a friend). ', '@LAClippers those glasses WOULD look good on you. Yea, we can work something out.']",3,"['16 Oct 2015', '16 Oct 2015', '16 Oct 2015']","['Atlanta Hawks', 'LA Clippers', 'Atlanta Hawks']","['@ATLHawks', '@LAClippers', '@ATLHawks']"
2725,@CSNAuthentic is clearly on their game when it comes to knowing the difference between the @Raptors and the @trailblazers. #NBApreseasonpic.twitter.com/RpOS75pffF,Raptors,trailblazers,"['@CSNAuthentic is clearly on their game when it comes to knowing the difference between the @Raptors and the @trailblazers. #NBApreseasonpic.twitter.com/RpOS75pffF', ""to be fair, we're both basketball franchises."", 'Close. Only 4223.2 km (2,624.2 miles) apart.']",3,"['21 Oct 2016', '21 Oct 2016', '21 Oct 2016']","['Vintage Playground', 'Trail Blazers', 'Toronto Raptors']","['@vntgplgrnd', '@trailblazers', '@Raptors']"
1716,Gerald Green is heating up! #SunsVs76ers,Suns,Sixers,"['Gerald Green is heating up! #SunsVs76ers', ""@Suns don't"", ""@Sixers We can't help it. you can only hope to contain it. #SunsVs76ers""]",3,"['2 Jan 2015', '2 Jan 2015', '2 Jan 2015']","['Phoen1x Šuns', 'Philadelphia 76ers', 'Phoen1x Šuns']","['@Suns', '@sixers', '@Suns']"
2399,"grit
noun \ ˈgrit \
firmness of mind or spirit : unyielding courage in the face of hardship or dangerpic.twitter.com/VKFsKFmHGA",MemGrizz,Sixers,"['grit\nnoun \\ ˈgrit \\\n\nfirmness of mind or spirit : unyielding courage in the face of hardship or dangerpic.twitter.com/VKFsKFmHGA', '@memgrizz grit?', 'Can confirm']",3,"['25 Oct 2017', '25 Oct 2017', '25 Oct 2017']","['Philadelphia 76ers', 'Matthew Cochran \xa0🦉', 'Memphis Grizzlies']","['@sixers', '@mattmanOVO', '@memgrizz']"
2511,"@MNTimberwolves @Suns @ATLHawks @Sixers @Bucks @spurs @utahjazz Hey guys, looks what's trending... #NBAMoviespic.twitter.com/RD94Zzg501",Bucks,UtahJazz,"[""@MNTimberwolves @Suns @ATLHawks @Sixers @Bucks @spurs @utahjazz Hey guys, looks what's trending... #NBAMoviespic.twitter.com/RD94Zzg501"", ""@warriors @MNTimberwolves @Suns @Sixers @Bucks @spurs @utahjazz It's almost like we're awesome or something..."", '@ATLHawks @warriors @MNTimberwolves @Suns @Sixers @spurs @utahjazz so much fun too!']",3,"['20 Aug 2014', '20 Aug 2014', '20 Aug 2014']","['Golden State Warriors', 'Atlanta Hawks', 'Milwaukee Bucks']","['@warriors', '@ATLHawks', '@Bucks']"
3141,It was a battle.pic.twitter.com/1WMMsJK2GB,Sixers,MemGrizz,"['It was a battle.pic.twitter.com/1WMMsJK2GB', 'it sure was! Good game.', 'right back atchya']",3,"['23 Nov 2016', '23 Nov 2016', '23 Nov 2016']","['Philadelphia 76ers', 'Memphis Grizzlies', 'Philadelphia 76ers']","['@sixers', '@memgrizz', '@sixers']"
2095,"It's been awhile since we've done an NBA #HashtagGame... @Suns @ATLHawks @Sixers @Bucks @spurs @MNTimberwolves @DetroitPistons, you down?",ATLHawks,spurs,"[""It's been awhile since we've done an NBA #HashtagGame... @Suns @ATLHawks @Sixers @Bucks @spurs @MNTimberwolves @DetroitPistons, you down?"", '..@warriors @ATLHawks @Sixers @Bucks @spurs @MNTimberwolves @DetroitPistons https://www.youtube.com/watch?v=2F1bMG9wzXY\xa0…', ""@Suns @warriors @Sixers @Bucks @spurs @MNTimberwolves @DetroitPistons Let's ball!""]",3,"['20 Aug 2014', '20 Aug 2014', '20 Aug 2014']","['Golden State Warriors', 'Phoen1x Šuns', 'Atlanta Hawks']","['@warriors', '@Suns', '@ATLHawks']"
1735,I flew all the way from Portland to see my @Suns beat the @trailblazers!! #gosuns #SunsVsBlazers,Suns,trailblazers,"['I flew all the way from Portland to see my @Suns beat the @trailblazers!! #gosuns #SunsVsBlazers', '@mikeyduran @Suns please stay in Phoenix.', '.@trailblazers @mikeyduran Please do. It never rains here and we appreciate you.']",3,"['27 Mar 2015', '27 Mar 2015', '27 Mar 2015']","['Mikey Duran', 'Trail Blazers', 'Phoen1x Šuns']","['@mikeyduran', '@trailblazers', '@Suns']"
2504,Giannis #OwnTheFuturepic.twitter.com/0gOUfAJzMH,Bucks,UtahJazz,"['Giannis #OwnTheFuturepic.twitter.com/0gOUfAJzMH', ""@Bucks If that wasn't our house, I'd swear that was an 8-foot hoop "", '@utahjazz wingspan for days!']",3,"['1 Mar 2015', '1 Mar 2015', '1 Mar 2015']","['Milwaukee Bucks', 'Utah Jazz', 'Milwaukee Bucks']","['@Bucks', '@utahjazz', '@Bucks']"
2980,#MyIdol pic.twitter.com/RBgAmR5OJc,SacramentoKings,Sixers,"['#MyIdol pic.twitter.com/RBgAmR5OJc', '@SacramentoKingspic.twitter.com/WnhGuqK2Uy', '@Sixers Young AI loves it tho...pic.twitter.com/Tm6b44rhYp']",3,"['23 Apr 2015', '23 Apr 2015', '23 Apr 2015']","['Sacramen2 Kings', 'Philadelphia 76ers', 'Sacramen2 Kings']","['@SacramentoKings', '@sixers', '@SacramentoKings']"
2502,Giannis goes OVER the Stiffel Tower!! #OwnTheFuturehttps://vine.co/v/idU2LLVHjFt ,Bucks,UtahJazz,"['Giannis goes OVER the Stiffel Tower!! #OwnTheFuturehttps://vine.co/v/idU2LLVHjFt\xa0', '@Bucks ', '@utahjazz ¯\\_(ツ)_/¯']",3,"['20 Mar 2016', '20 Mar 2016', '20 Mar 2016']","['Milwaukee Bucks', 'Utah Jazz', 'Milwaukee Bucks']","['@Bucks', '@utahjazz', '@Bucks']"
3145,"THREEEEEE-SAN!
He's 1 point and 2 rebounds away from a double-double in 11 minutes of play.",Sixers,Bucks,"[""THREEEEEE-SAN! \n\nHe's 1 point and 2 rebounds away from a double-double in 11 minutes of play."", ""he's the Turkish Thunder. Don't you ever forget that. "", ""He was... but now he's the Turkish Sixer.""]",3,"['29 Dec 2016', '29 Dec 2016', '29 Dec 2016']","['Philadelphia 76ers', 'Milwaukee Bucks', 'Philadelphia 76ers']","['@sixers', '@Bucks', '@sixers']"
1710,"Jonah did the thing!!!
#CANAANBALLhttps://twitter.com/jonah_brannon/status/942965131318824961 …",Suns,Sixers,"['Jonah did the thing!!!\n\n#CANAANBALLhttps://twitter.com/jonah_brannon/status/942965131318824961\xa0…', 'Did he?', 'I mean... we think he did. Unless. He stoled it? Jonah do you have some explaining to do?']",3,"['18 Dec 2017', '18 Dec 2017', '18 Dec 2017']","['Phoen1x Šuns', 'Philadelphia 76ers', 'Phoen1x Šuns']","['@Suns', '@sixers', '@Suns']"
1709,If @alexlen were on Twitter tonight this is what he'd be doing. #Blocked #SunsVs76erspic.twitter.com/tiYXf3Dhs4,Suns,Sixers,"[""If @alexlen were on Twitter tonight this is what he'd be doing. #Blocked #SunsVs76erspic.twitter.com/tiYXf3Dhs4"", '@Suns Wow rude.', '.@Sixers We go for accuracy. #SunsVs76ers']",3,"['2 Jan 2015', '2 Jan 2015', '2 Jan 2015']","['Phoen1x Šuns', 'Philadelphia 76ers', 'Phoen1x Šuns']","['@Suns', '@sixers', '@Suns']"
2698,"Season recap:
",Raptors,ATLHawks,"['Season recap:\n\n', '@Raptors', 'Knew it. Well played.']",3,"['10 Mar 2017', '10 Mar 2017', '10 Mar 2017']","['Atlanta Hawks', 'Atlanta Hawks', 'Toronto Raptors']","['@ATLHawks', '@ATLHawks', '@Raptors']"
1694,"TOUCHDOWN !
#AirplaneModepic.twitter.com/vnOhcZblVz",Suns,SacramentoKings,"['TOUCHDOWN !\n\n#AirplaneModepic.twitter.com/vnOhcZblVz', ""But Romo's suited up for the Mavs "", '¯\\_(ツ)_/¯']",3,"['11 Apr 2017', '11 Apr 2017', '11 Apr 2017']","['Phoen1x Šuns', 'Sacramen2 Kings', 'Phoen1x Šuns']","['@Suns', '@SacramentoKings', '@Suns']"
2701,Big Eastern Conference showdown tonight in Atlanta. Who wins @ATLHawks vs. @Raptors?pic.twitter.com/8R05QUKUKX,Raptors,ATLHawks,"['Big Eastern Conference showdown tonight in Atlanta. Who wins @ATLHawks vs. @Raptors?pic.twitter.com/8R05QUKUKX', '@NBATV @Raptors Us of course.', '@ATLHawks @NBATV #RTZpic.twitter.com/AdgGYHHPrR']",3,"['20 Feb 2015', '20 Feb 2015', '20 Feb 2015']","['NBA TV', 'Atlanta Hawks', 'Toronto Raptors']","['@NBATV', '@ATLHawks', '@Raptors']"
3164,.@JeramiGrant blockin' Boogiehttps://vine.co/v/iqPmeBFu7zB ,Sixers,SacramentoKings,"["".@JeramiGrant blockin' Boogiehttps://vine.co/v/iqPmeBFu7zB\xa0"", '@Sixers ', '.@SacramentoKings ¯\\_(ツ)_/¯']",3,"['30 Dec 2015', '30 Dec 2015', '30 Dec 2015']","['Philadelphia 76ers', 'Sacramen2 Kings', 'Philadelphia 76ers']","['@sixers', '@SacramentoKings', '@sixers']"
3163,when the game starts at 7:30 and not 7pic.twitter.com/o0bjCVSs5I,Sixers,SacramentoKings,"['when the game starts at 7:30 and not 7pic.twitter.com/o0bjCVSs5I', '@Sixers we feel you.pic.twitter.com/6OFivOADjL', '[email protected]/NtdDMtd9rp']",3,"['15 Mar 2016', '15 Mar 2016', '15 Mar 2016']","['Philadelphia 76ers', 'Sacramen2 Kings', 'Philadelphia 76ers']","['@sixers', '@SacramentoKings', '@sixers']"
2974,Relive Isaiah Cousins' game-winner over Ben Simmons and LSU! #KingsDrafthttps://amp.twimg.com/v/2a2a1502-f06f-4c75-a7e9-05dbbc4ccc6b …,SacramentoKings,Sixers,"[""Relive Isaiah Cousins' game-winner over Ben Simmons and LSU! #KingsDrafthttps://amp.twimg.com/v/2a2a1502-f06f-4c75-a7e9-05dbbc4ccc6b\xa0…"", '[email protected]/nSn3XiLP0g', 'Maybe he can do it again next year!pic.twitter.com/lnc0QIoPK2']",3,"['26 Jun 2016', '26 Jun 2016', '26 Jun 2016']","['Sacramen2 Kings', 'Philadelphia 76ers', 'Sacramen2 Kings']","['@SacramentoKings', '@sixers', '@SacramentoKings']"
2115,Oh hello Ugapic.twitter.com/XtIWtCh27f,ATLHawks,Suns,"['Oh hello Ugapic.twitter.com/XtIWtCh27f', '@ATLHawks We see Uga and raise you Louie the Lumberjack. #SunsCamppic.twitter.com/Ux64FEJpuZ', ""@Suns But your university doesn't have this:pic.twitter.com/1rnt1WwFHG""]",3,"['30 Sep 2014', '30 Sep 2014', '30 Sep 2014']","['Atlanta Hawks', 'Phoen1x Šuns', 'Atlanta Hawks']","['@ATLHawks', '@Suns', '@ATLHawks']"
2702,#Raptors have released their 2014-15 schedule. Full details: http://bit.ly/1t0dTfs #WeTheNorth #RTZpic.twitter.com/Gu5PcD5z9z,Raptors,ATLHawks,"['#Raptors have released their 2014-15 schedule. Full details: http://bit.ly/1t0dTfs\xa0 #WeTheNorth #RTZpic.twitter.com/Gu5PcD5z9z', '@Raptors See you soon :)', '@ATLHawks Get those passports ready.']",3,"['13 Aug 2014', '13 Aug 2014', '13 Aug 2014']","['Toronto Raptors', 'Atlanta Hawks', 'Toronto Raptors']","['@Raptors', '@ATLHawks', '@Raptors']"
3045,#tbt to whatever's going on here.pic.twitter.com/3HbPX69N8F,Sixers,Hornets,"[""#tbt to whatever's going on here.pic.twitter.com/3HbPX69N8F"", '@Sixerspic.twitter.com/d20724i3u8', '@hornetspic.twitter.com/nwGe0OGeLk']",3,"['30 Jul 2015', '30 Jul 2015', '30 Jul 2015']","['Philadelphia 76ers', 'Charlotte Hornets', 'Philadelphia 76ers']","['@sixers', '@hornets', '@sixers']"
2110,"We're in warm, sunny Phoenix for tonight's tip against the @Suns on @FOXSportsSE, #FOXSportsGO and @929TheGame!pic.twitter.com/Fl5UMRPcgI",ATLHawks,Suns,"[""We're in warm, sunny Phoenix for tonight's tip against the @Suns on @FOXSportsSE, #FOXSportsGO and @929TheGame!pic.twitter.com/Fl5UMRPcgI"", ""@ATLHawks You're welcome. >"", '@Suns agreed.pic.twitter.com/C4iLKaK1OG']",3,"['23 Jan 2016', '23 Jan 2016', '23 Jan 2016']","['Atlanta Hawks', 'Phoen1x Šuns', 'Atlanta Hawks']","['@ATLHawks', '@Suns', '@ATLHawks']"
1708,"With @MCW1 a game-time decision, @psufraz23 could get the start. Here's what he had to say: http://on.nba.com/1C1lCvV pic.twitter.com/1MuJGzzEFt",Suns,Sixers,"[""With @MCW1 a game-time decision, @psufraz23 could get the start. Here's what he had to say: http://on.nba.com/1C1lCvV\xa0pic.twitter.com/1MuJGzzEFt"", 'On the surface he looks calm and ready to drop bombs.pic.twitter.com/utnbHFhblG', ""@Sixers Now you've just made us want mom's spaghetti.""]",3,"['6 Feb 2015', '6 Feb 2015', '6 Feb 2015']","['Philadelphia 76ers', 'Philadelphia 76ers', 'Phoen1x Šuns']","['@sixers', '@sixers', '@Suns']"
2469,Captain PlaNATE!! @NateWolters #NBACartoonspic.twitter.com/VL9iPO4BUa,Bucks,DetroitPistons,"['Captain PlaNATE!! @NateWolters #NBACartoonspic.twitter.com/VL9iPO4BUa', '@Bucks Take a bow', '@DetroitPistons thank you, thank you. far too kind.']",3,"['27 Aug 2014', '27 Aug 2014', '27 Aug 2014']","['Milwaukee Bucks', 'Detroit Pistons', 'Milwaukee Bucks']","['@Bucks', '@DetroitPistons', '@Bucks']"
2768,We went from tied to up 5 real quickpic.twitter.com/GokZNsLTpr,SacramentoKings,Timberwolves,"['We went from tied to up 5 real quickpic.twitter.com/GokZNsLTpr', 'chill', 'pic.twitter.com/0aedsjRc7N']",3,"['Feb 11 2018', 'Feb 11 2018', 'Feb 11 2018']","['Sacramen2 Kings', 'Timberwolves', 'Sacramen2 Kings']","['@SacramentoKings', '@Timberwolves', '@SacramentoKings']"
3138,"RC
Give em 15!",Sixers,MemGrizz,"['RC \n\nGive em 15!', 'do we have to', '*whispers* you already did']",3,"['23 Nov 2016', '23 Nov 2016', '23 Nov 2016']","['Philadelphia 76ers', 'Memphis Grizzlies', 'Philadelphia 76ers']","['@sixers', '@memgrizz', '@sixers']"
1795,Ariza already has 4 3FGM. He has now hit 3+ in 3 of the past 5 games and 6 times overall this season. ,HoustonRockets,SacramentoKings,"['Ariza already has 4 3FGM. He has now hit 3+ in 3 of the past 5 games and 6 times overall this season. ', ""y'all wanna tell him to stop?"", ""nah we're enjoying the ""]",3,"['25 Nov 2016', '25 Nov 2016', '25 Nov 2016']","['Houston Rockets', 'Sacramen2 Kings', 'Houston Rockets']","['@HoustonRockets', '@SacramentoKings', '@HoustonRockets']"
1812,Stepping away from the court to send our heartfelt condolences to all those impacted by the tragedy in Orlando. #PrayForOrlando,warriors,OrlandoMagic,"['Stepping away from the court to send our heartfelt condolences to all those impacted by the tragedy in Orlando. #PrayForOrlando', 'Thank you. ', '#NBAFamily ']",3,"['12 Jun 2016', '12 Jun 2016', '12 Jun 2016']","['Golden State Warriors', 'Orlando Magic', 'Golden State Warriors']","['@warriors', '@OrlandoMagic', '@warriors']"
2717,Ok @Sixers you have our attention. #RTZ,Raptors,Sixers,"['Ok @Sixers you have our attention. #RTZ', '.@Raptors ', '.@Sixers Raps respond with a 9-0 run. #RTZpic.twitter.com/H8cI1SXBeI']",3,"['9 Jan 2016', '9 Jan 2016', '9 Jan 2016']","['Toronto Raptors', 'Philadelphia 76ers', 'Toronto Raptors']","['@Raptors', '@sixers', '@Raptors']"
1790,.@kwiltj is automatic from 3! He knocks down a huge one in OT giving the Rockets a 115-112 lead!,HoustonRockets,MemGrizz,"['.@kwiltj is automatic from 3! He knocks down a huge one in OT giving the Rockets a 115-112 lead!', 'tell him to chill pls', 'pic.twitter.com/itZ6fJYkcU']",3,"['15 Oct 2016', '15 Oct 2016', '15 Oct 2016']","['Houston Rockets', 'Memphis Grizzlies', 'Houston Rockets']","['@HoustonRockets', '@memgrizz', '@HoustonRockets']"
2992,@SacramentoKings 16 hour round trip road trip to see the Kings play the @trailblazers #SacramentoProud #mrpinkroadgame #keepthestreakalivepic.twitter.com/zpZgUFDIkU,SacramentoKings,trailblazers,"['@SacramentoKings 16 hour round trip road trip to see the Kings play the @trailblazers #SacramentoProud #mrpinkroadgame #keepthestreakalivepic.twitter.com/zpZgUFDIkU', '#ThisCouldBeUsButYouPlayinpic.twitter.com/wrXZILrAP2', ""take it down about six notches. They're #SacramentoProud""]",3,"['28 Dec 2016', '28 Dec 2016', '28 Dec 2016']","['Charmed Life', 'Trail Blazers', 'Sacramen2 Kings']","['@d1behindu', '@trailblazers', '@SacramentoKings']"
1804,Toyota Center has been rocking lately. Come out New Years Eve w/ halftime performance by Rob Base. Family special at http://www.houstontoyotacenter.com/events/detail/houston-rockets-vs-sacramento-kings-1 …,HoustonRockets,trailblazers,"['Toyota Center has been rocking lately. Come out New Years Eve w/ halftime performance by Rob Base. Family special at http://www.houstontoyotacenter.com/events/detail/houston-rockets-vs-sacramento-kings-1\xa0…', ""@HoustonRockets He's not internationally know but he's known to rock the microphone."", ""@trailblazers It would be much easier to respond with something funny if we weren't down 30. #NextGameCantGetHereSoonEnough""]",3,"['29 Dec 2013', '29 Dec 2013', '29 Dec 2013']","['Houston Rockets', 'Trail Blazers', 'Houston Rockets']","['@HoustonRockets', '@trailblazers', '@HoustonRockets']"
2062,#NewProfilePicpic.twitter.com/gJ5CG2wy9D,ATLHawks,nuggets,"['#NewProfilePicpic.twitter.com/gJ5CG2wy9D', 'whatever', '¯\\_(ツ)_/¯']",3,"['Apr 11 2018', 'Apr 11 2018', 'Apr 11 2018']","['Atlanta Hawks', 'Denver Nuggets', 'Atlanta Hawks']","['@ATLHawks', '@nuggets', '@ATLHawks']"
2082,"When they tell you you're going to the Eastern Conference Finals...
#TrueToAtlantapic.twitter.com/RGyNSU41kk",ATLHawks,WashWizards,"[""When they tell you you're going to the Eastern Conference Finals...\n\n#TrueToAtlantapic.twitter.com/RGyNSU41kk"", '.@ATLHawks great series, good luck next round #WizHawks', "".@WashWizards Thank you! Heck of a series indeed. Glad we don't have to play you guys again. #Respectpic.twitter.com/9RZqjl7eH0""]",3,"['15 May 2015', '15 May 2015', '15 May 2015']","['Atlanta Hawks', 'Washington Wizards', 'Atlanta Hawks']","['@ATLHawks', '@WashWizards', '@ATLHawks']"
3073,The truth is out there.https://vine.co/v/i1jetqLnji5 ,Sixers,LAClippers,"['The truth is out there.https://vine.co/v/i1jetqLnji5\xa0', ""@Sixers He's right here.pic.twitter.com/uLRtwj4bhR"", '.@LAClippers pic.twitter.com/6hYi85TLxP']",3,"['8 Feb 2016', '8 Feb 2016', '8 Feb 2016']","['Philadelphia 76ers', 'LA Clippers', 'Philadelphia 76ers']","['@sixers', '@LAClippers', '@sixers']"
1803,"Trail Blazers starters:
F: Nicolas Batum
F: LaMarcus Aldridge
C: Robin Lopez
G: Wesley Matthews
G: Damian Lillard",HoustonRockets,trailblazers,"['Trail Blazers starters:\n\nF: Nicolas Batum\nF: LaMarcus Aldridge\nC: Robin Lopez\nG: Wesley Matthews\nG: Damian Lillard', '@HoustonRockets thanks for the correction because we like our Lopez how he is.', ""@trailblazers Sorry about that. Watching end of Brooklyn/Toronto. We've already messed with Robin enough via Twitter this series.""]",3,"['27 Apr 2014', '27 Apr 2014', '27 Apr 2014']","['Houston Rockets', 'Trail Blazers', 'Houston Rockets']","['@HoustonRockets', '@trailblazers', '@HoustonRockets']"
2723,"1Q: 42-17 GState.
Them - 71% FG
Us - 20 % FGpic.twitter.com/kB2ukWzhzR",Raptors,trailblazers,"['1Q: 42-17 GState.\n\nThem - 71% FG\nUs - 20 % FGpic.twitter.com/kB2ukWzhzR', 'we heard you guys can still win games with a low fg%', 'We may have used that card already. ']",3,"['28 Dec 2016', '28 Dec 2016', '28 Dec 2016']","['Toronto Raptors', 'Trail Blazers', 'Toronto Raptors']","['@Raptors', '@trailblazers', '@Raptors']"
2051,Finally got a little pace going. That favors the good guys.,ATLHawks,UtahJazz,"['Finally got a little pace going. That favors the good guys.', '@ATLHawks sorry, did someone say ""Favors""?pic.twitter.com/fwivj2unzW', '@utahjazz Well played ']",3,"['5 Jan 2015', '5 Jan 2015', '5 Jan 2015']","['Atlanta Hawks', 'Utah Jazz', 'Atlanta Hawks']","['@ATLHawks', '@utahjazz', '@ATLHawks']"
1787,Big for Ryno!,HoustonRockets,MemGrizz,"['Big for Ryno!', 'can he stop', ""I don't think that's a possibility. pic.twitter.com/DkGMyTyHWr""]",3,"['23 Dec 2016', '23 Dec 2016', '23 Dec 2016']","['Houston Rockets', 'Memphis Grizzlies', 'Houston Rockets']","['@HoustonRockets', '@memgrizz', '@HoustonRockets']"
2490,Ended the 1st qtr like...pic.twitter.com/I7LrHEEuZB,Bucks,LAClippers,"['Ended the 1st qtr like...pic.twitter.com/I7LrHEEuZB', 'pic.twitter.com/INQxFrt3qM', 'pic.twitter.com/YUbh3ZsGl1']",3,"['3 Mar 2017', '3 Mar 2017', '3 Mar 2017']","['Milwaukee Bucks', 'LA Clippers', 'Milwaukee Bucks']","['@Bucks', '@LAClippers', '@Bucks']"
1784,The Rockets advance to play the @ATLHawks Saturday at 5pm CT. #NBASummer,HoustonRockets,ATLHawks,"['The Rockets advance to play the @ATLHawks Saturday at 5pm CT. #NBASummer', ""@HoustonRockets Hope you're ready for some Payne...pic.twitter.com/lpDdana4Kw"", ""@ATLHawks Hope you're ready for some Johnson.pic.twitter.com/DKbfSkWtEX""]",3,"['17 Jul 2014', '17 Jul 2014', '17 Jul 2014']","['Houston Rockets', 'Atlanta Hawks', 'Houston Rockets']","['@HoustonRockets', '@ATLHawks', '@HoustonRockets']"
2497,"Flex Plans go on sale tomorrow at 10am CT.
Which games are your MUST SEE!?!pic.twitter.com/dco5o0ngb0",Bucks,LAClippers,"['Flex Plans go on sale tomorrow at 10am CT. \n\nWhich games are your MUST SEE!?!pic.twitter.com/dco5o0ngb0', 'March 21 should be a fun one. ', '']",3,"['5 Sep 2017', '5 Sep 2017', '5 Sep 2017']","['Milwaukee Bucks', 'LA Clippers', 'Milwaukee Bucks']","['@Bucks', '@LAClippers', '@Bucks']"
1766,"When it's 3 degrees in Minnesota on a gameday.
RT this now! James Harden #NBAVotepic.twitter.com/DWx7BuhT0l",HoustonRockets,Timberwolves,"[""When it's 3 degrees in Minnesota on a gameday. \n\nRT this now! James Harden #NBAVotepic.twitter.com/DWx7BuhT0l"", '.@HoustonRockets When it’s 3 degrees on a gameday… #ShortsWeather pic.twitter.com/2mMrM6w3wI', 'pic.twitter.com/jpGyzZghhe']",3,"['11 Jan 2017', '11 Jan 2017', '11 Jan 2017']","['Houston Rockets', 'Timberwolves', 'Houston Rockets']","['@HoustonRockets', '@Timberwolves', '@HoustonRockets']"
3127,"We see you, @ATLHawks... #GameTimepic.twitter.com/qPEnSqY0Yf",Sixers,ATLHawks,"['We see you, @ATLHawks... #GameTimepic.twitter.com/qPEnSqY0Yf', '@Sixers Not bad, huh? We like yours too :)', '@ATLHawks Real recognize real.']",3,"['10 Dec 2014', '10 Dec 2014', '10 Dec 2014']","['Philadelphia 76ers', 'Atlanta Hawks', 'Philadelphia 76ers']","['@sixers', '@ATLHawks', '@sixers']"
2495,We keep it at : Bucksdotcomhttps://twitter.com/touche0/status/632284379549667328 …,Bucks,LAClippers,"['We keep it at : Bucksdotcomhttps://twitter.com/touche0/status/632284379549667328\xa0…', '@Bucks f4f?', ""@LAClippers DEAL! We just need to get our phone back from The Rook...he's busy...""]",3,"['14 Aug 2015', '14 Aug 2015', '14 Aug 2015']","['Milwaukee Bucks', 'LA Clippers', 'Milwaukee Bucks']","['@Bucks', '@LAClippers', '@Bucks']"
3125,Sixers-@ATLHawks goin' UP...pic.twitter.com/DehvfTtqdH,Sixers,ATLHawks,"[""Sixers-@ATLHawks goin' UP...pic.twitter.com/DehvfTtqdH"", ""#OnATuesday \n\nRT @Sixers: Sixers-@ATLHawks goin' UP...pic.twitter.com/pMiO6Gz8Fb"", '@ATLHawks *swipes right*']",3,"['13 Jan 2015', '13 Jan 2015', '13 Jan 2015']","['Philadelphia 76ers', 'Atlanta Hawks', 'Philadelphia 76ers']","['@sixers', '@ATLHawks', '@sixers']"
2710,Not quite sure how @Klow7 made that shot but we approve. #RTZ,Raptors,SacramentoKings,"['Not quite sure how @Klow7 made that shot but we approve. #RTZ', ""We don't tbh"", ""approve? Don't tell Kyle that.""]",3,"['20 Nov 2016', '20 Nov 2016', '20 Nov 2016']","['Toronto Raptors', 'Sacramen2 Kings', 'Toronto Raptors']","['@Raptors', '@SacramentoKings', '@Raptors']"
2311,James Ennis III converts the III point play!pic.twitter.com/83dJtJ04js,MemGrizz,LAClippers,"['James Ennis III converts the III point play!pic.twitter.com/83dJtJ04js', ""now that's punny"", 'did we do a good tweet']",3,"['9 Mar 2017', '9 Mar 2017', '9 Mar 2017']","['Memphis Grizzlies', 'LA Clippers', 'Memphis Grizzlies']","['@memgrizz', '@LAClippers', '@memgrizz']"
2494,"Buy a ticket for #FearTheDeer Night on Wednesday @ApplebeesWI will buy the 2nd!!
Buy NOW » http://bit.ly/WebWeds1516 pic.twitter.com/LIWV1SOahI",Bucks,LAClippers,"['Buy a ticket for #FearTheDeer Night on Wednesday @ApplebeesWI will buy the 2nd!!\n\nBuy NOW » http://bit.ly/WebWeds1516\xa0pic.twitter.com/LIWV1SOahI', ""@Bucks @ApplebeesWI Hey, that's us!"", '@LAClippers it is! Are you bringing the home whites or road reds...']",3,"['7 Dec 2015', '7 Dec 2015', '7 Dec 2015']","['Milwaukee Bucks', 'LA Clippers', 'Milwaukee Bucks']","['@Bucks', '@LAClippers', '@Bucks']"
2493,Oh hey @LAClippers. How about some basketball tonight? pic.twitter.com/4mrtdRn7ry,Bucks,LAClippers,"['Oh hey @LAClippers. How about some basketball tonight? pic.twitter.com/4mrtdRn7ry', ""@Bucks see ya inside. Don't forget tip-off is at 7:30pm. pic.twitter.com/c8DwDUGhy2"", '@LAClippers that’s 9:30pm CT ']",3,"['16 Dec 2015', '16 Dec 2015', '16 Dec 2015']","['Milwaukee Bucks', 'LA Clippers', 'Milwaukee Bucks']","['@Bucks', '@LAClippers', '@Bucks']"
2492,Everything ok @StaplesCenter??pic.twitter.com/BJdnCdcIWx,Bucks,LAClippers,"['Everything ok @StaplesCenter??pic.twitter.com/BJdnCdcIWx', '@Bucks @StaplesCenterpic.twitter.com/OdyHHRU0jk', '@LAClippers @StaplesCenterpic.twitter.com/pH7UMhYBFP']",3,"['16 Dec 2015', '16 Dec 2015', '16 Dec 2015']","['Milwaukee Bucks', 'LA Clippers', 'Milwaukee Bucks']","['@Bucks', '@LAClippers', '@Bucks']"
3063,"Help us! RT if this jersey looks #whiteandgold to you, fav if it looks #blueandblack... This is freaking us out! pic.twitter.com/vU40kkLYZP",Sixers,DallasMavs,"['Help us! RT if this jersey looks #whiteandgold to you, fav if it looks #blueandblack... This is freaking us out! pic.twitter.com/vU40kkLYZP', ""@Sixers we are now questioning if we've been wearing @dallasmavs colors for years..."", '@denvernuggets @dallasmavspic.twitter.com/gQuGGXgMiP']",3,"['26 Feb 2015', '26 Feb 2015', '26 Feb 2015']","['Philadelphia 76ers', 'Denver Nuggets', 'Philadelphia 76ers']","['@sixers', '@nuggets', '@sixers']"
1690,3 more quarters like that please Suns. Thanks in advance,Suns,SacramentoKings,"['3 more quarters like that please Suns. Thanks in advance', ""@ScottHoward42 we'd rather not. Thanks in advance, @Suns."", '@SacramentoKings @ScottHoward42 We got you covered, Scott.pic.twitter.com/DiRVv4QXbO']",3,"['4 Nov 2015', '4 Nov 2015', '4 Nov 2015']","['Scott Howard', 'Sacramen2 Kings', 'Phoen1x Šuns']","['@ScottHoward42', '@SacramentoKings', '@Suns']"
1689,Suns fall to the Kings on the road 116-94. #SunsAtKings,Suns,SacramentoKings,"['Suns fall to the Kings on the road 116-94. #SunsAtKings', '@Suns Good game!pic.twitter.com/3NqS8bHzxZ', '@SacramentoKings Thanks. You too.pic.twitter.com/BcEf24HlsH']",3,"['25 Mar 2016', '25 Mar 2016', '25 Mar 2016']","['Phoen1x Šuns', 'Sacramen2 Kings', 'Phoen1x Šuns']","['@Suns', '@SacramentoKings', '@Suns']"
2466,LARRY!!! #MILvDET,Bucks,DetroitPistons,"['LARRY!!! #MILvDET', '@Bucks ANDRE!! #MILvDET', '@DetroitPistons LARRY! #MILvDET']",3,"['25 Nov 2014', '25 Nov 2014', '25 Nov 2014']","['Milwaukee Bucks', 'Detroit Pistons', 'Milwaukee Bucks']","['@Bucks', '@DetroitPistons', '@Bucks']"
3210,how (part II)pic.twitter.com/YDMYrsEpPs,trailblazers,BrooklynNets,"['how (part II)pic.twitter.com/YDMYrsEpPs', '[email protected]/SaP7xT6t4R', 'pic.twitter.com/YvapAZzFPf']",3,"['20 Nov 2016', '20 Nov 2016', '20 Nov 2016']","['Trail Blazers', 'Brooklyn Nets', 'Trail Blazers']","['@trailblazers', '@BrooklynNets', '@trailblazers']"
3221,Your #Pelicans are back in action on the road tonight in Denver! Tip is at 8 pm CT on @FOXSportsNOLA!pic.twitter.com/6lrYzwmK7E,trailblazers,PelicansNBA,"['Your #Pelicans are back in action on the road tonight in Denver! Tip is at 8 pm CT on @FOXSportsNOLA!pic.twitter.com/6lrYzwmK7E', 'good luck tonight ', 'pic.twitter.com/GqbuZrUDSJ']",3,"['7 Apr 2017', '7 Apr 2017', '7 Apr 2017']","['New Orleans Pelicans', 'Trail Blazers', 'Trail Blazers']","['@PelicansNBA', '@trailblazers', '@trailblazers']"
3218,Happy Birthday to the MUCH better looking Lopez twin.pic.twitter.com/hlIgMh8oq5,trailblazers,BrooklynNets,"['Happy Birthday to the MUCH better looking Lopez twin.pic.twitter.com/hlIgMh8oq5', '.@trailblazers We beg to differ...pic.twitter.com/rkw5x5ZpKG', '@BrooklynNets We said better hair.']",3,"['1 Apr 2015', '1 Apr 2015', '1 Apr 2015']","['Trail Blazers', 'Brooklyn Nets', 'Trail Blazers']","['@trailblazers', '@BrooklynNets', '@trailblazers']"
1624,"ICYMI: #NBASuperHeroes trended worldwide. Here's our favorites from whatever we're calling what happened.
LIST >> http://on.suns.com/353 ",Suns,warriors,"[""ICYMI: #NBASuperHeroes trended worldwide. Here's our favorites from whatever we're calling what happened. \n\nLIST >> http://on.suns.com/353\xa0"", '@Suns you had fun, admit it.', '@warriors We admit nothing except that we all made graphic designers around the world weep with our photoshop work.']",3,"['30 Jul 2014', '30 Jul 2014', '30 Jul 2014']","['Phoen1x Šuns', 'Golden State Warriors', 'Phoen1x Šuns']","['@Suns', '@warriors', '@Suns']"
2996,Willie with the handles...pic.twitter.com/yTCVE7OI00,SacramentoKings,trailblazers,"['Willie with the handles...pic.twitter.com/yTCVE7OI00', '@SacramentoKings that court tho ', '@trailblazers u real. ']",3,"['9 Apr 2016', '9 Apr 2016', '9 Apr 2016']","['Sacramen2 Kings', 'Trail Blazers', 'Sacramen2 Kings']","['@SacramentoKings', '@trailblazers', '@SacramentoKings']"
3212,https://twitter.com/BrooklynNets/status/687682219368931328 …,trailblazers,BrooklynNets,"['https://twitter.com/BrooklynNets/status/687682219368931328\xa0…', '.@trailblazers see you guys tonight...pic.twitter.com/UQ3j7NAtxL', ""@BrooklynNets can't waitpic.twitter.com/v6f2twFt5w""]",3,"['15 Jan 2016', '15 Jan 2016', '15 Jan 2016']","['Trail Blazers', 'Brooklyn Nets', 'Trail Blazers']","['@trailblazers', '@BrooklynNets', '@trailblazers']"
2679,#Bulls in action again tonight at 9 CT in a rematch with the @Raptors in the #NBASummer tournament. Watch on Summer League Live or @ESPN3!,Raptors,chicagobulls,"['#Bulls in action again tonight at 9 CT in a rematch with the @Raptors in the #NBASummer tournament. Watch on Summer League Live or @ESPN3!', '@chicagobulls @Raptors @ESPN3 go bulls', '.@ChicagoCAPS07 @chicagobulls @ESPN3pic.twitter.com/bL9ZQ4HFsI']",3,"['16 Jul 2015', '16 Jul 2015', '16 Jul 2015']","['Chicago Bulls', '7th DISTRICT ENGLEWOOD', 'Toronto Raptors']","['@chicagobulls', '@ChicagoCAPS07', '@Raptors']"
2680,#WeTheNorthpic.twitter.com/Rwi3GXML50,Raptors,spurs,"['#WeTheNorthpic.twitter.com/Rwi3GXML50', '@Raptors The weekend was pic.twitter.com/jRV6RaQ7On', ""@spurs Still can't believe we got a smile out of Pop!""]",3,"['16 Feb 2016', '16 Feb 2016', '16 Feb 2016']","['Toronto Raptors', 'San Antonio Spurs', 'Toronto Raptors']","['@Raptors', '@spurs', '@Raptors']"
2756,"PG throws it down!
#GoPacers",SacramentoKings,Pacers,"['PG throws it down! \n#GoPacers', ' @Yg_Trece with the JAM!pic.twitter.com/jimwImG0iv', 'so this is why they gave him an @NBA2K cover']",3,"['18 Jan 2017', '18 Jan 2017', '18 Jan 2017']","['Indiana Pacers', 'Indiana Pacers', 'Sacramen2 Kings']","['@Pacers', '@Pacers', '@SacramentoKings']"
3030,GAME TIME!pic.twitter.com/2plEXMPVYC,Sixers,Timberwolves,"['GAME TIME!pic.twitter.com/2plEXMPVYC', '.@Sixers Mood..pic.twitter.com/J3mxQ74NMZ', '.@Timberwolves pic.twitter.com/rukxWUSUHw']",3,"['4 Jan 2016', '4 Jan 2016', '4 Jan 2016']","['Philadelphia 76ers', 'Timberwolves', 'Philadelphia 76ers']","['@sixers', '@Timberwolves', '@sixers']"
2686,"Timeout T.O.
Raps hold a 2-point lead with 3 mins to go. #RTZ #NBACanadaSeries",Raptors,warriors,"['Timeout T.O.\n\nRaps hold a 2-point lead with 3 mins to go. #RTZ #NBACanadaSeries', 'pic.twitter.com/C1PUDbFpwq', 'you got any extra?']",3,"['1 Oct 2016', '1 Oct 2016', '1 Oct 2016']","['Toronto Raptors', 'Golden State Warriors', 'Toronto Raptors']","['@Raptors', '@warriors', '@Raptors']"
2739,Raise your hand if you're excited for tonight's game! #DontBeReginaGeorgepic.twitter.com/INmYYPJpPz,SacramentoKings,cavs,"[""Raise your hand if you're excited for tonight's game! #DontBeReginaGeorgepic.twitter.com/INmYYPJpPz"", '.@SacramentoKings Stop trying to make fetch happen.', ""@cavs We're playing the Pelicans tonight...pic.twitter.com/eJagO7hLRh""]",3,"['27 Mar 2015', '27 Mar 2015', '27 Mar 2015']","['Sacramen2 Kings', 'Cleveland Cavaliers', 'Sacramen2 Kings']","['@SacramentoKings', '@cavs', '@SacramentoKings']"
1634,"Who had the third best true shooting percentage in the @NBA this season? This guy ...
http://on.suns.com/3x1 pic.twitter.com/lWD7Vxne2c",Suns,ATLHawks,"['Who had the third best true shooting percentage in the @NBA this season? This guy ...\n\nhttp://on.suns.com/3x1\xa0pic.twitter.com/lWD7Vxne2c', '.@Suns @NBA We approve of this list.pic.twitter.com/Cq0HaOn4GW', '.@ATLHawks @NBA We believe is the appropriate response. #GameRecognizeGame']",3,"['6 May 2015', '6 May 2015', '6 May 2015']","['Phoen1x Šuns', 'Atlanta Hawks', 'Phoen1x Šuns']","['@Suns', '@ATLHawks', '@Suns']"
2806,Happy #FollowFriday! Reply to this tweet in the next 30 minutes and we'll give you a follow!pic.twitter.com/LCpk9pL6Ck,SacramentoKings,LAClippers,"[""Happy #FollowFriday! Reply to this tweet in the next 30 minutes and we'll give you a follow!pic.twitter.com/LCpk9pL6Ck"", 'are we too late?', ""nah fam. We'll unfollow you and then follow you again just to keep our word.""]",3,"['5 Aug 2016', '5 Aug 2016', '5 Aug 2016']","['Sacramen2 Kings', 'LA Clippers', 'Sacramen2 Kings']","['@SacramentoKings', '@LAClippers', '@SacramentoKings']"
2540,Oh no! Why do your fans have no chill @Suns!?! Bango never hurt anybody...https://twitter.com/draccab/status/682715315998863360 …,Bucks,Suns,"['Oh no! Why do your fans have no chill @Suns!?! Bango never hurt anybody...https://twitter.com/draccab/status/682715315998863360\xa0…', ""@Bucks It's that Christmas heat. Sorry @BucksBango."", ""@Suns @BucksBango we wouldn't know anything about that. #ItsColdHere""]",3,"['31 Dec 2015', '31 Dec 2015', '31 Dec 2015']","['Milwaukee Bucks', 'Phoen1x Šuns', 'Milwaukee Bucks']","['@Bucks', '@Suns', '@Bucks']"
2163,That moment when you realize that the @ATLHawks and @memgrizz play tomorrow #TrueToAtlanta #GrindCitypic.twitter.com/tObD7D0xL2,ATLHawks,MemGrizz,"['That moment when you realize that the @ATLHawks and @memgrizz play tomorrow #TrueToAtlanta #GrindCitypic.twitter.com/tObD7D0xL2', '*whispers* we play Wednesday', 'and we play Thursday ']",3,"['24 Oct 2016', '24 Oct 2016', '24 Oct 2016']","['Best iñ the ÑL East', 'Memphis Grizzlies', 'Atlanta Hawks']","['@JordanLuke32', '@memgrizz', '@ATLHawks']"
2552,Knight Court #NBASitcoms,Bucks,Suns,"['Knight Court #NBASitcoms', '@Bucks Look at Milwaukee getting in on the funny. We expect a Laverne &Shirley reference from you guys. #NBASitcoms', ""@Suns that's too easy. we'll stay away from the layups...https://twitter.com/Bucks/status/492365944270757888\xa0…""]",3,"['24 Jul 2014', '24 Jul 2014', '24 Jul 2014']","['Milwaukee Bucks', 'Phoen1x Šuns', 'Milwaukee Bucks']","['@Bucks', '@Suns', '@Bucks']"
2670,"Only a half hour till tip off, you ready Raps fans? #WeTheNorth #RTZpic.twitter.com/OsPI6GH11G",Raptors,LAClippers,"['Only a half hour till tip off, you ready Raps fans? #WeTheNorth #RTZpic.twitter.com/OsPI6GH11G', '@Raptors Those Grizzlies fans tho. ', '@LAClippers We see them. And we approve. #RTZpic.twitter.com/5CjFnAHpav']",3,"['4 Oct 2015', '4 Oct 2015', '4 Oct 2015']","['Toronto Raptors', 'LA Clippers', 'Toronto Raptors']","['@Raptors', '@LAClippers', '@Raptors']"
2671,"Pack the sunscreen, shades & slides, we're headed to Hawai'i for some preseason hoops on Oct 1st & 3rd vs. @LAClippers. #WeTheNorthpic.twitter.com/utr4zBkwN9",Raptors,LAClippers,"[""Pack the sunscreen, shades & slides, we're headed to Hawai'i for some preseason hoops on Oct 1st & 3rd vs. @LAClippers. #WeTheNorthpic.twitter.com/utr4zBkwN9"", 'pic.twitter.com/XSnW51TBgy', '']",3,"['5 Jun 2017', '5 Jun 2017', '5 Jun 2017']","['Toronto Raptors', 'LA Clippers', 'Toronto Raptors']","['@Raptors', '@LAClippers', '@Raptors']"
2673,Timeout L.A. as Toronto has forced the Clippers into 7 turnovers. 39-25 North Side. #RTZ #WeTheNorth,Raptors,LAClippers,"['Timeout L.A. as Toronto has forced the Clippers into 7 turnovers. 39-25 North Side. #RTZ #WeTheNorth', '@Raptorspic.twitter.com/zkYING7rOc', '@LAClipperspic.twitter.com/62jiMQS1Yc']",3,"['22 Nov 2015', '22 Nov 2015', '22 Nov 2015']","['Toronto Raptors', 'LA Clippers', 'Toronto Raptors']","['@Raptors', '@LAClippers', '@Raptors']"
3231,"Quick start for both teams tonight in Orlando. At the first timeout, the Trail Blazers trail 13-10 with 6:52 to play in the first quarter. No signs of Master P... yet.",trailblazers,OrlandoMagic,"['Quick start for both teams tonight in Orlando. At the first timeout, the Trail Blazers trail 13-10 with 6:52 to play in the first quarter. No signs of Master P... yet.', 'Courtside across from your bench. ', 'Evidently he really DOES have the hook up']",3,"['15 Dec 2017', '15 Dec 2017', '15 Dec 2017']","['Trail Blazers', 'Orlando Magic', 'Trail Blazers']","['@trailblazers', '@OrlandoMagic', '@trailblazers']"
2678,.@WashWizards Good half. No more 3's please. Thanks.,Raptors,WashWizards,"["".@WashWizards Good half. No more 3's please. Thanks."", "".@Raptors thanks, we'll save the rest for our home opener. "", ""(google's Wiz schedule)...pic.twitter.com/zNFRwBDQLW""]",3,"['21 Oct 2016', '21 Oct 2016', '21 Oct 2016']","['Toronto Raptors', 'Washington Wizards', 'Toronto Raptors']","['@Raptors', '@WashWizards', '@Raptors']"
1883,"No thank you.
RT @ESPNNBA: Watch: See @cavs sink 11 straight 3-pointers to start rout of @ATLHawks. http://bit.ly/1x7Eydu ",ATLHawks,cavs,"['No thank you.\n\nRT @ESPNNBA: Watch: See @cavs sink 11 straight 3-pointers to start rout of @ATLHawks. http://bit.ly/1x7Eydu\xa0', '@ATLHawks #TooSoon, @ESPNNBA', ""@cavs Oh so NOW you're nice? ;)""]",3,"['15 Nov 2014', '15 Nov 2014', '15 Nov 2014']","['Atlanta Hawks', 'Cleveland Cavaliers', 'Atlanta Hawks']","['@ATLHawks', '@cavs', '@ATLHawks']"
2811,Thanks for the support @LAClippers! pic.twitter.com/hARvtS3KaS,SacramentoKings,LAClippers,"['Thanks for the support @LAClippers! pic.twitter.com/hARvtS3KaS', 'pic.twitter.com/T1nKC6DgxM', 'See you guys tonight! ']",3,"['11 Oct 2017', '12 Oct 2017', '12 Oct 2017']","['Sacramen2 Kings', 'LA Clippers', 'Sacramen2 Kings']","['@SacramentoKings', '@LAClippers', '@SacramentoKings']"
2463,One of these things is not like the others. One of these things just doesn't belong. @DetroitPistonspic.twitter.com/KJxBHb5NwF,Bucks,DetroitPistons,"[""One of these things is not like the others. One of these things just doesn't belong. @DetroitPistonspic.twitter.com/KJxBHb5NwF"", '@Bucks ¯\\_(ツ)_/¯', '@DetroitPistons if you find a printer. pic.twitter.com/hmj93vzFav']",3,"['21 Mar 2016', '21 Mar 2016', '21 Mar 2016']","['Milwaukee Bucks', 'Detroit Pistons', 'Milwaukee Bucks']","['@Bucks', '@DetroitPistons', '@Bucks']"
2365,"""Warriors, come out to plaaayyyy!"" Get your tix #GrizzNation > http://ow.ly/MCJFK https://amp.twimg.com/v/e55ff923-84cc-482a-ba28-0d9a7625f528 …",MemGrizz,warriors,"['""Warriors, come out to plaaayyyy!"" Get your tix #GrizzNation > http://ow.ly/MCJFK\xa0https://amp.twimg.com/v/e55ff923-84cc-482a-ba28-0d9a7625f528\xa0…', ""@memgrizz can't even hate, that was good."", ""@warriors It's going to be a fun series! See you soon!""]",3,"['7 May 2015', '7 May 2015', '7 May 2015']","['Memphis Grizzlies', 'Golden State Warriors', 'Memphis Grizzlies']","['@memgrizz', '@warriors', '@memgrizz']"
2167,"Hey @Bucks, stop doing good.
(Please?)",ATLHawks,Bucks,"['Hey @Bucks, stop doing good.\n\n(Please?)', '.@ATLHawks so you guys are doing this right now too? pic.twitter.com/bNLwkNC6lT', '.@Bucks More like this:pic.twitter.com/t6jjHZGWFf']",3,"['24 Mar 2017', '24 Mar 2017', '24 Mar 2017']","['Atlanta Hawks', 'Milwaukee Bucks', 'Atlanta Hawks']","['@ATLHawks', '@Bucks', '@ATLHawks']"
1880,Stephen Curry #NBABallotpic.twitter.com/GSsPWlvLix,warriors,trailblazers,"['Stephen Curry #NBABallotpic.twitter.com/GSsPWlvLix', ""@warriors don't lie to your fans like that!"", '@trailblazers take notes, Rip City.pic.twitter.com/C4LvU3b5ZY']",3,"['16 Dec 2014', '16 Dec 2014', '16 Dec 2014']","['Golden State Warriors', 'Trail Blazers', 'Golden State Warriors']","['@warriors', '@trailblazers', '@warriors']"
3225,"Sup, @PelicansNBA?pic.twitter.com/g1Rd2QnrMw",trailblazers,PelicansNBA,"['Sup, @PelicansNBA?pic.twitter.com/g1Rd2QnrMw', ""Chillin'pic.twitter.com/PgmmUDEQfm"", 'pic.twitter.com/R7sYIq2E46']",3,"['18 Nov 2016', '18 Nov 2016', '18 Nov 2016']","['Trail Blazers', 'New Orleans Pelicans', 'Trail Blazers']","['@trailblazers', '@PelicansNBA', '@trailblazers']"
3000,Rondo coaching the rookies through plays pic.twitter.com/CwMwzLaS56,SacramentoKings,trailblazers,"['Rondo coaching the rookies through plays pic.twitter.com/CwMwzLaS56', '@SacramentoKings take care of that gym for us. See you guys tonight ', ""@trailblazers Don't worry, we left it the way we found it ""]",3,"['5 Oct 2015', '5 Oct 2015', '5 Oct 2015']","['Sacramen2 Kings', 'Trail Blazers', 'Sacramen2 Kings']","['@SacramentoKings', '@trailblazers', '@SacramentoKings']"
2960,People love baby races. @Bucks RT @langwhitaker: Your zen for the week: The Sacramento Kings had a baby race http://wp.me/p14ch1-5fa ,SacramentoKings,Bucks,"['People love baby races. @Bucks RT @langwhitaker: Your zen for the week: The Sacramento Kings had a baby race http://wp.me/p14ch1-5fa\xa0', '@Bucksketball @langwhitaker just another example of the @SacramentoKings playing catch-up.', '@Buckspic.twitter.com/pnCXwgsg8H']",3,"['23 Mar 2015', '23 Mar 2015', '23 Mar 2015']","['Jeremy Schmidt', 'Milwaukee Bucks', 'Sacramen2 Kings']","['@Bucksketball', '@Bucks', '@SacramentoKings']"
2156,The #Warriors play the @ATLHawks today at 4pm: http://ow.ly/g832i Let's see some of the predictions from #DubNation for this game?,ATLHawks,warriors,"[""The #Warriors play the @ATLHawks today at 4pm: http://ow.ly/g832i\xa0 Let's see some of the predictions from #DubNation for this game?"", '@warriors @ATLHawks how about fuck the #hawks?', '@Dissent9 @warriors How about Go Hawks instead? ;)']",3,"['15 Dec 2012', '15 Dec 2012', '15 Dec 2012']","['Golden State Warriors', 'Reggie Dickson', 'Atlanta Hawks']","['@warriors', '@Dissent9', '@ATLHawks']"
2688,.@warriors #WeTheNorthhttps://vine.co/v/5velBrlYEMu ,Raptors,warriors,"['.@warriors #WeTheNorthhttps://vine.co/v/5velBrlYEMu\xa0', '', ""We promise it'll be warmer than All-Star. ""]",3,"['23 Sep 2016', '23 Sep 2016', '23 Sep 2016']","['Toronto Raptors', 'Golden State Warriors', 'Toronto Raptors']","['@Raptors', '@warriors', '@Raptors']"
1851,".@USABasketball is coming to @OracleArena! See Klay, Draymond & KD LIVE tomorrow night » http://bit.ly/28R8ToP pic.twitter.com/nNOpZWqtXI",warriors,SacramentoKings,"['.@USABasketball is coming to @OracleArena! See Klay, Draymond & KD LIVE tomorrow night » http://bit.ly/28R8ToP\xa0pic.twitter.com/nNOpZWqtXI', '.@warriors K. What about Boogie tho?pic.twitter.com/ofHlqgKWVI', ""well...yeah, he'll be there too #USABMNTpic.twitter.com/ChirSeQf4f""]",3,"['25 Jul 2016', '25 Jul 2016', '25 Jul 2016']","['Golden State Warriors', 'Sacramen2 Kings', 'Golden State Warriors']","['@warriors', '@SacramentoKings', '@warriors']"
2379,U ok @memgrizz?https://twitter.com/GrizzliesPR/status/982013095177486336 …,MemGrizz,SacramentoKings,"['U ok @memgrizz?https://twitter.com/GrizzliesPR/status/982013095177486336\xa0…', '', 'real talk']",3,"['Apr 5 2018', 'Apr 5 2018', 'Apr 5 2018']","['Sacramen2 Kings', 'Grizzlies PR', 'Memphis Grizzlies']","['@SacramentoKings', '@GrizzliesPR', '@memgrizz']"
2694,"If Dell and Steph take this, we want partial credit ... #WeTheNorth #RTZ #TeamCurrypic.twitter.com/Lomod14xhb",Raptors,warriors,"['If Dell and Steph take this, we want partial credit ... #WeTheNorth #RTZ #TeamCurrypic.twitter.com/Lomod14xhb', '@Raptors we were jinxed! ', '@warriors Suspecting the Currys still might have something to celebrate tonight!']",3,"['14 Feb 2015', '14 Feb 2015', '14 Feb 2015']","['Toronto Raptors', 'Golden State Warriors', 'Toronto Raptors']","['@Raptors', '@warriors', '@Raptors']"
2524,"Bulls exercise options on 5 players.
READ:http://www.nba.com/bulls/news/bulls-exercise-options-five-players …",Bucks,chicagobulls,"['Bulls exercise options on 5 players. \n\nREAD:http://www.nba.com/bulls/news/bulls-exercise-options-five-players\xa0…', ""and your management. I'm out. @Bucks, you looking for a new fan? I'm only 90 mins away.."", 'Let’s do this! #FearTheDeer']",3,"['27 Oct 2017', '27 Oct 2017', '27 Oct 2017']","['Chicago Bulls', '.', 'Milwaukee Bucks']","['@chicagobulls', '@HoochisKrazy', '@Bucks']"
2465,Game On! #MILvDET,Bucks,DetroitPistons,"['Game On! #MILvDET', '@Bucks And we meet again', '@DetroitPistons oh hi']",3,"['28 Nov 2014', '28 Nov 2014', '28 Nov 2014']","['Milwaukee Bucks', 'Detroit Pistons', 'Milwaukee Bucks']","['@Bucks', '@DetroitPistons', '@Bucks']"
3181,Rejected. pic.twitter.com/BWFz6GLwex,Sixers,trailblazers,"['Rejected. pic.twitter.com/BWFz6GLwex', '@Sixers what happened after that tho.', ""@trailblazers Well, he blocked it again. Don't wanna talk about what happened after THAT though.""]",3,"['24 Nov 2014', '24 Nov 2014', '24 Nov 2014']","['Philadelphia 76ers', 'Trail Blazers', 'Philadelphia 76ers']","['@sixers', '@trailblazers', '@sixers']"
2131,"Hey @trailblazers, you guys left Batum on the side of the road!pic.twitter.com/QcRvwn6UES",ATLHawks,Suns,"['Hey @trailblazers, you guys left Batum on the side of the road!pic.twitter.com/QcRvwn6UES', '@ATLHawks @trailblazers Looks like they left him in the dryer too long too. #Shrunk #DogDaysOfSummerLeague', ""@Suns @trailblazers It's Summer League for equipment managers too...""]",3,"['15 Jul 2014', '15 Jul 2014', '15 Jul 2014']","['Atlanta Hawks', 'Phoen1x Šuns', 'Atlanta Hawks']","['@ATLHawks', '@Suns', '@ATLHawks']"
2783,Who's man is this? @hornetspic.twitter.com/hDTSZhaEst,SacramentoKings,Hornets,"[""Who's man is this? @hornetspic.twitter.com/hDTSZhaEst"", 'Whose man is this?!?! @SacramentoKingspic.twitter.com/QVCebpzG4V', 'Nothing to see here... just a little @KentuckyMBB love ¯\\_(ツ)_/¯']",3,"['25 Aug 2017', '5 Sep 2017', '5 Sep 2017']","['Sacramen2 Kings', 'Charlotte Hornets', 'Sacramen2 Kings']","['@SacramentoKings', '@hornets', '@SacramentoKings']"
2125,Bruce Payne #NBASuperHeroespic.twitter.com/GpY3hO7TAg,ATLHawks,Suns,"['Bruce Payne #NBASuperHeroespic.twitter.com/GpY3hO7TAg', "".@ATLHawks We're calling a #NBASuperHeroe foul. First, we're using real identities not super hero ones? Second, photoshop fail."", '@Suns Intentionally terrible Photoshops are the best ones, right? And did our legal office approve these rules?']",3,"['30 Jul 2014', '30 Jul 2014', '30 Jul 2014']","['Atlanta Hawks', 'Phoen1x Šuns', 'Atlanta Hawks']","['@ATLHawks', '@Suns', '@ATLHawks']"
3180,Grand Hustle aka @Trobinson0,Sixers,trailblazers,"['Grand Hustle aka @Trobinson0', '@Sixers @Trobinson0 GIF/Vine plz. Miss that guy.', '@trailblazers @Trobinson0 Better late than never!https://vine.co/v/OErapTh6TP2\xa0']",3,"['7 Mar 2015', '7 Mar 2015', '7 Mar 2015']","['Philadelphia 76ers', 'Trail Blazers', 'Philadelphia 76ers']","['@sixers', '@trailblazers', '@sixers']"
2697,".@DeMar_DeRozan & KLow3000: Cooler than Freddie Jackson sippin’ a milkshake in a snowstorm. #NBAVote
RETWEETS = VOTESpic.twitter.com/rBXNwDDqME",Raptors,ATLHawks,"['.@DeMar_DeRozan & KLow3000: Cooler than Freddie Jackson sippin’ a milkshake in a snowstorm. #NBAVote \n\nRETWEETS = VOTESpic.twitter.com/rBXNwDDqME', 'pic.twitter.com/PLny0sCDKn', 'Welcome to the North. Hope y’all packed your toques ']",3,"['29 Dec 2017', '29 Dec 2017', '29 Dec 2017']","['Toronto Raptors', 'Atlanta Hawks', 'Toronto Raptors']","['@Raptors', '@ATLHawks', '@Raptors']"
1685,"Wow, is that tomorrow? Thanx for the reminder ;) MT @AirCanadaCentre Join us Sunday March 16th as @Raptors host @Suns! Game starts at 1:00p",Suns,Raptors,"['Wow, is that tomorrow? Thanx for the reminder ;) MT @AirCanadaCentre Join us Sunday March 16th as @Raptors host @Suns! Game starts at 1:00p', '@Suns @AirCanadaCentre Leave the arenas out of this. #RTZ', ""@Raptors We're just not used to inviting our fans to eat breakfast while watching us. #TimeDifferenceProblems""]",3,"['15 Mar 2014', '15 Mar 2014', '15 Mar 2014']","['Phoen1x Šuns', 'Toronto Raptors', 'Phoen1x Šuns']","['@Suns', '@Raptors', '@Suns']"
2389,This should have been 6 points tbhpic.twitter.com/uEkCOcP5y2,MemGrizz,SacramentoKings,"['This should have been 6 points tbhpic.twitter.com/uEkCOcP5y2', 'oh cuz football...we get it.', 'we did a good tweet']",3,"['16 Dec 2016', '16 Dec 2016', '16 Dec 2016']","['Memphis Grizzlies', 'Sacramen2 Kings', 'Memphis Grizzlies']","['@memgrizz', '@SacramentoKings', '@memgrizz']"
2797,.@boogiecousins led the team with 31 PTS & 9 REB tonight. #KingsFTWpic.twitter.com/sbZISEkI1G,SacramentoKings,DallasMavs,"['.@boogiecousins led the team with 31 PTS & 9 REB tonight. #KingsFTWpic.twitter.com/sbZISEkI1G', '@SacramentoKings Read your mentions at the half next time. ', ""@dallasmavs we'll think about it :)\nGood one today! See you again soon!""]",3,"['30 Nov 2015', '30 Nov 2015', '30 Nov 2015']","['Sacramen2 Kings', 'Dallas Mavericks', 'Sacramen2 Kings']","['@SacramentoKings', '@dallasmavs', '@SacramentoKings']"
1643,@ATLHawks how do you denote a Korver dunk on the kounter?,Suns,ATLHawks,"['@ATLHawks how do you denote a Korver dunk on the kounter?', ""@Suns How's this: "", '@ATLHawks Good to know. The Tucker Ticker might need to add that....']",3,"['13 Mar 2015', '13 Mar 2015', '13 Mar 2015']","['Phoen1x Šuns', 'Atlanta Hawks', 'Phoen1x Šuns']","['@Suns', '@ATLHawks', '@Suns']"
1644,"Tucker Ticker:
(*Patent Pending) #SunsVsHawks",Suns,ATLHawks,"['Tucker Ticker: \n\n(*Patent Pending) #SunsVsHawks', '@Suns NO!', '@ATLHawks Just for you guys.pic.twitter.com/B29p4pSrx7']",3,"['13 Mar 2015', '13 Mar 2015', '13 Mar 2015']","['Phoen1x Šuns', 'Atlanta Hawks', 'Phoen1x Šuns']","['@Suns', '@ATLHawks', '@Suns']"
1645,@Jsmalls626 We don't know the @ATLHawks guy. We certainly don't sit with him...pic.twitter.com/03NOHM90Sw,Suns,ATLHawks,"[""@Jsmalls626 We don't know the @ATLHawks guy. We certainly don't sit with him...pic.twitter.com/03NOHM90Sw"", '@Suns @Jsmalls626 Ouch.', ""@ATLHawks @Jsmalls626 Whoops. Didn't mean to @ you... #Awkward""]",3,"['13 Mar 2015', '13 Mar 2015', '13 Mar 2015']","['Phoen1x Šuns', 'Atlanta Hawks', 'Phoen1x Šuns']","['@Suns', '@ATLHawks', '@Suns']"
2155,#Warriors push their lead to 84-60 w/ 2:43 left in 3Q. Curry is 2 boards shy of a trpl-dbl & Lee needs 2 pts for 7th straight 20/10 game.,ATLHawks,warriors,"['#Warriors push their lead to 84-60 w/ 2:43 left in 3Q. Curry is 2 boards shy of a trpl-dbl & Lee needs 2 pts for 7th straight 20/10 game.', ""Shut it. My @atlhawks won't let that go down @MouthP916 @warriors"", ""@DougCain5 @MouthP916 @warriors If we're going down, we're going down fighting!""]",3,"['15 Dec 2012', '15 Dec 2012', '15 Dec 2012']","['Golden State Warriors', 'Doug', 'Atlanta Hawks']","['@warriors', '@DougCain5', '@ATLHawks']"
2154,"Talk to us when you've made a three in 73 straight games, Steph Curry. #KyleStreak",ATLHawks,warriors,"[""Talk to us when you've made a three in 73 straight games, Steph Curry. #KyleStreak"", '@ATLHawks On behalf of Steph, we’d like to congratulate Kyle on his streak. He would surely do the same if presented the opportunity. #Class', '@warriors It came off harsher than we meant. We apologize...never meant any disrespect. Just trying to have some fun. Congrats to Steph!']",3,"['17 Apr 2013', '17 Apr 2013', '17 Apr 2013']","['Atlanta Hawks', 'Golden State Warriors', 'Atlanta Hawks']","['@ATLHawks', '@warriors', '@ATLHawks']"
2969,Did the Sixers win?pic.twitter.com/rTT5KhLn77,SacramentoKings,Sixers,"['Did the Sixers win?pic.twitter.com/rTT5KhLn77', '.@SacramentoKings @ us next time', 'will that change the score? gg ']",3,"['26 Dec 2016', '26 Dec 2016', '26 Dec 2016']","['Sacramen2 Kings', 'Philadelphia 76ers', 'Sacramen2 Kings']","['@SacramentoKings', '@sixers', '@SacramentoKings']"
2690,.@warriors Good start. ,Raptors,warriors,"['.@warriors Good start. ', '@Raptors ', ""@warriors lol no chance we're counting those.""]",3,"['13 Feb 2016', '13 Feb 2016', '13 Feb 2016']","['Toronto Raptors', 'Golden State Warriors', 'Toronto Raptors']","['@Raptors', '@warriors', '@Raptors']"
2970,"Well, yes, actually it is.https://twitter.com/sixers/status/4897209346 …",SacramentoKings,Sixers,"['Well, yes, actually it is.https://twitter.com/sixers/status/4897209346\xa0…', 'Debatablepic.twitter.com/91aCkDjw6Z', ""You're right, that tweet didn't age well.""]",3,"['9 Nov 2017', '9 Nov 2017', '9 Nov 2017']","['Sacramen2 Kings', 'Philadelphia 76ers', 'Sacramen2 Kings']","['@SacramentoKings', '@sixers', '@SacramentoKings']"
2376,@Raptors pls tell Norm to chill,MemGrizz,Raptors,"['@Raptors pls tell Norm to chill', 'pic.twitter.com/HWNGq6YmYC', '....ok this gif is great.']",3,"['25 Jan 2017', '25 Jan 2017', '25 Jan 2017']","['Memphis Grizzlies', 'Toronto Raptors', 'Memphis Grizzlies']","['@memgrizz', '@Raptors', '@memgrizz']"
2147,"If there's ever a day to add us (HawksSnaps) on Snapchat, today is that day. We're taking you behind the scenes as we prep for the Warriors.",ATLHawks,warriors,"[""If there's ever a day to add us (HawksSnaps) on Snapchat, today is that day. We're taking you behind the scenes as we prep for the Warriors."", '@ATLHawks sounds intriguing...', ""@warriors Does this mean you're gonna follow along?""]",3,"['6 Feb 2015', '6 Feb 2015', '6 Feb 2015']","['Atlanta Hawks', 'Golden State Warriors', 'Atlanta Hawks']","['@ATLHawks', '@warriors', '@ATLHawks']"
1651,".@Isaiah_Thomas2's schedule has been #NBASuperHeroes
like. See what he's been up to.
READ >>http://on.suns.com/352 ",Suns,ATLHawks,"["".@Isaiah_Thomas2's schedule has been #NBASuperHeroes\nlike. See what he's been up to.\n\nREAD >>http://on.suns.com/352\xa0"", ""@Suns Oh we're going next level now huh?"", ""@ATLHawks Isn't self-promotion a super power? #GetThemPageviews""]",3,"['30 Jul 2014', '30 Jul 2014', '30 Jul 2014']","['Phoen1x Šuns', 'Atlanta Hawks', 'Phoen1x Šuns']","['@Suns', '@ATLHawks', '@Suns']"
3185,.@Trobinson0 with the disrespectful swat.,Sixers,trailblazers,"['.@Trobinson0 with the disrespectful swat.', '@Sixers @Trobinson0 he’s known to do that.', ""@trailblazers @Trobinson0 We're enjoying it.""]",3,"['1 Mar 2015', '1 Mar 2015', '1 Mar 2015']","['Philadelphia 76ers', 'Trail Blazers', 'Philadelphia 76ers']","['@sixers', '@trailblazers', '@sixers']"
2728,"It's official, DeMar DeRozan returns tonight vs. the Sixers! #NBABallot #WeTheNorth #RTZpic.twitter.com/4VVL8krohP",Raptors,trailblazers,"[""It's official, DeMar DeRozan returns tonight vs. the Sixers! #NBABallot #WeTheNorth #RTZpic.twitter.com/4VVL8krohP"", '@Raptors graphic game strong.', '@trailblazers Thanks. 21 games without our All-Star more than enough time to get this one ready!']",3,"['14 Jan 2015', '14 Jan 2015', '14 Jan 2015']","['Toronto Raptors', 'Trail Blazers', 'Toronto Raptors']","['@Raptors', '@trailblazers', '@Raptors']"
2146,It's time! Who ya got? Tweet using #TeamEAST or #TeamWESTpic.twitter.com/Rm9lToh4kd,ATLHawks,warriors,"[""It's time! Who ya got? Tweet using #TeamEAST or #TeamWESTpic.twitter.com/Rm9lToh4kd"", '@NBAonTNT #TeamWest #SplashBrothers', '@warriors @NBAonTNT Nah. #TeamEast. Or should we say #TeamHawks?']",3,"['15 Feb 2015', '15 Feb 2015', '15 Feb 2015']","['NBA on TNT', 'Golden State Warriors', 'Atlanta Hawks']","['@NBAonTNT', '@warriors', '@ATLHawks']"
2377,Half man. Half amazing.pic.twitter.com/1e5QmCupds,MemGrizz,Raptors,"['Half man. Half amazing.pic.twitter.com/1e5QmCupds', 'Sounds familiar.pic.twitter.com/vGbRMqwIJc', ""he's a legend tbh""]",3,"['25 Jan 2017', '25 Jan 2017', '25 Jan 2017']","['Memphis Grizzlies', 'Toronto Raptors', 'Memphis Grizzlies']","['@memgrizz', '@Raptors', '@memgrizz']"
2842,"Tonight's starters in Sleepy Hollow, apparently...
Fox
Temple
Bogdanovic
Randolph
Cauley-Steinpic.twitter.com/ruGeGoqilS",SacramentoKings,nuggets,"[""Tonight's starters in Sleepy Hollow, apparently...\n\n Fox\n Temple\n Bogdanovic\n Randolph\n Cauley-Steinpic.twitter.com/ruGeGoqilS"", ""Falling back an hour means we're going all the way back to Halloween?"", 'We got the ambiance for it in Detroit!']",3,"['4 Nov 2017', '4 Nov 2017', '4 Nov 2017']","['Sacramen2 Kings', 'Denver Nuggets', 'Sacramen2 Kings']","['@SacramentoKings', '@nuggets', '@SacramentoKings']"
961,This twitter beef with @LAClippers & @trailblazers blazers is too funny ,LAClippers,trailblazers,"['This twitter beef with @LAClippers & @trailblazers blazers is too funny ', '@RonnnieLozano @LAClippers Beef? LA was talking ham.', ""@trailblazers @RonnnieLozano talkin' chickens now.. ""]",3,"['22 Oct 2015', '22 Oct 2015', '22 Oct 2015']","['Father', 'Trail Blazers', 'LA Clippers']","['@RonnnieLozano', '@trailblazers', '@LAClippers']"
1202,Big Daddy #NBAMoviespic.twitter.com/geHLyup0zX,nuggets,ATLHawks,"['Big Daddy #NBAMoviespic.twitter.com/geHLyup0zX', '@Sixers Wait, what?', '@ATLHawks @Sixers we second that.']",3,"['20 Aug 2014', '20 Aug 2014', '20 Aug 2014']","['Philadelphia 76ers', 'Atlanta Hawks', 'Denver Nuggets']","['@sixers', '@ATLHawks', '@nuggets']"
1194,"You know that feeling when everything is just going your way?
We feel that. Right now. And it’s awesome. #Nuggets",nuggets,ATLHawks,"['You know that feeling when everything is just going your way?\n\nWe feel that. Right now. And it’s awesome. #Nuggets', '@denvernuggets Can we borrow some points for the rest of our trip?', '@ATLHawks talk to us after the buzzer...']",3,"['11 Mar 2015', '11 Mar 2015', '11 Mar 2015']","['Denver Nuggets', 'Atlanta Hawks', 'Denver Nuggets']","['@nuggets', '@ATLHawks', '@nuggets']"
246,See ya soon @trailblazers #DoItBiggerpic.twitter.com/qtR2UIEFeL,PelicansNBA,trailblazers,"['See ya soon @trailblazers #DoItBiggerpic.twitter.com/qtR2UIEFeL', 'Bring a coat.', 'pic.twitter.com/vytOCH6Rvi']",3,"['Apr 11 2018', 'Apr 11 2018', 'Apr 11 2018']","['New Orleans Pelicans', 'Trail Blazers', 'New Orleans Pelicans']","['@PelicansNBA', '@trailblazers', '@PelicansNBA']"
772,Good guys up by one at the half. #DALatMIN #MFFLpic.twitter.com/YwjJcc4W7y,DallasMavs,Timberwolves,"['Good guys up by one at the half. #DALatMIN #MFFLpic.twitter.com/YwjJcc4W7y', 'Actually we are down by 1, but mistakes happen! ', 'We were actually on point here. #SorryNotSorry']",3,"['10 Dec 2017', '10 Dec 2017', '10 Dec 2017']","['Dallas Mavericks', 'Timberwolves', 'Dallas Mavericks']","['@dallasmavs', '@Timberwolves', '@dallasmavs']"
347,Million Dollar Big Baby #NBAMoviespic.twitter.com/zSxFrHpfFE,OrlandoMagic,warriors,"['Million Dollar Big Baby #NBAMoviespic.twitter.com/zSxFrHpfFE', '@LAClippers ha, good one!', '@warriors @LAClippers We also enjoyed his appearance in Three Men and a Big Baby.']",3,"['20 Aug 2014', '20 Aug 2014', '20 Aug 2014']","['LA Clippers', 'Golden State Warriors', 'Orlando Magic']","['@LAClippers', '@warriors', '@OrlandoMagic']"
1067,"FOR THE RECORD:
It's ""Laurel.""
The dress is blue.
A dog would wear pants on its hind legs only.
Thank you.",UtahJazz,MemGrizz,"['FOR THE RECORD:\n\nIt\'s ""Laurel."" \nThe dress is blue.\nA dog would wear pants on its hind legs only.\n\nThank you.', ""we're a little busy rn but yes agreed on all accounts"", 'yeah obviously']",3,"['May 15 2018', 'May 15 2018', 'May 15 2018']","['Utah Jazz', 'Memphis Grizzlies', 'Utah Jazz']","['@utahjazz', '@memgrizz', '@utahjazz']"
331,Let's go @OrlandoMagic. Warm ups vs the @Suns! #RoadWarrior #LetsGoMagicpic.twitter.com/RvTfQOhh6d,OrlandoMagic,Suns,"[""Let's go @OrlandoMagic. Warm ups vs the @Suns! #RoadWarrior #LetsGoMagicpic.twitter.com/RvTfQOhh6d"", '@rgvanriper @OrlandoMagic The guy on the right has the right idea. Enjoy #SunsVsMagic here @USAirwaysCenter tonight.', '@Suns @rgvanriper We beg to differ. Haha. But agreed, enjoy the game!']",3,"['30 Nov 2014', '30 Nov 2014', '30 Nov 2014']","['Robbie Van Riper', 'Phoen1x Šuns', 'Orlando Magic']","['@rgvanriper', '@Suns', '@OrlandoMagic']"
1205,It's time for some more hashtag games! Let's play #NBASweets today...,nuggets,ATLHawks,"[""It's time for some more hashtag games! Let's play #NBASweets today..."", ""Lets go! (Yes @Bucks @denvernuggets, we're awake )\n\nRT @ATLHawks: It's time for some more hashtag games! Let's play #NBASweets today..."", '@warriors @Bucks @ATLHawks phew!']",3,"['6 Aug 2014', '6 Aug 2014', '6 Aug 2014']","['Atlanta Hawks', 'Golden State Warriors', 'Denver Nuggets']","['@ATLHawks', '@warriors', '@nuggets']"
248,AD for 3 cuts the Blazers lead to 80-70 with 6:34 left in the 3rd #Pelicanspic.twitter.com/0YN1gRwJHn,PelicansNBA,trailblazers,"['AD for 3 cuts the Blazers lead to 80-70 with 6:34 left in the 3rd #Pelicanspic.twitter.com/0YN1gRwJHn', 'is AD demonstrating the size of our lead?', 'pic.twitter.com/zfWs4CclCc']",3,"['25 Nov 2016', '25 Nov 2016', '25 Nov 2016']","['New Orleans Pelicans', 'Trail Blazers', 'New Orleans Pelicans']","['@PelicansNBA', '@trailblazers', '@PelicansNBA']"
958,".@trailblazers Two good Clippers.
#TheHoopershttps://amp.twimg.com/v/ce1bd524-38c8-424f-9b43-7846c6b45bcd …",LAClippers,trailblazers,"['.@trailblazers Two good Clippers. \n#TheHoopershttps://amp.twimg.com/v/ce1bd524-38c8-424f-9b43-7846c6b45bcd\xa0…', '@LAClippers ', '@trailblazers meet The Hoopers. ']",3,"['30 Mar 2016', '31 Mar 2016', '31 Mar 2016']","['LA Clippers', 'Trail Blazers', 'LA Clippers']","['@LAClippers', '@trailblazers', '@LAClippers']"
1212,"
pic.twitter.com/IsxXD3SI6N",nuggets,MemGrizz,"[' \n \n \n pic.twitter.com/IsxXD3SI6N', 'Good tweet', 'thanks, fam']",3,"['9 Nov 2017', '9 Nov 2017', '9 Nov 2017']","['Denver Nuggets', 'Memphis Grizzlies', 'Denver Nuggets']","['@nuggets', '@memgrizz', '@nuggets']"
74,Happy Birthday #Celtics Legend and 3x @NBA champ Larry Bird #HBDpic.twitter.com/fHSHAJm2cj,celtics,DetroitPistons,"['Happy Birthday #Celtics Legend and 3x @NBA champ Larry Bird #HBDpic.twitter.com/fHSHAJm2cj', 'Happy Birthday Larry! cc @badboyhorn44 pic.twitter.com/MZQZEI0SOQ', 'Still bitter? pic.twitter.com/jHzOxOwQ0W']",3,"['7 Dec 2017', '7 Dec 2017', '7 Dec 2017']","['Boston Celtics', 'Detroit Pistons', 'Boston Celtics']","['@celtics', '@DetroitPistons', '@celtics']"
957,CP3 leads all scorers w/ 14 first-half points. #Dadpic.twitter.com/9DQRq8fcly,LAClippers,trailblazers,"['CP3 leads all scorers w/ 14 first-half points. #Dadpic.twitter.com/9DQRq8fcly', '@LAClippers ', '@trailblazers ']",3,"['17 Apr 2016', '17 Apr 2016', '17 Apr 2016']","['LA Clippers', 'Trail Blazers', 'LA Clippers']","['@LAClippers', '@trailblazers', '@LAClippers']"
966,JJ Redick leads all scorers with 30 points -- must have ate his Wheaties today.,LAClippers,trailblazers,"['JJ Redick leads all scorers with 30 points -- must have ate his Wheaties today.', '@LAClippers Hey that was our joke.', '@trailblazers sharing is caring.']",3,"['8 Nov 2014', '8 Nov 2014', '8 Nov 2014']","['LA Clippers', 'Trail Blazers', 'LA Clippers']","['@LAClippers', '@trailblazers', '@LAClippers']"
80,Hi @nuggets is Janos . first i am like you guy . i am big fan nuget @Wendys very tasty for me with fry also ice cream . I AM EAT MANY TIME. but you are not good like @Wendys . you are no point team alway waste time of team proper . nobody is care but You are get grade F .,celtics,nuggets,"['Hi @nuggets is Janos . first i am like you guy . i am big fan nuget @Wendys very tasty for me with fry also ice cream . I AM EAT MANY TIME. but you are not good like @Wendys . you are no point team alway waste time of team proper . nobody is care but You are get grade F .', ""Hi, Janos. We don't care. Enjoy spending the rest of your day tweeting NBA teams."", 'Hi @isjanosnba is Celtics. We like your tweets to other NBA teams. Feel free to continue.']",3,"['Apr 11 2018', 'Apr 11 2018', 'Apr 11 2018']","['Janos', 'Denver Nuggets', 'Boston Celtics']","['@isjanosnba', '@nuggets', '@celtics']"
1072,"You're not gonna want to miss this...
#UTAatMEMpic.twitter.com/W1xbR5rYYs",UtahJazz,MemGrizz,"[""You're not gonna want to miss this...\n\n#UTAatMEMpic.twitter.com/W1xbR5rYYs"", '', 'Cheers to tonight! pic.twitter.com/xcX7lqMtqF']",3,"['8 Jan 2017', '8 Jan 2017', '8 Jan 2017']","['Utah Jazz', 'Memphis Grizzlies', 'Utah Jazz']","['@utahjazz', '@memgrizz', '@utahjazz']"
1166,"2 days.
| http://on.nba.com/2ynTTPc pic.twitter.com/DGvjIuvpFk",nuggets,UtahJazz,"['2 days.\n\n | http://on.nba.com/2ynTTPc\xa0pic.twitter.com/DGvjIuvpFk', 'pic.twitter.com/xJ7OqyVcBB', 'pic.twitter.com/O17IS7aTM4']",3,"['16 Oct 2017', '16 Oct 2017', '16 Oct 2017']","['Denver Nuggets', 'Utah Jazz', 'Denver Nuggets']","['@nuggets', '@utahjazz', '@nuggets']"
79,NOPE.pic.twitter.com/BP6vVfIcqD,celtics,UtahJazz,"['NOPE.pic.twitter.com/BP6vVfIcqD', 'pic.twitter.com/Ew4Zqig7uY', 'You were saying? ']",3,"['Mar 28 2018', 'Mar 28 2018', 'Mar 28 2018']","['Boston Celtics', 'Utah Jazz', 'Boston Celtics']","['@celtics', '@utahjazz', '@celtics']"
1167,"Best center in the NBA.
@ us.https://twitter.com/NBA/status/915775737210253312 …",nuggets,UtahJazz,"['Best center in the NBA.\n\n@ us.https://twitter.com/NBA/status/915775737210253312\xa0…', 'pic.twitter.com/TXGpEuYCZW', 'pic.twitter.com/ErwtBBrYUq']",3,"['4 Oct 2017', '4 Oct 2017', '4 Oct 2017']","['Utah Jazz', 'Memphis Grizzlies', 'Denver Nuggets']","['@utahjazz', '@memgrizz', '@nuggets']"
1168,"The schedule is out!
We open the season 10/18 at home against the @nuggets!
Full schedule: http://utahjazz.com/schedule pic.twitter.com/ZIdkm787J1",nuggets,UtahJazz,"['The schedule is out! \n\nWe open the season 10/18 at home against the @nuggets!\n\nFull schedule: http://utahjazz.com/schedule\xa0pic.twitter.com/ZIdkm787J1', 'when do tickets go on sale for individual games?', 'Saturday at 10am!']",3,"['14 Aug 2017', '14 Aug 2017', '14 Aug 2017']","['Utah Jazz', 'Paul Richards', 'Denver Nuggets']","['@utahjazz', '@paulyrichards', '@nuggets']"
695,"Alley-oop!
Brandon to Josh and the bench loves it!",DetroitPistons,LAClippers,"['Alley-oop!\n\nBrandon to Josh and the bench loves it!', '@DetroitPistons Lob Motor City?', '@LAClippers Sounds about right']",3,"['15 Dec 2014', '15 Dec 2014', '15 Dec 2014']","['Detroit Pistons', 'LA Clippers', 'Detroit Pistons']","['@DetroitPistons', '@LAClippers', '@DetroitPistons']"
799,"We made it! (cc: @sandrogasparro) MT @Complex_Sports: We ranked all 30 NBA Twitters:
5. @Bucks
4. @dallasmavs
3. @Sixers
2. @ATLHawks
1. ?",DallasMavs,ATLHawks,"['We made it! (cc: @sandrogasparro) MT @Complex_Sports: We ranked all 30 NBA Twitters: \n5. @Bucks\n4. @dallasmavs\n3. @Sixers\n2. @ATLHawks\n1. ?', '@MaxRappaport @sandrogasparro @Complex_Sports @Bucks @dallasmavs @Sixers So did we!', 'Momma we made it! @ATLHawks @MaxRappaport @sandrogasparro @Complex_Sports @Bucks @Sixers']",3,"['27 Jan 2015', '27 Jan 2015', '27 Jan 2015']","['max', 'Atlanta Hawks', 'Dallas Mavericks']","['@MaxOnTwitter', '@ATLHawks', '@dallasmavs']"
151,BLAZERS ON PACE TO SHUT OUT THE NETS,BrooklynNets,trailblazers,"['BLAZERS ON PACE TO SHUT OUT THE NETS', '@TRILLBLAZIN thx for the jinx', '@trailblazers @TRILLBLAZIN yes, thanks!']",3,"['23 Feb 2016', '23 Feb 2016', '23 Feb 2016']","['Trillblazin. The Brand', 'Trail Blazers', 'Brooklyn Nets']","['@TRILLBLAZIN', '@trailblazers', '@BrooklynNets']"
1172,BRUH.pic.twitter.com/eAoUE3Uumz,nuggets,WashWizards,"['BRUH.pic.twitter.com/eAoUE3Uumz', 'sry, reflexpic.twitter.com/rNKivy6Ma3', '']",3,"['8 Mar 2017', '8 Mar 2017', '8 Mar 2017']","['Denver Nuggets', 'Washington Wizards', 'Denver Nuggets']","['@nuggets', '@WashWizards', '@nuggets']"
1173,"Today is a gameday.
Will you be joining us at Pepsi Center tonight? #Nuggetspic.twitter.com/w0ZoLJ9lif",nuggets,WashWizards,"['Today is a gameday. \n\nWill you be joining us at Pepsi Center tonight? #Nuggetspic.twitter.com/w0ZoLJ9lif', ""@denvernuggets we will be, we're also heading to L.A. after the game if you need a ride"", ""@WashWizards well isn't that convenient. We'll bring some snacks!""]",3,"['25 Jan 2015', '25 Jan 2015', '25 Jan 2015']","['Denver Nuggets', 'Washington Wizards', 'Denver Nuggets']","['@nuggets', '@WashWizards', '@nuggets']"
693,"When the 2015-16 NBA schedule drops...
#NBAOffseasonpic.twitter.com/BbDspRd486",DetroitPistons,LAClippers,"['When the 2015-16 NBA schedule drops...\n\n#NBAOffseasonpic.twitter.com/BbDspRd486', '@LAClippers Can’t. Wait. #NBAOffseasonpic.twitter.com/oIVxKqkH7b', '.@Sixers @LAClippers #NBAOffseason We see youpic.twitter.com/QkSX90wHXB']",3,"['28 Jul 2015', '28 Jul 2015', '28 Jul 2015']","['LA Clippers', 'Philadelphia 76ers', 'Detroit Pistons']","['@LAClippers', '@sixers', '@DetroitPistons']"
78,[email protected]/ALv0ZoZDbY,celtics,LAClippers,"['[email protected]/ALv0ZoZDbY', 'pic.twitter.com/seaLcjs1NI', 'pic.twitter.com/Tmrv0vsIFi']",3,"['6 Mar 2017', '6 Mar 2017', '6 Mar 2017']","['Boston Celtics', 'LA Clippers', 'Boston Celtics']","['@celtics', '@LAClippers', '@celtics']"
692,Awwww yeah. Give us a follow everywhere if you would be so kind. #DetroitBasketballpic.twitter.com/zHWQ1H37RM,DetroitPistons,LAClippers,"['Awwww yeah. Give us a follow everywhere if you would be so kind. #DetroitBasketballpic.twitter.com/zHWQ1H37RM', '@DetroitPistons Done.', ""@LAClippers You're too kind""]",3,"['8 Feb 2016', '8 Feb 2016', '8 Feb 2016']","['Detroit Pistons', 'LA Clippers', 'Detroit Pistons']","['@DetroitPistons', '@LAClippers', '@DetroitPistons']"
1213,".@willyhg94 & maintain their perfect #EuroBasket2017 record with the win over !
: http://on.nba.com/2vUsdvX
: http://on.nba.com/2iSwW08 pic.twitter.com/WoqZLhJH4Z",nuggets,MemGrizz,"['.@willyhg94 & maintain their perfect #EuroBasket2017 record with the win over !\n\n: http://on.nba.com/2vUsdvX\xa0\n: http://on.nba.com/2iSwW08\xa0pic.twitter.com/WoqZLhJH4Z', 'squad', 'squad x 2']",3,"['5 Sep 2017', '5 Sep 2017', '5 Sep 2017']","['NEW YORK KNICKS', 'Memphis Grizzlies', 'Denver Nuggets']","['@nyknicks', '@memgrizz', '@nuggets']"
425,GAME. OVER. #RisingWolves #SpriteSlampic.twitter.com/AGRk47bmZI,Timberwolves,OrlandoMagic,"['GAME. OVER. #RisingWolves #SpriteSlampic.twitter.com/AGRk47bmZI', '@MNTimberwolves ', '@OrlandoMagic ']",3,"['14 Feb 2015', '14 Feb 2015', '14 Feb 2015']","['Timberwolves', 'Orlando Magic', 'Timberwolves']","['@Timberwolves', '@OrlandoMagic', '@Timberwolves']"
1244,Looking is overrated.pic.twitter.com/Ki1COfi9uM,nuggets,SacramentoKings,"['Looking is overrated.pic.twitter.com/Ki1COfi9uM', 'What sort of sorcery is this', 'He’s more of a Joker than a sorcerer tbh.pic.twitter.com/YRm5XH3Yfu']",3,"['13 Mar 2017', '13 Mar 2017', '13 Mar 2017']","['Denver Nuggets', 'Sacramen2 Kings', 'Denver Nuggets']","['@nuggets', '@SacramentoKings', '@nuggets']"
1238,"
pic.twitter.com/Rb6P7VbsMD",nuggets,SacramentoKings,"['\npic.twitter.com/Rb6P7VbsMD', 'We noticed your clip ended a little early there.pic.twitter.com/720Q149Ok8', ""We're good. Nikola is scoring this easily.pic.twitter.com/m1ekSHgFce""]",3,"['Mar 11 2018', 'Mar 11 2018', 'Mar 11 2018']","['Denver Nuggets', 'Sacramen2 Kings', 'Denver Nuggets']","['@nuggets', '@SacramentoKings', '@nuggets']"
793,We're not going to post the halftime score. Check out our mentions if you want to see how the game is going.,DallasMavs,ATLHawks,"[""We're not going to post the halftime score. Check out our mentions if you want to see how the game is going."", 'Been there fam ', 'Same']",3,"['21 Dec 2016', '21 Dec 2016', '21 Dec 2016']","['Trail Blazers', 'Atlanta Hawks', 'Dallas Mavericks']","['@trailblazers', '@ATLHawks', '@dallasmavs']"
1055,"Whose twitter ritual/style do you like the best?