-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.json
1807 lines (1807 loc) · 298 KB
/
test.json
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
{"text": "@PersonaSoda well yeah, that's third parties. Sony itself isn't putting out actual games for it. It's got 1-2 yrs of 3rd party support left.", "label": 0, "id": "637651487762554881"}
{"text": "Sony rewards app is like a lot of 19 y.o female singers and a non retro sale. 2nd one with no info", "label": -1, "id": "637666734300905472"}
{"text": "@fakethom Have android tab and don't use phone much, in fact very little. May go the Sony route then:-)", "label": 0, "id": "637668142110654468"}
{"text": "Finally I get my ps4 back I sent it to Sony cause my HDMI was mess up now I can play MG's Tuesday yeaaaaa buddy", "label": 1, "id": "637708370129125377"}
{"text": "@AskPlayStation Why won't u guys help me out?! Im calling Sony tomorrow! I want help but the \"support team\" 3 hours of tweeting and nothing", "label": -1, "id": "637807521500020737"}
{"text": "Sony's 1st teaser package for the launch of the original Playstation seems to feature a dominatrix? https://t.co/xbisCRkPL4 #MistressSophia", "label": 0, "id": "637857585652076544"}
{"text": "#tv Ind vs SL 3rd Test Day 3: Cricket live score and Sony Six live streaming info: Watch the live teleca... http://t.co/mUlHw4cN00 #Sony", "label": 0, "id": "637859860017647616"}
{"text": "@TruthInsider @bertymufc @gamerxone720 @PNF4LYFE @Yanks2013 @VirtuaMe Lol it's all about Sony Sony Sony, if Sony gave Bj's u be the 1st", "label": 0, "id": "637923877423742977"}
{"text": "@greencapt Official reason, because the game has to be on our region store and sony wont have it up til tuesday", "label": 0, "id": "638045103861465088"}
{"text": "the only thing crazier than last-gen was 6th-gen. a 4-way console race between Sega, Nintendo, Microsoft & Sony. you'll NEVER see that again", "label": 1, "id": "638141885022736385"}
{"text": "When you remember Sony is trying to make bible study mandatory on Sunday nights @xo_taylorbang http://t.co/CfljDMvMv3", "label": 1, "id": "638159273072062464"}
{"text": "I know it's coming coon but I don't get why it's taken so long for Sony to release a remote for the PS4. All of the 3rd party ones are bad.", "label": 0, "id": "638172841284866053"}
{"text": "@InfinityInq Everyone is playing 3.0 and I'm just sitting here playing 2.0 because Sony is making me wait until tomorrow.", "label": 1, "id": "638175116145377280"}
{"text": "Albert Shum and I won 3rd in a SONY design competition in early 90's...our design was a phone in which you push... http://t.co/gAKP1hAyYX", "label": 1, "id": "638198267013169153"}
{"text": "@InnoBystander Might keep SONY monthly subs going beyond tomorrow....", "label": 0, "id": "638270737502105600"}
{"text": "@tauriqmoosa Nope. Tomorrow.Wait... tomorrow's also when Sony breaks out the next bundle of PS+ freebies.Oh, what a LOVELY day!", "label": 1, "id": "638393198201696256"}
{"text": "Uncharted 4: A Thief's End launches for PS4 in North America on March 18, 2016, Sony announced today.The latest game in the Naughty D...", "label": 0, "id": "638394988892520448"}
{"text": "@kewldoode72 Will be interesting to see if Sony addresses the heat issues in the Z5 - it may have found a work around", "label": -1, "id": "638399901349621760"}
{"text": "@pizzalordess is official. Coming back to the Sony family with Destiny in hand Sept 15th.", "label": 1, "id": "638453810093006848"}
{"text": "@Adam_OliverYT Hi Adam, you may need to contact Playstation support or Sony for details regarding this aspect of your purchase. ^TO", "label": 0, "id": "638481185275052032"}
{"text": "Oh my gosh actual acknowledgement from Sony the Vita exists. https://t.co/3QEfWcBRu0", "label": 1, "id": "638575315770478593"}
{"text": "Mashable : Sony's electronics division may be in a slump, but it doesn't plan on fading quietly into the night. To spur innovation at...", "label": 1, "id": "638626774503415808"}
{"text": "#tech Sony's new smartwatch packs all its tech in the wristband: Sony's electronics division may be in a slump... http://t.co/moVzepIzww", "label": 0, "id": "638640306905190400"}
{"text": "@bollybrit @itsnacool both of webb ones made less money than the 3rd Raimi one, plus the success of Marvel had Sony scared i think", "label": -1, "id": "638775649193361409"}
{"text": "And in comes Sony with the letdown. Only one color. Clap it up... low and slow https://t.co/6jaRCgfvTP", "label": -1, "id": "638783969568366593"}
{"text": "@Guillin @jayesh Personally, I'm looking forward to Sony's presser tomorrow about the new Xperia :p", "label": 1, "id": "638813699927621632"}
{"text": "DEAL ALERT: Here's a 3rd-party battery w/great reviews @Amazon, compatible with Sony CineAlta & Blackmagic URSA cams: http://t.co/amWKaJuQcl", "label": 1, "id": "638822443352612864"}
{"text": "Aqua blue PS Vita debuts in November - Sony is introducing an aqua blue PlayStation Vita and will begin selling it... http://t.co/g1UvIc1q4u", "label": 0, "id": "638823054353694720"}
{"text": "Sony may release first smartphone with 4K screen - The Star Online http://t.co/cEdCUgEuWs #News", "label": 0, "id": "638890534073954304"}
{"text": "Do I know anyone in LA with a Red, Sony C300 or Sony fs7 that I could rent or borrow tomorrow night (9/2) for a few hours?", "label": 0, "id": "638901502791184384"}
{"text": "@vsamuel323 For any information on this we ask that you contact Sony directly. Apologies for the inconvenience this may cause. ^AI", "label": 0, "id": "639074935240065024"}
{"text": "Rich Guys Can't Make Other Rich Guys Look Bad: It's the 1st Law Of Rich Guys or something.In the end even Sony... http://t.co/yNVaGavh1a", "label": 0, "id": "639087527165497344"}
{"text": "Sony may just have made my new phone. That's a brilliant line up that nails practically everything. Let's see what the reviews say.", "label": 1, "id": "639093319516205057"}
{"text": "Exactly why I'll never buy Sony. Those 1st class ass kissers are dick pulling the media for high scores on future games. LOL. @tomwarren", "label": -1, "id": "639093919024742400"}
{"text": "Sony may have cut scenes from #WillSmith's film #Concussion to avoid angering the NFL! http://t.co/nSUCckKwhK http://t.co/DMQTRDbSbX", "label": 0, "id": "639121090652930048"}
{"text": "@ShinyLinooneBMG @StarlightAurora But they make up for it in amazing 3rd party support. And there are a handful of good 1st party Sony games", "label": 1, "id": "639162337513988097"}
{"text": "New phone on Saturday! Torn between Sony z3 or Samsung A5 - which one would you recommend?", "label": 1, "id": "639191969349148672"}
{"text": "Do you see Sony pulling shit like this?No. https://t.co/n2TMMkngG6", "label": 0, "id": "639234985568960512"}
{"text": "Sony went all out with this new high-tech smartphone. Some may question if anyone needs this phone #J2150BB https://t.co/rLMlR07ySu", "label": 0, "id": "639284990036078592"}
{"text": "We gonna hold a meetup on September 6th with SONY and other Japanese Giants: http://t.co/uO9I7z3llW#dldtelaviv2015", "label": 0, "id": "639331098372124672"}
{"text": "Sony's pulling a #TASM2 by beginning pre-production on a Goosebumps sequel even though the 1st one hasn't come out yet. #FuckingStupid", "label": 0, "id": "639607684833128449"}
{"text": "@martymegs @SonyUK @johnlewisretail it's Friday let's see if JL and Sony can resolve the issue. Gut feeling is that they will go silent.", "label": 0, "id": "639703605705113600"}
{"text": "Sony Xperia Z5, Xperia Z5 Compact Price, Xperia Z5 Premium Detailed: Following the launch announcement on Wednesday, Sony has reveale...", "label": 0, "id": "639708225927929856"}
{"text": "@sine_injuria It may be planned obsolescence, but to me, it just means I don't buy stuff from companies like Sony.", "label": 0, "id": "639713042201190400"}
{"text": "Xperia Z5 pre-orders available at the Carphone Warehouse: Sony may have only announced its ne... http://t.co/OHglq1Lhkx #tech #technews", "label": 0, "id": "639768346708185089"}
{"text": "#IFA2015: International Fair of Electronic Consumers of Berlin, GER 4-9/Sep. with Samsung, Sony, Sharp, Epson,Toshiba http://t.co/TAHrmg87w5", "label": 0, "id": "639820972766445568"}
{"text": "@The_CrapGamer Sony don't care about their exclusives they never made a theme console for their exclusives https://t.co/ft9VpAxSjs", "label": -1, "id": "639867771812188160"}
{"text": "Everybody chill, Sony may have a separate global flagship phone in the works Unfortunately, there are http://t.co/TFLn1GFfFx #techupdates", "label": 0, "id": "639894389716856832"}
{"text": "@GeorgeGegham Marvel is in charge now, no way Sony can get too involved to mess up the 3rd time, plus they have a good director/writers.", "label": 1, "id": "639899871550537728"}
{"text": "M$: Sony is gobbling up 3rd Party ExclusivesSays the company that tried to steal away Tomb Raider, Deadrising, Rareware, several indies...", "label": 0, "id": "639948495990976513"}
{"text": "The New York Times reported Tuesday that Sony executives seemingly softened Concussion to placate the NFL", "label": 0, "id": "639967215069040642"}
{"text": "What evidence is there that says North Korea hacked Sony or are we just a propaganda machine for the US Govt? https://t.co/rRpLA3hBW0", "label": 0, "id": "640137904149393408"}
{"text": "@StevieBenton Dunno about tinder style. Sony had a thing called +U that sat on top of http://t.co/2eHWnmqf7L, I think. Looks dead now though", "label": 0, "id": "640156377244127232"}
{"text": "Sony announced a new 500 GB PlayStation 4 bundle with Uncharted 4; will be in stored on October 9 for $400 in the US, $450 in Canada.", "label": 1, "id": "640170970603474944"}
{"text": "Huge play by #Georgia to get out of the shadow of their own goal line on 2nd down. Lambert to Sony for a 48 yard gain. Very accurate pass", "label": 1, "id": "640209445763567616"}
{"text": "@JCPSPORTS I have always loved Sony. Been watching the kid since his 8th grade.", "label": 1, "id": "640213874793410560"}
{"text": "@blakejharrisNYC could hit the 3rd console war with @PS1Documentary as you wrote about some of the characters that went over to Sony's side.", "label": 0, "id": "640254617750671364"}
{"text": "[the Sun daily] Lenovo, Sony and Marshall London on-trend smartphones: SOME smartphone trends come and go but ... http://t.co/PYOmwTuCGj", "label": 1, "id": "640271739486883842"}
{"text": "#DidYouKnow? \"One\" was once voted the 5th most popular song of all time, in a poll conducted by Sony", "label": 1, "id": "640290626756476928"}
{"text": "@chaosyoshimage That's why I think it may be some weird last minute deal with sony, Mirrors Edge had a solid 12 or so TV's", "label": 1, "id": "640305092827070464"}
{"text": "Im going to sony store tomorrow.. may go in debt. i need to get a few things before its really tooooo late", "label": 0, "id": "640337021215604740"}
{"text": "I am having some major problems with Sony so probably no upload tonight I promise 2 tomorrow though. <3 =)", "label": 0, "id": "640343783956213760"}
{"text": "Sony is not anymore first to market with things awesome, but are so good at being 2nd to market but first in value. #aqua", "label": 1, "id": "640356367031623680"}
{"text": "Sony has their 1st #1 film of the summer, as WAR ROOM fought off COMPTON $9.3M to $8.8M.", "label": 1, "id": "640543554574520321"}
{"text": "Immensely enjoyable TV Song show \"Indian Idol Jr\" comes to a close today.Well done Sony, may the best kid win.All the finalists were tops.", "label": 1, "id": "640547904004816896"}
{"text": "Should add in October 27 - Read that folder on PC from the Sony leak with all the scripts & production emails with a bottle of wine & candle", "label": 0, "id": "640594318298869760"}
{"text": "I do like that Sony formed that 3rd Party production team to assist with localization of games", "label": 1, "id": "640640375980343296"}
{"text": "OK... Sony has announced its playable games line up for the Tokyo Games Show 2015, September 15. Interestingly... http://t.co/wUNE8AX1Dc", "label": 1, "id": "640645857449127936"}
{"text": "Drew at Hitfix says the new Bond song will be released Tuesday. SONY will not tell the performer, but rumors is Radiohead.", "label": 0, "id": "640718570452860928"}
{"text": "@SakuraLBP sumo made the game. Sony's in-lead. Sony decided the game release date, they chose black friday to get more money.", "label": 0, "id": "640719522387771393"}
{"text": "SONY: War Room, the faith-based movie, led the domestic box office over the U.S. Labor Day holiday weekend in its 2nd week in the cinemas", "label": 1, "id": "640749596336095232"}
{"text": "I got no love for Sony. They can disappear tomorrow,someone else would just replace them and try harder for consumers. @Gaming_forever1", "label": -1, "id": "640774100919554049"}
{"text": "Football world cup qualifier 2018 Iran vs India Watch it live on Sony sixSeptember 8 , 7 pm#BleedBlue #letsfootball Support Indian team", "label": 0, "id": "640864171203014657"}
{"text": "Sony Pictures Last Monday, Sony Pictures released the first theatrical trailer for Concussion, the studio's... http://t.co/fLV2qOswco", "label": 1, "id": "640912226497392640"}
{"text": "Sony's Project Morpheus Review: A Virtual Reality Headset that May Change the Future of Gaming ... http://t.co/OuJkuP9fKP #oculusrift #vr", "label": 1, "id": "641119538277404672"}
{"text": "@strunk_daddy For any info you would need to contact Sony. Apologies for any inconvenience this may have caused ^AI", "label": -1, "id": "641146360356544512"}
{"text": "Still waiting for my phone to come back from Sony..bit lost without it. Hopefully back up by Thursday. Last upload was from my PC.", "label": -1, "id": "641154359292784640"}
{"text": "Tomorrow Morning it will be USA vs Brazil live on Sony Six HD at 6 AM . #BRAvUSA #USAvBRA", "label": 1, "id": "641158545228980224"}
{"text": "#Sony Sony Xperia Z5 Premium news: Sony may have found a solution for the overheating Snapdragon 810: ... http://t.co/W6vF0cGZHL #Xperia", "label": 1, "id": "641163114801598464"}
{"text": "@Sriram_sv It is Deepika for Tamasha :) not sony he he he...may be Sony is one of the brand partners", "label": 1, "id": "641170873962008576"}
{"text": "final vid going up tomorrow most likely. depends on when i can get sony vegas back. just gonna be my 4 fav clips with a simple edit.", "label": 0, "id": "641265496109785088"}
{"text": "Sam Smith to sing title song for \"Spectre\" the new James Bond film, Sony confirms. Song out 9-25; movie on Nov. 6.", "label": 0, "id": "641292853927354368"}
{"text": "It would be poetic if Nintendo became a Sony 2nd Party Developer. It would also make choosing consoles every generation very easy", "label": 1, "id": "641296016788996096"}
{"text": "What if tomorrow Apple is just like, \"the Apple TV is now a game console and we're going to take on Sony and Microsoft (and Nintendo)\" lol.", "label": 1, "id": "641330259644784642"}
{"text": "@SamLittleMix Sony said 1hr 15m unless they got it wrong? Idk i'll double check with them tomorrow", "label": 0, "id": "641355475611553792"}
{"text": "Sony's 20th Anniversary sale going on nowhttp://t.co/o98eV4BdyL", "label": 1, "id": "641372765568811008"}
{"text": "@DarneReddick @Gamer1Mack @JCrookedSmile MS is using the strategy that Sony used last gen/spend more on 1st party nd less on marketing deal", "label": 1, "id": "641374857356267520"}
{"text": "PS4 Firmware 3.0 http://t.co/snhEXLgDaH As some of you may know, Sony is releasing the 3.0 update for the PS4 sometime in the near", "label": 1, "id": "641388155275362304"}
{"text": "Hmmm. Diablo III Ultimate Evil edition is on sale for Sony's 20th Anniversary. But don't know anyone playing on PS4 to make it seem worth", "label": 0, "id": "641404549484273664"}
{"text": "PSN is down for some users, not all. No prior warning from Sony either - can you sign in right now? RT. http://t.co/1mi6lwVfAR", "label": -1, "id": "641518156855377920"}
{"text": "Sony and Zeiss showdown! Announcement on Friday 11 is not just about camcorder and Otus!", "label": 1, "id": "641560678696882176"}
{"text": "20 years ago today, Sony released the 1st Playstation in the states. We are feeling pretty old in the van today.", "label": 1, "id": "641639801871970304"}
{"text": "#tv Sony taunts Apple with 'game on' message on PlayStation's 20th anniversary: Sony has also taken noti... http://t.co/Uzkg2HIQa1 #Sony", "label": 0, "id": "641658506362249216"}
{"text": "Sony's 20th anniversary for the classic PlayStation! :D #20YearsOfPlay", "label": 1, "id": "641658799892230148"}
{"text": "Apple and Microsoft the 1st pairing in Tech Bastards cinematic universe. Stay till after the credits to see them eating shawarma with Sony.", "label": 0, "id": "641673714619273216"}
{"text": "Tearing through the blu-ray of Star Wars: Rebels. Screw Force Friday, it's Force Everyday!", "label": 1, "id": "640720177919827968"}
{"text": "It may have been our trip to Disney and the release of all the new #starwars stuff, but Jose and I are totally in a Star Wars mood", "label": 1, "id": "640723876402434048"}
{"text": "Force Friday: Hear new Star Wars villain Kylo Ren's voice for the first time ... - Digital Spy UK http://t.co/svzAvb1ROz", "label": 1, "id": "640733634899501056"}
{"text": "I have practice tomorrow but all I want to do is watch Star Wars. #starwars #thestruggle", "label": 1, "id": "640747308192149504"}
{"text": "Playing Star Wars Monopoly listening the \"Star Wars - Imperial March\" best mood ever", "label": 1, "id": "640750947946246144"}
{"text": "the force is strong in my family. Star Wars. the force awakens. December my people. #ijustnerdedsohardmyglassesbroke http://t.co/XIeh22bp8x", "label": 1, "id": "640771948377735168"}
{"text": "Here's what @devincf gets wrong about Star Wars toys and right about Force Friday http://t.co/M7t4AClMqD via @reeft", "label": 0, "id": "640780161554751488"}
{"text": "@Sir_Mapleleaf Um... I don't know how familiar you are with Star Wars, but I was at the shops on Saturday and it was EVERYWHERE.", "label": 0, "id": "640824468806348800"}
{"text": "We are launching #MayTheForceFacts on a Monday! Every Monday at 12pm for the rest of the year get interesting facts about Star Wars!", "label": 1, "id": "640838335188103168"}
{"text": "Spend a few minutes this morning with one of the loveliest people in the whole Star Wars family, Anthony Daniels: http://t.co/RHyWjER54g", "label": 1, "id": "640858069161897985"}
{"text": "@TheMikeSalk it ends with Star Wars in December", "label": 1, "id": "640858420476641280"}
{"text": "I'm going to Target today solely to look at Star Wars toys. I missed Force Friday due to filming.", "label": 1, "id": "640873454422593536"}
{"text": "Star Wars sale at Games Republic, up to 75% off! May the savings be with you. https://t.co/zVmmnTc94R", "label": 1, "id": "640874503262863360"}
{"text": "Sat in the Hard Rock Cafe, with my new Star Wars T-Shirt on, and apparently, I JUST missed George Lucas by a minute...No words", "label": 1, "id": "640904197165199360"}
{"text": "New on Ebay!Star Wars in the USA STAR WARS 30TH ANNIVERSARY SAGA LEGENDS R2-D2 FIGURE http://t.co/2F1uZGvYK2 http://t.co/mv0J49XUxm", "label": 1, "id": "640912711447113728"}
{"text": "@OrmQuinn Was it expensive? I'm curious bc I know my brother LOVES collecting toys and he loves STAR WARS, his bday is in November", "label": 1, "id": "640922342533693440"}
{"text": "Brian C. Eury want to go see Star Wars at midnight in December when it comes out and wear one of these? http://t.co/1F5HNnLF1b", "label": 1, "id": "640924984001429504"}
{"text": "If you're married to someone who doesn't like Star Wars, may divorce be with you.", "label": 0, "id": "640942957563092992"}
{"text": "Everyone should most definitely not go watch Star Wars on December 18th because it'll be a terrible movie", "label": -1, "id": "640946794923446272"}
{"text": "Just in: Star Wars fanatics now have a new social media site to interact with each other, called ForceBook, may the source be with you. ;)", "label": 1, "id": "640972274917580800"}
{"text": "@tokyofox not about that but there'll be many more things you'll get excited about Star Wars coming out in Japan before Dec 18.", "label": 1, "id": "640976599907635200"}
{"text": "They have Star Wars crocs....I may or may get them tonight", "label": 1, "id": "640983469707927553"}
{"text": "Did Disney make back 3/4 of the $4 billion it paid for Lucasfilms?Force Friday: $3b in Star Wars merchandise sales http://t.co/6laKrfDOTZ", "label": 0, "id": "641012095601872898"}
{"text": "Hot Wheels takes over NYC with a fleet of Star Wars First Order Stormtrooper vehicles to celebrate Force Friday http://t.co/DKU7mEl3pL", "label": 1, "id": "641020758437830656"}
{"text": "Since Star Wars is coming this December, I guess fans should take a moment to appreciate it :)... http://t.co/WMMZ0y0UvM", "label": 1, "id": "641029007765577728"}
{"text": "Why you are never too old for Star Wars. May the force be with you! http://t.co/3lafCMOG5i", "label": 1, "id": "641045779419803648"}
{"text": "#IAmAChristianBut I use Star Wars, Star Trek, Lord of the Rings or a cheesy 80s movie reference in almost every Sunday School lesson.", "label": 1, "id": "641067009313079296"}
{"text": "I can't stop watching Star Wars videos on YouTube. I just need December to come now!", "label": 1, "id": "641081239831711744"}
{"text": "Going to read some of the next book, Smuggler's Run, before going to sleep. I may be reading too much Star Wars...", "label": 1, "id": "641118745851744256"}
{"text": "In the mood to watch Star Wars but it's like 2 and I have class tomorrow", "label": 0, "id": "641126573492555776"}
{"text": "The Force Awakens: Shoppers strike back as Star Wars mania returns http://t.co/kXv03Ibk0P via @ExpressAndStar - may the force be with you!", "label": 1, "id": "641137115577884672"}
{"text": "I haven't told anyone but I bought about $30 in Star Wars merch on force Friday and I'm proud of it", "label": 1, "id": "641146368078168064"}
{"text": "Star Wars is now out a day early on the 17th? *Rushes to book an extra days annual leave* #100DaysToGo #StarWarsTheForceAwakens", "label": 1, "id": "641146612010610688"}
{"text": "Shop the Orange Tuesday Flash Sale for the Best Halloween Costumes: Star Wars - Ewok Infant / Toddler Costume... http://t.co/MgflbQPnqW", "label": 1, "id": "641151539822792704"}
{"text": "@WithYouRebelX I've had problems with my email and haven't received any information for Saturday's Star Wars secret cinema. Can you resend?", "label": -1, "id": "641163697709260800"}
{"text": "Chris just said he likes Star Wars more than me. If I wasn't so relaxed that may have been a big argument haha", "label": 0, "id": "641170452686237696"}
{"text": "It's official, Star Wars to be released in the UK on the 17th of December. http://t.co/bFST0e1vBs", "label": 1, "id": "641171546581651456"}
{"text": "@robeanne love it. :) I think my students may be a little over my Star Wars excitement at present. Heh heh", "label": 1, "id": "641182264655654912"}
{"text": "UK will get Star Wars on the 17th December a day before the U.S. Glad I didn't put that holiday in For it yesterday :D", "label": 1, "id": "641190959947096064"}
{"text": "Who is watching Star Wars Episode 7 with me at the Waterloo IMAX on Dec 17th?", "label": 0, "id": "641195314309939200"}
{"text": "Star Wars is coming to the UK on December 17 - IN YOUR FACE, AMERICA!", "label": 1, "id": "641203385505591297"}
{"text": "@TheatrMwldan December 17th is the day for Star Wars , most anticipated film of the year??", "label": 0, "id": "641205515947786240"}
{"text": "My Science Fiction page http://t.co/YVKuXoRhcC Teach with Star Wars. May the learning force be with you. http://t.co/VrXr2H7mCg", "label": 1, "id": "641221882155540480"}
{"text": "AMAZING Millennium Falcon Drone by Air Hogs! Force Friday! Star Wars Episode 7: Force Awakens News want want want http://t.co/ghavPTmcgW", "label": 1, "id": "641225246385815552"}
{"text": "2nd graders in front of bus playing with Star Wars toys humming the theme song v loud", "label": 0, "id": "641253126582865920"}
{"text": "YES! Star Wars to be screened in the UK a day early - now December 17th! One day closer to The Force Awakens! :-D http://t.co/4tzoiktrIB", "label": 1, "id": "641256829557862400"}
{"text": "Some great pictures emerging from the Force Friday event for Star Wars! http://t.co/cvI9trQsMo", "label": 1, "id": "641257504685621248"}
{"text": "I was about to say, UK better not get Star Wars a week early. But they aren't. 17th is thursday. We get mad shows on Thursday's now anyways!", "label": 1, "id": "641257894600577024"}
{"text": "Last Friday was #ForceFriday and this Wednesday the \"Journey to Star Wars: The Force Awakens\" continues with... http://t.co/wGxcpgdaUs", "label": 1, "id": "641258012158525440"}
{"text": "Star Wars to come to UK a day early - so its countdown from 100 days today! https://t.co/IOJCRBpG6Y", "label": 1, "id": "641263243827224576"}
{"text": "Whenever I'm thinking about negative bs...I remember Star Wars Episode 7 comes out in December...lol we just gotta make till Christmas dawg", "label": 1, "id": "641268074797236229"}
{"text": "Big week in the House of Flo:1st day of Kindergarten, 1st day of preschool, son turns 6 & gets to watch Star Wars, & a Birthday party!", "label": 1, "id": "641268234482618368"}
{"text": "@RavensburgerPC #competition for a chance to #win new Star Wars episode 7 Puzzle just RT&FLW ends Tuesday 08/09/15 6pm #ForceFriday", "label": 1, "id": "641273037040525312"}
{"text": "I need somebody to have a Star Wars marathon with before December!", "label": 1, "id": "641294071328190464"}
{"text": "The new Star Wars film will be released here a day before the US. The Force Awakens is out on the 17th of December. http://t.co/o1YERr7bvS", "label": 1, "id": "641297149033086977"}
{"text": "Star Wars released a day earlier in the UK,Thursday Dec 17th...Tomorrow,days will be booked off work for this day long remembered.", "label": 1, "id": "641298353570074624"}
{"text": "@OsoFreshFutbol I think the expectations are so low in Avatar land it may be a sleeper. Star Wars land is going to be tough to do right.", "label": 1, "id": "641302529997991937"}
{"text": "#ForceFriday as a whole was pretty disappointing. Not sure who dropped the ball - retailers, Hasbro, or Disney. It's Star Wars! C'mon!", "label": -1, "id": "641308893625352192"}
{"text": "Toy collectors & Star Wars Fans may the force guide you to my store to find the Droid you are looking for! #BB8 http://t.co/PzqtbxSmYA", "label": 1, "id": "641315202269618176"}
{"text": "New #StarWars comic out tomorrow: Journey to Star Wars: the Force Awakens: Shattered Empire & Darth Vader", "label": 1, "id": "641316732846608385"}
{"text": "Disney whips Star Wars fans into frenzy with 'Force Friday' event http://t.co/Fwz9DLOOK9", "label": 1, "id": "641332062667059200"}
{"text": "@ImBoardWithLife @ChrisBryanGames what Star Wars game released on Force Friday are you most interested in?", "label": 1, "id": "641346758929285120"}
{"text": "@Podesta1989 btw, did you see that Star Wars is now out on the 17th dec?", "label": 1, "id": "641348425867399169"}
{"text": "@alexkidwell I give zero shits about Star Wars, and I'm only mildly excited by Bond films. Will I be seeing you on RHAP tomorrow?!", "label": -1, "id": "641354519209644033"}
{"text": "Collector's Corner: Star Wars Force Friday Special Edition: Let us guide you through the galaxy of Star Wars ... http://t.co/CVzikDSfz1", "label": 0, "id": "641366359960514561"}
{"text": "can it be December 18th already? I just wanna watch Star Wars: The Force Awakens", "label": 1, "id": "641369044411658240"}
{"text": "4 yr old who attended Saturday's Star Wars event came in today to tell me he made 4 new friends that day. #childrenslibrarian #lovemyjob", "label": 1, "id": "641374748388270080"}
{"text": "December 16 & 17 will be the best two consecutive days ever. NXT Takeover live in London and then Star Wars", "label": 1, "id": "641388572805828608"}
{"text": "there's not really anyone I know irl that gets passionate enough about Star Wars I need to find new friends before dec 18th", "label": 1, "id": "641397972731740160"}
{"text": "Finishing Jurassic park for like the 100th time tomorrow. Film class is gonna have a lot of reruns for me. All the batman films, Star Wars..", "label": 1, "id": "641411277118509056"}
{"text": "\"Did you know Star Wars is coming out with a new movie in December?!?!\" - third grade boy", "label": 1, "id": "641411331699027968"}
{"text": "@Pillownaut 1978. I missed Star Wars and Saturday Night Fever but made it in time for Grease, so there's that.", "label": 1, "id": "641413877121445888"}
{"text": "Who wants to go see Star Wars ep 7 with me in December?", "label": 0, "id": "641414501326266368"}
{"text": "Why is it the Imperial March from Star Wars is playing im my head while I think about a new episode of #inkmaster tonight?? Lol", "label": 1, "id": "641418485952745473"}
{"text": "When we go over expectations, I make it fun with Star Wars-- the Jedi Code of Conduct. http://t.co/67J9CcUea5 #sdu46", "label": 1, "id": "641424954131632128"}
{"text": "Just discovered the complete first season of Star Wars rebels is available for free On Demand. Tomorrow's work day just got AWESOME.", "label": 1, "id": "641443222317744129"}
{"text": "@TOPPSMIKE I also cross trade for huddle and bunt. I may quit Star Wars and want to cross trade. Don't want to be suspended again. Thoughts?", "label": 0, "id": "641445550911414272"}
{"text": "Can December 17th get here any faster? I want to watch Star Wars already", "label": 1, "id": "641471359801946112"}
{"text": "@rebelrealcanon Nothing wrong with that. I was in 4th grade when Episode I was released. I'd seen the OT before, but TPM is my Star Wars!", "label": 1, "id": "641475013250428932"}
{"text": "UK release of Star Wars Episode VII: The Force Awakens to be a day earlier than expected (Dec 17) http://t.co/ImqpET9gWd", "label": 0, "id": "641497394962694144"}
{"text": "Now the UK release of Star Wars: The Force Awakened has been brought forward to our 10th wedding anniversary, my wife might take the hint?", "label": 1, "id": "641514458666418176"}
{"text": "There is no perhaps when it comes to Star Wars! You MUST! May the power of the force compel you to do so! https://t.co/RmcfH2TmqF", "label": 1, "id": "641537857363030016"}
{"text": "Awaken the Force with these Star Wars themed gifts. Like them you may. http://t.co/70No1HsyqN", "label": 1, "id": "641537975675961344"}
{"text": "My morning alarm is the Imperial March from Star Wars. The feelings of dread act just like coffee.", "label": 1, "id": "641571615956992000"}
{"text": "I want to have a Star Wars party for my 21st", "label": 1, "id": "641575077713195009"}
{"text": "the UK is getting Star Wars 1 day earlier! I might have to take the 17th of December off work", "label": 1, "id": "641583723192958976"}
{"text": "The release date for Star Wars: The Force Awakens in the UK has been moved to a day earlier than originally advertised on December 17.", "label": 0, "id": "641601508723793920"}
{"text": "Daily Video: NYC Press Event with COVERGIRL and STAR WARS: May the force be with you.I a... http://t.co/EHOuC86eDA via @audreymcclellan", "label": 1, "id": "641608087124602880"}
{"text": "It's Wednesday! Best week in a long time. Batman, Harley, Star Wars, Saga. Ant Man toys, TONS more. Love it!! http://t.co/x62ZNgqVV0", "label": 1, "id": "641614426752348160"}
{"text": "Result in my 1st 2 packets of the Star Wars trading cards collection. The dream team in foils! #Han #Chewie http://t.co/NmNcMCAo3x", "label": 1, "id": "641630842729680896"}
{"text": "@BitterOldJoe it gave the impression the whole thing is a beery deconstruction of Star Wars for adult edgelords. I may read it anyway", "label": -1, "id": "641631867461050368"}
{"text": "And the show goes on! Scorpions' Sting at 3 p.m. Come down; the sun is even peeking through.", "label": 1, "id": "632621591004733440"}
{"text": "He's still wrong about Sting :) https://t.co/SgqnnXStdZ", "label": 0, "id": "633013702308921344"}
{"text": "Sting will interfere and cost Undertaker the match this sunday. Or, it's possible we could see the return of the masked Kane. #SummerSlam", "label": 0, "id": "633983362068283392"}
{"text": "Sting defeat the @GoderichGrizz 9-4 ... On to fullarton tomorrow night to face the @FullartonAs", "label": 0, "id": "634188936420675584"}
{"text": "Ich habe ein @YouTube-Video positiv bewertet: http://t.co/4njhci2kuC Sting saves Randy Orton from the Authority: WWE Raw, March 16,", "label": 1, "id": "634329596184301569"}
{"text": "@AnsoniiSan thanks brother I feel the same she's a fighter! She loves Sting so I'm going to ask him to sign a card for her Saturday lol", "label": 1, "id": "634359833655951360"}
{"text": "Preaching theme this Sunday: David & Bathsheba -- with band doing cover of Sting's \"Every Breath U Take (I'll be watching U)\" #yeahbaby", "label": 1, "id": "634371514385625088"}
{"text": "Retweet/Favorite if you want to see Masked Kane, Sting and The Rock return this Sunday at #SummerSlam! #WWEFamily http://t.co/coY9ouWlMj", "label": 1, "id": "634549048217849856"}
{"text": "Sting's in Brooklyn. Sunday night, it's happening. IT'S HAPPENING! #SummerSlam", "label": 1, "id": "635072444190064640"}
{"text": "@JGoldLabel Doubt it. Rumor has it Kane may attack Lesnae because Lesnar \"Put him out\" Sting shows up sets up Taker vs Sting Mania 32", "label": 0, "id": "635302554855829504"}
{"text": "[150823 Moo Party] Mamamoo sang Sting with live piano 1st then back to MR. Pictures/fanarts/messages from MooMoos were shown on the screen.", "label": 1, "id": "635419747664961536"}
{"text": "@TheDoctorIsntIn Interference seems a foregone conclusion to set up a 3rd match at WM...unless Sting shows up tonight and screws Taker.", "label": 0, "id": "635578493267505152"}
{"text": "If Sting is on RAW tomorrow then there is no doubt he will confront The Undertaker to build towards a match at WrestleMania.", "label": 0, "id": "635653323333443584"}
{"text": "@lentzadam533 yea definitely but I just saw a report that Sting is coming to RAW tomorrow and Taker going be at raw could be interesting", "label": 1, "id": "635654033106014209"}
{"text": "Rumor has it that Sting will appear on #RAW tomorrow night.", "label": 1, "id": "635657174216273920"}
{"text": "@Danielmmafan Sting could always have another match before. I just read hes gonna be on Raw tomorrow.", "label": 1, "id": "635672621175148544"}
{"text": "Sting will be on RAW tomorrow though so that should set up the taker/Sting match", "label": 1, "id": "635679349497307136"}
{"text": "PWInsider reports that several sources indicate Sting flew back to New York City tonight, which could mean he appears at RAW tomorrow night.", "label": 0, "id": "635689839162171393"}
{"text": "@ShadouDoragon @HolyWhiteDragon @IronRockSaint --instead responded to Sting's statement. \"Hai, Sting-san! May the guild with more--", "label": 0, "id": "635901190228836352"}
{"text": "\"Sting may be apppearing tonight\" how many times have we heard that in the last 2 months? I'll believe it when I hear the crows. #Raw", "label": 0, "id": "635916924011028481"}
{"text": "@FredRichani If you wanna do Rock vs Brock and Taker vs Sting at wm 32. Survivor Series on his 25th anniversary would be the place to end it", "label": 1, "id": "635926759976869888"}
{"text": "Rumor Roundup (Aug. 24, 2015): Raw tonight, WrestleMania, Sting return, Divas Revolution, more! http://t.co/VRDROEKt0E via @cagesideseats.", "label": 1, "id": "635932391429799937"}
{"text": "And it all ends, with Sting!Monday Night Raw, was absolutely,WAY more better, then Summerslam.#StingVsRollins #RawBrooklyn", "label": 1, "id": "636013828250202112"}
{"text": "That was one of the best Monday Night Raw shows I've seen in a while, finishing off with Sting! Could we see #RollinsvsSting", "label": 1, "id": "636014034366660608"}
{"text": "Including his TNA title wins, Sting is a 14-time World Champion. Beating Seth would tie him with Cena for 2nd of all time. @wwe #raw", "label": 1, "id": "636014397698232320"}
{"text": "great RAW tonight...1st the Dudley Boys and then to end with Sting!!! #WWERaw #WWE", "label": 1, "id": "636014918093930496"}
{"text": "@DukesWrestling if Sting is in a Rollins story line who's the next rumored 3rd man for Reigns/Ambrose?", "label": 0, "id": "636015712608350208"}
{"text": "I gotta mute @WWE on Monday's. Good to see Sting sucks it was in twitter. I guess back to San Andreas it is.", "label": 0, "id": "636015735697870848"}
{"text": "Sting winning at #NightOfChampions results in either Sting vs Taker at Mania or Sting vs Cena and I've got a bad feeling it's the 2nd option", "label": 1, "id": "636016923394895872"}
{"text": "Sting wins title and vacates it the next night on Raw goes in to hall of fame in April....", "label": 0, "id": "636018634285035520"}
{"text": "Sting is back, and the Dudleys return :D Quite an eventful Monday Night Raw on the whole. Lesnar-Dallas though X'D #RawBrooklyn", "label": 1, "id": "636021350054821888"}
{"text": "@ryan24672 @CMPuLs3 And it'd work, Seth getting the rub and being Sting's 2nd ever opponent + a month long reign with both titles is BIG", "label": 1, "id": "636022266933977088"}
{"text": "@Chrissie32NY so tomorrow we should try & plan a trip to see the next PPV as Sting might be world champ!!", "label": 1, "id": "636025035518513152"}
{"text": "I liked a @YouTube video http://t.co/zDth0kovNW Seth Rollins vs Sting the Returns 2015 WWE Raw, Aug 24", "label": 1, "id": "636028340982427648"}
{"text": "I honestly think I'm still Marking Out from last night's #RAW... 1st the Dudley Boyz... Then Ric Flair... And then Sting!! :D #WWE", "label": 1, "id": "636153239298306048"}
{"text": "@NickGator well, at least you can see Sting's 1st WWE title win for only 9.99", "label": 1, "id": "636209869255634944"}
{"text": "One issue I had with the Sting stuff, But it also supporting one of my theories during Mania... http://t.co/Kxr2yb69ze #RAW", "label": -1, "id": "636212744186953733"}
{"text": "@mdschaeff Did you notice how the upper corners of Sting's paint were gone b/c he was in there so long?\"C'mon Seth, take it home.\"", "label": 0, "id": "636223723545227264"}
{"text": "@grumpyhawk We've already been getting Christmas stuff in at work so I assume we're just prepping for Black Friday even earlier and Sting is", "label": 0, "id": "636249430342115328"}
{"text": "C'mon, Vince...we're not stupid. We all know Sting's going to job to Rollins to make him look strong.", "label": -1, "id": "636258863558168576"}
{"text": "Loving the Sting stuff & especially loving the way Triple sold it all... STING WAS IN THE BOX! http://t.co/Kxr2yb69ze #RAW", "label": 1, "id": "636295810599251968"}
{"text": "The Sting stuff just being great & loving how Triple H sold the \"big reveal\"... http://t.co/Kxr2yb69ze #RAW", "label": 1, "id": "636326367093764097"}
{"text": "@raschatz Cena with that broken nose. And if Sting is in the title chase, Paul (HHH) may have killed that Cena-Rollins feud.", "label": 0, "id": "636367558342406144"}
{"text": "I'm getting the gut feeling that Sting will win the WWE title belt(which'll drive the wrestling podcasters insane) https://t.co/KozEyUa5Mn", "label": 1, "id": "636484412654268416"}
{"text": "Rock out this Wednesday morning with this amazing song by Robert Downey Junior and Sting! The lyrics are... http://t.co/UbRgslnY5j", "label": 1, "id": "636522432979947520"}
{"text": "News on the Sting angle from Monday's RAW #WWE #RAW #Stinghttp://t.co/iqzbbQ7A69", "label": 1, "id": "636538301000888320"}
{"text": "http://t.co/r2eotN5i7DPretty nifty way they got Sting into the ring on #RAW on Monday. #WWE", "label": 1, "id": "636635617598775296"}
{"text": "@titowrestling c'mon you wouldn't mark out if Sting was champ? Granted I realize Rollins ain't dropping the strap to him but for nostalgia?", "label": 0, "id": "636807398087233536"}
{"text": "Maybe if Sting had her on Monday his facepaint would've made it to 11pm http://t.co/yi7hKahVFC", "label": 0, "id": "637471340929417216"}
{"text": "When it comes to weathered instruments, there's Brian May's guitar, Sting's bass, and Motorhead's Lemmy", "label": 0, "id": "637477909293363201"}
{"text": "WWE just announced Sting will start off RAW this upcoming Monday", "label": 1, "id": "637626394864914432"}
{"text": "BREAKING: @WWE just announced that Sting will open Monday's edition of #RAWTampa at 8pm EST. http://t.co/RtZucAaWoS", "label": 1, "id": "637626986979033088"}
{"text": "Retweeted The Cheapest Heat (@TheCheapestHeat):BREAKING: @WWE just announced that Sting will open Monday's... http://t.co/vHunbLNHQU", "label": 1, "id": "637632167015788544"}
{"text": "See they should have announced Sting's appearance last Monday beforehand. Say he will address WM and his future. Tease retirement.", "label": 0, "id": "637719681298731008"}
{"text": "@kenjude me and a Daddy Deano went to see Sting and Paul Simon. 4 blokes behind us talked for the 1st 15 mins. Absolute dicks. Why?", "label": 0, "id": "637730730022408192"}
{"text": "BREAKING NEWS: Sting will be at #Raw and open the show this Monday http://t.co/msiFqHPUw5 http://t.co/LecmnWmCFg", "label": 1, "id": "637745966909526016"}
{"text": "ENGLISHMAN IN NEW YORK by STING was no.15 in the UK charts on 29 August 1990 https://t.co/oxFAAR1zxa", "label": 1, "id": "637785711383609344"}
{"text": "Wonder if Sting will be able to speak with his actual voice on #Raw on Monday, or if they'll dub him over like a movie trailer again.", "label": 0, "id": "638009247872233473"}
{"text": "That statue's going to be demolished via Sting's bat. https://t.co/ni8VfDd5VK", "label": 0, "id": "638101814588542976"}
{"text": "@KevinLive5 thanks! I know you would have the answer. Hope all is well! I'm sure Sting last Monday had you jacked up with energy!", "label": 1, "id": "638130291555610625"}
{"text": "For tonight's episode of Bell to Bell w/ @AaronDaniel1987 & @JoEburGett_WE, listen to https://t.co/8ISrJWbVJC. RAW, Sting, Rollins, & more.", "label": 0, "id": "638154933993349120"}
{"text": "Sting appears for the 2nd week - Ziggler/Lana face Rusev/Summer - Divas Beat the Clock match to determine #1 contender to title at NOC. #Raw", "label": 0, "id": "638155954861772800"}
{"text": "HERE WE GO Monday Night Raw hopefully we get another good show tonight Sting vs Rollins at NOC should be really good #RAW", "label": 1, "id": "638501772143796224"}
{"text": "Sting opens tonight's #WWE #RAW - Results: http://t.co/bgtILzw8sV http://t.co/Edbdj4n4xT", "label": 1, "id": "638503100706328576"}
{"text": "#WWE Monday Night #RAW results Sting opens the show - http://t.co/gdmVy0jyYm http://t.co/6Wbc5pLeew", "label": 0, "id": "638503304452943872"}
{"text": "I know Sting says this is Monday Night #Raw, but it feels a lot more like Monday Nitro to me", "label": 1, "id": "638503449534054401"}
{"text": "And @TripleH may have \" hand picked \" @WWERollins but @StephMcMahon and Sting is right- Rollins is not half the man HHH is. #RAW", "label": 1, "id": "638505605825753089"}
{"text": "Instead of that, Sting has to suck up to Hunter. I realize it may be planting a seed for HHH/Rollins, but I hate dumb faces.", "label": 0, "id": "638505622053457920"}
{"text": "Going on record, Sting wins belt at NoC, drops it at the MSG show on the 3rd. If I'm wrong, ya can have open season on me.", "label": 1, "id": "638507821462618112"}
{"text": "Sting is on wwe monday night raw tonight http://t.co/cSmiagYDd0", "label": 1, "id": "638510545008771073"}
{"text": "Not that I don't love Seth Rollins, he's gold on the belts. But this may be Sting's only title run sooo #StingOnRaw #RAW #RawTampa", "label": 1, "id": "638516251476799488"}
{"text": "\"@AnishJain50: Sting opens Monday night Raw! #StingonRaw\" although with a crappy promo. @MrGriffinB #NightOfChampions", "label": 1, "id": "638519367970500608"}
{"text": "Sting and dudley boyz in action tonight. One of the best monday night raws nbs", "label": 1, "id": "638521578330959872"}
{"text": "@jimmykorderas I congratulate you on using Vince logic not because Sting is old he would never let a WCW star win the strap in his 1st year", "label": 1, "id": "638534949604188160"}
{"text": "*Cena and Sting stare from the ramp at Triple H and Seth Rollins* was really a closing to Monday Night Raw y'all. That happened. #RAW", "label": 1, "id": "638548912450744320"}
{"text": "Sting's Opening Promo being literally the perfect example when it comes to how to sell a PPV with a Promo... http://t.co/9IAoMFyqUA #RAW", "label": 1, "id": "638819901163986946"}
{"text": "@DisrespectfulTy i never left. I been lurking over the tl like Sting did on Monday Night Nitro", "label": 0, "id": "638969776128294912"}
{"text": "Sting deserves his run with the title on his way to the HOF. HBK won the title after being gone for years in his 2nd match back.", "label": 1, "id": "639217619321659392"}
{"text": "Tuesday Raw Roundtable: Sting, Dudleys, Seth Rollins Clashes with Stephanie, Divas Beat The Clock: WWE had ano... http://t.co/iGpAYst5FQ", "label": 1, "id": "639317019783892992"}
{"text": "Will get this tomorrow, looking forward to the Sting feature. #FaveMagazine https://t.co/arZhflYmJ2", "label": 1, "id": "639536587244703745"}
{"text": "Fragile - George Skaroulis (Sting)....Tomorrow's rain will wash the stains awayBut something in our minds will... http://t.co/Hso1OdNVAh", "label": 0, "id": "639546612394631168"}
{"text": "Check out my new \"Wade Keller Hot Topics Video Blog.\" Here's the 3rd one on Sting, Big Show-Brock, Raw ratings: http://t.co/ZMPpPZUSVI", "label": 1, "id": "639844717480378368"}
{"text": "Watching some classic WCW Monday Nitro. Love reliving the NWO and Sting feud. Thanks @EBischoff For everything. WCW will live forever", "label": 1, "id": "639864217428996096"}
{"text": "Credit to WCW. Bubba beat Sting in May, since that time they've decided to put Bubba vs Hogan tonight - Bubba has done *NOTHING* since", "label": 1, "id": "639894846442967041"}
{"text": "Sting defeat the Shedden Force 10-6. Next game tomorrow at 1015 vs Innerkip Jets . #labourday2015 #labourdayclassic", "label": 1, "id": "640208689769660417"}
{"text": "@AbiWilks Sting may give you some ideas. https://t.co/Vs72Ps9MfV", "label": 1, "id": "640302588617981952"}
{"text": "@JDfromNY206 what up JD,can't wait to hear off the script part 3 tomorrow,Sting will be on raw this monday? have good one bro.", "label": 1, "id": "640324003048124416"}
{"text": "Not sure if Sting's a 1st ballot HoFer, since Vince holds the only ballot", "label": 0, "id": "641040890732130304"}
{"text": "@TheFrayMovement Considering that Sting might have a two-month run w/ the title after being the 3rd wheel to Braun Strowman... yeah", "label": 1, "id": "641438754213728256"}
{"text": "Verizon remains #1 overall in cell service. T-Mobile may not be the best, but I their pricing and upgrades are great. http://t.co/z41Fzah09U", "label": 1, "id": "633667870099144705"}
{"text": "Why Inteliquent Inc. Jumped 30% Tuesday Morning: With a fresh T-Mobile contract under its belt, the behind-the... http://t.co/bBx3hObs96", "label": 1, "id": "633683292596797440"}
{"text": "@BeatsSupport that may take some doing. I'll have to go to T-Mobile to get another copy of the receipt.", "label": 0, "id": "633788406787522560"}
{"text": "@sflores7792 Angel switched to T-Mobile in January. He says it's not bad. Is it problems with reception? I have Verizon", "label": 0, "id": "633884477534638080"}
{"text": "@The_only_keith_ ...device is also unlocked or a T-Mobile device) you shouldn't need to call in. It may be necessary, however, if... 2/3", "label": 0, "id": "634121761236328448"}
{"text": "Even better, just found out that I won 3 tickets to Sunday's STL/SD game via the T-Mobile 3-for-1 Sweepstakes! Thanks @TMobile and @MLB!", "label": 1, "id": "634135861857157120"}
{"text": "Finally got me a lil T-Mobile phone! Imma get it on Friday", "label": 1, "id": "634212157941514240"}
{"text": "@AriahAguilar I might just do that if I can't convince them. Lol my mom & I are gonna go to t-mobile on Saturday and see what we can do.(:", "label": 1, "id": "634227230025973760"}
{"text": "Guy at T-mobile: ok so just call the store tomorrow and ask for me so we can set up the phone!Me the next day: what the fuck was his name.", "label": -1, "id": "634439365729521664"}
{"text": "According to @SalSports we may see little to none of Matt Cassel tonight. Predominately T-Mobile and EJ", "label": 1, "id": "634484206672982016"}
{"text": "So, I won a Reds ticket from T-Mobile for Sunday's game...a SINGLE ticket in sec. 509...lol.. Can't go without hubby...he'd cry...haha", "label": 0, "id": "634523816224550912"}
{"text": "@project_fitness Have you been able to locate a local T-Mobile branch to you? We may need to try your SIM in a known working device... 1/2", "label": 1, "id": "634556182288580608"}
{"text": "Terrible preseason game. I'm thinking those refs had some 3rd stringers in tonight as well. Solid, safe game by my man T-Mobile!!", "label": 0, "id": "634562661326393346"}
{"text": "TOMORROW the Lovely Ladies of the #ThetaNu Chapter of #SigmaAlphaIota will be washing cars at T-Mobile on N.... http://t.co/MPXO7sw2ac", "label": 1, "id": "634754996635090944"}
{"text": "I may just keep with AT&T, sprint is to much , and t-mobile is up in the air for right now.", "label": 0, "id": "634809303812153344"}
{"text": "Got my replacement phone from T-Mobile today. Overnighted it no charge, which is awesome. Too bad I can't get to the store until tomorrow!", "label": 1, "id": "634809429276291072"}
{"text": "I just wanna switch to t-mobile because of its CEO!! #rockstar https://t.co/JgNGxANfLR", "label": 1, "id": "634810105200971776"}
{"text": "Google Support says compatible with T-Mobile, so...guess we bug them for a new SIM tomorrow, as planned.", "label": -1, "id": "634881566754390016"}
{"text": "@greetmytweet_ hahah I haven't had one since Monday, and it was supposed to be expedited here. T-Mobile is a joke.", "label": -1, "id": "635123017933156352"}
{"text": "Come see the signing of @tatiwest at the 4th and Wilshire T-Mobile store in Santa Monica!! http://t.co/WD56IlwlFg", "label": 1, "id": "635190772468350976"}
{"text": "@AshleyJJ__ yea that's what they said at T-Mobile that it comes out in October", "label": 1, "id": "635249487544369152"}
{"text": "The Hot N Crusty on 14th and 1st is now a T-Mobile, this is why I don't come to the East Village anymore.", "label": 0, "id": "635276559591579648"}
{"text": "@TMobileHelp 2 attempts. I have had no cell service since Thursday. Our balance has been paid and we've been with t-mobile for almost a year", "label": 0, "id": "635291912727953408"}
{"text": "@alias8818 Hey there! We're excited to have you as part of the T-Mobile family! Our inventory may vary from channel to channel. If... 1/3", "label": 1, "id": "635380424596963329"}
{"text": "T-mobile said the iPhone 6s come out everywhere September 18th. Not a 7", "label": 0, "id": "635635724474261504"}
{"text": "I'll just call T-Mobile tomorrow", "label": 0, "id": "635673478256005120"}
{"text": "@TAVanCleave Great question! That means you are roaming domestically, in a spot where there may be little to no T-Mobile coverage and... 1/3", "label": 1, "id": "635680236500316161"}
{"text": "@EhmOhSquared not yet since it just came out friday they don't have screen protectors. And I'm not paying 25+ for one at t-mobile lmao", "label": 1, "id": "635819494531837952"}
{"text": "For $80 on T-Mobile U get unlimited talk/text/data while in the US/Mexico/Canada. C'mon get with the times #canadiancellphoneplanssuck", "label": -1, "id": "635822055666135041"}
{"text": "T-Mobile Holds 2-Day Sale On Devices Ending August 25th: Back to school is a time to prepare for the upcoming ... http://t.co/MSaKfcgOTh", "label": 0, "id": "635928317741301760"}
{"text": "Short Sales T-Mobile Holds 2-Day Sale On Devices Ending August 25th: T-Mobile has short sales throughout the y... http://t.co/3pRKDPbe1e", "label": 0, "id": "635945868324024321"}
{"text": "I like T-Mobile but this upgrade having spazzed is making me uneasy. I'll ride it out for now, but another incident may make me switch.", "label": -1, "id": "635966335374200833"}
{"text": "@TMobileHelp Is the iphone 6s coming out Sept 18th to T-mobile stores as well? If so, what can I do about reserving one to JUMP?", "label": 0, "id": "636250751191355393"}
{"text": "@TMobile @JohnLegere T-Mobile has the best people!. My phone may have been stolen or left at work and the rep was so helpful on Chat!", "label": 1, "id": "636370093509750784"}
{"text": "Can't wait for Saturday, I'm going to my first ever bills game! Wanna see T-Mobile start", "label": 1, "id": "636374157131911170"}
{"text": "November is when my 1 year anniversary with T-mobile debating if I want to stay with them or go to Verizon and get the 6+S", "label": 1, "id": "636395907521609728"}
{"text": "@tLindseey_ I did it bout 10 times but I got something for T-Mobile as tomorrow believe that shit", "label": 0, "id": "636409358612623361"}
{"text": "I won't have service this Thursday/Friday because my contract with T-Mobile is ending so I have to wait to get a new one on Friday", "label": 0, "id": "636475524798377984"}
{"text": "Tonight's first meeting of the 5th ann. #ubalt #zombie course kicks off with T-Mobile, Sprint, and Ashley Madison. Wait...what? True! ;)", "label": 1, "id": "636643054301106176"}
{"text": "T-Mobile promised me next day air, so if I don't have a brand new iPhone in my hand tomorrow after class they're fake af", "label": -1, "id": "636758478183202816"}
{"text": "T-Mobile be trippen my phone is off after I just payed it Friday tf !! #annoyed", "label": -1, "id": "636863673084936192"}
{"text": "T-mobile needs to change their name to t-maybe, because you may or may not have service", "label": -1, "id": "637063650524721152"}
{"text": "@epicdoublegamer el oh el il see u tomorrow bro and sorry about my phone T-Mobile is garbage", "label": 0, "id": "637066623573082112"}
{"text": "@JohnLegere Hey, I may not have T-Mobile but you are EASILY my favorite CEO, probably of all time. Definitely of all time. #sprintlikehell", "label": 1, "id": "637081433018777601"}
{"text": "Two guys in Floriduh tried to rob a T-Mobile store after it closed on Tuesday night . . . but it happened to be... http://t.co/Za79gbpRSE", "label": -1, "id": "637223076342591488"}
{"text": "I guess I will just check back with T-MOBILE on October 31st halloween to see if they will get any new microsoft LUMIA smart phones.,", "label": 0, "id": "637377077289840641"}
{"text": "T-MOBILE LIFE INSTORE:CSR:Hi may I help youME:Yes, I can't access my picturesCSR:OK......I don't have a note... http://t.co/PIVABNaTOJ", "label": 0, "id": "637406940310601728"}
{"text": "@JohnLegere If me and 2 friends wanted to stop by the T-Mobile HQ on the way back from PAX Monday, would that be cool?", "label": 1, "id": "637513497270579204"}
{"text": "I have no wired internet until Wednesday. Currently relying on T-Mobile for access to the rest of the world.", "label": 1, "id": "637673846175232000"}
{"text": "Lumia 940 and 940 XL rumors: AT&T and T-Mobile may get first dibs: After official press renders of the Cityman... http://t.co/ABwBeBMFwt", "label": 1, "id": "637702995396927490"}
{"text": "Free stuff available from mobile US carriers -- AT&T, Sprint, T-Mobile, Verizon -- that you may not be aware of... http://t.co/T3nsgvnTPt", "label": 1, "id": "637726204389232640"}
{"text": "T-Mobile and band 12 support in unlocked smartphones put in the spotlight - TmoNews: August 27, 2015Alex Wa... http://t.co/KIVlLYQhoN", "label": 0, "id": "637728970939629568"}
{"text": "T-Mobile stops sales of Lumia 640 just two months after release The Lumia 640 went August 28, 2015http://t.co/IN1wAlqCLF Cool Tech!!!", "label": 0, "id": "637745006602616832"}
{"text": "#Billsmafia I'm just saying, Today the 1st team Offense had no Harvin, Watkins, McCoy... T-mobile with the crew is just damn scary", "label": -1, "id": "637760402814726144"}
{"text": "whole summer without a phone and the day I decide to spazz out on T-Mobile, they tell me that my phone should be coming in tuesday", "label": 0, "id": "637857408623243265"}
{"text": "@EE claims they can't do anything but upgrade at my own cost. 1st month with them - should have stayed with T-Mobile contract. #AvoidEE", "label": -1, "id": "638010060560592896"}
{"text": "T-Mobile said my bill is due when it's due on the 17th smh", "label": -1, "id": "638033869283938304"}
{"text": "I think i might just walk to t-mobile in get my phone tomorrow dont have no time to wait for my mom", "label": 0, "id": "638215956557271040"}
{"text": "RT: @TechyUpd8s T-Mobile going after ~3k \"Network Abusers\" on Monday...some of them are using as m... http://t.co/U59pzV6wPe #techyupd8s", "label": -1, "id": "638250221105901568"}
{"text": "[T-mobile] Stopping Network Abusers: An Open Letter to T-Mobile Customers \"the only August 31, 2015http://t.co/tr8ogp4Ey5 Cool Tech!!!", "label": -1, "id": "638294020008054785"}
{"text": "From the rumors department: Both Lumia 940 / XL coming to AT&T, while T-Mobile may carry only Lumia 940 | NPU http://t.co/1aB7CiJZ9E", "label": 0, "id": "638346725523070976"}
{"text": "T-Mobile cracking the whip on Unlimited 4G LTE data abusers: T-Mobile starting tomorrow will be going after t... http://t.co/BVJWsp49Eg", "label": -1, "id": "638414224859918336"}
{"text": "@JohnLegere my T-mobile experience has been he'll since I switched in April... Do you care? I have to call every month... #tmobilesucks", "label": -1, "id": "638496056280354816"}
{"text": "FINALLY, an (apparently) good smart phone with a keyboard, coming soon to T-Mobile! http://t.co/HewTaPGOEe", "label": 1, "id": "638532037335494656"}
{"text": "@dijikul You want to argue net neutrality, use your brain and attack Comcast / Time Warner with 300GB limits.. 1/10th of T-mobile! Idiot.", "label": -1, "id": "638545633930952704"}
{"text": "Going in T-Mobile tomorrow with beef", "label": -1, "id": "638557635369938944"}
{"text": "Hopefully T-Mobile calls me tomorrow I want that new phone..", "label": 1, "id": "638639776426397696"}
{"text": "@adamploski @sprint my texts arent working again...for the 2nd day in a row... c'mon #Sprint ! U got me feeling like a T-Mobile customer :-\\", "label": -1, "id": "638753357977518080"}
{"text": "Sent for my phone to get unlocked hopefully it's tomorrow so I don't have to pay this cricket bill and can go to T-Mobile", "label": 0, "id": "638953687348416512"}
{"text": "@Motorola When I can't wait any longer ... 1st Gen X -> X PE cause I just moved to T-Mobile!", "label": 1, "id": "639107429242904576"}
{"text": "@jfitzpa503 We have our T-Mobile Advantage Program you may qualify for! :) Check it out and see if you're eligible to get in on it... 1/2", "label": 1, "id": "639315294624837633"}
{"text": "T-Mobile announced a new built-in feature on Thursday that offers video calls to users who don't want to download... http://t.co/lVbplTbROA", "label": 1, "id": "639480000891240448"}
{"text": "@TMobile @TMobileHelp so this Sunday/Monday I am going to be coming over to T-Mobile. I have an unlocked iPhone 5s that's not from T-Mobile", "label": 1, "id": "639595547490430976"}
{"text": "I posted 57 photos on Facebook in the album \"T-Mobile Surprise Party, Wine and Canvas Studio, September 3\" http://t.co/CASVEvcPSL", "label": 1, "id": "639620203475791872"}
{"text": "Did you know that 'T-Mobile' was Trending Topic on Friday 4 for 4 hours in Detroit? http://t.co/Akrhq6rU6i #trndnl", "label": 1, "id": "640037499889319936"}
{"text": "@EE hi there have just got a 2nd line. I'm having trouble logging into my account on the app. 1st line on T-Mobile. Help?", "label": 0, "id": "640170856510062593"}
{"text": "@JohnLegere Our network is by far the 2nd best in the world, and as far as being second just you hide and watch. I work for T-Mobile!", "label": 1, "id": "640194301897523200"}
{"text": "@MarlinsMANiCURE the left is an AT&T and on the right side is a T-mobile phone. Features of the device may vary by carrier. Do you (cont)", "label": 0, "id": "640637105954230272"}
{"text": "The t-mobile store in the auburn mall better have the phone I want tomorrow....", "label": 0, "id": "640711704125509633"}
{"text": "@FuckPUSHA no T-Mobile told me and kai ain't no 7 it's a 6s they release it on the 7th watch", "label": 0, "id": "640779414582751232"}
{"text": "@HUNEHN ...http://t.co/QKtXiqFKP9 If you currently do not have an active T-Mobile account you can try 3rd party sites who can... 2/3", "label": 0, "id": "640887562811387905"}
{"text": "This is insane: my T-Mobile LTE vs what I pay for TWC at home. I think I may just cancel TWC internet http://t.co/pUyopKLJ6b", "label": 1, "id": "640958530103693312"}
{"text": "We hope everyone had an amazing holiday weekend. Back to it! Here's our schedule:TUES: T-Mobile HQ 11-2 WED:... http://t.co/O8Aitjk67l", "label": 1, "id": "641257840317960192"}
{"text": "@trillllaa_ I have T-Mobile so I may just switch", "label": 0, "id": "641336512706023424"}
{"text": "Apparently this is due to T-Mobile updating their LTE services in my area... We'll see if it's fixed tomorrow. http://t.co/APUsAxPPln", "label": 0, "id": "641383137340182528"}
{"text": "These past two days my calls and text been acting up, T-Mobile is going to get a call from me tomorrow.", "label": -1, "id": "641388425388642304"}
{"text": "One thing I love about T-Mobile is that I may run out of high speed data but at least my shit is unlimited", "label": 1, "id": "641417992786563077"}
{"text": "@SprintSavings I'll contact you guys on Friday aka #Payday looks like I'm saving $20 from T-Mobile already", "label": 1, "id": "641419077471199232"}
{"text": "@SprintSavings I may need you. Depending on what happens with t-mobile. Do you offer any free phones or anything on sign up? @TMobileHelp", "label": 1, "id": "641419291657506816"}
{"text": "@TaylorDevotion Taylor Swift is going to be in Houston TX on Sep 9 Get you tickets now at https://t.co/M0t3XsxMIG don't miss it", "label": 1, "id": "640978566700793856"}
{"text": "Taylor swift or me??? (I'm the 1st one) http://t.co/1xerwMc2eM", "label": 1, "id": "640993271922061312"}
{"text": "@ShawnMendes Please tell me you are opening for Taylor Swift on October 7th!", "label": 1, "id": "641014076806557696"}
{"text": "somebody take me to the taylor swift concert on wednesday", "label": 1, "id": "641020573481472000"}
{"text": "Wildest Dreams by Taylor Swift is Tuesday's guitar tutorial. Check it out! http://t.co/JjwBaus58a", "label": 1, "id": "641032295294472192"}
{"text": "@boyalmxghty @WinterSoldierL is a universal feminism concerning everyone, as for taylor swift she may get into that category idk", "label": 0, "id": "641033005386088448"}
{"text": "So Taylor swift is going to be in Columbus on Friday September 18th.... WHOSE WITH ME????", "label": 1, "id": "641035173275025409"}
{"text": "my sister turned 22 last tuesday and taylor swift just tried to sue my family", "label": 0, "id": "641036267447287808"}
{"text": "Wanna see Taylor Swift in concert? @1013KDWB has another pair Tuesday on our show at 7:50. Ya gotta listen for the keyword to win!", "label": 1, "id": "641049321899728897"}
{"text": "Did Taylor Swift really rip one on the air? What about that 19\" dong? @THEVinceRusso and I discuss: http://t.co/0NW2bYkTPx #RAW", "label": 0, "id": "641050756221661184"}
{"text": "you may be cool but you'll never be \"Taylor swift acting like a meerkat\" cool http://t.co/Ryo3myzVd3", "label": 1, "id": "641059420143751168"}
{"text": "Taylor Swift is Coming Toronto,ON October 2nd and 3rd at Rogers Centre Get your Tickets Now!!Will you be in... http://t.co/Tk4BRrbbgV", "label": 1, "id": "641077671489835009"}
{"text": "singing taylor swift at a karaoke bar may be the best date idea ever #AfterParadise #BachelorInParadise", "label": 1, "id": "641078571474255872"}
{"text": "I'm serious if anyone is selling cheap tickets for Taylor swift on Wednesday let me know idc if it's nosebleeds", "label": 1, "id": "641089812133363713"}
{"text": "@rtgilby I got my Taylor swift pictures ready to go in my locker tomorrow just for you", "label": 1, "id": "641091323597033472"}
{"text": "\"Yeah, you Taylor SWIFT him!\" may be one of the best reality TV lines I've ever heard. #BachelorInParadise #AfterParadise", "label": 1, "id": "641105704854663168"}
{"text": "\"Here is what you need to do... Listen to some Taylor Swift, watch The Notebook, have a good cry, and you'll feel better tomorrow.\"", "label": 1, "id": "641106190659919872"}
{"text": "\"I've never been shy or secretive about the fact that if you walk into my life, you may be walking onto a record.\" - Taylor Swift", "label": 0, "id": "641146431558971392"}
{"text": "\"Don't worry. You may think you'll never get over it, but you also thought it would last forever.\" - Taylor Swift", "label": 1, "id": "641196772556017665"}
{"text": "Just close your eyes, the sun is going down. You'll be alright, no one can hurt you now. - Taylor Swift", "label": 1, "id": "641200871674548224"}
{"text": "Not entirely sure that I remembered deodorant but Taylor Swift is tomorrow so it's like it doesn't even matter what else happens.", "label": 1, "id": "641222505265369088"}
{"text": "Did you ever think in your #WildestDream that you would be going to see Taylor Swift tomorrow night at Minute... http://t.co/A5QDbeWNX8", "label": 1, "id": "641229779954302976"}
{"text": "#itweetFEEDS If Taylor Swift likes it, you know it must be good!On Monday, the blonde beauty... http://t.co/h1ZBbm6D1G #ff @itweetFEEDS", "label": 1, "id": "641233609613938688"}
{"text": "Happy Tuesday loves!! I'm so excited to share this Taylor Swift Inspired Tutorial with you all!! xox http://t.co/bqiC4uB1k9", "label": 1, "id": "641249800579608576"}
{"text": "I think I may be legitimately in love with Taylor swift", "label": 1, "id": "641251185844948993"}
{"text": "I'm going to be in the same room as Taylor Swift tomorrow.", "label": 1, "id": "641260282375868416"}
{"text": "Watch Nicki Minaj call Miley Cyrus ab*tch onstage at the VMAs: Nicki Minaj may have made up with Taylor Swift,... http://t.co/nYCJg5AxHm", "label": 0, "id": "641262014346625025"}
{"text": "I just want to look really good tomorrow and have a kick ass 'start of school assembly' and dance to Taylor Swift.", "label": 1, "id": "641293277510021120"}
{"text": "So we hear that the singing sensation, who goes by the name of Taylor Swift, has a concert this Wednesday! Why... http://t.co/QOv648Sh4Y", "label": 1, "id": "641322123114450944"}
{"text": "I filmed the Wildest Dreams by Taylor Swift cover I'll upload it tomorrow. I hope you see it @taylorswift13", "label": 1, "id": "641326668217470977"}
{"text": "anyone houston beliebers going to see taylor swift tomorrow i want to meet uppppp", "label": 1, "id": "641331953980059648"}
{"text": "Im so sad in class i was like \" im seeing Taylor SWIFT tomorrow!\" and everyone was like \"i fucking hate her she's so fake and ugly\"", "label": -1, "id": "641338133049573377"}
{"text": "Well, we know it's not Taylor Swift. #SorrySwifties https://t.co/VBdkzs4J18", "label": -1, "id": "641350215518175232"}
{"text": "Wonder who Taylor Swift is going to bring onstage with her when she performs here in Houston tomorrow.", "label": 0, "id": "641351542239399936"}
{"text": "My professor just high fived me when I let him know I'll be skipping his class tomorrow for the Taylor Swift concert", "label": 1, "id": "641354533679968256"}
{"text": "why is it so hard to win tiCKETS TO GO SEE TAYLOR SWIFT TOMORROW :'(", "label": -1, "id": "641355132467175424"}
{"text": "So tomorrow I will be hating my sister and BIANCA because there going see Taylor swift and I am not", "label": -1, "id": "641358046749323264"}
{"text": "Everyone is already going to the Taylor swift concert :/ anyone not going that wants to go Sunday???", "label": 0, "id": "641364951433502720"}
{"text": "Boys serious about this Taylor Swift concert tomorrow", "label": 0, "id": "641367139387965440"}
{"text": "Jamming to Taylor Swift on the Tuesday after Labor day. @taylorswift13 makes any day a good day", "label": 1, "id": "641369063889879040"}
{"text": "Who doesn't love a Taylor Swift parody about sun protection? Share to promote sun protection and ski http://t.co/iidIzAjds1", "label": 0, "id": "641375379064795136"}
{"text": "Ready for the Taylor Swift concert tomorrow!!! @taylorswift13 #ShakeItOff #1989Tour http://t.co/6q2VOJOr5D", "label": 1, "id": "641376417058414592"}
{"text": "Great article on university data & openness (Feb of this yr) @castrotech. Do you have any thoughts on which U's are embracing Taylor Swift?", "label": 0, "id": "641378373072195584"}
{"text": "Ada Limantur. @ada_limantur Have you seen these fine Taylor Swift images? You may like: http://t.co/pEuaVvASfY", "label": 0, "id": "641389047944904705"}
{"text": "The stress of the last hour makes me want to cry into my couch while listening to Taylor Swift....Until I have to do it all again tomorrow.", "label": -1, "id": "641392276271403008"}
{"text": "It's about to get real. TAYLOR SWIFT! https://t.co/0IsESUe9oD", "label": 1, "id": "641415924042481664"}
{"text": "Can Taylor Swift play her cover of Drops Of Jupiter tomorrow at the concert ok pls and thank you", "label": 1, "id": "641418159853993984"}
{"text": "@NiallHoran Happy early 22nd b-day hope you have a good one love you so much wonder if you're going to sing 22 by Taylor Swift", "label": 1, "id": "641421176443641856"}
{"text": "I want Taylor swift tickets for Minnesota this sunday!! :(", "label": 1, "id": "641425193190100992"}
{"text": "Sorry I'm not really tweeting today. I'm getting ready for the Taylor Swift concert tomorrow!!", "label": 1, "id": "641427454800728064"}
{"text": "Taylor Swift tomorrow night. Probably should line up now to get in the venue by the time she gets onstage. http://t.co/EcNdDfZKFV", "label": 1, "id": "641430368550170625"}
{"text": "Heading to the bottom the 9th. #Reds trail 7-0. The sounds of Taylor Swift let us know Jay Bruce will get us started.", "label": 1, "id": "641434186340020225"}
{"text": "I would do anything to see taylor swift in concert on the 18th", "label": 1, "id": "641436078201786368"}
{"text": "Ya girl is going to Taylor Swift tomorrow", "label": 1, "id": "641440255212519425"}
{"text": "on friday i will breathe the same air as taylor swift", "label": 1, "id": "641444177105055745"}
{"text": "tomorrow is the taylor swift concert where i live and i had tickets that i had to sell so tomorrow i will be crying all day", "label": -1, "id": "641444760255770624"}
{"text": "can I just skip tomorrow and go straight to the taylor swift concert?", "label": 0, "id": "641444852719161344"}
{"text": "Going to see Taylor Swift tomorrow with Laken and I'm pumped af!!!", "label": 1, "id": "641446775950176256"}
{"text": "the first time I saw ed sheeran live, he was opening up for taylor swift at the aaa. tomorrow I see him headline the aaa.", "label": 1, "id": "641452535757295616"}
{"text": "taylor swift will be 5 hours away from me tomorrow i want to cry", "label": 1, "id": "641453487667048448"}
{"text": "Taylor Swift>>> chick-Fil-A (even if it were open on Sunday's)", "label": 0, "id": "641454442685046784"}
{"text": "Taylor Swift just waved at a boy and he didn't wave back so now she's got a new album coming out tomorrow.", "label": 0, "id": "641455686291955712"}
{"text": "Am i the only one going to go see taylor swift tomorrow", "label": 0, "id": "641456345133158400"}
{"text": "Counting down the days until I see Taylor Swift on the 21st", "label": 1, "id": "641463227713368064"}
{"text": "ok but taylor swift is going to be on ellen tomorrow and I honestly do not care about anything else at the moment", "label": 1, "id": "641469149131218944"}
{"text": "That moment when Taylor swift is here tomorrow and I'm not going ...", "label": -1, "id": "641469222271344641"}
{"text": "Look me in the eye and tell me you didn't listen to Taylor Swift in 6th grade", "label": 0, "id": "641471628916846592"}
{"text": "But in other good news, I'm going to see Taylor Swift next Wednesday!", "label": 1, "id": "641481228558970880"}
{"text": "@RoyHarperInRed [Dino sat and Abby babbled that she liked Taylor Swift, The Fray, One republic, and such.]", "label": 0, "id": "641491378774519808"}
{"text": "Tomas Brown. @tombro173 Have you seen these thought-provoking Taylor Swift images? You may want to see: http://t.co/rm19Pf1RgD", "label": 1, "id": "641492923402465280"}
{"text": "Bart De Brandt. @sierufeb Resplendent Taylor Swift Images. You may want to check: http://t.co/LhmqivXnCq", "label": 1, "id": "641494825108242432"}
{"text": "I just want to see Taylor Swift tomorrow okay.", "label": 1, "id": "641496982066888704"}
{"text": "Bye Bye Kim K! Taylor Swift is the new `Insta queen`: Washington D.C., Sept 9: With her 45.5 million followers... http://t.co/1iQGiiInom", "label": 0, "id": "641516100807622656"}
{"text": "@CalvinHarris congratulations on pumping Taylor Swift mate I may have misjudged you.", "label": 1, "id": "641563639246397441"}
{"text": "On the bright side I goT TAYLOR SWIFT CONCEET TICKWTS AGAIAN THIS IS MY 7th TS CONCERRT MOM ILYSM", "label": 1, "id": "641573169564807168"}
{"text": "Say you remember meStanding in a nice dressstaring at the sun set babe - Taylor swift https://t.co/sr3r3ELzxJ", "label": 0, "id": "641575181740298240"}
{"text": "\"I won't play Taylor swift the entire time c'mon please!\" - me trying to convince Ricky to let me control the music. #newbrunswick", "label": 0, "id": "641576792038473728"}
{"text": "..and the search for Cornetto Disc limited edition Taylor Swift caramel shake caramel ice cream begins! may the odds be ever in your favor.", "label": 1, "id": "641579872435830784"}
{"text": "The 29-year-old was spotted at the MTV Video Music Awards on Sunday night, where she supported pal Taylor Swift as she took home the Video", "label": 1, "id": "641602994862202880"}
{"text": "taylor swift radio for the next week and a half bc I am too pumped to see her in concert next Friday", "label": 1, "id": "641612506100813824"}
{"text": "It's Apple Keynote day - who will be the musical guest? I say Dr. Dre (but others say Taylor Swift) #JustNotU2 http://t.co/n3RRgbOGFZ", "label": 0, "id": "641619623671033856"}
{"text": "biggest question of the week is maybe 'which taylor swift record will i take to vinyl club on sunday?'", "label": 1, "id": "641626376563326977"}
{"text": "My biology professor had the audacity to tell me \"enjoy that Taylor swift concert...you have a test + essay tomorrow\" http://t.co/4Pg2lhfryp", "label": -1, "id": "641649121569345536"}
{"text": "I may be the only one that won't watch Ted 2", "label": 0, "id": "620748211318358016"}
{"text": "I'm gonna go see Ted 2 tomorrow at the theater down the block. 5.75 matinee I can't be mad", "label": 1, "id": "620820906164813824"}
{"text": "Jurassic World is such a great movie, now I want to see Ted 2 tomorrow", "label": 1, "id": "620849981931393024"}
{"text": "Ted 2 is way funnier then the 1st one", "label": 1, "id": "620863433462841344"}
{"text": "I should be asleep but fuck it I don't got work tomorrow so I'll just watch Ted 2", "label": 1, "id": "620895806732701696"}
{"text": "Going for Ted 2 with kouhai tomorrow. ^u^", "label": 0, "id": "620952187510747137"}
{"text": "Reserved my movie ticket for Ted 2 for this Saturday. Hopefully the film be good as the first one which I liked.", "label": 1, "id": "620968343810523136"}
{"text": "@VanessaMsMarvel I had a good weekend I just finished a week of night shifts on Saturday so I went out with my friends to see Ted 2", "label": 1, "id": "621011244397559808"}
{"text": "Had a proper good laugh today watching Ted 2 with Chris Au Every bit as good as the 1st film in my opinion.. well satisfied!!", "label": 1, "id": "621076468668477441"}
{"text": "We had a blast recording the @FailedCritics episode tonight. Should be out tomorrow! Can you guess which one of us enjoyed Ted 2?", "label": 1, "id": "621079502505013248"}
{"text": "@EliciaBrumley iv been watching films all day and I'm off to watch ted 2 tomorrow with a few mates x", "label": 1, "id": "621083339798249472"}
{"text": "broke a bill at work and got to see Ted 2 with some cool people, pretty good tuesday", "label": 1, "id": "621212335328198656"}
{"text": "last night was so lovely, out for dinner and then to see Ted 2 with Alex! Made a nice change from being sat in front of the telly", "label": 1, "id": "621309403661266944"}
{"text": "Bloke sat behind me in the cinema loudly exclaimed Ant Man to be 'the stupidest idea ever' and then laughed at Ted 2 trailer. Idiot", "label": -1, "id": "621430307888173056"}
{"text": "Stuffed myself with a yummy spag bol from @ASKItalian then founded the night off by watching Ted 2 at @cineworld. Back to the gym tomorrow!", "label": 1, "id": "621433383395135488"}
{"text": "literally going to see ted 2 tomorrow and then for my parents 30th anniversary we're going out ahh it's gonna be good", "label": 1, "id": "621475162257534976"}
{"text": "I want to thank so much my best friend treating me out to Pizza Hut for dinner and see Ted 2 for my 30th birthday.", "label": 1, "id": "621501007856578560"}
{"text": "Went to the Yard House.Had dinner & happy hour drinks.Before we saw Ted 2 movie July 3rd with my family.We had fun.", "label": 1, "id": "621509047825530880"}
{"text": "I saw Ted 2 on Tuesday man it was so funny", "label": 1, "id": "621547755064946692"}
{"text": "Time to watch Ted 2 with @JasDann before I scoot on down to London Town tomorrow to party", "label": 1, "id": "621758429300977664"}
{"text": "i'm going to watch ted 2 on saturday", "label": 1, "id": "621771848150335488"}
{"text": "I feel like someone should meet me at San tan tomorrow night after I get off work at 9:30 and see Ted 2 with me.", "label": 1, "id": "621946986774728705"}
{"text": "Ted 2 was hilariousTime for bed and praying tomorrow is another good day", "label": 1, "id": "621957602877030400"}
{"text": "@KingConcha @lil_kekev @allysonbonilla_ know she definitely doesn't wanna see Ted 2 tomorrow cuz u stupid", "label": -1, "id": "621974257472536576"}
{"text": "@matthewlynch91 Almost saw you there. I was going to see Ted 2 but I'd seen everything else so going Monday night to combine it with Ant Man", "label": 0, "id": "622053281192353792"}
{"text": "@Paul_OConnor187 hi we going to see ted 2 at the Odeon cinemas at Glasgow on Wednesday :) http://t.co/le7auvFLDX", "label": 1, "id": "622169226980274176"}
{"text": "Anyone want to go see Ted 2 tomorrow", "label": 1, "id": "622198535392468993"}
{"text": "I'm going to the movies tomorrow and I wanted to go see Ted 2 but my little sister's coming so I'm going to see inside out instead", "label": 0, "id": "622222260787613696"}
{"text": "@1975jetsfan4 Inside Out may be my favorite after Spy and Ted 2. I want to see Terminator but Inside Out was fantastic.", "label": 1, "id": "622258433668984833"}
{"text": "@GallowaySpeaks saw Ted 2 the other night big man, right up your street. Give Ted a watch too if you havent, 2nd will then make more sense!", "label": 1, "id": "622303721922424832"}
{"text": "my family gonna see Frozen sing along tomorrow night and I'm just hoping to see Ted 2 or the gallows again", "label": 0, "id": "622318489911496705"}
{"text": "Just watched Ted 2 thought was so much funnier than the 1st one #Ted2 #shithappens", "label": 1, "id": "622513929168797698"}
{"text": "Mark Wahlberg is back as the ultimate best buddy John Bennett in TED 2 (Opens July 22) http://t.co/xryJkZAuzX", "label": 1, "id": "622610235140616192"}
{"text": "Ted 2 was a great way to end my 25th. Was cool to see Toxie in the film", "label": 1, "id": "622623528647544832"}
{"text": "He's having his own personal I am Legend in my nutsack. Funniest part of Ted 2 the 1st was better", "label": 0, "id": "622634116052291584"}
{"text": "A lazy Saturday called for Ted 2, naps, and a 2 hour intense room cleaning session with the one and only #weekendsinloo", "label": 1, "id": "622655674732797952"}
{"text": "@Hobakkie we do, but.. idk. we're going to watch ted 2 on tuesday and he invited me to the winefestival in keszthely at the end of the month", "label": 1, "id": "622752615839977472"}
{"text": "@RachelBoone90 Get to see my bootiful face on the open tuesday wednesday thursday :) Take me to see ted 2!", "label": 1, "id": "622888428263370757"}
{"text": "Ted 2 was pretty funny. However I am now singing Neil Diamond uncontrollably in the kitchen at 10:30 on a Sunday night. Oh well", "label": 1, "id": "622957659914903552"}
{"text": "Brilliant Sunday. Awesome result from the mighty Centurions followed by Ted 2 wi the family. Pure quality. Every Sunday shud be that good", "label": 1, "id": "623014972633817089"}
{"text": "Ted 2 then bed! No work tomorrow so im going to have a lie in then finish all my requests of tomorrow", "label": 1, "id": "623264478528962564"}
{"text": "Just finished watching Ted it was really good can't wait Ted 2 tomorrow night x", "label": 1, "id": "623274250510704640"}
{"text": "@TheDustmite @DrewDinkmeyer @fml_movies Yes sir! 8th overall on the season. I've really only been effed one week thanks to Ted 2.", "label": 0, "id": "623340183296081920"}
{"text": "Starts Friday - disaster action film SAN ANDREAS with Dwayne Johnson followed by TED 2 with Mark Wahlberg. http://t.co/i9m75FBuCR", "label": 0, "id": "623361176089419776"}
{"text": "I wanna see Ted 2 again for the 3rd time that shit is so god damn funny", "label": 1, "id": "623378299838816257"}
{"text": "Going to see Ted 2 tomorrow with the lads", "label": 1, "id": "623418435398189056"}
{"text": "Ted 2 was lulz. Not better than the 1st tho", "label": 1, "id": "623614966889848832"}
{"text": "Gonna watch Ted 2 for the 2nd time tonight lol", "label": 1, "id": "623625589845430272"}
{"text": "Today's 1pm show of JURASSIC WORLD and tomorrow's 8.10pm of TED 2 are your last chances to watch them with us.Tix: http://t.co/nC4I1scvIb", "label": 1, "id": "623749077939974144"}
{"text": "Time to give Ted 2 a watch, hopefully you don't need to have seen the 1st one to \"Get it\"", "label": 1, "id": "623938988903153664"}
{"text": "via @CaptainNeon Ted 2 (R) - July 25 - 7 p.m.: Ted 2 (R)7 p.m.Minor with parent or guardianTickets on ... http://t.co/nJSfPFpZm3", "label": 0, "id": "624522478858047488"}
{"text": "@JoeDeVitoComedy I just saw Ted 2. I haven't seen so much penis, masturbation and semen since the time I sat near Paul Reubens at a matinee.", "label": 0, "id": "624736003698221057"}
{"text": "Wow! Ted 2 was funnier than we thought! Looking forward to @Gfinity tomorrow... Reaping the @SteelSeries jacket! http://t.co/EJtZn0FrEX", "label": 1, "id": "625071677425209344"}
{"text": "Ted 2 is such a good film ... But the 1st film is slightly funnier", "label": 1, "id": "625408569639354368"}
{"text": "#shithappens #ted2 - finished up watching ted 2 going be a great Sunday.", "label": 1, "id": "625439476614045696"}
{"text": "you know what i'm going to see ted 2 tonight and mad max tomorrow at the movies right next to me", "label": 1, "id": "625795774626934784"}
{"text": "Sequels are rarely as good as the 1st. Ted 2 was a great and better than the original. Well done @SethMacFarlane", "label": 1, "id": "625886426748489728"}
{"text": "I'm watching Ted 2 for the 3rd time in a row and I'm cryiiiing of how funny it is", "label": 1, "id": "625888552216195073"}
{"text": "Ted 2 was shit, ant-man was dec now it's time for southpaw!", "label": -1, "id": "626000213543682049"}
{"text": "Ted 2 was a disappointment considering how much i loved the 1st. The Gollum part was hilarious though", "label": -1, "id": "626171902130810880"}
{"text": "@RobYellow46 not yet, off to see Ted 2 tomorrow instead. Southpaw looks good, want to see it at some point #ExcitedForStagDo", "label": 0, "id": "626498664966426624"}
{"text": "Anyone wanna go see the new mission impossible and Ted 2 at the drive in Friday?", "label": 1, "id": "626585226240786432"}
{"text": "@AMCTheatres can you tell me if Ted 2 will be showing at fork & screen downtown disney on sat 8 august please?", "label": 1, "id": "627207597167374336"}
{"text": "@marshallsheldon did you already see Ted 2. Here it comes in the cinema on the 13th.", "label": 1, "id": "627359831003897856"}
{"text": "about to watch Ted 2 for the 5th time", "label": 1, "id": "627476317508923393"}
{"text": "I have to get The Great Gatsby tomorrow and im debating whether or not I should pull the scene from Ted 2 to whoever is working at B&N's.", "label": 0, "id": "627727098556198914"}
{"text": "Tomorrow consists of going to the bank, collecting my EEG results and going to the cinema to watch Ted 2", "label": 0, "id": "628307454053498882"}
{"text": "@YounqMilly we are going to see Ted 2 on the 7th", "label": 0, "id": "629163982562193408"}
{"text": "Ted 2 tonight. Ted Baker tomorrow. Ted talks playlists. Teddy Sherringham in 99. All things Ted. #Ted", "label": 1, "id": "629366088690724865"}
{"text": "We sat down with the talented @AmandaSeyfried to talk TED 2! Check out what she had to say!https://t.co/TmLaIKVF7m", "label": 1, "id": "629402327028346882"}
{"text": "should i go see ted 2 tonight or tomorrow night", "label": 0, "id": "629501748676145153"}
{"text": "@realadamdeacon Adam were you at Ted 2 last Friday in leicester square?? when is anuvahood 2 coming out I want to see that", "label": 1, "id": "630780986368856066"}
{"text": "@MarquesMcvay miss your bitch ass. Go see Ted 2 with me tomorrow at 12:30. Don't be a bitch.", "label": -1, "id": "631003194458378240"}
{"text": "@daltonmaxsmith oh I saw it for a 2nd screening 2 Sunday's ago. My friends got pissed I wouldn't let them see Ted 2", "label": 1, "id": "631697180374335488"}
{"text": "Complete showcase preview event of the movie \" Ted 2\" is the 18th , held at Tokyo theater . Hero as \" KumaTomo \" Ted Kumamoto Prefecture", "label": 1, "id": "633859924376731648"}
{"text": "Someone convinced me to see TED 2 Saturday night. Has anyone seen it? And can it live up to the incredibly high standard set by the 1st one?", "label": 1, "id": "634467183339421696"}
{"text": "Tomorrow gonna get up, do my sheets! Go shopping get some bits for my washing, get munch and see my girl and watch Ted 2. Perfect day!", "label": 1, "id": "636698955582210048"}
{"text": "@rheadur @mark_wahlberg I'll watch Ted 2 tomorrow on cinema. You can feel my anxiety? I waited so long for it! Hahahahahaha", "label": 1, "id": "637018183736643584"}
{"text": "Ted 2 funny then a hoe, but not as funny as the 1st one", "label": 1, "id": "637501133607473152"}
{"text": "There's a 2nd run movie theater around the corner from me that is showing both Ted 2 *and* Pixels. Worst part is it's a Cinema Grill.", "label": 0, "id": "638135698856505344"}
{"text": "Wanna LOL again with them? TED 2 will be Sneak Preview this Saturday! http://t.co/dZwarBYLs0", "label": 1, "id": "639278863088914432"}
{"text": "Missed it Wednesday? #ODU come watch Ted 2 TONIGHT @ 8pm in MGB 102 for free! #tellafriend", "label": 1, "id": "639786655222747136"}
{"text": "Had a very lazy Sunday. Done nothing but watch Teen Wolf all day", "label": 1, "id": "637854890723708929"}
{"text": "Good morning everyone :)How are you?I LOVE THE TEEN WOLF CAST SO DAMN MUCHAND TOMORROW ISNT MOONDAY", "label": 1, "id": "637930164312240128"}
{"text": "Im going to finish now the 2nd season of teen wolf", "label": 1, "id": "637985125767217152"}
{"text": "@MelissaPonzio1 crying over the teen wolf final and being sad that there is no teen wolf tomorrow", "label": -1, "id": "637995876431097856"}
{"text": "Hello monday, we'll meet again soon. And now you don't bring that Teen Wolf episode with you, so I'm back on hating you Monday </3", "label": 0, "id": "638011969300107264"}
{"text": "im going to marathon all of the episodes in the 5th season of teen wolf that i havent seen yet bc i deserve that dammit", "label": 1, "id": "638012791039766528"}
{"text": "I don't wait till January for the next season of Teen Wolf #TeenWolfSeason5B", "label": 1, "id": "638014629021622273"}
{"text": "Hey fellow Teen Wolf fans, guess what???? I'll be filing a video tomorrow about my emotions and thoughts of Season 5a and the finale", "label": 0, "id": "638022874222096384"}
{"text": "Teen wolf season 5 just premiered but where is it tomorrow Oh yeahNot here", "label": -1, "id": "638043667207454720"}
{"text": "When you remember that tomorrow is monday but teen wolf isn't on", "label": -1, "id": "638074758538510336"}
{"text": "Sad moment when you realize tomorrow is Monday and there's no new episode of Teen Wolf so no Moonday bummer", "label": -1, "id": "638088428010115072"}
{"text": "rose convinced me to continue watching teen wolf even those i know the spoilers so imma continue watching it tomorrow", "label": 0, "id": "638090700572200960"}
{"text": "If you're having a good day just remember that Teen Wolf isn't on tomorrow.", "label": -1, "id": "638145197919064064"}
{"text": "ill be watching that in january right along with teen wolf", "label": 1, "id": "638173354420125697"}
{"text": "Mtv just loves to keep reminding me that Teen Wolf isn't on tomorrow", "label": 0, "id": "638176281620713472"}
{"text": "I honesty live for teen wolf so I'm really sad that the new season doesn't start till January ))):", "label": 0, "id": "638179474178224128"}
{"text": "I'm sad. Tomorrow is the first night that Teen wolf won't be on.", "label": 0, "id": "638180026882482177"}
{"text": "When you realize there is no Teen Wolf tomorrow @MTVteenwolf http://t.co/dV1B4RxXtY", "label": 0, "id": "638188012539523072"}
{"text": "Teen wolf was the only thing that made my Monday's greattt ... What do I do now", "label": 1, "id": "638209031715184640"}
{"text": "If you hoes wanna hang and watch Teen Wolf, your home boy John will be chilling on the 2nd/3rd/4th floor library around 10 am and then on", "label": 0, "id": "638216705651535872"}
{"text": "I have to watch the episode I missed of Teen Wolf before tomorrow night. I'll also watch Fear The Walking Dead since I didn't watch it", "label": 0, "id": "638224056991502337"}
{"text": "It really sucks how teen wolf are making more videos in January but not now, all well! I guess I'll just have to wait.... :/", "label": -1, "id": "638298072733216769"}
{"text": "When you're meant to start an assignment that is due tomorrow at 9 but twitter and teen wolf", "label": 0, "id": "638300559095664641"}
{"text": "When you realise that it's no longer Teen Wolf Monday and you have no clue what to do with your life", "label": -1, "id": "638325841840197632"}
{"text": "[New Update] [Photos] Teen Wolf's Holland Roden attending the MTV VMA's - August 30 - http://t.co/5GpZMnmlLz #teenwolf", "label": 1, "id": "638329289591660544"}
{"text": "Mondays are not the same when you don't have Teen Wolf to look foward to on Monday nights ):", "label": -1, "id": "638335082609160192"}
{"text": "I want January, I want Teen Wolf.", "label": 1, "id": "638350720329232384"}
{"text": "So its a monday with out TEEN WOLF wtf am I supposed to do @ReallyCody @CODYSAINTNEW @tylergposey @dylanobrien @DSprayberry @MelissaPonzio1", "label": -1, "id": "638351607847981057"}
{"text": "i just started watching Teen Wolf and one day i may wear bright colours", "label": 1, "id": "638356738161397760"}
{"text": "the fact that its monday n theres no teen wolf makes me so sad", "label": -1, "id": "638374948512362496"}
{"text": "Well it's no longer a Teen Wolf Monday but, AWKWARDS BACK", "label": 0, "id": "638396188971147264"}
{"text": "The fact that it's Monday and teen wolf isn't on makes me sad", "label": -1, "id": "638409590007181313"}
{"text": "A Monday without teen wolf is a Monday with less stress and anxiety", "label": 1, "id": "638450689027514368"}
{"text": "crying bc it's monday and there's no teen wolf", "label": -1, "id": "638482370627178496"}
{"text": "Monday's ain't the same without teen wolf", "label": -1, "id": "638503739708444672"}
{"text": "@CODYSAINTNEW I miss Teen Wolf so much, Monday's aren't the same anymore without it #CodySChat", "label": 0, "id": "638514188151881728"}
{"text": "I Love TEEN WOLF, can't wait till January when it comes back on.", "label": 1, "id": "638517941219291136"}
{"text": "when it's a Monday but no Teen Wolf", "label": 0, "id": "638525507739500545"}
{"text": "Can January come by faster because I'm ready for a new year and the fifth wave and season 5b of teen wolf.", "label": 1, "id": "638537066771419137"}
{"text": "@leboism @DeadshirtDotNet foolish mortal, I have sat through TEEN WOLF *and* TEEN WOLF TOO, nothing you can do can harm me anymore", "label": -1, "id": "638547343361601536"}
{"text": "Monday nights aren't the same without teen wolf.", "label": 0, "id": "638575299643314176"}
{"text": "Teen Wolf starts again in January. How the fuck do you expect me to wait that long. #TeenWolf #5B", "label": 1, "id": "638603937004847104"}
{"text": "It felt weird not watching Teen Wolf tonight. January needs to hurry up.", "label": 0, "id": "638605481053945856"}
{"text": "Can't believe Teen Wolf is coming back in January. I want to watch it now.", "label": 1, "id": "638638388787200000"}
{"text": "Oh just realized that there was no teen wolf today :((((((((( MAJOR MISSING :(((( January'16. << SO LONGGGGG", "label": -1, "id": "638754869420036096"}
{"text": "*ill start teen wolf soon**ill start ointb then ill watch the originals in september*https://t.co/D8ryd0Mj8l", "label": 1, "id": "638779276108648448"}
{"text": "i miss teen wolf so bad yesterday was the first monday without it it was sad", "label": 0, "id": "638812892578639872"}
{"text": "OMG! BRC and TY so lov'ed the DOC show and Luv ty in Teen Wolf been a fan since it 1st aired! Known BRC over 15 yrs https://t.co/4wkhzU5DmQ", "label": 1, "id": "638824119996276737"}
{"text": "\"The sun,the moon and the true\" - Teen wolf http://t.co/gI2Of8G6EU", "label": 0, "id": "638837342174744577"}
{"text": "goodnight! i have to go to my college tomorrow kms but i love dylan and holland and all of the teen wolf cast so much", "label": 1, "id": "638859076676493312"}
{"text": "Can January just hurry up already?! I need TEEN WOLF NOW! @MTVteenwolf", "label": 1, "id": "638864466499792896"}
{"text": "Planning to watch Weird Science w/ my 13 & 14 yo nephews this Fri. Looking for apt addition to a double feature. Teen Wolf in the running.", "label": 1, "id": "638926646355988480"}
{"text": "I'm almost at the end of the 3rd season of Teen Wolf and I'm already in tears bc I know what's coming up", "label": 1, "id": "639002205358415872"}
{"text": "So shit that we have to wait till January for the second half of season 5 of teen wolf", "label": 0, "id": "639048498843906048"}
{"text": "So don't wake me up unless you have last Monday nights episode of Teen Wolf.", "label": 1, "id": "639095639402373120"}
{"text": "Teen Wolf movie series was so confusing that I thought I was listening to the 3rd movie for that past year turns out it was @KevinKleinLIVE", "label": -1, "id": "639099810117627904"}
{"text": "Well, I've finished my Teen Wolf watching for the night. Continuing again tomorrow when I wake up :)", "label": 1, "id": "639337595562950656"}
{"text": "I'm actually so excited for tomorrow just so I can know who's coming from the teen wolf cast", "label": 1, "id": "639406022113628160"}
{"text": "I miss Teen Wolf a lot! I can't shucking wait for the SCORCHED TRIALS!OCOTBER 15TH we wont enter the maze but the trials :)", "label": 1, "id": "639441273229864960"}
{"text": "Can it be December already?!! If you're a Teen Wolf fan I'm sure u don't want to miss this! #HOW2015 #TeenWolf http://t.co/fELHj8LCtU", "label": 1, "id": "639464019485687808"}
{"text": "haven't been able to watch teen wolf 4 on netflix so i'm gonna watch it after school tomorrow and i'm already peeing my pants IM SO EXCITED", "label": 1, "id": "639544065273499648"}
{"text": "I've decided tomorrow night I'm going to re watch all of season 5 of teen wolf", "label": 0, "id": "639547492548354049"}
{"text": "@CollinsKey it's Friday in new Zealand so I'm sleeping in and watch teen wolf", "label": 0, "id": "639648871744860164"}
{"text": "revision and teen wolf is the plan for this friday night because who needs a social life", "label": 0, "id": "639849515068080128"}
{"text": "sooooo teen wolf deprived and its not coming back till january it's gonna make the next few months even slower", "label": -1, "id": "639982983366221824"}
{"text": "I'm like ready for Monday just so I can watch Teen Wolf.", "label": 1, "id": "639992058132852736"}
{"text": "ok i started to watch teen wolf on april 18 and then said i didnt know if i was gonna watch the rest and now look at me", "label": 1, "id": "640004482646982657"}
{"text": "they kept showing the new mtv Monday's commercial at the one direction show and I cried every time bc no teen wolf", "label": 0, "id": "640055719757250561"}
{"text": "Watching the 3rd season of teen wolf always makes me cry", "label": 1, "id": "640165746950148096"}
{"text": "watching videos of the teen wolf cast to try and forget about school on monday and reduce the ridiculous amount of anxiety i currently have", "label": 1, "id": "640270750373519360"}
{"text": "@TylerL_Hoechlin you knocked it out with 7th heaven and killed it on Teen Wolf! #BeforeDerek #therewasMartin #NextAlistCeleb #makehimhuge", "label": 1, "id": "640273278808887296"}
{"text": "I just got all excited to watch Teen Wolf on Monday but..", "label": 0, "id": "640321327291731968"}
{"text": "@deborah_speegs That is frustrating. Is this from the Teen Wolf con in June??", "label": 0, "id": "640729882608160769"}
{"text": "I'm still salty I couldn't watch the season finale of teen wolf, the season premiere of awkward and tomorrow's new awkward", "label": 0, "id": "640763763151376384"}
{"text": "@totallymorgan you mean no Teen Wolf tomorrow? now we live in shitverse", "label": 0, "id": "640774685743955968"}
{"text": "@authenticgriers I'm starting season 4 tomorrow bc I'm not up for it now bC TEEN WOLF IS STUPID AND WANTS ME TO CRY AND FEEL EMOTIONAL STUPI", "label": 0, "id": "640837652929875968"}
{"text": "just another Monday without teen wolf", "label": 0, "id": "640844538937012224"}
{"text": "Oh, it's Monday. No Teen Wolf.", "label": 0, "id": "640860544090554368"}
{"text": "late rting this! she guest stared on teen wolf, and Big Time Rush beach movie! she from The Troop. https://t.co/KsZ2MFvGDQ", "label": 1, "id": "640918229414600705"}
{"text": "|| Will get to replies now. Teen Wolf may have sucked me in yesterday....the whole day. XD #WouldLoveToMakeATWAccountButNotEnoughTime >:", "label": 1, "id": "640944881893027840"}
{"text": "So you know that point in Teen Wolf where Peter & Derek are researching the kanima's 2nd form & FUCK IT HAS WINGS?", "label": 0, "id": "641038428633587712"}
{"text": "I need to do my hw but I just started Teen Wolf AND I NEED TO KNOW WHAT HAPPENS AFTER THE 1ST EPISODE", "label": 1, "id": "641054488732631040"}
{"text": "k so i just finished watching the 5th season of Teen Wolf and i've got a few questions 1) WTF WAS THAT 2) WHY TF IS THEO STILL ALIVE", "label": -1, "id": "641161245828235264"}
{"text": "@ReallyCody looking to hear what it is pal, and looking to see your return with your pack on Teen Wolf 5 B in January", "label": 1, "id": "641373124802424832"}
{"text": "@haley_caley11 Friday Night lights will make you cry. Teen wolf will overcome your life", "label": 0, "id": "641443318702837760"}
{"text": "I'm watching Teen Wolf season 2 tomorrow it's been decided", "label": 1, "id": "641447452105682945"}
{"text": "Random Facts For WednesdayHere are some random facts for you . . .1. \"Back to the Future\" and \"Teen Wolf\"... http://t.co/hHwedxSTMX", "label": 0, "id": "641562951254716420"}
{"text": "it's 1am i should sleep i have school tomorrow ugh i miss teen wolf, can january pls come fast already", "label": -1, "id": "641654927681417217"}
{"text": "'man talk about TbT hey i gotta TGIF ... We gotta catch up on a Sat pop bottles on a good Sundae ' @aewonwolf X @shekhinahd - Kids #Obsessed", "label": 1, "id": "639478713025957888"}
{"text": "Hahahaha. I suck at kickball. Plus I have homework.Tomorrow is TGIF with a 3-day weekend after!", "label": 1, "id": "639535134815965184"}
{"text": "Favorite line \"Wish that I'll be the sun to warm you all through your life\" TGIF guys!! #ALDUBWishIMaine https://t.co/tVVZCJGr45", "label": 1, "id": "639578369168797696"}
{"text": "In TGIF tomorrow : 'Honu by the sea,' Heritage of Hula, Chris D'Elia, more. Find it online (premium) http://t.co/QgLvCxqx3q #TGIF", "label": 0, "id": "639579946021621760"}
{"text": "Happy TGIF! May this day bring forth more blessings of love and happiness. Wink!", "label": 1, "id": "639581542713454592"}
{"text": "Yay! Rest day friday! Happy TGIF everyone! #ALDUBWishIMaine", "label": 1, "id": "639589757979197440"}
{"text": "Thank Goodness It's Friday!TGIF - now it's time to escape to Riverwalk Place!- One Night Stay in a Luxury Suite... http://t.co/vvswAdUAjG", "label": 1, "id": "639590962583441408"}
{"text": "TGIF celebrations tomorrow at Farragut Sq (17th & K NW)+Tysons (8301 Greensboro Dr). Best way to start the weekend is with #Lobster Lunch!", "label": 1, "id": "639594179564306432"}
{"text": "**IT'S FRIDAY** And to celebrate that fact we are offering everyone $20!! Just use the promotion code \"TGIF\" Book... http://t.co/MM6FGxZPmm", "label": 1, "id": "639594962481512448"}
{"text": "We have Wine Wednesday and TGIF and Monday gets wine cause MONDAY. But what about other days? I'm gonna fix that.", "label": 1, "id": "639606596960567297"}
{"text": "back at @ChapelBarBistro 5-8pm tonight, TGIF let's hang out! #Auckland #dj #music #tgif #friday #ponsonby", "label": 1, "id": "639641268528648192"}
{"text": "TGIF!!!!!!! I wish I could say my Friday is going to be relaxing...but...I'm waist deep in staining cabinets.... http://t.co/9aUu6CffSF", "label": 1, "id": "639657176399638529"}
{"text": "Good morning JP ladies and everyone. Hope u all have a great day xxx it's Friday yippee TGIF xxxx", "label": 1, "id": "639676351587348480"}
{"text": "TGIF! There's so many writing opportunities you can get started on this weekend, thanks to @Writers_Bloc! http://t.co/SgR6moOhbF", "label": 1, "id": "639683569950920705"}
{"text": "TGIF....ooh I just remembered...every day is Friday when you're travelling! Off to Riga today..", "label": 1, "id": "639685463855484928"}
{"text": "TGIF!!!! Can't wait to sleep all the way till Monday. #tgif #Friday #weekend https://t.co/R3FELAB4gd", "label": 1, "id": "639687912595046400"}
{"text": "hah. it's friday, baby! the last work day of a week. TGIF, right buddy ;)", "label": 1, "id": "639697723105673216"}
{"text": "Good Morning NigeriaIts Friday& YES You can say TGIF !!!We can see Service Day in perspective Its going to be... http://t.co/D7m4OkEA3a", "label": 1, "id": "639704180609974273"}
{"text": "It's already Friday. Not the TGIF kind of Friday... Can time freeze for a while?", "label": -1, "id": "639717435487092737"}
{"text": "TGIF folks! Our Friday faces look exceptionally relieved to see the end of the week! #WCVB http://t.co/zkTZvne5lS", "label": 1, "id": "639720230697201664"}
{"text": "TGIF, (Thank God its Friday)If you could hop on a bus and travel anywhere in Zambia right now, where would you... http://t.co/zQX1id8UhL", "label": 1, "id": "639731385205440512"}
{"text": "TGIF! Showing our love for the Dawgs! Which team will be you be cheering on this season? @FOX5Atlanta https://t.co/bD8Ayqp8sN", "label": 1, "id": "639731805843812352"}
{"text": "TGIF! We have a lot going on here at Channel 5 this morning. That's right it's Friday morning pep rally! I'm also... http://t.co/ySzRXeAQix", "label": 1, "id": "639732137302822912"}
{"text": "TGIF! Happy Friday! We're just a few hours away from the weekend!!", "label": 1, "id": "639732439410053120"}
{"text": "TGIF - Join us for Happy Hour Monday Thru Friday from 4-7pm with #complimentary #fingerfood! #besttimeoftheday... http://t.co/Gkw34dgJU0", "label": 1, "id": "639742903128948736"}
{"text": "Happy Friday, y'all. TGIF! Wishing you a great weekend.", "label": 1, "id": "639745907592949760"}
{"text": "TGIF!! Make it a great day, Robbie!! https://t.co/vqxDxf39DG", "label": 1, "id": "639749064872067072"}
{"text": "It's Friday again.,TGIF... make gud use of it, don't waste it like d last Friday..#time wasted can not be regained.", "label": 1, "id": "639750938274721792"}
{"text": "TGIF \"I'm the only nigga that can watch the sun and won t go blind.\"", "label": 1, "id": "639754679056998400"}
{"text": "TGIF! Start your weekend off with a spot of lunch and a cheeky pint. We are serving food all day until 10pm! #lunch #TGIF #friday", "label": 1, "id": "639759476187336704"}
{"text": "TGIF and tomorrow is game day!", "label": 1, "id": "639763567923851264"}
{"text": "@gorgeousgg @watsb4me hello and good morning loves. Wishing you both a nice Friday. Happy TGIF xoxox...", "label": 1, "id": "639766699605143552"}
{"text": "TGIF! Friday starts off with a tummy rub for Teddy! Have a terrific Labour Day weekend! #leaside #rosedale http://t.co/MT2WDzQXpn", "label": 1, "id": "639766917520211968"}
{"text": "And I don't know about TGIF. Fridays are terrible. I'm more of a TGIS person. Can it be Saturday already?", "label": -1, "id": "639767721073315842"}
{"text": "TGIF!!! Love 3 day weekends. Enjoy the weekend everyone. #laborday #sun #cocktails", "label": 1, "id": "639768228546277376"}
{"text": "Feels like everybody's more excited about the weekend than i am, ain't no TGIF when you work Saturday", "label": 0, "id": "639776353932439552"}
{"text": "TGIF, The Grind Includes Friday...GetYourMindWright, StayOnYourGrind and finish the week strong. https://t.co/hnRhPDvgFz", "label": 1, "id": "639785501902393344"}
{"text": "\"Monday you can fall apartTuesday, Wednesday break my heartThursday doesn't even startIt's Friday I'm in love\"TGIF!", "label": 1, "id": "639791600185442306"}
{"text": "I really fucks with @cthagod and @djenvy .. Every Friday they play Katy perry last Friday night (TGIF) @breakfastclubam #TGIF", "label": 0, "id": "639793234722615296"}
{"text": "@KreelanWarrior it creeps up on you. One day it's Monday Bloody Monday and the next, TGIF!", "label": 1, "id": "639795111115771904"}
{"text": "TGIF! Less than a week til Bill Conger's lecture at 6pm on Sep 9. Make sure you come to #SoundsLike to see his work before u hear his talk!", "label": 1, "id": "639796582649565184"}
{"text": "TGIF!!! Stop by the clubhouse between 12-2pm for FREE FOOD FRIDAY! On the menu: Tacos!!", "label": 1, "id": "639801611750129664"}
{"text": "TGIF! Gr8ful for a blessed week & greater weekend! Son finishes 1st week of college and that certain music festival to end the Summer! :)", "label": 1, "id": "639802191218384897"}
{"text": "Can't wait to see it filled with GLOWING Bubbles on 31 Dec! HAPPY TGIF!#bubbleglow5k #sentosa #silosobeach http://t.co/gHrLiN9sI8", "label": 1, "id": "639802428729114624"}
{"text": "TGIF!!! Are you ready? Don't miss The Friday Night House Party w/DJ Tan on The Soul FM tonight at @ 9pm EDT http://t.co/8reiglWzIn", "label": 1, "id": "639802755910107136"}
{"text": "Everyone's like TGIF! And I'm over here like I work tonight.And a double tomorrow.And Sunday.And monday. #grindin #needmoney", "label": -1, "id": "639806473942364160"}
{"text": "...and TGIF!!! What a week... I really dislike the 1st and the 3rd.", "label": -1, "id": "639813977237782528"}
{"text": "TGIF! Do you have any ideas for the new Enchanted Mum collection from @HCemmalou, available Wednesday? http://t.co/zF4carT9U9", "label": 0, "id": "639814513550823428"}
{"text": "TGIF! Celebrate your labor day in the water with SDSS. Free use of boards and suits after all lessons on Monday! http://t.co/E8ERAuhZnG", "label": 1, "id": "639817715666972672"}
{"text": "TGIF! Drop the brown bag, step away and come grab the BEST sandwiches in Indy! #PastramiOnMyMind #Indy #sandwiches #friday #lunch", "label": 1, "id": "639818590779273216"}
{"text": "Thx for following us @BowlerDerek - how many cuppa's do you have every day? (I'm on my 7th...) TGIF", "label": 0, "id": "639818613474525184"}
{"text": "Happy TGIF! And a long weekend too! May you weekend be full of many long runs and walks! #VictoriaMarathon", "label": 1, "id": "639824104606973956"}
{"text": "Happy Friday folks, TGIF!!!! Today the day to come on by!!! Also today the store is opening up at 12:30 today, sorry for inconvenience.", "label": 1, "id": "639824860324106240"}
{"text": "Hello JP ladies and everyone. Hope u having a great day xx its friday yippee TGIF - bring on the weekend and enjoy xx", "label": 1, "id": "639837514845523968"}
{"text": "TGIF tonight we will be close to the First Friday events on the Corner of Casino Center and Charleston The The... http://t.co/1E03rnZTtF", "label": 1, "id": "639838463383216128"}
{"text": "TGIF! And what better way to spend a Friday than in the best apartments in Waco! Come tour and you could win a gift card! #TheHype #Lease", "label": 1, "id": "639838991391461376"}
{"text": "TGIF! Feature Friday is here with new Roxy, Fallen & DC! Take a look: http://t.co/nio4sWQ3OO", "label": 1, "id": "639839167069978624"}
{"text": "TGIF must mean it's time to kick off the weekend in style at Central Scotland's biggest & best Friday Night... http://t.co/u1MHh34cAU", "label": 1, "id": "639841479892987904"}
{"text": "TGIF - It's not a REAL Friday until you dribble coffee down the front of your shirt at work - at least it's a 3 day wknd!", "label": 0, "id": "639845247284080640"}
{"text": "HAPPY TGIF! I pray that everyone in the States has a safe and restful labor day weekend. See you all Sunday....pastor gary", "label": 1, "id": "639848042217103360"}
{"text": "TGIF... For real... You have NOOOO idea how happy I am it's Friday", "label": 1, "id": "639848878305472512"}
{"text": "TGIF! Time to do the Happy Friday dance ...... oh, and get some awesome tacos to celebrate. ;) http://t.co/XLXMnp6OZ0", "label": 1, "id": "639850577149607936"}
{"text": "TGIF!Does anyone else remember that movie from the 70s, 'Thank God It's Friday!' ? It... http://t.co/9mR53fCyi1", "label": 1, "id": "639852307614601216"}
{"text": "@GrobanWorldNews hi Groban World News its christa happy Friday! happy TGIF, I hope you have a nice bright shining day from christa", "label": 1, "id": "639852635164643328"}
{"text": "TGIF everyone I am so happy it's Friday!", "label": 1, "id": "639860048185958400"}
{"text": "TGIF! After you watch the Dawgs play tomorrow, don't forget to get your swim on! #godawgs #beatulm #laborday #tgif http://t.co/Z673l8rySt", "label": 1, "id": "639865037167939584"}
{"text": "TGIF! Please be reminded of our weekly bible study and Friday service at 7pm! See you there! #Power2Achieve", "label": 1, "id": "639875873131360256"}
{"text": "TGIF and welcome to the weekend! Celebrate your first weekend at school with a Pep Rally tonight and a tailgate tomorrow! #ChargeUp", "label": 1, "id": "639876392302313472"}
{"text": "This is the first time in four years I can actually say TGIF bc I finally don't have Saturday classes anymore #ThanksKUA", "label": 1, "id": "639878228765712384"}
{"text": "TGIF! DJ Sparkbox starts the weekend off right at 10 PM, then tomorrow we've got live music with See Water & Feel... http://t.co/yCGkxvyk0Q", "label": 1, "id": "639895165482717184"}
{"text": "The quote \"TGIF\" doesn't exist when you work retail, it's more like \"thank goodness it's Tuesday\"", "label": 0, "id": "639901411778686977"}
{"text": "TGIF is always better on Friday...especially when the love of your life is looking exceptionally beautiful @makwatkins", "label": 1, "id": "639902905194139648"}
{"text": "Happy National Cheese Pizza Day and TGIF! Kick off your Friday with this deliciousness at #mamamiasfl #Friday #Pizza http://t.co/4Sgh6kkxu7", "label": 1, "id": "639909241042698240"}
{"text": "TGIF! So happy it's Friday, we are super excited for the weekend, getting hooked up to try the Athens solace and virture on Saturday.", "label": 1, "id": "639913963992518656"}
{"text": "TGIF but even tho it's Friday I'm not happy", "label": -1, "id": "639916258897465344"}
{"text": "The part in last friday night by Katy perry where they start chanting \"TGIF\" sounds like a sacrifice is about to happen", "label": 1, "id": "639916607020527616"}
{"text": "TGIF! Come out and celebrate the fact that it's a long weekend & that tomorrow is GAMEDAY! We have Graham Harper... http://t.co/zea8QcOtIV", "label": 1, "id": "639918749601034240"}
{"text": "TGIF - Enjoy the long weekend #YYC! We are sure the sun will come out at some point! :)", "label": 1, "id": "639923041942794240"}
{"text": "Not for nothing is their motto TGIF - 'Thank God It's Friday.' They live for the weekends, when they can go do what they really want to do.", "label": 0, "id": "639949452225019905"}
{"text": "@KrissyLynnxxx Sexxxy booty! Thanks 4 sharing the pic. Hope your Friday is going great today 4 U. :-) TGIF!!", "label": 1, "id": "639949454028746752"}
{"text": "TGIF by Katy Perry just came on & it's Friday AYEEEEEEEEE", "label": 1, "id": "639974450478338049"}
{"text": "Just a typical Friday night spent @ TGIF w/ the squad", "label": 1, "id": "639977042176569344"}
{"text": "TGIF....sensies! What are you up to on this Friday night? http://t.co/nbpPUg5wYZ", "label": 1, "id": "639983837582331904"}
{"text": "still playing TGIF playlist on spotify even if it's already saturday haha", "label": 1, "id": "639986132822851584"}
{"text": "TGIF ~Happy #Friday! Get your #LaborDay #weekend started @#CalienteResort ~ #Friday in the Nightclub is #Caliente!! http://t.co/JREJC5tMDY", "label": 1, "id": "639988943816146945"}
{"text": "@cowcart1 We are getting ready to go eat at TGIF with my parents for father's day which is tomorrow but was booked out then. Made French ...", "label": 0, "id": "640051340559806464"}
{"text": "Yesterday was lastweek,and TGIF was two days ago,which was also last week, so how the hell is tomorrow monday?", "label": -1, "id": "640553801066356736"}
{"text": "[Feast Makati Salcedo meets in AIM Conference Center this Tuesday!] Join us for the brand new series \"TGIF:... http://t.co/B0LDKMfBV3", "label": 1, "id": "640844152532418560"}
{"text": "this bitch said \"TGIF\" and it's Monday...", "label": -1, "id": "640948149998104576"}
{"text": "TGIF is totally meaningless when you have to work on Saturday..just sayin;)#PSYBringItOn", "label": -1, "id": "641029482216730625"}
{"text": "@thorharris666 or \"happy Monday\" or \"TGIF\" or... How about we all just shut the fuck up for a bit? The animals will appreciate it.", "label": -1, "id": "641040604756082688"}
{"text": "@merrittann_1998 And, fun fact...I watched full house episodes when they first aired every Friday on TGIF. Good stuff! \"You got it dude!\"", "label": 1, "id": "641418016853463040"}
{"text": "The only place to be for TGIF this Friday is MUSON Shell hall for 'FRIDAY NITE LIVE'. Don't miss it. It's almost... http://t.co/lulc0RUmob", "label": 0, "id": "641569413746040832"}
{"text": "I prefer TGIS than TGIF now. Cause friday is always a stressful day", "label": -1, "id": "641584157219418112"}
{"text": "TARA NA PINOY! Join us for the brand new series \"TGIF: Thank God I'm Filipino\" which begins this Sunday #FeelGodLove http://t.co/YgRAUx6mOu", "label": 1, "id": "641605601609428992"}
{"text": "With Tiger Woods only 2 shots back from the leader going into the final round tomorrow at the Wyndham... http://t.co/M8f7oktWdR", "label": 1, "id": "635327492673306624"}
{"text": "I will go out and say it now! Tiger Woods will put together a solid 65 tomorrow and win!! You heard it from me first!!", "label": 1, "id": "635327668737589248"}
{"text": "Tiger Woods shot a 3rd round 68 on Saturday to tie for 2nd at the Wyndham Championship after 54 holes. Woods trails Jason Gore by two shots.", "label": 0, "id": "635345443287789568"}
{"text": "Tiger Woods was 2 behind leader, Jason Gore, after the 3rd rnd but is in a strong position http://t.co/43ouISCIbP http://t.co/SZJlFjfS1a", "label": 0, "id": "635354524685832192"}
{"text": "Is Tiger Woods form finally returning or is it a one off. Unlucky lip out on 18th but an aggressive putt.", "label": 0, "id": "635364907177877504"}
{"text": "@jamieseh Hi jamie I heard Tiger Woods was at -13 Under I Heard Tiger not Playing Sunday he did not make the Cut is this True? @Larzik ?", "label": 0, "id": "635407147027800064"}
{"text": "Belgian Grand Prix, 100m Final, Super Sunday, The Ashes and Tiger Woods in contention tonight #SofaDay", "label": 0, "id": "635417096168579072"}
{"text": "Tiger Woods 2 strokes behind leader Jason Gore at Wyndham: Woods shot a 2-under 68 in the third round Saturday... http://t.co/QGLQ1djwnU", "label": 1, "id": "635422687007895552"}
{"text": "\"Tiger Woods doesn't move the needle. He is the needle.\" Ratings for 2nd round of Wyndham up 243% over last yr. http://t.co/dI3FrndaHd", "label": 1, "id": "635438285855322112"}
{"text": "Vintage 2008 Tiger Woods on master sunday on the 18th green", "label": 0, "id": "635439288243650560"}
{"text": "Bolt wins an epic. Imagine if Tiger Woods wins tonight. Which is the bigger story? Some Sunday of sport", "label": 1, "id": "635447953658933248"}
{"text": "2015 Wyndham Championship: Tee times, pairings for Sunday's round in Greensboro: Tiger Woods was bounced from the Sunday final pairin...", "label": 0, "id": "635449317675765760"}
{"text": "A Sunday with Tiger Woods in contention for a victory. I honestly never thought I'd see it again, but I'm pumped as hell. #LetsGo", "label": 1, "id": "635450781638991873"}
{"text": "Hello Tiger family. Do the #Tigertwirlchallenge and post a video of you doing the Tiger Woods twirl. Winner will be announced tomorrow night", "label": 1, "id": "635463103090696192"}
{"text": "Tiger Woods, yesterday: \"Tomorrow is going to be just like today. You can get on a run and make a bunch of birdies. You've gotta go get it.\"", "label": 1, "id": "635466224344924160"}
{"text": "Tiger Woods relevant on a Sunday for the first time in awhile...let's see what he does today.", "label": 1, "id": "635471126685196288"}
{"text": "A lot on the line for Tiger Woods today in his Sunday red. Nothing like golf on Sunday's w/ him in contention #WyndhamChampionship #FedExCup", "label": 1, "id": "635479586365509632"}
{"text": "Aug 22, 2015; Greensboro, NC, USA; Tiger Woods putts on the 9th green during yesterday's third round of the... http://t.co/wtxxXzaJBu", "label": 1, "id": "635483898936446977"}
{"text": "I wanna see the old Tiger Woods today... Wearing his red and having fun on a Sunday! Now that would be somethin..", "label": 1, "id": "635490046934560768"}
{"text": "On Saturday, a record number of fans showed up at the Wyndham Championship. Most, of course, were there to see Tiger Woods", "label": 1, "id": "635492641388560384"}
{"text": "There is just something about a Sunday afternoon with Tiger Woods wearing red that is American", "label": 1, "id": "635494540867207168"}
{"text": "It's Sunday. Tiger Woods dressed just like Patrick Reed. (Lest we forget) #AtTheWyndham http://t.co/EmVoWtVAYE", "label": 0, "id": "635502650646233088"}
{"text": "Break out the Sunday red. Tiger woods is back. America is back. http://t.co/DRPeA9oLTk", "label": 1, "id": "635504019008413696"}
{"text": "Not sure I wanted Tiger Woods to win a golf tournament more than I do today. Swallowed the pride, showed up and delivered. C'mon big cat!", "label": 1, "id": "635506773743534080"}
{"text": "We're about to get a Sunday round of golf with Tiger Woods actually in contention. Wearing red of course. #flashbacks", "label": 0, "id": "635506998503604224"}
{"text": "It's weird seeing Tiger Woods being able to wear red again. Not too often that he makes it to Sunday now a days.", "label": 1, "id": "635509856821096452"}
{"text": "Tiger Woods rocking the red polo on a Sunday with a chance to win the tournament. Doesn't get much better than that", "label": 1, "id": "635510951308095488"}
{"text": "Why is the @WyndhamChamp 1st tee announcer screaming? Because it's Tiger Woods, that's why.", "label": 1, "id": "635511001778012161"}
{"text": "Davis Love and Tiger Woods challenging on a Sunday...is it the 90s?", "label": 0, "id": "635515469898874880"}
{"text": "Of course Scott Brown aces the 3rd. From way downtown, BANG. (Note: Scott Brown is playing with Tiger Woods this afternoon.)", "label": 1, "id": "635517141857509376"}
{"text": "Tiger Woods' group comes to the Par 3-3rd and there's an ACE! But it wasn't from Eldrick - Scott Brown makes it w/Tiger looking on #PGATOUR", "label": 0, "id": "635517450029801472"}
{"text": "After watching Tiger Woods the 1st 6 holes today; he is NOT going to win! Not looking tough!", "label": 0, "id": "635529320501383168"}
{"text": "Golf - Tiger Woods gets close at the Wyndham, and the US media are orgasmic!!! C'mon Paul Casey!!", "label": 1, "id": "635529848589557760"}
{"text": "Tiger Woods wearing his Sunday red.... Get that win Tiger!!! Golf is way better when you are playing well. #tigerwoods #PGAChampionship", "label": 1, "id": "635530434865008640"}
{"text": "Quite the Sunday in sports AND! TIGER WOODS IS TWO SHOTS OFF THE LEAD AT WYNDHAM. @AnthonyMBruno is getting pumped. @globaltvsports", "label": 1, "id": "635533593268228096"}
{"text": "Wow Tiger Woods is SHANKING his way through the 4th round! Can't handle the pressure.", "label": -1, "id": "635543398997344257"}
{"text": "Well it was fun while it lasted... The struggling Tiger Woods is BACK! What to do with the rest of my Sunday?", "label": 0, "id": "635543588273815552"}
{"text": "@GCTigerTracker - ONCE AGAIN TIGER WOODS SHITS THE DAMN BED ON A SATURDAY, SUNDAY OR BOTH (which BOTH is what it is most of the time)", "label": -1, "id": "635545330797277184"}
{"text": "Tiger Woods is the biggest tease of the entire weekend. In contention and blows it on Sunday. Next step play 72 holes instead of 54.", "label": -1, "id": "635546850574082048"}
{"text": "I'm here watching golf hoping Tiger Woods can do well and this ass hole Triple bogey the 11th hole!!!", "label": -1, "id": "635547421494239232"}
{"text": "Video: Tiger Woods carded a 7 on the par 4 11th, here's the 5 shot carnage around the green https://t.co/ioLqv9lT06", "label": -1, "id": "635547812361428992"}
{"text": "Do we have thoughts on the ORO Tiger Woods theory can't go 4 daysTR - 7 birdiesFriday - 5 birdies, eagleSat - 3 birdiesSun - 1 birdie", "label": 0, "id": "635547921174392832"}
{"text": "One bad chip and Tiger Woods triples bogeys the par-4 11th. Falls to 10 under and more or less loses all chance to make the playoffs", "label": 0, "id": "635549632626561024"}
{"text": "Tiger woods just ruined Sunday for America.", "label": -1, "id": "635549904597741569"}
{"text": "Tiger Woods with a triple bogey on a Sunday with a chance to win? What world are we living in? I'm sad.", "label": 0, "id": "635551578104066048"}
{"text": "BREAKING: with a strong finish today Tiger Woods may break into the world top 250 @kingpin6713 @dtmleach @riger1984", "label": 1, "id": "635553498856226816"}
{"text": "@TwSpot Back nine Sunday...Red shirt...Tiger Woods. How good can it get?!? ...Add in @TWSpot! #NowWereTalkin", "label": 1, "id": "635555415531618306"}
{"text": "Tiger Woods 11th hole - blade a chip, chunk the following chip, hit the next chip thin, two-putt for triple bogey. Every amateur rejoices.", "label": 0, "id": "635560663914520576"}
{"text": "Tiger Woods finishes the Wyndham Championship -13. Could see a playoff if Jason Gore birdies the 18th. See the recap on @9and10Sports at 6", "label": 1, "id": "635567647095066624"}
{"text": "I added a video to a @YouTube playlist http://t.co/wocFZbQPnJ Tiger Woods trails by 3 midway through Sunday at the Wyndham", "label": 1, "id": "635588399341174784"}
{"text": "A triple-bogey 7 on No. 11 sidetracked Tiger Woods in the @WyndhamChamp, but a tie for 10th place at 13-under constitutes progress. #PGATour", "label": 1, "id": "635590883207811072"}
{"text": "Davis Love III wins Wyndham Championship as Tiger Woods drops to 11th place: Davis Love III won the Wyndham Ch... http://t.co/bW2x0LtoXj", "label": 1, "id": "635600126644346880"}
{"text": "Davis Love III wins his 21st PGA TOUR title, while Tiger Woods misses the FedEx Cup playoffs for just the third... http://t.co/G8Cm77GUd7", "label": 0, "id": "635612642355208192"}
{"text": "Tiger Woods apparently isn't clutch any more. He finished 13-under T-10th at the Wyndham Championship & will miss out on the FedEx Playoffs", "label": 0, "id": "635622655547318272"}
{"text": "Tiger Woods walked up the 18th fairway Sunday, he noticed a homemade sign to his right http://t.co/kSrcOzH5pG", "label": 0, "id": "635626194226941952"}
{"text": "Tiger Woods was all over my TL yesterday like it was the 2nd coming. Did the final round get rained out today or something? #Crickets", "label": 0, "id": "635635485541429249"}
{"text": "Davis Love the 3rd is winning titles at 51, and tiger woods, well, damn man.", "label": 0, "id": "635661385301536768"}
{"text": "When you're paired with Tiger Woods on a Sunday what's the best way to make yourself comfortable? By getting a... http://t.co/23dk4EQVKr", "label": 0, "id": "635756441522016256"}
{"text": "[USPGA TOUR] Hip ails Tiger Woods as he settles for 10th in best result of season http://t.co/BJSVuW4Apq", "label": 0, "id": "635762279640879104"}
{"text": "For me Tiger Woods losing yesterday was the same feeling Vikings & Packer fans get after a loss on Sunday. Want... http://t.co/tpDjXJ2bOp", "label": 0, "id": "635776557966053376"}
{"text": "I think the world needs to hear more breakdown of Tiger Woods' fall on Sunday.", "label": 0, "id": "635800267238305792"}
{"text": "Tiger Woods ties for 10th and four strokes behind the winner Davis Love III http://t.co/mNZCjN2NL0", "label": 0, "id": "635818025791430657"}
{"text": "Woods' season ends abruptly: Tiger Woods' season came to an end on Sunday after his 10th-place finish at the W... http://t.co/pLBpzceH5s", "label": 0, "id": "635818352024252420"}
{"text": "@JOXRoundtable best of the weekend- Tiger Woods on Thursday-Saturday. Worst, Tiger Woods on Sunday. Old Tiger would have closed it out.", "label": 0, "id": "635834651970564096"}
{"text": "@DylanBuckingham @ColbyJPowell @ToddOnFranchise Tiger Woods did not play well on Sunday, wait make that all year #Tigersucks", "label": -1, "id": "635842517867466753"}
{"text": "@Zigmanfreud I see you still have that Tiger Woods tingle going up your leg. Is the 1st Church of Tiger Woods still active?", "label": 0, "id": "635853282129264640"}
{"text": "Narrowest of margins for World's no 1 & 2 but be afraid, very afraid as Tiger Woods is on the march & rises to No. 257 #WorldGolf rankings", "label": 1, "id": "635855853174792197"}
{"text": "When I saw Tiger Woods shoot a 7 on the 11th hole yesterday I feel like...I play just like Woods!", "label": 0, "id": "635869948527648768"}
{"text": "Sunday was a rough day in sports... Tiger Woods botched comeback, Yankees dropped out first place, and Djokovic got rocked at the ATPFinals!", "label": -1, "id": "635877177385467905"}
{"text": "Tiger Woods is looking in top form at his own golf tournament. He leads by two going into Sunday: http://t.co/5YcotaWgMh", "label": 1, "id": "635897465779019776"}
{"text": "@Shadetrain for a monday i'm like tony the tiger GRRRRRRRREAT! which is much better than tiger woods no one is trying to hit me with a club", "label": 0, "id": "635923319674511360"}
{"text": "By Andrew Both GREENSBORO, North Carolina, Aug 23 (Reuters) - Tiger Woods had his best tournament in nearly two years but it was still not", "label": 1, "id": "636197852792786944"}
{"text": "Tiger Woods' season came to an abrupt end on Sunday: Read the story: >>> http://t.co/GLYddEfoUX", "label": -1, "id": "636290014985498624"}
{"text": "#Magazine #Book Sports Illustrated April 21, 1997 Issue Tiger Woods #Golf on the Cover New Master http://t.co/uUyVfpvGDX #TigerWoods #Sale", "label": 1, "id": "636380356048875520"}
{"text": "What's it like to make a hole-in-one against Tiger Woods? Scott Brown on a magical Sunday: http://t.co/A7bORVMCw9 http://t.co/gsph8uwHom", "label": 1, "id": "636590217160433665"}
{"text": "Former world No 1 Tiger Woods blamed his putting after struggling to an opening round score of 75 in the US PGA Championship on Thursday", "label": -1, "id": "636624169862569985"}
{"text": "Tiger Woods' season came to an abrupt end Sunday, but in a year of numerous lows, at the least the American golfer could console himself", "label": 0, "id": "636649085169205250"}
{"text": "@LouderrThanHell @Stixzadinia @Satchel666 Tiger Woods was 21 when he won his 1st Masters sweets! 21 is not old!", "label": 1, "id": "636657981656924160"}
{"text": "Tiger Woods roared back to form with a sparkling first round at the Wyndham Championship on Thursday. The former world number one needs to", "label": 1, "id": "636871807174361088"}
{"text": "Aug 19 (Reuters) - Tiger Woods is approaching his first appearance at the Wyndham Championship with eager anticipation for a reason that", "label": 1, "id": "636921886312656896"}
{"text": "Love's win stirs fond memories: Tiger Woods may have been the center of attention going into the final round o... http://t.co/SftzxZYW7r", "label": 1, "id": "637153525147918336"}
{"text": "Tiger Woods may have not had the season he had hoped for, but we learned that Tigermania is still very much alive - http://t.co/oIj6amWroL", "label": 1, "id": "637184847891427328"}
{"text": "Gonna be weird if Doug Ferguson is writing about Bae winning on Sunday - and he doesn't mean Tiger Woods.", "label": 1, "id": "637798283683885057"}
{"text": "SMH, Somebody 'bout to be upset again. 1st Tiger Woods infiltrates golf, the Williams Sister literally... http://t.co/uZww3tjmec", "label": 0, "id": "638475615713280000"}
{"text": "Can't wait for golf tomorrow #group1 psyche rocking out in the 3rd group . I'm worse than the new tiger woods", "label": 1, "id": "638545985187258368"}
{"text": "Bruh... I could be Tiger Woods on the course in some 6's https://t.co/Xb4SfI2Tp6", "label": 1, "id": "639156430386257920"}
{"text": "\"The greatest thing about tomorrow is, I will be better than I am today.\" ~ Tiger Woods#ALDUBBATTLEForACause", "label": 1, "id": "639858653919469568"}
{"text": "I sat one night n saw this darkness n the msg said there's an even greater evil on its way more evil than tiger woods", "label": 0, "id": "639924319607369728"}
{"text": "#nadal #USOpen2015 lucky 1st game for nadal. Both players playing with nerves. Cool to see Tiger Woods in Nadal's box", "label": 1, "id": "640012221251211265"}
{"text": "Tiger Woods at the tennis U.S. Open on Friday, not on Saturday. Just like in golf.", "label": 0, "id": "640163232368459776"}
{"text": "@Buccigross and it just makes Tiger Woods look even worse than he may be.", "label": -1, "id": "640278130612158464"}
{"text": "By Larry Fine NEW YORK, Sept 5 (Reuters) - Not even the presence of his sporting inspiration, Tiger Woods, at the U.S. Open could lift", "label": 0, "id": "640549024043532288"}
{"text": "This just in: Jordan Spieth may not be the next Tiger Woods @680tra", "label": 0, "id": "640618868625571841"}
{"text": "Simuladores de Golf Tiger Woods misses cut at British Open: Tiger Woods looks on from the 18th green during th... http://t.co/IWuY7lnqBT", "label": 0, "id": "641244762129874945"}
{"text": "Serena has been twice as dominant as Tiger Woods ever was in his prime and she gets 1/10th of the accolades and adulation", "label": -1, "id": "641398366304370688"}
{"text": "We may just have the next Tiger Woods right here in Ghana! Marvels Mini-Golf Junior Tournament will be happening on the 18th of September!", "label": 1, "id": "641643733205807104"}
{"text": "50 minutes in, and the team behind Edge of Tomorrow have crafted one of the few movies starring Tom Cruise that I can stomach.", "label": 0, "id": "633143838333255680"}
{"text": "@HuffingtonPost She looks unstable, But that may happen when Tom Cruise gets inside you we don't know!", "label": 0, "id": "633145495913762817"}
{"text": "happy monday conquer a fear today accept into your life that tom cruise is one of the scariest humans ever to grace the face of this earth", "label": 1, "id": "633292790336647169"}
{"text": "Great, may b Tom cruise can have a go on it in the next MI... https://t.co/5hoXgP2LUy", "label": 1, "id": "633354881835794434"}
{"text": "100% comedy, no surprises. I was sat next to a child drinking red wine. This is what it's come to, Tom Cruise.", "label": 1, "id": "633375455622615041"}
{"text": "Tom Cruise may not have aged but M:I-2... well. Limp Bizkit, slow motion and the millennium bug.", "label": 0, "id": "633400776644296704"}
{"text": "Tom Cruise may have a private life I dont agree with, but in terms of his film career, he's been in so many greats he has my utmost respect.", "label": 1, "id": "633436321013460992"}
{"text": "@maddydell They did and tho Tom Cruise thinks he's the star, Edge of Tomorrow is Blunt's movie through and through. (IMDB 7.9*)", "label": 0, "id": "633527043737579520"}
{"text": "@777Mediaprod Why is it because the flies are Tom Cruise from edge of tomorrow. Try to do something die, restart.", "label": -1, "id": "633536694843777024"}
{"text": "Off to see if Tom Cruise hanging from the side of a plane is more interesting than him hanging from a train. Tuesday morning skive", "label": 1, "id": "633572969592320000"}
{"text": "Today's #Newsdrop: Tom Cruise, Prue Leith and the reality of money for a new generation https://t.co/wGJB6oJXoy http://t.co/du3QkFzCl3", "label": 0, "id": "633582905537757184"}
{"text": "Watched my 6th Tom Cruise in just 2 weeks #IthinkIhaveaTomCruiserelatedproblem", "label": 1, "id": "633715634120097792"}
{"text": "I don't know why but iwatched this movie for the 27th time I'm not A big Tom Cruise fan.....but every time i... http://t.co/684fCDfwTf", "label": 1, "id": "633718193073340416"}
{"text": "As much as it may sting, and as little as you may want it to be true, Tom Cruise is still a hell of an actor.....", "label": 1, "id": "633791366712152064"}
{"text": "Say what you will about Tom Cruise, but Edge Of Tomorrow is some good shit. Killing time before #cubs get rained out.", "label": 1, "id": "633792029768720384"}
{"text": "@FujoYoshi What if Homu Homu's power was the same as Tom Cruise from Edge of Tomorrow, where she had to die before walking up in the past.", "label": 1, "id": "633814093875404800"}
{"text": "@chrismcquarrie what if we do Edge of Tomorrow 2, where every time he dies, this time, he changes Tom Cruise movie roles?", "label": 0, "id": "633839153592037376"}
{"text": "@Nick_Houser @eddiesofficials @AdamKadourhe @linatelo If I may, I agree with these esteemed gentlemen and Tom Cruise http://t.co/3gON8SCXbS", "label": 1, "id": "633851898752163840"}
{"text": "So, Edge of Tomorrow is, what, Starship Troopers meets Groundhog Day? (Glad I forgot Tom Cruise was in it, or I'd not have watched it.)", "label": 0, "id": "633873169993101312"}
{"text": "stay in touch via @instagram yeah may b @facebook or @tumblr \"obviously I'd love to chat with #WajBro whose Tom Cruise of #Pakistani #Media", "label": 1, "id": "633882510347272192"}
{"text": "Photo: staff: undercoverjuggalo: tom cruise has seen the sun and the moon, and even mars; the milky way and... http://t.co/6GBnu4kUMJ", "label": 0, "id": "633912482940223488"}
{"text": "Islam is now genetic, ( Breaking news ) Tom Cruise hopes $cientology goes the same way ! https://t.co/XzbWzp6URh", "label": 0, "id": "633923330018557952"}
{"text": "Did you see Tom Cruise at 53 in the Sunday Times? How to look as good (without ... - High50 http://t.co/HuBZ147AYA", "label": 0, "id": "633954703680737282"}
{"text": "@rheahughes Ask Bill Whine about Tom Cruise in Tropic Thunder, that was awesome but not too many may have seen it!", "label": 1, "id": "633979821681442816"}
{"text": "@lubehead funny story, watched edge of tomorrow with Tom cruise last night - loved it", "label": 1, "id": "634035346016178176"}
{"text": "So much Tom Cruise in my eyeballs tonight. But the dude made some good choices. Edge of Tomorrow? Mission: Impossible - Rogue Nation? GOOD", "label": 1, "id": "634155311570493440"}
{"text": "An 8th grader, in the same class with my SSR \"fabulized\" Tom Cruise, Nicki Minaj and Freddy. Freddy looked like chucky cheese. Lol", "label": 0, "id": "634377960653373440"}
{"text": "Why does Tom Cruise take 10,000 times to figure things out in the movie Edge Of Tomorrow, but gets it right 1st time in Mission Impossible?", "label": -1, "id": "634404234432151552"}
{"text": "EDGE OF TOMORROW, Hiroshi Sakurazaka, $5.99. Staff pick! Also a Tom Cruise movie but we don't care so much about that http://t.co/GsNf1uZXO1", "label": 1, "id": "634440326770393088"}
{"text": "watched all the mission impossibles and now i'm watching edge of tomorrow...still don't like tom cruise very much", "label": 0, "id": "634590109950701568"}
{"text": "Anyone seen edge of tomorrow with Tom cruise and do yall recommend it ?", "label": 0, "id": "634592367958364160"}
{"text": "SD News - SD Opera figure makes Tom Cruise look good - In his August 11 New Yorker piece, Alex Ross says he was ha... http://t.co/06A0wKG6e1", "label": 1, "id": "634780207472353281"}
{"text": "Happy Friday! Here's Tom Cruise dancing with no rhythm but still being fresh AF https://t.co/0kLimVwYyx", "label": 1, "id": "634784594546556928"}
{"text": "I would have enjoyed Edge of Tomorrow more if Tom Cruise had to start each day by re-spawning in the bathroom of a Bubba Gump Shrimp.", "label": -1, "id": "634801318591336448"}
{"text": "@safetypilot26 May I air your pictures to Tom cruise If we say you shot them? I need your answer ASAP...thanks", "label": 0, "id": "634805362529579009"}
{"text": "Going to watch edge of tomorrow again as I find it deeply satisfying to watch Tom cruise be killed repeatedly", "label": 0, "id": "634889667414900736"}
{"text": "Hold up. They're remaking MINORITY REPORT? Without Tom Cruise? Can I just ask: WHY? https://t.co/q8qyapHNgv", "label": 0, "id": "635014666792497152"}
{"text": "Just watched Edge Of Tomorrow - really enjoyed it. Best thing Tom Cruise has done in ages.", "label": 1, "id": "635046839343931392"}
{"text": "@crushsong (btw watched edge of tomorrow it was v good i'm mad at lord xenu for making everyone feel weird about tom cruise)", "label": 1, "id": "635199599947350016"}
{"text": "The Fresh Beat Band goes Tom Cruise L to R Color of Money, Born on the 4th of July, Jerry Maguire, just good ol' Tom http://t.co/vTDfDg0gxh", "label": 1, "id": "635275051722403840"}
{"text": "@WorldDamian is the 2nd one Tom cruise in mission impossible?!", "label": 0, "id": "635280958200147969"}
{"text": "@gregthepaladin @padgettish @bootaide I mean it's 5th in a series, I don't expect perfection from that or Tom cruise just good action", "label": -1, "id": "635307543657611264"}
{"text": "@pecunium Edge of Tomorrow was Yet Another Tom Cruise Movie, which is to say it was too long, blew up too much shit, & needed a better end.", "label": -1, "id": "635341650798100480"}
{"text": "The 5th Mission impossible franchise, does it still carry a appeal aside from bankrolling Tom Cruise?http://t.co/r9oBo2F1Fb#filmreview", "label": 0, "id": "635478463000915968"}
{"text": "Tom Cruise meets with Colombian mayor: Medellin, Colombia, Aug 23 (EFE).- Hollywood star Tom Cruise met with the mayor of the northwe...", "label": 0, "id": "635548789571383296"}
{"text": "@ConfusedImp I keep considering Edge of Tomorrow b/c I don't mind Tom Cruise, but seeing as how it's a video game of a movie >>", "label": 0, "id": "635580318733500416"}
{"text": "Tom Cruise was 24 when he was in Top Gun. Meanwhile, I just laughed at a fart joke and don't want to go to work tomorrow morning.", "label": 1, "id": "635623858314285058"}
{"text": "Tom Cruise movie marathon wasn't in my plan list, yet it's on going after last Friday. Lol", "label": 0, "id": "635694440418422784"}
{"text": "From The Guardian: Benjamin Lee, 'Paul Haggis: \"shame on\" press for not asking Tom Cruise about Scientology' http://t.co/Ny1rWmhqMR", "label": -1, "id": "635730189595635712"}
{"text": "First look at the TV version of Minority Report!: The movie may have starred Tom Cruise but ca... http://t.co/Lv0ukD9Dok via @TechMASHUK", "label": 1, "id": "635741383098105857"}
{"text": "My Mum's friend is here and they're legit talking about Tom Cruise and I'm just sat here like ........", "label": -1, "id": "635768007772491777"}
{"text": "Sometimes I realise I know all the words to movies. And that those movies mostly have Tom Cruise in them. I may have had a thing for him.", "label": 1, "id": "635919141120147456"}
{"text": "Well, at least killing the douchebag is as entertaining as wondering how many times Tom Cruise died in Edge of Tomorrow #BloodPunch", "label": -1, "id": "635972560002281472"}
{"text": "Mission Impossible: Rogue Nation: I really tried, you guys, but I can only like Tom Cruise once per decade and Edge of Tomorrow was SO GOOD.", "label": 1, "id": "636248773316972544"}
{"text": "hi, i'm tom cruise. you may remember me from scientology", "label": 0, "id": "636261388785053696"}
{"text": "Every time I hear that song \"I Can't Feel My Face When I'm With You\" see Tom Cruise ripping his face off in the 1st Mission Impossible.", "label": 0, "id": "636324232285192192"}
{"text": "may i just say that Tom Cruise looks hot as fuck in a navy blue suit", "label": 1, "id": "636372616924672000"}
{"text": "Edge of Tomorrow with Tom Cruise is another bad ass movie; I have never seen it till now.", "label": 1, "id": "636436288342765569"}
{"text": "@Xbox @CallofDuty This looks like Edge of Tomorrow, the Tom cruise movie...", "label": 0, "id": "636711311884185600"}
{"text": "Can't wait for The Edge of the Day After Tomorrow, where Tom Cruise gets cold over and over again until he brings down the oil companies.", "label": 1, "id": "637069345395507202"}
{"text": "@LoriJulia what is that book that is supposedly about Katie Holmes and Tom Cruise? I'm going to Barnes& Noble tomorrow! #help", "label": 1, "id": "637407143138734081"}
{"text": "The Action flick Kings, Tom Cruise, Jeremy Renner needs to sharpen this aspect of his acting. He may turn out to be a fine poster boy for it", "label": 0, "id": "637460574260043776"}
{"text": "Edge of Tomorrow is my new favourite. Tom Cruise , man you are so cute !", "label": 1, "id": "637851089660850176"}
{"text": "I'm not huge fan of Tom Cruise but much like the last movie I saw him in, Edge of Tomorrow, #MissionImpossibleRogueNation was really good.", "label": 1, "id": "638108691653246976"}
{"text": "@nuahs6881 You mean Edge of Tomorrow? It is surprisingly wonderful and I wound up feeling about Tom Cruise the way I did as a kid after", "label": 1, "id": "638191858263420928"}
{"text": "Happy Bank Holiday Monday ! It's raining in the UK so I'm off to the movies later to perv on Tom Cruise lol... http://t.co/Thbz2qc7Rv", "label": 1, "id": "638236524769771522"}
{"text": "Watched Tom Cruise and Emily Blunt in Edge of Tomorrow last night. Really enjoyed it. Interesting to see Jez Butterworth listed as a writer.", "label": 1, "id": "638283151903731712"}
{"text": "The main man Pedro or shall we call him Tom cruise (cocktail the movie) @WonderlandLpool Sunday bar skills http://t.co/71Oj5l0aep", "label": 1, "id": "638408659505184768"}
{"text": "good things i saw on the way to work:- car w picture of tom cruise in the 1st mission: impossible movie- \"TUSHI DR\" license plate", "label": 1, "id": "638418774933159936"}
{"text": "In no particular order, the top three Tom Cruise films are: Magnolia, Edge of Tomorrow and all the Mission Impossibles.", "label": 1, "id": "638490844954251265"}
{"text": "\"I disagree with people who think you learn more from getting beat up than you do from winning.\" - Tom Cruisehttp://t.co/4h0hbCxHFm", "label": 0, "id": "638594919406243841"}
{"text": "Sci article tries to make prehistoric animal's size relatable by calling it \"as big as Tom Cruise\". That didn't help. http://t.co/i5xFgyg4iB", "label": -1, "id": "638756747620937728"}
{"text": "@WhiteHartYid bit like Edge of Tomorrow film, but in that Tom Cruise gets it right in the end unlike Spurs", "label": 1, "id": "638763715349901312"}
{"text": "Edge of Tomorrow with Tom Cruise is phenomenal", "label": 1, "id": "638904794824998916"}
{"text": "L L #TomCruise #Movies Born on the Fourth of July #DVD ~ Tom Cruise ~ R1 Widescreen New #Deals #Bargains http://t.co/j3rX4jomI1", "label": 0, "id": "638959184193581056"}
{"text": "@5WrightStuff ? tom cruise as ron kovic (born on 4th july); if the part fits the character, it doesn't matter", "label": 0, "id": "639010240239939584"}
{"text": "Get your Wednesday started with Tom Cruise dancing to Ludacris https://t.co/apqyHXiYxA", "label": 1, "id": "639052130498777088"}
{"text": "YES, I guess you do! May I suggest that you have #Coffee with Tom Cruise for Mission Impossible for \"pointers\" https://t.co/WnhF4HIfpC", "label": 1, "id": "639123149238333440"}
{"text": "Check out this interview and me acting like Tom Cruise at the end lol :) https://t.co/aUyS8W2wNy", "label": 0, "id": "639203797533917184"}
{"text": "My journey from the first cobweb I walked through this week to the one just now is not unlike Tom Cruise's journey in Edge of Tomorrow.", "label": 0, "id": "639483033297526784"}
{"text": "Movies with Milan | Edge of Tomorrow With Tom Cruise, Star Wars and More http://t.co/6CevDBDUkc #RT #Follow #HHN24", "label": 1, "id": "639729164757692416"}
{"text": "Wow! I just won this for free, LIVE DIE REPEAT, EDGE OF TOMORROW (Tom Cruise) - Ultraviolet (U http://t.co/9nEunZzmQ0 #listia", "label": 1, "id": "640015806580039680"}
{"text": "Tom cruise movies on Zee Studio- Tonight at 11pm Mission impossible -2, Tomorrow- 9pm War of the worlds", "label": 0, "id": "640032316702588928"}
{"text": "Rented #scifi #movie \"The Edge Of Tomorrow\" with Tom Cruise Friday. Really underrated. Hadn't enjoyed a new movie like that in quite awhile.", "label": 1, "id": "640241922972499969"}
{"text": "Wine update: I may have busted my ass attempting the Tom Cruise socks slide across the kitchen. Asshole gravity. #MistakesWereMade", "label": -1, "id": "640335182164283392"}
{"text": "#TomCruise #Movies Born on the Fourth of July (Oliver Stone Collection) Tom Cruise ** Brand New ** http://t.co/FNWYYq7HK6 #Deals #Bargains", "label": 0, "id": "640349480294854656"}
{"text": "@eazyrooster @ditchell I loved tom cruise in Tropic Thunder and that's pretty much it. But I heard Edge of Tomorrow was great.", "label": 0, "id": "640360805293248512"}
{"text": "Speaking of Tom Cruise, by the 5th instalment you'd think it'd be undeniably clear that those Missions are actually quite Possible...", "label": 0, "id": "640504053307428864"}
{"text": "Just watched \"Edge of Tomorrow\" and liked it. Mostly because Tom Cruise died a hundred times.", "label": 1, "id": "640613200875008000"}
{"text": "@Aellis994 edge of tomorrow is a well good film! Didn't know he directed that aswell. Im just gonna ignore the critisisms of Tom Cruise", "label": 1, "id": "640669216530661376"}
{"text": "@andycastro @MiklCraw4d ok, so he can pretend he's Tom Cruise in born on the 4th of July and inspirationally drive his butt up here", "label": 1, "id": "640685566397431808"}
{"text": "Sunday night is getting rowdy with a Tom Cruise marathon #WilsonTexts http://t.co/o34goCowHG", "label": 1, "id": "640743080254177280"}
{"text": "Can no one else but me bring potato salad to Tom Cruise's Labor Day BBQ tomorrow? Tom doesn't want too much. Thanks, twitter.", "label": 0, "id": "640749001009041408"}
{"text": "Do you think Tom Cruise could give this a go on the Campbeltown - Glasgow flights? Saturday at 5.30pm and Sunday... http://t.co/KpCBd5O8jB", "label": 0, "id": "640802469128327168"}
{"text": "I still can't believe Tom Cruise from Top Gun Is coming to our school Friday for USA day!!!", "label": 1, "id": "641102909187354624"}
{"text": "Still going: Tom Cruise, 53, was busy promoting Mission: Impossible - Rogue Nation in China on Sunday ahead of ... http://t.co/cWEhgVvd4f", "label": 1, "id": "641298847956893697"}
{"text": "The \"Edge of Tomorrow\" ad campaign really should've been more focused on the promise of getting to watch Tom Cruise die over and over again.", "label": 0, "id": "641467979662774273"}
{"text": "So bringing in the tory cuts mike ? Good way out https://t.co/umTfNPYOxH", "label": 0, "id": "637741293792305152"}
{"text": "Tristram 'more Tory than the Tories' Hunt seems to have forgotten who was Shadow Education Secretary under Miliband http://t.co/gv4oIjGyjA", "label": 0, "id": "637741738518515716"}
{"text": "@meldrum @iainmartin1 65-70% of Tory & UKIP voters still want to renationalise the railways, as do the 1st & 2nd place cands for Lab Leader.", "label": 0, "id": "637775514896306176"}
{"text": "Geez..the Labour leader has to be electable because otherwise a Tory govt will continue to do it's very worst. https://t.co/BHkhzANl3i", "label": -1, "id": "637777853124206592"}
{"text": "Especially the one's who work for Tory donors & circumnavigate agency rules heaping misery on our unemployed. https://t.co/ouNovtp6Oh", "label": -1, "id": "637894189594845184"}
{"text": "I did need to check to make sure this wasn't a junior Tory minister I'd never heard of. http://t.co/ojZmIfSjje", "label": -1, "id": "637906686045499392"}
{"text": "Do you really think he gives a shit about Scottish opinion,he's a bloody Tory after all https://t.co/NuKghC33B4", "label": -1, "id": "637908022275260417"}
{"text": "100% of MSM are 100% compliant with Tory policy. They're all complicit & will share the blame. https://t.co/aDwSKc26Bv", "label": 0, "id": "637939210180251648"}
{"text": "@IanKingSky never have I read such scaremongering bullshit in the Tory led SUN newspaper as the shit you wrote in all my life!", "label": -1, "id": "637950083720441856"}
{"text": "@fayefellshort Exactly, it's all because Rupert Murdoch's empire tells the people who believe everything they read in The Sun to vote Tory", "label": 0, "id": "637950518325850112"}
{"text": "@richardcalhoun @kevverage Blair may have been supported by the MPs and his new won Tory followers but not by traditional Labour supporters", "label": 0, "id": "637960121784647681"}
{"text": "Theresa May, in her desire to win over the dunderheads who vote in Tory leadership elections, really does personify the Stupid Party.", "label": -1, "id": "637966335012655104"}
{"text": "@riley1lfc @billyjYES @eddiesurfs agreed but I have been Labour a long time and may not agree with Andy but he is not a Tory", "label": 0, "id": "637967955486224384"}
{"text": "Theresa May is laying down a marker for the Tory leadership. Tough on immigration and tough on the causes of immigration.", "label": 1, "id": "637972760266936320"}
{"text": "Mrs May doesn't mean it but just wants to be elected Tory leader when Dave steps down Then it will be all smiles @DSORennie @edwardlucas", "label": 1, "id": "637975532949385216"}
{"text": "Liberal twitterati suggesting Mulcair is a Tory cause he has a column in Sun today. Guess he'll be a Liberal when he has one in the Star.", "label": 0, "id": "637982790554927104"}
{"text": "@lexibeauregard I have never subtweeted about Tory. Does this mean she was the 2nd Gossiper?", "label": 0, "id": "637983716778876928"}
{"text": "@Ed_Buxton of course - why does May think rest EU wouldnt do the same - plus vote against any of the Tory proposals for EU reform", "label": 0, "id": "637992095991463937"}
{"text": "@pperrin @nellesapelle Very wise. Hard to see UKIP going any further tho. Lab & Tory split may open up new space like you said.", "label": 1, "id": "638092283628384260"}
{"text": "Truth to \"The Scum\" as we call it in Liverpool is an alien concept. It exists to peddle Tory lies #DontBuyTheSun https://t.co/TjxFkSGOJB", "label": -1, "id": "638281286835138560"}
{"text": "@BlissettCarl @GeneralBoles @guardian 434,000 Scots just voted Tory in May. So one in every ten Scots you meet....is a Tory voter :P GIRFUY.", "label": 0, "id": "638302478904229888"}
{"text": "Question is Why do all conservative local authorities implement Tory government cuts with out objection @guardian http://t.co/9UK9wvxGu8", "label": 0, "id": "638499213354135553"}
{"text": "@DJLujoso they just shrug it all off and quote shit statistics to satisfy themselves. So angry right now..gonna get some Tory shit tomorrow!", "label": -1, "id": "638511352173195266"}
{"text": "Cripes! Boris crashes from 1st to 5th in Tory grassroots leader poll (in just four months) http://t.co/O2M8fhjJwk http://t.co/s4B1ZtZcUj", "label": -1, "id": "638674389282750464"}
{"text": "Tory saw me with my physics textbook and she said \"I wish you the best of luck may God be with you\" y me hecho la bendicion", "label": 1, "id": "638776524603265024"}
{"text": "@TalesofanAlfa he's a far left, do-gooder fool...may even be a Tory plant, who knows.", "label": -1, "id": "638829451191582720"}
{"text": "Tory campaign jet takes 1st flight: The Conservative Party has unveiled its official campaign plane, making it... http://t.co/nVzCdkSYPS", "label": 0, "id": "638832060803616768"}
{"text": "Tory concerned about carding black kids and the traffic on the Gardiner.He'll speak to the press Wednesday about the Gardiner.", "label": 1, "id": "638924955892232193"}
{"text": "@AlresfordBear and sounded like they were Tory's and may as well been as we now so many still carry the ideas of \"New\" Labour/Blair.", "label": 0, "id": "638948357143166976"}
{"text": "Real shame @DouglasCarswell joined @UKIP. In the climate of anti-est politicians (#Corbyn/#Trump) he may have ended up as Tory leader(!)", "label": 0, "id": "638974152473464832"}
{"text": "Oh the ignominy for Boris: Liam Fox beats him to 4th place in Tory leadership survey. Osbourne, Javid, May 1st 3. https://t.co/YvoNbaRNVu", "label": 0, "id": "638976260950130688"}
{"text": "From \"The Zen of Blair\" No 3: \"Only those who reject the Labour Party may lead it;only those who vote Tory may vote Labour. This is Newness\"", "label": -1, "id": "638993135071272960"}
{"text": "@EveningChron : to make it 'fair for all'? Tory cuts only make it fair for Tories... Same as removing Cancer meds in Jan & again soon", "label": 0, "id": "639004636914057216"}
{"text": "@AllenStarr1 @TrippyPip I'm a Tory voter. I agree with austerity. We are the 5th biggest economy in the world, we can afford to help", "label": 1, "id": "639011123971366912"}
{"text": "Theresa May is the Tory leader Labour should fear http://t.co/M0CBiPbq1R", "label": -1, "id": "639089373657595904"}
{"text": "Labour saying they still have 'issues' with govt proposals on EU referendum 'purdah' plans, and may vote with Tory rebels", "label": -1, "id": "639115850683953154"}
{"text": "@tom_watson A rumor may be circulation that Tory front Bench will be wearing emotional body armor when you and Jeremy are elected.", "label": -1, "id": "639135868175958016"}
{"text": "I'm glad the Tories won the General Election in May. They're showing just how insensitive they really are Vote Tory. They do not give a Fuck", "label": -1, "id": "639161527560372224"}
{"text": "Jesus, when a Tory government is slightly to the right of The Sun... https://t.co/l4xXE1un8q", "label": -1, "id": "639192675615416320"}
{"text": "daphne_miles @LabourEoin @juliehunt1953 Yes - I am afraid you may - we are reminded- the Tory government as heartless then as now!", "label": -1, "id": "639196285443141632"}
{"text": "So Cameron has lost Telegraph and The Sun over #refugeecrisis. So who supports him? Do Tory right really want drowned children on beaches?", "label": -1, "id": "639364168785784832"}
{"text": "Next Wednesday at 6 we'll be out with our message to #KillTheBill. The Tory onslaught will be resisted by workers. http://t.co/yIE3NtyfiF", "label": 0, "id": "639375810894368768"}
{"text": "The grassroots response to the refugee crisis should shame the Tory government.http://t.co/nGPCFwPigl", "label": -1, "id": "639380888015503360"}
{"text": "My level of hatred towards the Tory government has reached a new high http://t.co/1jf794ISJF", "label": -1, "id": "639404105790828544"}
{"text": "No point asking for humanity from a Tory. Pretty sure they are all replicants created by the Nazis after WWII. Especially Theresa May.", "label": -1, "id": "639430216469843968"}
{"text": "Tory govt may be offering money upfront to get health devolution up and running, because it serves their long-term purpose @joeforliverpool", "label": 0, "id": "639533151673561088"}
{"text": "@drivandalism I was implying that the victory against Tory may have motivated them to devote more resources to Brown", "label": 0, "id": "639622787909459968"}
{"text": ".@EdwardJDavey blasts the Tory attack on the Green Agenda in guardian today: http://t.co/rTwO4Ca09b #libdemfightback", "label": -1, "id": "639732277103194112"}
{"text": "People will realize the lies that come out of Tory mouths their not green and not for \"HARD WORKING FAMILIES\" . https://t.co/jV0OuJUYn4", "label": -1, "id": "639732468145385472"}
{"text": "If Scotland woke up tomorrow and decided we were going to Vote Tory, Tommy Sheridan would rip his shirt off to reveal a Thatcher tattoo.", "label": -1, "id": "639737580859326464"}
{"text": "..the ramifications may feasibly tear apart the Tory party for years to come. That said, the putative No campaign... https://t.co/Rr3tiurx2d", "label": -1, "id": "639808528060948480"}
{"text": "Join @Right2strike next Wednesday, exposing Tory hypocrisy at the Department for Business, Innovation, and Skills: https://t.co/Z4Zcr0xJWX", "label": 0, "id": "639814316229722113"}
{"text": "So here's the thing. Turns out Tory voters love renewables, esp #communityenergy. And don't much care for #shalegas http://t.co/fzXKClUh2a", "label": 0, "id": "639844511322087424"}
{"text": "@margiebri @PortlyPlod a bit iffy that Mail and Sun take this seriously but somehow suppress anything about Tory paedophiles", "label": -1, "id": "639849799362215936"}
{"text": "#CameronTheTinMan is showing he is unfit to govern along with most of the Tory government #RefugeeCrisis https://t.co/QUX8H8LBH8", "label": 0, "id": "639901679878602752"}
{"text": "Bought crumpets on the way home and thought \"Ah, that'll make a nice Saturday morning!\"Felt like a Tory voter somewhere in Surrey.", "label": 1, "id": "639916264534753280"}
{"text": "@lalamandi2205 To get into your worlds& see just what you dothe Tory's are afraidof things that arereally true.May....be", "label": -1, "id": "639926635924471809"}
{"text": "Excellent, Hungary is coming to its senses, maybe the Tory govt may also realise this is a crisis, and not a media show!", "label": 0, "id": "639933969082023936"}
{"text": "@sunlorrie - maybe it's partly because Tory doesn't know what comes after September 15th. https://t.co/ymlY4gg1JW", "label": -1, "id": "639993782922948610"}
{"text": "Scots why they think the approach may work, but there are basic questions that can bluetooth/wifi/smoke-signal would be that Tory donors nee", "label": -1, "id": "640128721152819200"}
{"text": "Tory tells Sky News airstrikes may not be enough to make Syria peaceful. may have to send ground troops http://t.co/weRMgHBYag", "label": 0, "id": "640271822114713600"}
{"text": "As a revelatory headline by the Mail, that's up there with \"DAILY MAIL READERS LIKE THE ROYAL FAMILY AND VOTE TORY\". https://t.co/rYPpe2bWl0", "label": 0, "id": "640280832343711744"}
{"text": "Troops May Be Needed In Syria, Says Senior MP: As refugees continue to flee the country, a senior Tory tells S... http://t.co/2NYbEE9j4u", "label": 0, "id": "640374076385529858"}
{"text": "29% say we should take no refugees in UK (Mail on Sunday poll). Very similar number to the selfish sods who voted Tory at last election.", "label": 0, "id": "640440401556602880"}
{"text": "New Labour Leader next Sat-Mahri Black offered SNP hand of friendship to Labour-If J..Corbyn wins Tory agenda can be halted in it's tracks", "label": 0, "id": "640466274653478912"}
{"text": "What's your point Ruth? Or is this just another jab at SNP to distract us from Tory extremists? https://t.co/IzGM5sbJiw", "label": 0, "id": "640489706413813760"}
{"text": "Tory in Wallingford on the 19th!!! Might have to swing thru!!!", "label": 1, "id": "640516441784090625"}
{"text": "Corbyn may be polling ahead but what about the Shy \"Tory\" vote? I think Burnham may win. Moderate left is not as radicalised.", "label": 0, "id": "640626261925216256"}
{"text": "Just a reminder if you voted tory in may youre still a fucking selfish twat 4 months on", "label": -1, "id": "640653596141465600"}
{"text": "The Sun and Mail, hate Britain , hate working classes, want your kids to he stupid and vote Tory....", "label": -1, "id": "640655718748692480"}
{"text": "@KatieKhaleesi The sun is nothing but a disgusting Tory mouth piece rag. I wouldn't line my hamster cage with it.", "label": -1, "id": "640703720448262144"}
{"text": "DUP sabre rattling in Stormont before going into talks tomorrow & willing to impose Tory cuts on the electorate. @BBCTalkback", "label": 0, "id": "640844324113121280"}
{"text": "One Eurosceptic Tory says it now looks like Labour may vote with Govt on 'purdah'", "label": 0, "id": "640870031774076928"}
{"text": "@foodorwarmth I don't know which Tory you may be referring to, but I 100% agree with that statement", "label": 0, "id": "640902013048487936"}
{"text": "2nd Tory candidate leaves race in one day after embarassing incident http://t.co/8denyi2EDv", "label": -1, "id": "640942118710587393"}
{"text": "@mixxi_bug They never do. Remember, there may not be a Tory govt after the next GE. They can't bind the hands of their successor.", "label": -1, "id": "640950230742134784"}
{"text": "Nope Torontonians wont have a voice, except for the howls as Tory wastes our money yet again #TOpoli https://t.co/graxB8LyG7", "label": -1, "id": "640959227188477953"}
{"text": "@HarrietHarman I may be largely speaking a Tory - but i do massively respect you! Well done and thank you for everything!", "label": 1, "id": "640985043528126464"}
{"text": "Never underestimate the stupidity of Tory backbenchers.Nor think that #Corbyn4Leader couldn't win in #GE2020 https://t.co/P9DuOYzCzR", "label": -1, "id": "640992521087270912"}
{"text": "Scum???.... He votes Tory. Reads the sun, and thinks this countries downfalls are down to mass immigration https://t.co/QJcthDON0G", "label": 0, "id": "641015753743986689"}
{"text": "@tomhawthorn Mais oui*!*not to be confused with 'may wee,' the warning that comes with Tory plumbers", "label": -1, "id": "641154875112329216"}
{"text": "Labour folk scream at each other to join the Tory Party while a Tory minister has been a Labour member for 18 months http://t.co/RGDQlb3Jl2", "label": 0, "id": "641162116033085440"}
{"text": "@David_Cameron @Keith_Vaz 2nd left in tory cabinet now I have seen it all", "label": 0, "id": "641193013025357824"}
{"text": "Same dickhead sun \"readers\" out there who think we shd bomb #SYRIA to protect UK are the same dickheads who voted Tory coz they're ....", "label": -1, "id": "641202063003754497"}
{"text": "Tory failure @LouiseMensch crows about the Tories winning #GE2015. Let's show her what they've achieved since 7 May http://t.co/uTNhUVtZxD", "label": 0, "id": "641229507962241024"}
{"text": "I hope Theresa May is cringing - Adam Holloway showing Tory xenophobic prejudices - think he should be given more time to speak #Tories", "label": 0, "id": "641254318188949505"}
{"text": "@KateVasey ask if she'll be going to the debate Thurs on immigration detention (Tory called it, Richard Fuller, the issue is causing splits)", "label": 0, "id": "641271753659023361"}
{"text": "@davy_kheng plus that boy Tory kills it too I think it's bouta be hella lit only weak thing is it's on a Thursday lol", "label": 0, "id": "641329588879147008"}
{"text": "Can you imagine what a Tory prison must be like? Imagine a young grammar schoolboy going in after his 1st fraud #PredaToryInmates #EtonMess", "label": 0, "id": "641367030415933440"}
{"text": "not a bit ashamed to say I have preplanned LOTS of jokes about the Queen/parasitology to troll my Tory royalist classmates tomorrow", "label": 1, "id": "641385902258958336"}
{"text": "Why Ford a much better Mayor than Tory. #8. Ford saved taxpayers about $1B. Tory hiked taxes, borrowed to balance budget in 1st year #topoli", "label": 0, "id": "641394369669500928"}
{"text": "@ConHome @HCH_Hill it may turn out the Tory plan for a small state disguised as the 'austerity' agenda turns out to be dangerous in NI", "label": -1, "id": "641486522529763329"}
{"text": "What is 'amazing',I shd add, is that I went through the University a Tory!Even belonged to Tory group at Uni!1st vote(21)Tory:since, Labour!", "label": 1, "id": "641538363540045825"}
{"text": "Despite the fact his party is wallowing in 3rd place nationally, Tory incumbent Guy Lauzon is unconcerned http://t.co/QYRuyNrWqf #arrogance", "label": 0, "id": "641600919075987456"}
{"text": "Roll on Saturday and beyond ! Looking forward to an opposition Leader to REALLY fight the eternal enemy-THE TORY ! #Corbyn4Leader", "label": 1, "id": "641663321305952257"}