-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsmerp_labeled_validation.json
More file actions
7874 lines (7874 loc) · 282 KB
/
smerp_labeled_validation.json
File metadata and controls
7874 lines (7874 loc) · 282 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"768744566203768832": {
"classes": [
2
],
"parsed_tweet": "earthquake italy 267 dead hundreds injured ",
"urls": [],
"tweet_text": "Earthquake in Italy: #267 dead and hundreds injured#.",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768822900812046340": {
"classes": [
2
],
"parsed_tweet": "dlusvideonews montepulciano damages earthquake images come regions italy",
"urls": [],
"tweet_text": "@dlusvideonews #Montepulciano had NO damages from the earthquake. The images come from other regions of Italy.",
"retweet_count": 0,
"users": [
"dlusvideonews"
],
"hashtags": [
"Montepulciano"
]
},
"768848577225428992": {
"classes": [
0,
3
],
"parsed_tweet": "italy quake young girl found alive rubble least 240 dead shelterbox team arrived country urlurl",
"urls": [
"https://twitter.com/BBCWorld/status/768795332176187392"
],
"tweet_text": "Italy quake - Young girl found alive under rubble, but at least 240 dead. ShelterBox team has arrived in country. https://t.co/IMw7GLStFt",
"retweet_count": 1,
"users": [],
"hashtags": []
},
"769138472636469248": {
"classes": [
2
],
"parsed_tweet": "new post national disaster italy quake death toll rises 267 urlurl",
"urls": [
"http://www.daylight.ng/national-disaster-italy-quake-death-toll-rises-to-267/"
],
"tweet_text": "New post: National disaster! Italy quake death toll rises to 267 https://t.co/KjljLHiDAT",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"769113679073800193": {
"classes": [
2
],
"parsed_tweet": "number dead italy quake climbs first funerals held indian express urlurl",
"urls": [
"http://goo.gl/fb/J3LSmq"
],
"tweet_text": "Number of dead in Italy quake climbs, first funerals to be held - The Indian Express: The... https://t.co/AzcGDIoMLN",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768725909809627136": {
"classes": [
2
],
"parsed_tweet": "podrska italijanskom narodu stradalom strasnom zemljotresu support italian people injured earthquake urlurl",
"urls": [],
"tweet_text": "Podrska italijanskom narodu,stradalom u strasnom zemljotresu..Support the Italian people injured in the earthquake https://t.co/k0LUI3z9NZ",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768429264974798848": {
"classes": [
2
],
"parsed_tweet": "laird_hay thanks friend yes damages live epicenter quit far lake mitigates earthquake's waives",
"urls": [],
"tweet_text": "@laird_hay thanks, my friend. Yes, no damages where we live. Epicenter quit far, and our lake mitigates the earthquake's waives",
"retweet_count": 0,
"users": [
"laird_hay"
],
"hashtags": []
},
"768571410750898176": {
"classes": [
1,
3
],
"parsed_tweet": "text italy 80100 donate dollar 10 italy earthquake relief fund support bbb_give seal holder globalgiving ongoing relief efforts",
"urls": [],
"tweet_text": "Text ITALY to 80100 to donate $10 to Italy Earthquake Relief Fund and support the @bbb_give Seal Holder @GlobalGiving ongoing relief efforts",
"retweet_count": 1,
"users": [
"bbb_give",
"GlobalGiving"
],
"hashtags": []
},
"768811306430435328": {
"classes": [
3
],
"parsed_tweet": "always israel first help disaster pm president offer condolences aid italy deadly quake urlurl",
"urls": [
"http://ow.ly/A3bw303zLrs"
],
"tweet_text": "As always, #Israel first to help in a disaster. PM, president offer condolences, aid to #Italy after deadly #quake https://t.co/Yf8wa0l2yT",
"retweet_count": 0,
"users": [],
"hashtags": [
"Israel",
"Italy",
"quake"
]
},
"768369675541569536": {
"classes": [
0,
3
],
"parsed_tweet": "italy earthquake army mobilized amatrice accumoli hit hard readers friends italy urlurl",
"urls": [
"https://tmblr.co/ZdyXwx2B9PhGZ"
],
"tweet_text": "Italy Earthquake: Army Mobilized, Amatrice and Accumoli Hit Hard - For my readers and friends in Italy.... https://t.co/45j2J7K4Qr",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768366433101238272": {
"classes": [
2
],
"parsed_tweet": "update italyearthquake toll climbs least 18 dead urlurl",
"urls": [
"http://itim.es/yr-lLb"
],
"tweet_text": "#UPDATE: #ItalyEarthquake toll climbs; at least 18 dead https://t.co/JpoFqUU8nT",
"retweet_count": 0,
"users": [],
"hashtags": [
"UPDATE",
"ItalyEarthquake"
]
},
"769026215386705922": {
"classes": [
2
],
"parsed_tweet": "questions mount italy quake toll hits 250 ella ide angus mackinnon rome long time bathroom get long time bathroom get death toll urlurl",
"urls": [
"http://ift.tt/2c0vvby"
],
"tweet_text": "Questions mount as Italy quake toll hits 250 by Ella IDE with Angus MACKINNON in Rome<br/><br/>The death toll from... https://t.co/MjOQgl155m",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768806059771367424": {
"classes": [
1
],
"parsed_tweet": "technologynews rescue teams searching earthquake survivors trapped central italy asked locals unlock wi-fi passwords",
"urls": [],
"tweet_text": "#TechnologyNews: Rescue teams searching for earthquake survivors trapped in central Italy have asked locals to unlock their wi-fi passwords.",
"retweet_count": 0,
"users": [],
"hashtags": [
"TechnologyNews"
]
},
"768990911556640768": {
"classes": [
2,
3
],
"parsed_tweet": "video red cross dog saves little girl quake rocks italy 247 dead urlurl googlealerts",
"urls": [
"http://goo.gl/alerts/gSZES"
],
"tweet_text": "VIDEO: Red Cross Dog Saves a Little Girl As Quake Rocks Italy, 247 dead. - https://t.co/HJPizPql7F #GoogleAlerts",
"retweet_count": 0,
"users": [],
"hashtags": [
"GoogleAlerts"
]
},
"768397948430450688": {
"classes": [
3
],
"parsed_tweet": "terrible earthquake devastating families communities alike proof amazing red cross urlurl",
"urls": [
"https://twitter.com/bbcbreaking/status/768382689804165120"
],
"tweet_text": "Terrible earthquake. Devastating for families and communities alike. Further proof of how amazing the Red Cross is https://t.co/GRCxHqspK4",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768516580166819840": {
"classes": [
2
],
"parsed_tweet": "sport news least 120 people killed 360 injured 6.2 magnitude quake central italy pm matteo renz",
"urls": [],
"tweet_text": "Sport NEWS:\nAt least 120 people have been killed and more than\n360 injured in a 6.2-magnitude quake in central\nItaly,PM Matteo Renz.",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768762169399844864": {
"classes": [
2
],
"parsed_tweet": "italy earthquake death toll rises 247 least 247 people died earthquake w urlurl urlurl",
"urls": [
"http://ift.tt/2bqfc5j"
],
"tweet_text": "Italy Earthquake: Death toll rises to 247 At least 247 people have died in an earthquake w... https://t.co/IbcYmVPBtJ https://t.co/PbiSOLbFqS",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768790062750314496": {
"classes": [
2
],
"parsed_tweet": "italy quake death toll nears 250 questions mount jobs jobsearch death toll powerful eart urlurl",
"urls": [
"http://bit.ly/2bJ0HKT"
],
"tweet_text": "#Italy quake death toll nears 250 as questions mount #jobs #jobsearch #: #The death toll from a powerful eart... https://t.co/rI9OKZxw7M",
"retweet_count": 0,
"users": [],
"hashtags": [
"Italy",
"jobs",
"jobsearch",
"The"
]
},
"768359789931929600": {
"classes": [
0,
3
],
"parsed_tweet": "army mobilized earthquake zone terremoto-donacion de sangre en hospital de rieti urlurl",
"urls": [
"http://erbeben-earthquake-terremoto.blogspot.com/2016/08/army-is-mobilized-on-earthquake-zone.html"
],
"tweet_text": "Army is mobilized on earthquake zone #terremoto-Donacion de sangre en hospital de RIETI https://t.co/CJ2k3NZ559",
"retweet_count": 0,
"users": [],
"hashtags": [
"terremoto"
]
},
"768906423719698432": {
"classes": [
2
],
"parsed_tweet": "canadian among killed 6.2 magnitude earthquake italy death toll jumps 250 people day aft urlurl",
"urls": [
"http://bit.ly/2bStYRN"
],
"tweet_text": "Canadian among those killed in 6.2-magnitude earthquake in Italy as death toll jumps to 250 people: A day aft... https://t.co/xzdwcjHxyH",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"769161366632558596": {
"classes": [
2
],
"parsed_tweet": "italy earthquake death toll rises 267, nearly 400 hospitalised authorities say urlurl earthquake",
"urls": [
"http://www.abc.net.au/news/2016-08-26/italy-quake-death-toll-rises-to-267-nearly-400-hospitalised/7789868"
],
"tweet_text": "Italy earthquake: Death toll rises to 267, nearly 400 hospitalised, authorities say https://t.co/yMJ5o6khlO #Earthquake",
"retweet_count": 1,
"users": [],
"hashtags": [
"Earthquake"
]
},
"768519870237540352": {
"classes": [
2
],
"parsed_tweet": "least 120 dead quake rocks central italy usa today usa today least 120 dead quake rocks central urlurl",
"urls": [
"http://ow.ly/10fp503OjU3"
],
"tweet_text": "At least 120 dead as quake rocks central Italy - USA TODAY - USA TODAY At least 120 dead as quake rocks central... https://t.co/g2DRNkkjc3",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768578277338329088": {
"classes": [
2
],
"parsed_tweet": "least 159 dead following earthquake italy dead count really climbed since morning terrible urlurl",
"urls": [
"https://twitter.com/i/moments/768365516536897537"
],
"tweet_text": " \"At least 159 dead following earthquake in Italy\" The dead count really climbed since this morning ..Terrible .\n\nhttps://t.co/tJ3lsMEURz",
"retweet_count": 3,
"users": [],
"hashtags": []
},
"769064601199730688": {
"classes": [
0,
3
],
"parsed_tweet": "meanwhile italy asylum seekers give daily allowance 2 help earthquake survivors apennines urlurl",
"urls": [
"http://nyti.ms/2blPj9m"
],
"tweet_text": "Meanwhile in Italy asylum seekers give up their daily allowance of 2 to help earthquake survivors in the Apennines https://t.co/WzWE3vgOSF",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768575412049850368": {
"classes": [
2
],
"parsed_tweet": "truly devastating earthquake italy sending thoughts injured emotionally physically italyearthquake",
"urls": [],
"tweet_text": "it is truly devastating about the earthquake in italy. sending our thoughts to those injured emotionally and physically. #ItalyEarthquake ",
"retweet_count": 0,
"users": [],
"hashtags": [
"ItalyEarthquake"
]
},
"768714823316168704": {
"classes": [
3
],
"parsed_tweet": "french ngo usar pompiers urgence internationale alert italian earthquake urlurl",
"urls": [
"https://twitter.com/PUI_FRANCE/status/768322414547767296"
],
"tweet_text": "French NGO USAR (pompiers urgence internationale) in alert for Italian earthquake. https://t.co/cLg96Bre45",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"769127641702014976": {
"classes": [
2,
3
],
"parsed_tweet": "shelterbox teams arrive italy amatrice quake kills least 240 team helston aid charity urlurl",
"urls": [
"http://bit.ly/2bnLwZr"
],
"tweet_text": "ShelterBox teams arrive in Italy after Amatrice quake kills at least 240: A team from Helston aid charity She... https://t.co/nh4mlBvOlW",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768293653466931200": {
"classes": [
2
],
"parsed_tweet": "italia earthquake listen mayor amatrice tears talking skynews ansa confirm 2 casualties",
"urls": [],
"tweet_text": "#italia #earthquake just listen the mayor of Amatrice in tears talking with #skynews Just now #Ansa confirm 2 casualties....",
"retweet_count": 1,
"users": [],
"hashtags": [
"italia",
"earthquake",
"skynews",
"Ansa"
]
},
"768405323640176640": {
"classes": [
2
],
"parsed_tweet": "deadly earthquake least 37 dead 60 injured",
"urls": [],
"tweet_text": "deadly earthquake with at least 37 dead and over 60 injured",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768590410281316353": {
"classes": [
2
],
"parsed_tweet": "replying several requests information montepulciano affected earthquake damages reported town",
"urls": [],
"tweet_text": "Replying to several requests of information: #Montepulciano has NOT been affected by the earthquake, no damages reported in town.",
"retweet_count": 1,
"users": [],
"hashtags": [
"Montepulciano"
]
},
"768371848996413440": {
"classes": [
2
],
"parsed_tweet": "magnitude 6.1 earthquake struck central italy early wednesday reports damaged buildings blackouts urlurl",
"urls": [],
"tweet_text": "A magnitude 6.1 #earthquake struck central #Italy early Wednesday, with reports of damaged buildings and blackouts. https://t.co/Dk9Ay97zNR",
"retweet_count": 0,
"users": [],
"hashtags": [
"earthquake",
"Italy"
]
},
"768677333720899584": {
"classes": [
2
],
"parsed_tweet": "italy quake toll climbs least 247 civil protection toll stood 159 overnight quake struck dawn",
"urls": [],
"tweet_text": "Italy quake toll climbs to at least 247: civil protection: The toll had stood at 159 overnight after the quake struck before dawn on ...",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768621478040379392": {
"classes": [
0,
3
],
"parsed_tweet": "in case you missed it saskatchewan italian community raise money earthquake victims urlurl yqr sask italyearthquake",
"urls": [
"http://www.cbc.ca/1.3733938"
],
"tweet_text": "ICYMI: #Saskatchewan Italian community to raise money for earthquake victims https://t.co/8a8sgNv1At #yqr #sask #ItalyEarthquake",
"retweet_count": 4,
"users": [],
"hashtags": [
"Saskatchewan",
"yqr",
"sask",
"ItalyEarthquake"
]
},
"768373160467173376": {
"classes": [
2
],
"parsed_tweet": "morning center italy hit violent earthquake close victims injured families",
"urls": [],
"tweet_text": "This morning the center of Italy has been hit by a violent earthquake, I am close to the victims of the injured and their families.",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768538500559958016": {
"classes": [
2
],
"parsed_tweet": "please keep people central italy prayers suffered 120 dead many injured urlurl",
"urls": [
"http://fb.me/1vlM0F0mm"
],
"tweet_text": "Please keep the people in Central Italy in your prayers after they suffered 120 dead and many injured... https://t.co/TzNHbRjGAo",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768739298589933568": {
"classes": [
0
],
"parsed_tweet": "collection resources evidence related health earthquake urlurl cochranelibrary italyearthquake",
"urls": [
"http://goo.gl/2Hx04f"
],
"tweet_text": "We have a collection of resources and evidence related to health and #earthquake - https://t.co/Ls3AscsllQ @CochraneLibrary #ItalyEarthquake",
"retweet_count": 5,
"users": [
"CochraneLibrary"
],
"hashtags": [
"earthquake",
"ItalyEarthquake"
]
},
"768832049016954880": {
"classes": [
2
],
"parsed_tweet": "241 dead italian earthquake 2 dead bridgewater accident earth-like planet discovered urlurl",
"urls": [
"http://youtu.be/koZ1hkBirBE?a"
],
"tweet_text": "241 dead in Italian earthquake; 2 dead in Bridgewater accident; Earth-like planet discovered https://t.co/T5KKbFWYmI",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768390288691695617": {
"classes": [
2
],
"parsed_tweet": "ecuador earthquake death toll rises nearly 650 urlurl",
"urls": [
"https://www.theguardian.com/world/2016/apr/23/ecuador-earthquake-death-toll-rises-rafael-correa?CMP=share_btn_tw"
],
"tweet_text": "Ecuador earthquake death toll rises to nearly 650 https://t.co/llREUlOYe8",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768741190351065088": {
"classes": [
2
],
"parsed_tweet": "italy earthquake death toll creeping past 250",
"urls": [],
"tweet_text": "Italy earthquake death toll creeping past 250",
"retweet_count": 2,
"users": [],
"hashtags": []
},
"769197808221990914": {
"classes": [
2
],
"parsed_tweet": "italy quake death toll hits 267, state funeral planned day national mourning announced flags urlurl",
"urls": [
"http://fniq.a.boysofts.com/48x1"
],
"tweet_text": "Italy Quake Death Toll Hits 267, State Funeral Planned: A day of national mourning was announced, with flags ... https://t.co/DpW4iIYKlv",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"769090360547143680": {
"classes": [
2
],
"parsed_tweet": "reuters italy quake death toll rises 267 nearly 400 hospitalized rome reuters number urlurl",
"urls": [
"http://www.newsoneplace.com/article/3297751607/italy-hospitalized"
],
"tweet_text": "(Reuters):#Italy quake death toll rises to 267; nearly 400 hospitalized : ROME (Reuters) - The number of.. https://t.co/03nu6x4uAW",
"retweet_count": 0,
"users": [],
"hashtags": [
"Italy"
]
},
"768390996723924992": {
"classes": [
2
],
"parsed_tweet": "update italy quake 37 dead urlurl",
"urls": [
"https://twitter.com/firstpost/status/768386571854807040"
],
"tweet_text": "UPDATE: Italy quake:37 dead https://t.co/3RqrJOZmSj",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768819701891805185": {
"classes": [
0,
3
],
"parsed_tweet": "long time colonel tursi officer commanding italy amp greece works authorities see salvation army help italy earthquake",
"urls": [],
"tweet_text": "Lt. Colonel Tursi, Officer Commanding Italy & Greece, works with authorities to see how The Salvation Army can help after Italy earthquake.",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768437267677446144": {
"classes": [
2
],
"parsed_tweet": "death toll earthquake italy reached 63 cjad",
"urls": [],
"tweet_text": "Death toll from earthquake in Italy has reached 63. #CJAD",
"retweet_count": 1,
"users": [],
"hashtags": [
"CJAD"
]
},
"769138070239055872": {
"classes": [
2
],
"parsed_tweet": "crews find living among dead search goes survivors crew killed 267 rescuers hopes urlurl",
"urls": [
"http://bit.ly/2ce4xyx"
],
"tweet_text": "Crews find living among the dead as search goes on for survivors of crew that killed 267: The rescuers hopes... https://t.co/mv08XIyvv2",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768783161853706240": {
"classes": [
2
],
"parsed_tweet": "death toll central italy earthquake rises 250 tragic",
"urls": [],
"tweet_text": "Death toll in central Italy earthquake Rises to 250. So very tragic.",
"retweet_count": 1,
"users": [],
"hashtags": []
},
"768427703078912001": {
"classes": [
2
],
"parsed_tweet": "landed just laughing kidding learn italy catastrophic earthquake hitting amatrice area abruzzo lazio 40 casualties entire towns wiped",
"urls": [],
"tweet_text": "Just landed #jfk learn #Italy catastrophic earthquake hitting The Amatrice area Abruzzo Lazio. Over 40 casualties entire towns wiped out",
"retweet_count": 3,
"users": [],
"hashtags": [
"jfk",
"Italy"
]
},
"768482385033850880": {
"classes": [
0
],
"parsed_tweet": "italy displeasure grows earthquake victims lodged tents staying refugees finished houses como urlurl",
"urls": [],
"tweet_text": "Italy: displeasure grows. While earthquake victims are lodged in tents, staying refugees in Finished houses in Como. https://t.co/5Vm3bMSQp0",
"retweet_count": 95,
"users": [],
"hashtags": []
},
"768779658561060864": {
"classes": [
2
],
"parsed_tweet": "death toll italy earthquake close 250 number dead missing uncertain italy earthqu urlurl",
"urls": [
"http://bit.ly/2caf26e"
],
"tweet_text": "Death Toll on Italy Earthquake Close to 250: Number of dead and missing was uncertain after the Italy earthqu... https://t.co/0mwrkFUKhP",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768431594419941376": {
"classes": [
0,
3
],
"parsed_tweet": "cyprus offered rescue teams italy aid rescue efforts 6.2 magnitude earthquake italyquake urlurl",
"urls": [
"http://fb.me/2yZcFp179"
],
"tweet_text": "Cyprus has offered rescue teams to Italy to aid in rescue efforts after a 6.2 magnitude earthquake #ItalyQuake... https://t.co/luBF5rnOJV",
"retweet_count": 0,
"users": [],
"hashtags": [
"ItalyQuake"
]
},
"768404377065238530": {
"classes": [
2
],
"parsed_tweet": "severely injured victim earthquake twitter",
"urls": [],
"tweet_text": "Severely injured victim of the EARTHQUAKE - Twitter",
"retweet_count": 1,
"users": [],
"hashtags": []
},
"769009760876261376": {
"classes": [
2
],
"parsed_tweet": "questions mount italy quake toll hits 250 death toll powerful earthquake cen urlurl grandma news",
"urls": [
"http://bit.ly/2bnqepW"
],
"tweet_text": "Questions mount as Italy quake toll hits 250: The death toll from a powerful earthquake in cen... https://t.co/UcSKHN1DdL (via GMA News)",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768577772880998400": {
"classes": [
2
],
"parsed_tweet": "italy earthquake update 120 dead 370 injured 2500 homeless relief fund established urlurl",
"urls": [
"https://resurrectionofthescrolls.com/2016/08/24/italy-earthquake-update-120-dead-370-injured-2500-homeless-relief-fund-established/"
],
"tweet_text": "Italy Earthquake Update: 120 Dead, 370 Injured, 2500 Homeless - Relief Fund Established https://t.co/fgo6YURYTv",
"retweet_count": 5,
"users": [],
"hashtags": []
},
"769289117591035904": {
"classes": [
2
],
"parsed_tweet": "italy quake death toll hits 267, state funeral planned huffington post urlurl ambulancenews",
"urls": [
"http://news.google.com/news/url?sa=t&fd=R&ct2=us&usg=AFQjCNE9ZkpuRaN8zILM24NqAGqN4P9ARg&clid=c3a7d30bb8a4878e06b80cf16b898331&cid=52779189354454&ei=ZLfAV-iwHIaihAG97Zlg&url=http://www.huffingtonpost.com/entry/italy-death-toll-state-funeral_us_57c02c77e4b04193420ea49f"
],
"tweet_text": "Italy Quake Death Toll Hits 267, State Funeral Planned - Huffington Post https://t.co/IXOFEhB6VR #AmbulanceNews",
"retweet_count": 0,
"users": [],
"hashtags": [
"AmbulanceNews"
]
},
"768566941661401088": {
"classes": [
2
],
"parsed_tweet": "least 159 dead italy's amatrice quake apennines--civil protection agency dozens missing 100 injured 1000 displaced",
"urls": [],
"tweet_text": "At least 159 dead in #Italy's #Amatrice quake in the Apennines--Civil Protection Agency. Dozens missing, 100s injured, 1000s displaced.",
"retweet_count": 1,
"users": [],
"hashtags": [
"Italy",
"Amatrice"
]
},
"768448614939197440": {
"classes": [
2
],
"parsed_tweet": "latest news 73 dead italian earthquake amp expect",
"urls": [],
"tweet_text": "Latest news - 73 dead in Italian earthquake & expect more.",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768332750575247360": {
"classes": [
2
],
"parsed_tweet": "earthquake central italy skytg24 saying least 12 dead",
"urls": [],
"tweet_text": "#earthquake in central #italy, @SkyTG24 saying at least 12 #dead",
"retweet_count": 0,
"users": [
"SkyTG24"
],
"hashtags": [
"earthquake",
"italy",
"dead"
]
},
"769217257180434432": {
"classes": [
2
],
"parsed_tweet": "shameful skynews focused 3 brits dead italy earthquake ignoring 265 deaths alllivesmatter urlurl",
"urls": [
"http://news.sky.com/story/italy-quake-victims-named-10552493"
],
"tweet_text": "Shameful that #SkyNews focused on 3 Brits dead in the Italy earthquake ignoring 265 other deaths! #AllLivesMatter https://t.co/JohTOroLVL",
"retweet_count": 1,
"users": [],
"hashtags": [
"SkyNews",
"AllLivesMatter"
]
},
"768930835634487296": {
"classes": [
2
],
"parsed_tweet": "earthquake death toll rises italy questions unprepared urlurl death toll excess 250",
"urls": [
"http://gu.com/p/5x9d3?CMP=Share_AndroidApp_Tweet"
],
"tweet_text": "As earthquake death toll rises Italy questions why it was so unprepared\n\nhttps://t.co/GhbpoQ6FuD Death toll in excess of 250.",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768846190511218688": {
"classes": [
1
],
"parsed_tweet": "i'm raising money earthquake relief emili family click donate urlurl gofundme",
"urls": [
"https://gofund.me/helpmanuela?pc=tw_cr_n"
],
"tweet_text": "I'm raising money for Earthquake Relief - Emili Family. Click to Donate: https://t.co/h1leAKB4wT via @gofundme",
"retweet_count": 0,
"users": [
"gofundme"
],
"hashtags": []
},
"768546072365006849": {
"classes": [
1
],
"parsed_tweet": "please donate call 45500 donate 2 people struck earthquake thank terremotoitalia",
"urls": [],
"tweet_text": "please donate or call 45500 to donate 2 to the people struck by the earthquake,thank you\nrt #TerremotoItalia",
"retweet_count": 2,
"users": [],
"hashtags": [
"TerremotoItalia"
]
},
"768634630316691456": {
"classes": [
2
],
"parsed_tweet": "amanda_moore17 150 dead due earthquake :/",
"urls": [],
"tweet_text": "@amanda_moore17 150+ dead due to an earthquake :/",
"retweet_count": 0,
"users": [
"amanda_moore17"
],
"hashtags": []
},
"768404302113017856": {
"classes": [
2
],
"parsed_tweet": "italy earthquake leaves 37 dead towns ruins cnn cnnitaly earthquake leaves 37 dead towns ruinscnnare italy",
"urls": [],
"tweet_text": "Italy earthquake leaves 37 dead, towns in ruins - CNN: CNNItaly earthquake leaves 37 dead, towns in ruinsCNNAre you in Italy? Are you...",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768616285047558144": {
"classes": [
1
],
"parsed_tweet": "mishacollins randomactsorg please send text 45500 civil protection donate 2 help people affected earthquake terremotoitalia",
"urls": [],
"tweet_text": "@mishacollins @RandomActsOrg please send a text to 45500(civil protection)donate 2 to help ppl affected by the earthquake #terremotoitalia",
"retweet_count": 0,
"users": [
"mishacollins",
"RandomActsOrg"
],
"hashtags": [
"terremotoitalia"
]
},
"768449513472266240": {
"classes": [
0,
3
],
"parsed_tweet": "shelterbox sends team italy help earthquake rescue operation urlurl bbcnews",
"urls": [
"http://bbc.in/2bgt1Sd"
],
"tweet_text": "Shelterbox sends team to Italy to help earthquake rescue operation. More here: https://t.co/Vr87LRcJsJ via @BBCNews",
"retweet_count": 6,
"users": [
"BBCNews"
],
"hashtags": []
},
"768286942865666048": {
"classes": [
2
],
"parsed_tweet": "collapsed buildings rubble earthquake italy urlurl",
"urls": [
"https://twitter.com/LucaTeseo/status/768281112783249409"
],
"tweet_text": "Collapsed buildings and rubble after earthquake in Italy. https://t.co/CNTGCdn6Qy",
"retweet_count": 1,
"users": [],
"hashtags": []
},
"768491182418604032": {
"classes": [
2
],
"parsed_tweet": "italy rescue operation continues quake-stricken amatrice 35 reported dead urlurl urlurl",
"urls": [
"http://fborgosano.altervista.org/italy-rescue-operation-continues-in-quake-stricken-amatrice-35-reported-dead/"
],
"tweet_text": "#Italy: Rescue operation continues in quake-stricken Amatrice, 35 reported dead https://t.co/REuBseqSok https://t.co/Fn2dtPjbw2",
"retweet_count": 0,
"users": [],
"hashtags": [
"Italy"
]
},
"768408692790263808": {
"classes": [
2
],
"parsed_tweet": "strong quake rocks central italy 37 reported dead urlurl",
"urls": [
"http://www.fox29.com/news/195360103-story"
],
"tweet_text": "Strong quake rocks central Italy, 37 now reported dead, https://t.co/tGsXrk66A3",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"769104685391343616": {
"classes": [
2
],
"parsed_tweet": "damage wednesday's earthquake shook central italy becoming clearer urlurl urlurl",
"urls": [
"http://ow.ly/Cwy5303Bl5Q"
],
"tweet_text": "The damage from Wednesday's earthquake that shook central Italy is becoming clearer https://t.co/tlPZADDPY4 https://t.co/shJkUyM4HH",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768330285742067712": {
"classes": [
2
],
"parsed_tweet": "14 reported dead shallow 6.2 quake shakes rome devastates towns central italy injuries death toll urlurl",
"urls": [
"http://fb.me/7Vh8JXPMq"
],
"tweet_text": "14 reported dead as shallow 6.2 quake shakes Rome, devastates towns in central Italy Injuries and Death toll... https://t.co/O0bXv6Mj7v",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"769252364893192192": {
"classes": [
2
],
"parsed_tweet": "paulctv reports illica 5 people killed italy earthquake urlurl urlurl",
"urls": [
"http://ow.ly/cVwq303CLRM"
],
"tweet_text": ".PaulCTV reports from Illica, where 5 people were killed in the Italy earthquake. https://t.co/tfPrCoQojI https://t.co/MRqPTAjXRE",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768758652081541120": {
"classes": [
2
],
"parsed_tweet": "you there world death toll italy earthquake rises 247 death toll italian earthquake rose l urlurl",
"urls": [
"http://usat.ly/2c9wmIj"
],
"tweet_text": "[UT world] Death toll in Italy earthquake rises to 247: The death toll in the Italian earthquake rose to at l... https://t.co/L7ZDqtQ8mx",
"retweet_count": 0,
"users": [],
"hashtags": []
},
"768453395325779972": {
"classes": [
2
],
"parsed_tweet": "abc 4 utah update death toll climing italyearthquake nearly 70 reported dead urlurl urlurl",
"urls": [
"http://bit.ly/2c6DPYF"
],
"tweet_text": "abc4utah: UPDATE: Death toll climing after #ItalyEarthquake. Nearly 70 reported dead.\nhttps://t.co/8ANxuCD4Ms https://t.co/2WZZMfpgIS",
"retweet_count": 0,
"users": [],
"hashtags": [
"ItalyEarthquake"
]
},
"768958535870799874": {
"classes": [
1,
3