-
Notifications
You must be signed in to change notification settings - Fork 0
/
T.json
11109 lines (11109 loc) · 758 KB
/
T.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": "centrepoint winter white gala london", "cluster": 65}
{"text": "mourinho seek killer instinct", "cluster": 96}
{"text": "roundup golden globe won seduced johansson voice", "cluster": 72}
{"text": "travel disruption mount storm cold air sweep south florida", "cluster": 140}
{"text": "wes welker blame costly turnover", "cluster": 89}
{"text": "psalm book fetch record ny auction ktvn channel reno", "cluster": 75}
{"text": "surface review comparison window powered tablet pitted", "cluster": 48}
{"text": "scientist unreported fish trap space", "cluster": 99}
{"text": "nokia lumia launch", "cluster": 48}
{"text": "edward snowden latest leak nsa monitored online porn habit radicalizers", "cluster": 19}
{"text": "gerry adam ira irrelevant mcguinness", "cluster": 20}
{"text": "jennifer love hewitt birth girl secretly wed fiance", "cluster": 66}
{"text": "seahawks targeting antoine winfield", "cluster": 93}
{"text": "turkey black friday sale cyber monday", "cluster": 21}
{"text": "challenge china airspace", "cluster": 1}
{"text": "york knicks report card grading knicks loss blazer", "cluster": 80}
{"text": "net face game season", "cluster": 87}
{"text": "alec baldwin returning msnbc", "cluster": 71}
{"text": "opening trade rumor sinking shump", "cluster": 80}
{"text": "currency union bad independent scotland uk minister", "cluster": 8}
{"text": "year disney war history", "cluster": 73}
{"text": "ison comet century", "cluster": 98}
{"text": "los angeles lakers washington wizard nba highlight", "cluster": 79}
{"text": "dancing star champ amber riley season journey", "cluster": 62}
{"text": "dallas star offense arrives late win anaheim duck", "cluster": 85}
{"text": "hewlett packard earnings call whitman see macroeconomic headwind live", "cluster": 29}
{"text": "climate change won help kiribati man stay nz", "cluster": 104}
{"text": "jersey shore student march philadelphia thanksgiving day parade", "cluster": 140}
{"text": "warren buffett dish ndamukong suh dan gilbert newspaper", "cluster": 31}
{"text": "space charles student speak astronaut", "cluster": 106}
{"text": "impact flu pandemic", "cluster": 118}
{"text": "prince william taylor swift perform jon bon jovi", "cluster": 65}
{"text": "black friday iphone deal cyber monday sale review", "cluster": 38}
{"text": "low cost motorola moto arrives early", "cluster": 43}
{"text": "chelsea qualify despite late basel loss", "cluster": 96}
{"text": "spd leader confident backing german coalition deal", "cluster": 2}
{"text": "kickoff falcon packer moved noon", "cluster": 91}
{"text": "update france boost central african force backing", "cluster": 14}
{"text": "glee star amber riley win dancing star super chuffed", "cluster": 62}
{"text": "pakistan name moderate army commander", "cluster": 6}
{"text": "meningitis outbreak college unrelated cdc", "cluster": 128}
{"text": "nigella lawson alleged guilty secret drug revealed london court", "cluster": 61}
{"text": "kiribati man refused climate change asylum plea", "cluster": 104}
{"text": "huffpo auerbach fed created inflation time bomb", "cluster": 33}
{"text": "irs proposes guideline politicking tax exempt group", "cluster": 148}
{"text": "aarushi case family justice law abiders", "cluster": 17}
{"text": "tacloban city three week haiyan", "cluster": 16}
{"text": "joan river defends alec baldwin string racial gay slur watch", "cluster": 71}
{"text": "sifting carlos beltran rumor", "cluster": 88}
{"text": "raider time wallow latest loss", "cluster": 95}
{"text": "burger king expanding france", "cluster": 32}
{"text": "invite buy google glass", "cluster": 52}
{"text": "lego menorah built dec", "cluster": 74}
{"text": "defence lawyer confident rajesh nupur talwar will acquitted", "cluster": 17}
{"text": "report york yankee favorite land free agent outfielder carlos beltran", "cluster": 88}
{"text": "pope issue mission statement papacy", "cluster": 15}
{"text": "declares international year solidarity palestinian people", "cluster": 11}
{"text": "gta dlc beach sandy place", "cluster": 53}
{"text": "thing buy black friday", "cluster": 21}
{"text": "author solution israel palestine conflict boycott divestment", "cluster": 11}
{"text": "latest bcs ranking fresno state", "cluster": 86}
{"text": "bank consider charging customer saving account deposit", "cluster": 33}
{"text": "thai protest paralyse ministry", "cluster": 4}
{"text": "birth death star captured large telescope", "cluster": 117}
{"text": "knicks fall blazer losing skid hit", "cluster": 80}
{"text": "yankee won wait forever cano", "cluster": 88}
{"text": "nj officer rescue unconscious driver burning truck amid flame blinding", "cluster": 150}
{"text": "ape escape bonobo german zoo flat screen tv", "cluster": 112}
{"text": "blu life pro unveiled inch display quad core processor mm", "cluster": 56}
{"text": "report yankee room negotiate robinson cano", "cluster": 88}
{"text": "doggie scofflaw bagged dna testing", "cluster": 40}
{"text": "lara logan producer ordered leave aftermath minute", "cluster": 63}
{"text": "microsoft anti google ad trash chromebook real laptop", "cluster": 44}
{"text": "gchq called crack password watkins child abuse case", "cluster": 70}
{"text": "defying china aircraft fly east china sea notification", "cluster": 1}
{"text": "assistant dalonte hill resigns position maryland", "cluster": 81}
{"text": "italy letta senate vote reinforces government reform action", "cluster": 13}
{"text": "bomb kill wound iraq", "cluster": 9}
{"text": "britain crackdown benefit tourism", "cluster": 10}
{"text": "indian parent life double murder", "cluster": 17}
{"text": "hp earnings weak pc demand macroeconomic climate add pressure", "cluster": 29}
{"text": "voice solidarity palestinian people", "cluster": 11}
{"text": "men wearhouse jos bank suited", "cluster": 27}
{"text": "keith urban", "cluster": 76}
{"text": "kanye west kardashians teach people accept interracial relationship", "cluster": 77}
{"text": "kobe bryant extension good bad deal lakers poll", "cluster": 90}
{"text": "burger king take mcdonald pact france", "cluster": 32}
{"text": "stadium hosting cup opener brazil collapse", "cluster": 92}
{"text": "spike lee handle oldboy remake", "cluster": 64}
{"text": "patriot beat bronco ot misplayed punt lead yard field goal", "cluster": 89}
{"text": "ten player file class action suit nhl concussion", "cluster": 97}
{"text": "local animator kelly mcclanahan help craft disney frozen", "cluster": 73}
{"text": "nfl note packer aaron rodgers practice play thursday", "cluster": 91}
{"text": "division leader pat bronco focus hype", "cluster": 89}
{"text": "holiday shopping qa consumer rejecting shopping thanksgiving", "cluster": 21}
{"text": "google map ireland entire public transport system", "cluster": 50}
{"text": "book record york auction", "cluster": 75}
{"text": "window phone outsells io latin america", "cluster": 48}
{"text": "scottish independence salmond immigration vow", "cluster": 8}
{"text": "nhl nbcsn pacific leading duck star", "cluster": 85}
{"text": "sexual remorse men woman", "cluster": 130}
{"text": "green bay packer aaron rodgers slim chance play detroit", "cluster": 91}
{"text": "best nokia lumia price deal november", "cluster": 48}
{"text": "nokia launch gb ram lumia won uk", "cluster": 48}
{"text": "guest column bonding black friday", "cluster": 21}
{"text": "homicide detective movember man", "cluster": 131}
{"text": "packer unsure qb game lion", "cluster": 91}
{"text": "won dancing star corbin bleu amber riley jack", "cluster": 62}
{"text": "dancing star comedian bill engvall booted night final", "cluster": 62}
{"text": "love hormone oxytocin remedy infidelity", "cluster": 134}
{"text": "philippine typhoon rebuilding cost longer aceh", "cluster": 16}
{"text": "pope francis echo pope benedict underline continuity council trent", "cluster": 15}
{"text": "pm nawaz lay foundation stone nuclear plant today", "cluster": 6}
{"text": "prime suspect death kansa mother three child arrested", "cluster": 144}
{"text": "hewlett packard company receives positive analyst move", "cluster": 29}
{"text": "patriot rally bronco", "cluster": 89}
{"text": "israeli settler violence punished right group", "cluster": 11}
{"text": "judge order partial closure sriracha plant hunt odor", "cluster": 141}
{"text": "thai protester continue effort topple government", "cluster": 4}
{"text": "david cameron bid bulgarian romanian migrant", "cluster": 10}
{"text": "console buy playstation xbox buy", "cluster": 42}
{"text": "chest pain woman heart attack", "cluster": 120}
{"text": "girl imprisoned bedroom year arizona police", "cluster": 143}
{"text": "video kim kardashian verdict bound spoof", "cluster": 68}
{"text": "strong wind ground biggest balloon thanksgiving day parade", "cluster": 140}
{"text": "hormone reward monogamy", "cluster": 134}
{"text": "western michigan unable northern illinois heisman hopeful", "cluster": 86}
{"text": "flacco thrilled lining wide receiver", "cluster": 94}
{"text": "win net turning halftime nap time", "cluster": 87}
{"text": "fao visayas farmer risk double tragedy post yolanda", "cluster": 16}
{"text": "portion cup stadium collapse construction", "cluster": 92}
{"text": "meningitis outbreak confirmed university", "cluster": 128}
{"text": "duck dallas depth", "cluster": 85}
{"text": "jennifer love hewitt welcome baby secretly wed", "cluster": 66}
{"text": "economic forecast federal reserve start taper", "cluster": 33}
{"text": "german consumer sentiment year high", "cluster": 39}
{"text": "fact raider cowboy", "cluster": 95}
{"text": "yale shiller housing uncharted territory", "cluster": 30}
{"text": "vote loom expel italy berlusconi parliament", "cluster": 13}
{"text": "thanksgivukkah local celebrant revel lifetime convergence", "cluster": 74}
{"text": "japanese airline snub china air rule", "cluster": 1}
{"text": "aaron rodgers suit tuesday", "cluster": 91}
{"text": "dollar stepped euro sterling currencyshares euro trust", "cluster": 26}
{"text": "sex evolutionary reason regret hookup", "cluster": 130}
{"text": "dancing star finale jack osbourne corbin bleu", "cluster": 62}
{"text": "thanksgivukkah rare convergence hanukkah thanksgiving", "cluster": 74}
{"text": "concussion lawsuit nhl hit devil", "cluster": 97}
{"text": "verizon nokia lumia penny", "cluster": 48}
{"text": "adolescent falling gap hiv service", "cluster": 129}
{"text": "overweight woman reap benefit morning pill", "cluster": 121}
{"text": "pope support male priesthood urge feminine genius church", "cluster": 15}
{"text": "microsoft officially launched xbox console gamers", "cluster": 42}
{"text": "lakers finalize deal bryant eye free agent", "cluster": 90}
{"text": "wes welker helped tom brady beat peyton manning", "cluster": 89}
{"text": "china summons japan envoy air zone protest", "cluster": 1}
{"text": "amber derek win dancing star", "cluster": 62}
{"text": "review homefront punch gut tugging heartstrings", "cluster": 69}
{"text": "snp minister risking destructive conflict english voter warns darling", "cluster": 8}
{"text": "swine flu death toll time higher thought", "cluster": 118}
{"text": "busted xbox free game microsoft", "cluster": 42}
{"text": "men wearhouse proposes buy jos bank clothier stock shr", "cluster": 27}
{"text": "oldboy review ve heard", "cluster": 64}
{"text": "seth rogen james franco parody kanye west music video", "cluster": 68}
{"text": "improve washington wizard bench", "cluster": 79}
{"text": "nsa planned discredit radical web porn", "cluster": 19}
{"text": "shorthanded net beat raptor climb place division", "cluster": 87}
{"text": "greece inflicted hiv half hiv case greece inflicted", "cluster": 127}
{"text": "obama tax exempt crackdown easy skirt", "cluster": 25}
{"text": "obama secretive group", "cluster": 148}
{"text": "colorado republican latest voice support immigration reform", "cluster": 147}
{"text": "thailand protest escalate", "cluster": 4}
{"text": "review frozen disney best", "cluster": 73}
{"text": "irs limit political activity post tea party flap rule", "cluster": 148}
{"text": "gta san andreas io android window phone confirmed", "cluster": 53}
{"text": "hundred evacuated willard railway chemical spill", "cluster": 28}
{"text": "ngo israel supporting settler crime palestinian", "cluster": 11}
{"text": "jennifer love hewitt birth secretly married baby daddy", "cluster": 66}
{"text": "brandon browner suspended year video seahawks cb face", "cluster": 93}
{"text": "grand theft auto san andreas hitting mobile december", "cluster": 53}
{"text": "pentagon prepared defend plane china defense zone", "cluster": 1}
{"text": "rape case charge attack year girl", "cluster": 151}
{"text": "packer viking play tie matt flynn lead green bay", "cluster": 91}
{"text": "german party clash spending agree minimum wage", "cluster": 2}
{"text": "sorority house lived fsu bomb threat jameis", "cluster": 83}
{"text": "lostprophets rocker pleads guilty long list depraved sex crime", "cluster": 70}
{"text": "moto order start shipping december support", "cluster": 43}
{"text": "basle chelsea david luiz will feature switzerland ashley cole", "cluster": 96}
{"text": "nokia lumia official rock candy coated cover gb ram", "cluster": 48}
{"text": "seahawks cb brandon browner denies facing year ped suspension", "cluster": 93}
{"text": "police officer pull man burning truck", "cluster": 150}
{"text": "whitaker bassett black nativity soar", "cluster": 67}
{"text": "bbm holding strong fight", "cluster": 46}
{"text": "black friday ate thanksgiving destroyed", "cluster": 21}
{"text": "supermarket tragedy lead resignation latvian leader", "cluster": 5}
{"text": "franco rogen spoof kanye video", "cluster": 68}
{"text": "taylor swift think prince william funny", "cluster": 65}
{"text": "dundee team find link high sodium medicine heart disease", "cluster": 119}
{"text": "german gfk confidence confirms growth outlook", "cluster": 39}
{"text": "berlusconi fight desperate battle retain senate seat", "cluster": 13}
{"text": "dallas cowboy face dangerous game oakland quarterback matt", "cluster": 95}
{"text": "backup qbs essential", "cluster": 91}
{"text": "government grant reduce hiv infection study", "cluster": 129}
{"text": "kim kardashian flaunt toned leg suede mini yeezus", "cluster": 77}
{"text": "exclusive josh brolin talk oldboy", "cluster": 64}
{"text": "america college football star jameis winston wrong", "cluster": 83}
{"text": "thanksgiving hanukkah festive", "cluster": 74}
{"text": "bank charge customer hold money fed lazy", "cluster": 33}
{"text": "sony lodge smartwig patent application", "cluster": 51}
{"text": "judge order sriracha factory cool", "cluster": 141}
{"text": "barrier identified hpv vaccination teen", "cluster": 135}
{"text": "gallery view basketball photo", "cluster": 79}
{"text": "amber riley win dancing star", "cluster": 62}
{"text": "zac efron seth rogen kanye west kim kardashian bound parody", "cluster": 68}
{"text": "comet ison sign breaking close approach sun", "cluster": 98}
{"text": "pakistan prime minister name military chief", "cluster": 6}
{"text": "black friday feast thanksgiving", "cluster": 21}
{"text": "aaron rodgers return sends strong message", "cluster": 91}
{"text": "kim kardashian bound funny", "cluster": 77}
{"text": "taylor swift breathtaking white gown meet prince william", "cluster": 65}
{"text": "report mother adam lanza feeling", "cluster": 149}
{"text": "microsoft take aim google chromebook", "cluster": 44}
{"text": "nfl thanksgiving day green bay packer face detroit lion live sky sport", "cluster": 91}
{"text": "macy parade pull balloon wind ap", "cluster": 140}
{"text": "comet ison live blog", "cluster": 98}
{"text": "cape officer brave rescue may landing man burning truck caught", "cluster": 150}
{"text": "fly bomber disputed island claimed china", "cluster": 1}
{"text": "frozen melt royal mythology larger point love", "cluster": 73}
{"text": "aarushi talwar final verdict rajesh nupur talwar guilty", "cluster": 17}
{"text": "serious gamers p xbox", "cluster": 42}
{"text": "lostprophets ian watkins pleads guilty child sex offence including attempted", "cluster": 70}
{"text": "case shiller price rise biggest gain february", "cluster": 30}
{"text": "video egypt salah haunt chelsea basel claim win", "cluster": 96}
{"text": "bmw car sharing innovation", "cluster": 59}
{"text": "obama administration proposes rule limit political activity profit", "cluster": 148}
{"text": "vt emergency management warns looming storm", "cluster": 139}
{"text": "google add street view imagery airport transit station", "cluster": 50}
{"text": "participant list syria talk undecided brahimi", "cluster": 18}
{"text": "russian police detained extremist bomb", "cluster": 3}
{"text": "hewlett packard ceo meg whitman ordered defend security class action", "cluster": 29}
{"text": "berlusconi asks rival expel parliament", "cluster": 13}
{"text": "detroit small business loan access", "cluster": 31}
{"text": "kim kardashian spent surgical baby weight", "cluster": 77}
{"text": "xbox owner violence broken console", "cluster": 42}
{"text": "dose meningitis vaccine will", "cluster": 128}
{"text": "cbs put lara logan minute leave", "cluster": 63}
{"text": "report nsa spied porn habit discredit muslim radical", "cluster": 146}
{"text": "bbm iphone app outpacing android version", "cluster": 46}
{"text": "violence american black friday tradition", "cluster": 21}
{"text": "black friday bleeding gray thursday", "cluster": 21}
{"text": "update australia summons chinese ambassador airspace announcement", "cluster": 1}
{"text": "traveler cast wary eye storm move eastward", "cluster": 139}
{"text": "kanye west claim ll bigger wal mart interview kim", "cluster": 77}
{"text": "december release price confirmed nokia lumia uk", "cluster": 48}
{"text": "homefront meth madness review", "cluster": 69}
{"text": "nokia normandy leaked", "cluster": 48}
{"text": "taylor swift dazzle gold gown prince william charity gala", "cluster": 65}
{"text": "german govt wrangling hit crunch stretch", "cluster": 2}
{"text": "cloudy sky dubai block view comet ison", "cluster": 98}
{"text": "homefront", "cluster": 69}
{"text": "european stock hold gain german gfk report dax", "cluster": 39}
{"text": "google launch dev kit augmented reality glass", "cluster": 52}
{"text": "germany set tone euro finance minister", "cluster": 2}
{"text": "dna testing", "cluster": 124}
{"text": "chemical spill force evacuation willard", "cluster": 28}
{"text": "irs urged tigta weakness system security", "cluster": 25}
{"text": "glee amber riley fight pain win dancing star", "cluster": 62}
{"text": "nawaz card close chest", "cluster": 6}
{"text": "edward snowden latest leak nsa monitored online porn habit radicalizers", "cluster": 146}
{"text": "jason kidd rose strong kid", "cluster": 87}
{"text": "surveillance cover porn leak nsa considered undermining", "cluster": 146}
{"text": "indian bird specie continue critically endangered", "cluster": 113}
{"text": "kanye west kim kardashian beautiful woman time", "cluster": 77}
{"text": "girl tucson police imprisoned year", "cluster": 143}
{"text": "death toll pandemic flu higher official worldwide estimate", "cluster": 118}
{"text": "astronaut chase turkey meal thanksgiving", "cluster": 106}
{"text": "gov crackdown spending tax exempt group", "cluster": 148}
{"text": "girl newlywed jennifer love hewitt", "cluster": 66}
{"text": "black nativity gift family connection", "cluster": 67}
{"text": "kim kardashian rock sexy lbd black lipstick kanye west concert", "cluster": 77}
{"text": "nasa advance commercial crew program", "cluster": 106}
{"text": "princeton announces date receiving meningitis vaccine", "cluster": 128}
{"text": "zac efron seth rogen shirtless tease bound music video", "cluster": 68}
{"text": "men wearhouse offer buy suitor jos bank clothier", "cluster": 27}
{"text": "seahawks cb walter thurmond suspended perrish cox signed", "cluster": 93}
{"text": "keith urban cut hair", "cluster": 76}
{"text": "sp case shiller price rise september", "cluster": 30}
{"text": "pakistan pm ignores seniority lt gen raheel sharif army chief", "cluster": 6}
{"text": "pacific islander ioane teitiota fails bid climate change refugee", "cluster": 104}
{"text": "france send troop central african republic", "cluster": 14}
{"text": "lara logan leave absence minute", "cluster": 63}
{"text": "market fed balance sheet", "cluster": 33}
{"text": "aarushi case cbi asks death penalty parent nupur rajesh talwar", "cluster": 17}
{"text": "limiting big money group", "cluster": 148}
{"text": "hp top estimate mixed bag", "cluster": 29}
{"text": "pope putin visit church tente work", "cluster": 15}
{"text": "cyber monday tablet deal best price ipad galaxy note", "cluster": 38}
{"text": "oldboy claw hammer time bloody remake", "cluster": 64}
{"text": "lynch highlight senior night win wmu", "cluster": 86}
{"text": "jameis winston overlapping football culture rape culture", "cluster": 83}
{"text": "computer learning common sense trawling picture internet", "cluster": 108}
{"text": "weigh pound plan work", "cluster": 121}
{"text": "denver price set record", "cluster": 30}
{"text": "adolescent living hiv", "cluster": 129}
{"text": "keith urban darius rucker star", "cluster": 76}
{"text": "pm jealous movember moustache", "cluster": 131}
{"text": "browner reportedly banned year messy", "cluster": 93}
{"text": "apple buy company microsoft original kinect motion sensor", "cluster": 54}
{"text": "pressure adam documentary put issue ira membership", "cluster": 20}
{"text": "google invite developer purchase google glass explorer edition", "cluster": 52}
{"text": "happened courtroom blow blow account rajesh nupur", "cluster": 17}
{"text": "afghan security pact jeopardy karzai demand", "cluster": 12}
{"text": "mason plumlee jason kidd net playing time wide open", "cluster": 87}
{"text": "hp finish year better expected", "cluster": 29}
{"text": "update winter storm lash eastern threatens thanksgiving travel", "cluster": 139}
{"text": "china defense zone struggle amid regional backlash", "cluster": 1}
{"text": "nokia turn ipad bashing lumia ad", "cluster": 48}
{"text": "io gta san andreas announced iphone ipad", "cluster": 53}
{"text": "stock watch hewlett packard infoblox tilly", "cluster": 29}
{"text": "seth rogen james franco kimye video worth watching video", "cluster": 68}
{"text": "curiosity return normal voltage level resume regular duty", "cluster": 114}
{"text": "utah cameo james franco parody kanye west video", "cluster": 68}
{"text": "frozen ice warm heart", "cluster": 73}
{"text": "shopyourworld association axis bank celebrates black friday", "cluster": 38}
{"text": "kim kardashian baby daddy kanye west issue plastic surgery ban", "cluster": 77}
{"text": "frozen melt heart ice", "cluster": 73}
{"text": "update book printed america sell record", "cluster": 75}
{"text": "microsoft scroogled campaign hit low pawn star guy", "cluster": 44}
{"text": "black nativity good deed good song", "cluster": 67}
{"text": "study fire ant raft lead development healing", "cluster": 110}
{"text": "blackberry find early success mobile messaging app", "cluster": 46}
{"text": "citi analyst estimate p xbox console will sold", "cluster": 42}
{"text": "aarushi hemraj dual murder verdict held pm", "cluster": 17}
{"text": "lara logan suspended minute benghazi report error", "cluster": 63}
{"text": "africa president france supply extra troop", "cluster": 14}
{"text": "nokia lumia release announced", "cluster": 48}
{"text": "don jump conclusion", "cluster": 89}
{"text": "black nativity bold clumsy", "cluster": 67}
{"text": "update deadly cross country storm threatens holiday travel", "cluster": 139}
{"text": "jordan lynch break ncaa record lead northern illinois western michigan", "cluster": 86}
{"text": "ryan garbutt score outstanding goal dallas star video", "cluster": 85}
{"text": "chandler jones tom brady earn league recognition", "cluster": 78}
{"text": "deflating macy parade ground big balloon", "cluster": 140}
{"text": "daily dish grab", "cluster": 83}
{"text": "motorola moto buy", "cluster": 43}
{"text": "seahawks antoine winfield discussing return", "cluster": 93}
{"text": "al michael relish latest patriot bronco tilt", "cluster": 89}
{"text": "kanye west confirms yeezus follow pipeline album", "cluster": 77}
{"text": "hp pushing window hybrid holiday ceo", "cluster": 29}
{"text": "breast cancer screening lead unnecessary treatment", "cluster": 122}
{"text": "microsoft acknowledges disc drive glitch small number xbox", "cluster": 42}
{"text": "mlb rumor yankee emerging favorite sign carlos beltran", "cluster": 88}
{"text": "islam democracy danger", "cluster": 6}
{"text": "net lose", "cluster": 87}
{"text": "hp quarterly revenue beat share jump", "cluster": 29}
{"text": "talwars guilty aarushi killing court describes freak history", "cluster": 17}
{"text": "merkel spd clinch coalition deal", "cluster": 2}
{"text": "comet nears sun offering planetary clue", "cluster": 98}
{"text": "typhoon haiyan uk aid flight philippine", "cluster": 16}
{"text": "northern illinois husky qb jordan lynch shouldn left heisman race", "cluster": 86}
{"text": "spike lee unleashes josh brolin ultra violent oldboy", "cluster": 64}
{"text": "kupchak lakers build kobe bryant", "cluster": 90}
{"text": "indonesia australia spying row eas agree work code", "cluster": 7}
{"text": "report seahawks browner facing year suspension nfl", "cluster": 93}
{"text": "germany step path government", "cluster": 2}
{"text": "report nsa spied target porn habit discredit radicalizer devotion", "cluster": 146}
{"text": "kfix rock news jon bon jovi pursuing buffalo bill", "cluster": 65}
{"text": "politically liberal jew consider skipping hanukkah", "cluster": 74}
{"text": "love hewitt welcome baby girl", "cluster": 66}
{"text": "kanye west explains bound cheese ain problem lookin", "cluster": 68}
{"text": "ponder play well job", "cluster": 91}
{"text": "seahawks wr golden tate call teammate selfish", "cluster": 93}
{"text": "india dentist convicted killing daughter maid", "cluster": 17}
{"text": "uk xbox sale shy wii lifetime total report claim", "cluster": 42}
{"text": "google invite round explorer buy glass", "cluster": 52}
{"text": "fed will punchbowl easy money", "cluster": 33}
{"text": "keith urban cut hair", "cluster": 76}
{"text": "taylor swift prince william sing bon jovi video", "cluster": 65}
{"text": "yankee cano rep apart meeting", "cluster": 88}
{"text": "bronco wr wes welker wait concussion clearance", "cluster": 89}
{"text": "nokia lumia tablet rumored early", "cluster": 48}
{"text": "scarlett johansson ineligible golden globe award", "cluster": 72}
{"text": "seth rogan james franco recreate kanye west bound music video", "cluster": 68}
{"text": "rumor nokia launch window tablet early", "cluster": 48}
{"text": "euro strengthens german coalition accord year high yen", "cluster": 26}
{"text": "zapped mar rover curiosity short circuit", "cluster": 114}
{"text": "will fed raise rate", "cluster": 33}
{"text": "poll will xbox suffer hardware failure", "cluster": 42}
{"text": "woman test negative brca mutation face higher", "cluster": 122}
{"text": "elaina cho marching uma macy thanksgiving day parade", "cluster": 140}
{"text": "moto gsm model start", "cluster": 43}
{"text": "immigration reform pressure mount", "cluster": 147}
{"text": "ecb financial system stress fallen pre crisis level", "cluster": 26}
{"text": "nokia lumia amazon", "cluster": 48}
{"text": "mcdaniels denver friend foe", "cluster": 89}
{"text": "preview viking packer", "cluster": 91}
{"text": "million parent won teen vaccinated hpv prevent cancer", "cluster": 135}
{"text": "alec baldwin extreme gay killed", "cluster": 71}
{"text": "despite hot sale xbox billion loser", "cluster": 42}
{"text": "documentary screening featured event cumberland county observance", "cluster": 129}
{"text": "prince william rock jon bon jovi", "cluster": 65}
{"text": "kanye west leaf nike partner adidas", "cluster": 77}
{"text": "black nativity review preach", "cluster": 67}
{"text": "langston hughes holiday black nativity", "cluster": 67}
{"text": "mourinho wait chelsea christmas", "cluster": 96}
{"text": "funny cool prince william charm gala", "cluster": 65}
{"text": "comparison silencing smartphones", "cluster": 48}
{"text": "sandy hook report adam lanza acted slaying motive", "cluster": 149}
{"text": "pope putin meeting symbolic rift church remains", "cluster": 15}
{"text": "pakistan build power plant karachi", "cluster": 6}
{"text": "alec baldwin msnbc canceled anti gay slur scandal", "cluster": 71}
{"text": "housing market roar", "cluster": 30}
{"text": "iran agreement threatens prospect israeli palestinian talk", "cluster": 11}
{"text": "motorola moto htc spec price comparison australia", "cluster": 43}
{"text": "greek citizen infecting hiv order receive government", "cluster": 127}
{"text": "swearing xbox live user banned profanity laden uploads", "cluster": 42}
{"text": "hanukkah ancient story applies today", "cluster": 74}
{"text": "local shop start sale thanksgiving day", "cluster": 21}
{"text": "bon jovi invited prince william onstage", "cluster": 65}
{"text": "keith urban chop long lock", "cluster": 76}
{"text": "dancing star advancing final", "cluster": 62}
{"text": "special report china navy break high sea", "cluster": 1}
{"text": "josh brolin oldboy role weirdest played exclusive", "cluster": 64}
{"text": "mac player raise draft stock bowl season", "cluster": 86}
{"text": "detroit lion note matt flynn stranger", "cluster": 91}
{"text": "kanye working yeezus follow hope release year", "cluster": 77}
{"text": "anti govt protest spread area thailand capital", "cluster": 4}
{"text": "store seek sale holiday", "cluster": 21}
{"text": "net beat raptor gifs", "cluster": 87}
{"text": "sinn fein submission haass talk full empty rhetoric", "cluster": 20}
{"text": "nsa spying porn watching habit islamic radicalizers", "cluster": 19}
{"text": "motorola unlocked moto smartphone head ahead schedule", "cluster": 43}
{"text": "plan syria peace summit january ban urge concession", "cluster": 18}
{"text": "upcoming gta online dlc content leaked audio file casino shark", "cluster": 53}
{"text": "packer rb eddie lacy left sunday game asthma flared overtime", "cluster": 91}
{"text": "hot mom kicked facebook obesity comment", "cluster": 60}
{"text": "newtown police response investigated", "cluster": 149}
{"text": "update spd chief confident party vote merkel coalition", "cluster": 2}
{"text": "kim kardashian amused bound spoof", "cluster": 68}
{"text": "kanye west called walking contradiction interview", "cluster": 77}
{"text": "monetary policy week review nov chile cut south africa", "cluster": 33}
{"text": "coming weekly jobless claim durable good", "cluster": 22}
{"text": "lostprophets frontman ian watkins pleads guilty series child sex offence", "cluster": 70}
{"text": "kanye west approves bound parody", "cluster": 68}
{"text": "disputed china air zone official", "cluster": 1}
{"text": "price rise september yearly gain highest february sp", "cluster": 30}
{"text": "alec baldwin reportedly fired msnbc", "cluster": 71}
{"text": "moto", "cluster": 43}
{"text": "infamous xbox hz judder", "cluster": 42}
{"text": "awaiting bryant return lakers fall wizard", "cluster": 79}
{"text": "taylor swift moving london prince william", "cluster": 65}
{"text": "update fda warns google backed andme halt sale genetic test", "cluster": 124}
{"text": "movie review audacious oldboy bound", "cluster": 64}
{"text": "lostprophets singer ian watkins pleads guilty attempted rape fan baby", "cluster": 70}
{"text": "philippine typhoon aid transition long term recovery", "cluster": 16}
{"text": "comet ison survives sun view spectacular", "cluster": 98}
{"text": "comet ison nears sun thanksgiving encounter nasa video", "cluster": 98}
{"text": "israeli army kill palestinian militant west bank clash pna condemns", "cluster": 11}
{"text": "game thread detroit piston matinee action brooklyn net", "cluster": 87}
{"text": "epa underestimated methane emission percent", "cluster": 102}
{"text": "hrw thai opposition protest don attack journalist", "cluster": 4}
{"text": "nsa spying porn watching habit islamic radicalizers", "cluster": 146}
{"text": "frozen disney best movie", "cluster": 73}
{"text": "viking peterson active packer", "cluster": 91}
{"text": "sex woman regret men study", "cluster": 130}
{"text": "kobe bryant won apologize contract shouldn", "cluster": 79}
{"text": "macy thanksgiving day parade schedule watch", "cluster": 140}
{"text": "china monitored air zone flight", "cluster": 1}
{"text": "offensive continuity foremost mccarthy hold qb decision", "cluster": 91}
{"text": "error lead misguided meme greek hiv", "cluster": 127}
{"text": "xbox versus p microsoft expects sell unit holiday", "cluster": 42}
{"text": "interview homefront author chuck logan", "cluster": 69}
{"text": "hamid karzai refuse budge delay security pact", "cluster": 12}
{"text": "lara logan leave cbs inferior benghazi story", "cluster": 63}
{"text": "price continue climb growth rate cool", "cluster": 30}
{"text": "mlb free agency rumor yankee eyeing carlos beltran stephen drew", "cluster": 88}
{"text": "seahawks thurmond game suspension substance abuse", "cluster": 93}
{"text": "israel eu compromise term joint initiative rift", "cluster": 11}
{"text": "geneva talk set question remain", "cluster": 18}
{"text": "dallas star daily link nhl player file concussion lawsuit", "cluster": 85}
{"text": "nokia lumia launched france listed pre order uk", "cluster": 48}
{"text": "eventful thanksgiving day", "cluster": 21}
{"text": "local shop offer black friday thanksgiving sale", "cluster": 21}
{"text": "pm curb eu migration tory plan power grab brussels", "cluster": 10}
{"text": "woman experiencing heart attack symptom", "cluster": 120}
{"text": "despite strong game derozan lowry raptor lose net", "cluster": 87}
{"text": "gta san andreas coming mobile", "cluster": 53}
{"text": "africa crisis", "cluster": 14}
{"text": "cat underwater robot turtle video", "cluster": 111}
{"text": "human expansion squeezing bonobo population congo", "cluster": 112}
{"text": "moto release place december", "cluster": 43}
{"text": "alicia key visit typhoon haiyan refugee manila air base", "cluster": 16}
{"text": "kim kardashian rock black dress kanye west madison square", "cluster": 77}
{"text": "don trust aid organization", "cluster": 129}
{"text": "voice search desktop google google", "cluster": 41}
{"text": "congress stall immigration activist encourage join fast", "cluster": 147}
{"text": "tom brady ruthless efficiency vintage performance national stage", "cluster": 89}
{"text": "scottish government reveal independence plan", "cluster": 8}
{"text": "kanye west yeezus tour msg", "cluster": 77}
{"text": "lawson head drug", "cluster": 61}
{"text": "criticises china zone includes disputed island vow defend", "cluster": 1}
{"text": "karzai butt head afghan security deal", "cluster": 12}
{"text": "lostprophets frontman change plea infant rape case guilty", "cluster": 70}
{"text": "grand theft auto san andreas coming iphone android window phone", "cluster": 53}
{"text": "news analysis iran nuclear deal positive impact syrian crisis", "cluster": 18}
{"text": "seahorse ability hide prey magical researcher", "cluster": 100}
{"text": "japanese flyer defiant chinese air zone", "cluster": 1}
{"text": "wake meningitis outbreak princeton health official reassure", "cluster": 128}
{"text": "china monitored bomber flight airspace zone", "cluster": 1}
{"text": "peter jones salmond heed global view", "cluster": 8}
{"text": "chelsea going win kill europe", "cluster": 96}
{"text": "nigella lawson fan support dessert recipe", "cluster": 61}
{"text": "area prohibit black friday shopping", "cluster": 21}
{"text": "comet ison particle provide cosmic time capsule moment truth", "cluster": 98}
{"text": "nasa best video comet ison hurtling earth", "cluster": 98}
{"text": "china trade barb china sea defense zone", "cluster": 1}
{"text": "pope francis loudly criticizes economic inequality", "cluster": 15}
{"text": "lostprophets ian watkins pleads guilty charge including count", "cluster": 70}
{"text": "fed policy meeting ado", "cluster": 33}
{"text": "bay psalm book expensive printed work", "cluster": 75}
{"text": "spacex satellite launch delayed thursday", "cluster": 105}
{"text": "kansa man arrested connection quadruple homicide parson", "cluster": 144}
{"text": "philippine typhoon aid effort focusing recovery", "cluster": 16}
{"text": "thursday tl stuffed deal", "cluster": 21}
{"text": "update syria peace talk set jan geneva", "cluster": 18}
{"text": "xbox review", "cluster": 42}
{"text": "free game awaits broken xbox owner", "cluster": 42}
{"text": "niu end perfect regular season win", "cluster": 86}
{"text": "hiv rise europe", "cluster": 129}
{"text": "pope rabbi faith based comrade", "cluster": 15}
{"text": "chabad host hanukkah celebration", "cluster": 74}
{"text": "aid death soar young inadequate health service", "cluster": 129}
{"text": "swine flu death toll time higher thought", "cluster": 118}
{"text": "outrage online georgia juror form offer slave occupation choice", "cluster": 57}
{"text": "thailand slip worst political crisis bloody protest", "cluster": 4}
{"text": "york knicks doomed poor start loss portland trail blazer", "cluster": 80}
{"text": "greg jennings injury viking wr questionable fantasy low", "cluster": 91}
{"text": "moto wood backing option won arrive thanksgiving slated holiday", "cluster": 43}
{"text": "parent guilty killing aarushi case captivated india", "cluster": 17}
{"text": "kanye west kim kardashian reveal deets filming engagement tv", "cluster": 77}
{"text": "google release glass development kit limitation", "cluster": 52}
{"text": "sony share price company seek patent smart hairpiece", "cluster": 51}
{"text": "proposed scottish independence named", "cluster": 8}
{"text": "islander loses climate change refugee bid", "cluster": 104}
{"text": "afc championship betting odds bronco patriot lead pack", "cluster": 89}
{"text": "xbox cost microsoft build msrp", "cluster": 42}
{"text": "aarushi hemraj murder rajesh nupur life term appeal hc", "cluster": 17}
{"text": "latvian pm dombrovskis step", "cluster": 5}
{"text": "kanye west video kim kardashian supposed phony", "cluster": 68}
{"text": "mystery odd head seahorse solved finally", "cluster": 100}
{"text": "bbm channel download exit beta blackberry owner", "cluster": 46}
{"text": "pm banditos jibe mike fabricant brings movember pmqs", "cluster": 131}
{"text": "gta san andreas mobile december", "cluster": 53}
{"text": "best black friday deal tv depends", "cluster": 21}
{"text": "german chancellor angela merkel agrees coalition social democrat", "cluster": 2}
{"text": "antoine winfield contacted seattle seahawks", "cluster": 93}
{"text": "peralta deal cardinal battling yankee red sox beltran", "cluster": 88}
{"text": "bbm pre installed african android device", "cluster": 46}
{"text": "nurse killed protecting patient knifeman", "cluster": 142}
{"text": "william sings rock royalty threatens twerk", "cluster": 65}
{"text": "mary blige sing anthem dallas cowboy match", "cluster": 95}
{"text": "comet ison dimmer expected broken apart", "cluster": 98}
{"text": "condition appear push afghanistan farther striking security deal", "cluster": 12}
{"text": "nokia lumia coming taiwan november", "cluster": 48}
{"text": "amber riley win dwts", "cluster": 62}
{"text": "p competition xbox", "cluster": 42}
{"text": "kim kardashian kanye west react james franco seth rogen bound", "cluster": 68}
{"text": "jameis winston news fsu heisman candidate charged sexual", "cluster": 83}
{"text": "holiday traveler trump spacex launch plan", "cluster": 116}
{"text": "clue alzheimer risk detected infancy study suggests", "cluster": 133}
{"text": "microsoft ban xbox user temporarily swearing skype upload", "cluster": 42}
{"text": "nsa logged online porn habit muslim radicalizers", "cluster": 19}
{"text": "lynch roll northern illinois win western michigan", "cluster": 86}
{"text": "common medicine alarming level salt increase risk heart", "cluster": 119}
{"text": "xbox sold hour", "cluster": 42}
{"text": "perfectly top thing kanye west relationship", "cluster": 77}
{"text": "wrapup pull troop afghan leader hold deal", "cluster": 12}
{"text": "goldman sachs brings small business program detroit", "cluster": 31}
{"text": "google launch hand free search app chrome browser", "cluster": 41}
{"text": "will sharif third time lucky picking coas", "cluster": 6}
{"text": "shsu student health center offer free hiv aid testing", "cluster": 129}
{"text": "leave absence lara logan flawed benghazi report", "cluster": 63}
{"text": "report three killed crane collapse sao paulo stadium", "cluster": 92}
{"text": "difference thanksgiving black friday cyber monday", "cluster": 38}
{"text": "comet ison trouble", "cluster": 98}
{"text": "lynch husky bowl bronco", "cluster": 86}
{"text": "palestinian militant killed israeli west bank raid", "cluster": 11}
{"text": "official sound alarm car france draft resolution", "cluster": 14}
{"text": "xbox initial thought impression", "cluster": 42}
{"text": "stock future point flat open hp rally", "cluster": 24}
{"text": "merkel germany fall eu data retention rule", "cluster": 2}
{"text": "news hp earnings burger king france", "cluster": 32}
{"text": "central african republic pm france increase troop", "cluster": 14}
{"text": "considers option central african republic", "cluster": 14}
{"text": "war japan china accident waiting happen", "cluster": 1}
{"text": "black friday feel month", "cluster": 21}
{"text": "burger king take bite french market", "cluster": 32}
{"text": "abbvie partner hiv community launch international awareness", "cluster": 129}
{"text": "black friday cyber monday travel deal guidebook", "cluster": 38}
{"text": "german party agree motorway toll foreigner", "cluster": 2}
{"text": "seth rogen kim kardashian shot shot parody kanye west video", "cluster": 68}
{"text": "winter storm affect macy thanksgiving day parade", "cluster": 140}
{"text": "warning fall deaf ear salmond rehearses wishlist", "cluster": 8}
{"text": "aarushi murder judgement rajesh nupur danger security beefed", "cluster": 17}
{"text": "family forgiveness", "cluster": 67}
{"text": "xbox xbox", "cluster": 42}
{"text": "adolescent falling gap hiv service", "cluster": 129}
{"text": "taylor swift prince william sing livin prayer", "cluster": 65}
{"text": "nokia jab ipad air ad tablet", "cluster": 48}
{"text": "black nativity retain heart langston hughes classic story", "cluster": 67}
{"text": "toe jam cheese scientist collect bacteria human body artsy project", "cluster": 136}
{"text": "warren buffett invest detroit call great city", "cluster": 31}
{"text": "google launch chrome extension search voice", "cluster": 41}
{"text": "microsoft tease xbox japanese game dev partnership", "cluster": 42}
{"text": "monday morning critic spike lee oldboy nature plot", "cluster": 64}
{"text": "giant macy balloon stay grounded", "cluster": 140}
{"text": "kanye west put nike hedi slimane blast live madison square garden", "cluster": 77}
{"text": "sby disappointed abbott letter", "cluster": 7}
{"text": "princeton meningitis vaccine gloucester county luring warning", "cluster": 128}
{"text": "live rajesh nupur talwar life sentence aarushi hemraj double", "cluster": 17}
{"text": "buy icahn group stake update", "cluster": 37}
{"text": "knowshon moreno fantasy montee ball top waiver option denver bronco", "cluster": 89}
{"text": "oakland raider dallas cowboy spread analysis pick prediction", "cluster": 95}
{"text": "initial jobless claim fall week", "cluster": 23}
{"text": "nawaz sharif chooses lt gen raheel sharif pakistan army chief", "cluster": 6}
{"text": "jason statham cruising bruising", "cluster": 69}
{"text": "kanye west yeezus follow arrive year", "cluster": 77}
{"text": "joe johnson joe johnson hit pointer score", "cluster": 87}
{"text": "clash hebron funeral men killed israel", "cluster": 11}
{"text": "dallas area bracing sleet snow starting today", "cluster": 139}
{"text": "grand theft auto san andreas mobile", "cluster": 53}
{"text": "flacco furthers express distaste wildcat formation", "cluster": 94}
{"text": "expert irs guidance will restrict free speech", "cluster": 148}
{"text": "fatal stabbing good shepherd ambulatory surgical center", "cluster": 142}
{"text": "contract kobe", "cluster": 79}
{"text": "google street view updated include airport train station", "cluster": 50}
{"text": "bomber challenge disputed china air zone", "cluster": 1}
{"text": "kimye react james franco seth rogen hilarious bound", "cluster": 68}
{"text": "taper wolf door", "cluster": 33}
{"text": "space launch delayed thanksgiving private space flight company will", "cluster": 116}
{"text": "taylor swift meet prince william", "cluster": 65}
{"text": "proposed irs rule political nonprofit divide party", "cluster": 148}
{"text": "homefront bloody bore", "cluster": 69}
{"text": "google war youtube comment spam", "cluster": 49}
{"text": "russian police detain islamist moscow", "cluster": 3}
{"text": "judge order cool sriracha factory", "cluster": 141}
{"text": "bound james franco seth rogen parody kanye west kim", "cluster": 68}
{"text": "analysis german business count cost merkel led coalition", "cluster": 2}
{"text": "black friday shopper set strategy seeking sale", "cluster": 21}
{"text": "nokia unveils budget contender lumia", "cluster": 48}
{"text": "unlocked motorola moto released start", "cluster": 43}
{"text": "expensive book sell", "cluster": 75}
{"text": "hewitt announces birth marriage", "cluster": 66}
{"text": "flying jellyfish machine", "cluster": 107}
{"text": "nsa plan shame web porn user", "cluster": 146}
{"text": "grounding big balloon macy thanksgiving day parade will game", "cluster": 140}
{"text": "historic triangle store offer black friday deal early", "cluster": 21}
{"text": "dancing star reality set bill engvall eliminated", "cluster": 62}
{"text": "top official central african republic descending chaos", "cluster": 14}
{"text": "sartorial scuffle men wearhouse bid buy jos bank", "cluster": 27}
{"text": "bon jovi buy bill", "cluster": 65}
{"text": "stock wall street inch higher strength retailer", "cluster": 27}
{"text": "iran deal slow palestinian israeli talk", "cluster": 11}
{"text": "increased police presence school monday", "cluster": 149}
{"text": "don trapped bad thanksgiving weather", "cluster": 139}
{"text": "lostprophets singer ian watkins pleads guilty child sex abuse", "cluster": 70}
{"text": "white paper scottish business reaction", "cluster": 8}
{"text": "glee amber riley win dancing star watch final performance", "cluster": 62}
{"text": "kanye west leaf nike adidas cite provide family", "cluster": 77}
{"text": "mike jenkins mike jenkins expected active dal", "cluster": 95}
{"text": "buy nokia lumia window tablet power keyboard", "cluster": 48}
{"text": "holiday shopping choice", "cluster": 21}
{"text": "owatonna woman set participate macy thanksgiving day parade", "cluster": 140}
{"text": "thanksgivukkah remember", "cluster": 74}
{"text": "juan dixon", "cluster": 81}
{"text": "thai political protest spread bangkok", "cluster": 4}
{"text": "spike lee oldboy cool thing orleans shot thriller", "cluster": 64}
{"text": "xbox dodging game drought", "cluster": 42}
{"text": "will bond yield economic condition affect metlife prudential", "cluster": 33}
{"text": "marysville student selected perform macy day parade", "cluster": 140}
{"text": "sriracha california factory partially shut", "cluster": 141}
{"text": "syrian regime opposition group start peace talk january", "cluster": 18}
{"text": "jolla sailfish o powered smartphone launched will rollout country", "cluster": 45}
{"text": "nigella lawson pa court accused chef credit card", "cluster": 61}
{"text": "latest news google glass development kit gdk", "cluster": 52}
{"text": "thai protester urge civil servant join anti government push", "cluster": 4}
{"text": "changing independence question", "cluster": 8}
{"text": "dancing star recap finale winner", "cluster": 62}
{"text": "seahawks combat drug", "cluster": 93}
{"text": "joan river defends alec baldwin epithet imaginable", "cluster": 71}
{"text": "gov crackdown spending tax exempt group", "cluster": 25}
{"text": "newsroom enters moustache stretch drive", "cluster": 131}
{"text": "bronco hump day hot read big comeback push pat bronco", "cluster": 89}
{"text": "qualified fed chair history", "cluster": 33}
{"text": "grand theft auto maker pay icahn stock buyback", "cluster": 37}
{"text": "totally unbelievable thing absolutely untrue", "cluster": 127}
{"text": "stereo spacecraft zoom comet ison", "cluster": 98}
{"text": "lakers improve free throwing xavier henry leading", "cluster": 90}
{"text": "frozen review", "cluster": 73}
{"text": "josh brolin oldboy", "cluster": 64}
{"text": "selectwoman tough week ahead newtown", "cluster": 149}
{"text": "nokia lumia ante low window phone", "cluster": 48}
{"text": "study associate medium coverage internet search activity increased", "cluster": 135}
{"text": "homefront tender tough", "cluster": 69}
{"text": "video james franco seth rogen release parody version kanye", "cluster": 68}
{"text": "scarlett johansson ruled ineligible golden globe despite best actress", "cluster": 72}
{"text": "independent scot hit year tax bombshell danny", "cluster": 8}
{"text": "france sends troop central african republic growing chaos", "cluster": 14}
{"text": "chemical leak willard ohio rail yard prompt evacuation", "cluster": 28}
{"text": "housing market better expected", "cluster": 30}
{"text": "obama administration proposes rule rein political activity nonprofit", "cluster": 25}
{"text": "black friday hard core shopper set camp early", "cluster": 21}
{"text": "kim kardashian kanye west react seth rogen james franco bound", "cluster": 68}
{"text": "bangkok protester demand people revolution", "cluster": 4}
{"text": "haven safe drug open greece", "cluster": 127}
{"text": "star dump duck goal third period", "cluster": 85}
{"text": "starbucks donating money fight aid", "cluster": 129}
{"text": "update asian airline flight plan china airspace zone created", "cluster": 1}
{"text": "german coalition concession merkel will", "cluster": 2}
{"text": "dancing star winner amber riley feel dream watch", "cluster": 62}
{"text": "crisis greece gurria oecd hail athens effort", "cluster": 36}
{"text": "mass protest thailand government", "cluster": 4}
{"text": "jennifer love hewitt mom wife", "cluster": 66}
{"text": "preview lakers wizard", "cluster": 79}
{"text": "kraft belichick wind call classic shocker", "cluster": 89}
{"text": "winter storm lash eastern threatens thanksgiving travel", "cluster": 139}
{"text": "patriot call overtime preference", "cluster": 89}
{"text": "james franco seth rogen hysterically recreate kanye bound video", "cluster": 68}
{"text": "consumer report playstation xbox", "cluster": 42}
{"text": "men wearhouse bid rival", "cluster": 27}
{"text": "russian police seize explosive raid islamist takfir wal hijra group", "cluster": 3}
{"text": "gta san andreas heading io android", "cluster": 53}
{"text": "persona kick sand xbox user face", "cluster": 42}
{"text": "citing technical problem spacex scrub falcon launch", "cluster": 105}
{"text": "atlanta price gain continued september", "cluster": 30}
{"text": "marion dancer perform macy thanksgiving day parade", "cluster": 140}
{"text": "syrian war ended analysis", "cluster": 18}
{"text": "exclusive interview frank grillo homefront captain america", "cluster": 69}
{"text": "taiwan market nokia launch lumia cooperation", "cluster": 48}
{"text": "grand theft auto san andreas coming mobile device december", "cluster": 53}
{"text": "amber riley feel immensely winning dancing star", "cluster": 62}
{"text": "familiar google hotword arrives desktop official chrome extension", "cluster": 41}
{"text": "sitel macedonia desperate greek infect hiv social aid", "cluster": 127}
{"text": "breakthrough discovery lead development future therapeutic", "cluster": 125}
{"text": "ian watkins disgraced lostprophets singer facing year jail sickening", "cluster": 70}
{"text": "hand designing xbox controller", "cluster": 42}
{"text": "taylor swift stuns crystal gown winter white gala prince william", "cluster": 65}
{"text": "immigrant right activist fast comprehensive immigration reform dc", "cluster": 147}
{"text": "carmelo anthony uncertain free agent join kobe bryant", "cluster": 90}
{"text": "indonesian president susilo bambang yudhoyono precise measure", "cluster": 7}
{"text": "lostprophets singer ian watkins pleads guilty child sex offence", "cluster": 70}
{"text": "danny amendola playing wes welker shadow", "cluster": 89}
{"text": "kanye west announces adidas deal declares kim beautiful woman", "cluster": 77}
{"text": "well jump island rope skipper appear macy thanksgiving day", "cluster": 140}
{"text": "movie review black nativity", "cluster": 67}
{"text": "gta san andreas mobile december", "cluster": 53}
{"text": "year sandy hook report find motive school shooting", "cluster": 149}
{"text": "thanksgivukkah byo menorah tip navigating joint", "cluster": 74}
{"text": "big storm threatens thanksgiving travel", "cluster": 139}
{"text": "flight cost uk brazil cup increase percent", "cluster": 92}
{"text": "mourinho rue team selection", "cluster": 96}
{"text": "brody jenner invited kim kanye wedding defends", "cluster": 77}
{"text": "review frozen warms heart ice ice baby video", "cluster": 73}
{"text": "syria peace conference set january", "cluster": 18}
{"text": "apple buy kinect company", "cluster": 54}
{"text": "aaron rodgers injury packer qb making throw practice", "cluster": 91}
{"text": "james franco seth rogen spoof kim kardashian kanye west bound", "cluster": 68}
{"text": "central african republic descending chaos", "cluster": 14}
{"text": "computer smarter online pic", "cluster": 108}
{"text": "kim kardashian take sasha fierce evening kanye west", "cluster": 77}
{"text": "hub church psalm book sell", "cluster": 75}
{"text": "central african republic force", "cluster": 14}
{"text": "china airspace claim inflames tie south korea", "cluster": 1}
{"text": "fda ruined plan buy andme dna test christmas", "cluster": 124}
{"text": "randall cobb ll pack season", "cluster": 91}
{"text": "nokia lumia flame stoked power keyboard mail", "cluster": 48}
{"text": "area resident differing view thanksgiving shopping", "cluster": 21}
{"text": "chaparral grad march macy thanksgiving day parade", "cluster": 140}
{"text": "spike lee oldboy review", "cluster": 64}
{"text": "dancing star winner", "cluster": 62}
{"text": "thanksgiving immigrant family incorporate traditional", "cluster": 74}
{"text": "video police officer rescue man burning vehicle", "cluster": 150}
{"text": "harlem christmas tangle music", "cluster": 67}
{"text": "juror form list slave occupation", "cluster": 57}
{"text": "patriot improvement third defense", "cluster": 89}
{"text": "three girl freed tucson az year held captive cop", "cluster": 143}
{"text": "pakistan appoints raheel sharif army chief", "cluster": 6}
{"text": "york knicks firing mike woodson solve biggest", "cluster": 80}
{"text": "free hiv testing offered oc aid day", "cluster": 129}
{"text": "french drugmaker morning pill won work woman lb", "cluster": 121}
{"text": "pope seek reform issue mission statement papacy", "cluster": 15}
{"text": "live scottish independence referendum plan unveiled alex salmond", "cluster": 8}
{"text": "qld health minister determined hiv", "cluster": 129}
{"text": "winter white gala picture", "cluster": 65}
{"text": "china monitored flight disputed island east china sea", "cluster": 1}
{"text": "kobe bryant leaving table finish career", "cluster": 90}
{"text": "money ring musk spacex attempt boldest mission", "cluster": 105}
{"text": "winston charge delayed", "cluster": 83}
{"text": "majority support blasio prekindergarten tax plan poll", "cluster": 145}
{"text": "thai protest hit ministry", "cluster": 4}
{"text": "watch thing live anticipated comet trouble video", "cluster": 98}
{"text": "cabinet split forcing eu migrant wait longer unemployment benefit", "cluster": 10}
{"text": "talk doubt rebel pull", "cluster": 18}
{"text": "google chrome receives google voice search extension", "cluster": 41}
{"text": "plan lose effectiveness woman pound", "cluster": 121}
{"text": "peyton manning rebounding loss will test bronco", "cluster": 89}
{"text": "nokia lumia ad don martial art perfect photo", "cluster": 48}
{"text": "review spike lee oldboy starring josh brolin elizabeth olsen samuel", "cluster": 64}
{"text": "greek hiv infection claim error", "cluster": 127}
{"text": "nigella lawson promo season taste air hour", "cluster": 61}
{"text": "review gift guide p xbox won disappoint gamers", "cluster": 42}
{"text": "prince william performs song jon bon jovi taylor swift", "cluster": 65}
{"text": "pakistan army chief", "cluster": 6}
{"text": "judge tell hot sauce maker curb smelly chili", "cluster": 141}
{"text": "statement nfl spokesperson cornerback walter thurmond", "cluster": 93}
{"text": "best kanye west quote radio interview", "cluster": 77}
{"text": "indian parent life killing teen butler", "cluster": 17}
{"text": "nokia owns global window phone device market share", "cluster": 48}
{"text": "monsanto aid farmer devastated typhoon haiyan", "cluster": 16}
{"text": "packer rodgers play", "cluster": 91}
{"text": "kanye west decision signing sneaker deal", "cluster": 77}
{"text": "microsoft scroogled video", "cluster": 44}
{"text": "britain risk nasty country image eu", "cluster": 10}
{"text": "google backed andme ordered fda selling genetic test", "cluster": 124}
{"text": "navy stay jakarta zone", "cluster": 7}
{"text": "keith urban buzz debuting short haircut twitter", "cluster": 76}
{"text": "hewlett packard company nyse hpq citigroup nyse", "cluster": 29}
{"text": "kim kardashian bound parody nailed", "cluster": 68}
{"text": "york knicks celebrate amar stoudemire scoring point", "cluster": 80}
{"text": "screening inmate hiv reveal undetected case", "cluster": 123}
{"text": "gta video texting driving", "cluster": 53}
{"text": "greece stifled overregulation oecd", "cluster": 36}
{"text": "flying jellyfish robot generation surveillance drone", "cluster": 107}
{"text": "update italy pm letta win confidence vote berlusconi move opposition", "cluster": 13}
{"text": "climate refugee loses appeal", "cluster": 104}
{"text": "men wearhouse jos bank tit tat", "cluster": 27}
{"text": "scotland unveils legal argument independence", "cluster": 8}
{"text": "taylor swift michelle dockery winter white gala", "cluster": 65}
{"text": "xbox expensive p report", "cluster": 42}
{"text": "spacex milestone falcon rocket launch rescheduled thursday", "cluster": 105}
{"text": "sight australia indonesia spy crisis", "cluster": 7}
{"text": "brady manning meet matchup great qbs", "cluster": 89}
{"text": "change guard pm nawaz army chief tomorrow", "cluster": 6}
{"text": "typhoon haiyan rebuilding cost going huge", "cluster": 16}
{"text": "swine flu pandemic killed ten time people originally", "cluster": 118}
{"text": "pat peyton manning guessing", "cluster": 89}
{"text": "google moto release time holiday unlocked super cheap", "cluster": 43}
{"text": "reaction darling white paper work fiction", "cluster": 8}
{"text": "jos bank potential sale stir debate antitrust issue", "cluster": 27}
{"text": "kobe extension part loyalty risk", "cluster": 90}
{"text": "mach shockwave supernova", "cluster": 101}
{"text": "bmw drive", "cluster": 59}
{"text": "turning table men wearhouse pursues jos bank", "cluster": 27}
{"text": "way find best deal cyber monday", "cluster": 38}
{"text": "turn happy thanksgivukkah", "cluster": 74}
{"text": "nokia lumia reach uk december starting", "cluster": 48}
{"text": "anton troianovski", "cluster": 2}
{"text": "china creates air defence zone east china sea", "cluster": 1}
{"text": "official share tip shopping safe", "cluster": 21}
{"text": "alicia key visit typhoon refugee philippine", "cluster": 16}
{"text": "james franco seth rogen parody kim kanye bound video", "cluster": 68}
{"text": "pope meet putin discussion church tension", "cluster": 15}
{"text": "kanye west hoping release album summer", "cluster": 77}
{"text": "kevin garnett net struggle embarrassed", "cluster": 87}
{"text": "best black friday deal", "cluster": 38}
{"text": "refile merkel spd battle reach coalition deal ed fix dateline", "cluster": 2}
{"text": "oldboy pop parable early st century", "cluster": 64}
{"text": "warning letter fda order andme selling saliva kit", "cluster": 124}
{"text": "weekly pop forecast", "cluster": 69}
{"text": "google add google hotword extension chrome store", "cluster": 41}
{"text": "kim kardashian post baby body", "cluster": 77}
{"text": "video seahorse ferocious killer", "cluster": 100}
{"text": "raider cb mike jenkins hold personal vendetta cowboy", "cluster": 95}
{"text": "scottish effort join eu common accord met resistance", "cluster": 8}
{"text": "microsoft explains lack halo xbox", "cluster": 42}
{"text": "thai market edge government surviving confidence vote", "cluster": 4}
{"text": "european morning pill norlevo deemed ineffective woman", "cluster": 121}
{"text": "microsoft free game broken xbox console", "cluster": 42}
{"text": "kim kardashian kanye west laughed hard james franco", "cluster": 68}
{"text": "basel chelsea live stream champion league watch", "cluster": 96}
{"text": "scottish independence white paper", "cluster": 8}
{"text": "education falter amid conflict car", "cluster": 14}
{"text": "bandmates glad closure", "cluster": 70}
{"text": "scottish national party unveils plan independence", "cluster": 8}
{"text": "abbott call indonesia security talk spy claim", "cluster": 7}
{"text": "burger king form jv france", "cluster": 32}
{"text": "kim kardashian kanye west step baby north west", "cluster": 77}
{"text": "best buy shopper camp week thanksgiving deal", "cluster": 21}
{"text": "microsoft acknowledges disc drive doom glitch xbox", "cluster": 42}
{"text": "pakistan launch largest nuclear power project cost estimated", "cluster": 6}
{"text": "japan criticize china air defense zone", "cluster": 1}
{"text": "hewlett packard top estimate share hour trading hpq", "cluster": 29}
{"text": "gta amazon", "cluster": 53}
{"text": "rajesh nupur convicted killing aarushi hemraj", "cluster": 17}
{"text": "blackberry roll bbm social network", "cluster": 46}
{"text": "nfl pick prediction week raider cowboy", "cluster": 95}
{"text": "study spewing methane epa", "cluster": 102}
{"text": "frozen manages recapture feel disney accomplishes", "cluster": 73}
{"text": "putin pope francis meeting focus christian plight mideast", "cluster": 15}
{"text": "year carlos beltran deal breaker york yankee", "cluster": 88}
{"text": "alec baldwin talk msnbc sudden cancellation", "cluster": 71}
{"text": "rajesh talwar nupur life term killing aarushi hemraj", "cluster": 17}
{"text": "gray thursday store stronger sale shopper bargain", "cluster": 21}
{"text": "parting shot", "cluster": 33}
{"text": "activity shopping black friday", "cluster": 21}
{"text": "afghan security agreement falling apart president karzai issue", "cluster": 12}
{"text": "packer sitton lion scum injure rodgers", "cluster": 91}
{"text": "ten nhl player file suit lack concussion", "cluster": 97}
{"text": "yankee emerging favorite carlos beltran", "cluster": 88}
{"text": "putin pontiff odd couple video", "cluster": 15}
{"text": "hp enterprise revenue rise", "cluster": 29}
{"text": "future flat record level", "cluster": 24}
{"text": "laptop cyber monday deal score best sale computer", "cluster": 38}
{"text": "kanye west confirms adidas deal anti nike rant", "cluster": 77}
{"text": "researcher find brain change baby risk alzheimer", "cluster": 133}
{"text": "parent imprisoned girl video court morning", "cluster": 143}
{"text": "ian watkins police warn twitter facebook user identify victim", "cluster": 70}
{"text": "william prince pop", "cluster": 65}
{"text": "lakers finish wizard pau gasol contract", "cluster": 79}
{"text": "psalm book fetch record york auction", "cluster": 75}
{"text": "video prince william rock taylor swift jon bon jovi", "cluster": 65}
{"text": "moto start selling well ahead schedule", "cluster": 43}
{"text": "future flat record level", "cluster": 24}
{"text": "japanese airline disregard china air zone rule", "cluster": 1}
{"text": "lakers rally lose washington", "cluster": 79}
{"text": "dibs royal guest rocked jon bon jovi taylor swift", "cluster": 65}
{"text": "karzai outline condition security deal", "cluster": 12}
{"text": "chelsea advance champion league despite loss", "cluster": 96}
{"text": "princeton meningitis case confirmed uncommon type strain", "cluster": 128}
{"text": "power ranking oakland raider", "cluster": 95}
{"text": "sony seek smartwig patent hairpiece camera sensor", "cluster": 51}
{"text": "judge decision flawed kiribati climate change case", "cluster": 104}
{"text": "nokia lumia camera grip", "cluster": 48}
{"text": "jennifer love hewitt welcome daughter secretly marries brian hallisay", "cluster": 66}
{"text": "james franco seth rogen hilariously recreate kanye west bound", "cluster": 68}
{"text": "improved grand theft auto san andreas mobile december", "cluster": 53}
{"text": "story kim kardashian pining bridal quot voguequot cover", "cluster": 77}
{"text": "xbox p console selling better", "cluster": 42}
{"text": "entrepreneur opportunity google glass", "cluster": 52}
{"text": "syria talk aim build momentum iran deal", "cluster": 18}
{"text": "kim kardashian reacts bound", "cluster": 68}
{"text": "kanye west call fiance kim kardashian beautiful woman human", "cluster": 77}
{"text": "syria vow resist power transfer geneva peace talk", "cluster": 18}
{"text": "military aircraft challenge china air defense zone", "cluster": 1}
{"text": "video seth rogen james franco hilariously recreate kanye west", "cluster": 68}
{"text": "wmu niu game note", "cluster": 86}
{"text": "oldboy review", "cluster": 64}
{"text": "live talwar couple life sentence aarushi hemraj double murder", "cluster": 17}
{"text": "latvian government fall riga supermarket disaster", "cluster": 5}
{"text": "jennifer love hewitt wed welcome baby girl", "cluster": 66}
{"text": "claiming hiv case deliberate", "cluster": 127}
{"text": "black friday earlier start", "cluster": 21}
{"text": "seahawks cornerback walter thurmond suspended game", "cluster": 93}
{"text": "men wearhouse offer jos bank", "cluster": 27}
{"text": "jennifer love hewitt birth baby girl secretly married", "cluster": 66}
{"text": "morning pill effective overweight woman", "cluster": 121}
{"text": "kobe deal melo", "cluster": 90}
{"text": "move black friday county shopper will start thanksgiving day", "cluster": 21}
{"text": "congo forest giraffe okapi endangered specie iucn", "cluster": 113}
{"text": "good news bad news jobless claim dip key order drop", "cluster": 22}
{"text": "durable good soft middle", "cluster": 22}
{"text": "jerry brewer disturbing trend seahawks add chapter", "cluster": 93}
{"text": "lostprophets singer pleads guilty attempting rape baby", "cluster": 70}
{"text": "food priority typhoon hit philippine boost relief effort", "cluster": 16}
{"text": "dodge black friday sleep", "cluster": 21}
{"text": "aaron rodgers optimist hasn cleared", "cluster": 91}
{"text": "france intervene car boil", "cluster": 14}
{"text": "google launch voice control search option chrome user", "cluster": 41}
{"text": "tip find best cyber monday deal", "cluster": 38}
{"text": "bonobo serious danger losing habitat range human", "cluster": 112}
{"text": "frozen disney classic lack diversity", "cluster": 73}
{"text": "microsoft acknowledges replaces faulty xbox drive", "cluster": 42}
{"text": "irs proposes guideline politicking tax exempt group", "cluster": 25}
{"text": "pakistan launched construction country largest nuclear power project", "cluster": 6}
{"text": "poll holiday shopping brings mix anticipation dread", "cluster": 21}
{"text": "circumstantial evidence held key talwars murder conviction", "cluster": 17}
{"text": "preview net raptor", "cluster": 87}
{"text": "mac pro gold earbuds ridiculously cool item raise", "cluster": 129}
{"text": "average american woman weigh morning pill", "cluster": 121}
{"text": "irs mull allowing employee bring device", "cluster": 148}
{"text": "kanye west kim kardashian love bound parody video", "cluster": 68}
{"text": "number teen hiv jump", "cluster": 129}
{"text": "google chrome add search button omnibox", "cluster": 41}
{"text": "irs treasury push clamp tax exempt political group", "cluster": 25}
{"text": "xbox digital base living room", "cluster": 42}
{"text": "seth rogen topless kiss james franco hilarious spoof kim", "cluster": 68}
{"text": "researcher identify progenitor cell vital successful growth", "cluster": 125}
{"text": "football accident brazil cup stadium kill three medium", "cluster": 92}
{"text": "israel mull eu pre line directive impact scientific cooperation", "cluster": 11}
{"text": "exclusive survey blackberry bbm beating whatsapp", "cluster": 46}
{"text": "gta audio file hint casino street racing drug dealing activity", "cluster": 53}
{"text": "storm disrupt thanksgiving air travel", "cluster": 139}
{"text": "zac efron tease kim kardashian kanye west bound parody", "cluster": 68}
{"text": "nokia lumia specification price revealed launch official", "cluster": 48}
{"text": "patriot bronco score update denver halftime", "cluster": 89}
{"text": "glimpse comet ison thursday encounter sun", "cluster": 98}
{"text": "ray whitney return will dallas star huge boost offensively", "cluster": 85}
{"text": "s relied intermediary probe spacex sept upper stage", "cluster": 116}
{"text": "nokia lumia tablet kill surface", "cluster": 48}
{"text": "lakers net preview", "cluster": 79}
{"text": "neighbor helped save girl imprisoned year speaks", "cluster": 143}