-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinput.jsonl
4066 lines (4066 loc) · 742 KB
/
input.jsonl
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
{"tweet_id": "914199144960610306", "text": "@usainbolt Usain we need your voice to help families in Dominica rebuild after hurricane Maria @koudmencampaign #helprebuilddominica"}
{"tweet_id": "913243861430013952", "text": "Anyone know if the pretty house in Martinique in Thomas Crown Affair was destroyed by #HurricaneMaria ? @PierceBrosnan"}
{"tweet_id": "914482198409043973", "text": "Those people in Puerto Rico need help due to #HurricaneMaria. I will be donating money to hurricane Maria efforts. They need help!"}
{"tweet_id": "913277745043578880", "text": "#HurricaneMaria leaves Puerto Rico flooded, millions without power #RepostQueen #Floods #Hurricane #BreakingNews"}
{"tweet_id": "913089233455390720", "text": "@AnheuserBusch @RedCross Will you be doing this in Puerto Rico? They desperately need water. #HuracanMaria #HurricaneMaria"}
{"tweet_id": "912372419733618688", "text": "@SenSanders My paternal aunt and uncle were in Puerto Rico when Hurricane Maria hit. The people on the island are in need of help. \u1f61F"}
{"tweet_id": "910684733553573889", "text": "RT @CTowersCBS: Please contribute to recovery efforts any way you can. This is going to take a long time to come back from."}
{"tweet_id": "913833895770120192", "text": "Doing a charity stream to help those affected by Hurricane Maria in Puerto Rico!"}
{"tweet_id": "912267672372629504", "text": "U. of Puerto Rico Is Closed as Hurricane Maria Wreaks Destruction \u2013 The Ticker - Blogs - The Chronicle of Higher Ed"}
{"tweet_id": "911913348517810178", "text": "RT @caseydellacqua: Just donated mate \u1f618 what a fantastic ambassador you are for Puerto Rico \u2665\ufe0f\u1f1f5\u1f1f7"}
{"tweet_id": "910690177110220800", "text": "Hurricane Maria hammers Puerto Rico, leaves island without electricity; residents vow to rebuild after devastation"}
{"tweet_id": "911567124799348736", "text": "Puerto Rican-Americans relocating from the island after Hurricane Maria: come to Durham NC. There are homes and jobs 4 you. #HurricaneMaria"}
{"tweet_id": "911959759422656513", "text": "RT @black____moses1: Hurricane Irma destroyed those islands now hurricane Maria bout to finish it up \u1f633\u1f633"}
{"tweet_id": "911746243881312256", "text": "RT @WeatherNation: .@iCyclone \u200bis surveying #HurricaneMaria damage today in #Humacao, #PuertoRico\u200b."}
{"tweet_id": "912381942368165889", "text": "#WATCH: #Video of #USSWasp Sailors evacuating #Maria victims from #Dominica as the #Military continues 24/7 hurricane relief efforts @USNavy"}
{"tweet_id": "912326642705543168", "text": "Just In: Death toll rises to 27 after Hurricane Maria strikes Caribbean #wral"}
{"tweet_id": "910689418134073345", "text": "RT @LeslieQuick: Puerto Rico is at 100% loss of power. This campaign by @ElijahDaniel makes it easy to help! #DONATE #MariaPR #RT /"}
{"tweet_id": "914526459087265792", "text": "New post: Puerto Rico: Hurricane Maria destroyed everything"}
{"tweet_id": "912327837033598976", "text": "\u1f49Blovebirth Hurricane Maria Clothing Drive\u1f49B . To continue the wonderful efforts of Device Savers and many others"}
{"tweet_id": "913901434386731008", "text": "Progress. Damage is in the billions. Lots of work still left to be done."}
{"tweet_id": "913592859932217351", "text": "RT @PittsburghPG: Mountain of supplies languishes on docks in Hurricane Maria-stricken San Juan"}
{"tweet_id": "913396070222200832", "text": "RT @AmericanCancer: We have set up a fund to aid #cancer patients affected by all hurricanes, including #HurricaneMaria. Please give:"}
{"tweet_id": "912466561449037824", "text": "They need help. #PuertoRico"}
{"tweet_id": "913489404496351232", "text": "#Sunnyside moms will hold a bake sale on Saturday to raise money for Puerto Ricans affected by #HurricaneMaria"}
{"tweet_id": "912277165386768384", "text": "RT @HerbNeu: Apoplectic conditions. Hurricane Maria: Dam threatens to burst in devastated Puerto Rico"}
{"tweet_id": "912463081447608320", "text": "$20 buys 32 cans of baby food!! Pls donate towards #PuertoRico and their #HurricaneMaria efforts. Message me for more info!"}
{"tweet_id": "914204473811177472", "text": "Presbytery leader in Puerto Rico reports on damage from Hurricane Maria @Presbyterian #PCUSA @PDACares #PuertoRico"}
{"tweet_id": "910540620573192192", "text": "RT @LiveStormsMedia: 9-20-2017 San Juan, Puerto Rico Hurricane Maria damage, building destroyed, windows blown out, trees:"}
{"tweet_id": "912432135352537088", "text": "#PuertoRico #SanJuan Convention Center AFTER #HurricaneMaria with very minor damage to #Solar Panels #Energy #ClimateChange #Sustainability"}
{"tweet_id": "913011423290195968", "text": "Hurricane Maria decimated Puerto Rico so Dylan Graves & @wavesforwater are on their way with hundreds of water filtration systems to help."}
{"tweet_id": "913090075776491527", "text": "Ill be reporting from the #DominicanRepublic next week to access the damage of #HurricaneMaria"}
{"tweet_id": "912147590191484928", "text": "Weaker Maria. Interesting note: Matthew had 130mph winds at 950mb, Maria has 90mph winds at 950mb. Jose left a trail of cool water"}
{"tweet_id": "912317963285475328", "text": "RT @virginianpilot: BREAKING: Evacuations ordered for Hatteras Island as Hurricane Maria approaches"}
{"tweet_id": "913832438824136704", "text": "Dam in Puerto Rico suffered so much damage, 70,000 people have been told to evacuate! #HurricaneMaria"}
{"tweet_id": "912245728893915136", "text": "RT @carolfromindy: Please send ships to Puerto Rico-cruise ships, naval ships. Americans are struggling to survive."}
{"tweet_id": "914532677591666689", "text": "Heading to #PuertoRico to survey & triage commercial #roofs damaged by #HurricaneMaria . Eager to get our boots on the ground & help! \u1f1f5\u1f1f7"}
{"tweet_id": "913413595131633671", "text": "#PuertoRico, where millions of Americans are left without power, access to food, clean water, or medical supplies. #climate #HurricaneMaria"}
{"tweet_id": "914902758939033600", "text": "Crisis Aid Network Puerto Rico Aid via @youcaring"}
{"tweet_id": "912970229470388225", "text": "RT @AP: Scope of the damage in Puerto Rico in the aftermath of Hurricane Maria is so wide that US aid is hard to see."}
{"tweet_id": "914537762342281218", "text": "I tweet a lot of cute little science stories, but Americans in Puerto Rico need real help."}
{"tweet_id": "914960696646959109", "text": "42nd CST Soldier joins communications specialists from Pope AAF to assist in Puerto Rico communications recovery efforts. #HurricaneMaria"}
{"tweet_id": "913190717391904768", "text": "Al Magdaleno is fundraising for HURRICANE MARIA RELIEF and GIVING SOLAR LIGHT TO PUERTO RICO:"}
{"tweet_id": "913894924931801088", "text": "RT @MotoStreams: A team of us are fundraising for Puerto Rico in the aftermath of Hurricane Maria! Donations are appreciated! Pls RT."}
{"tweet_id": "910745844923621381", "text": "In the name of Jesus Christ Lord God we ask that you take care of this horrible ruins from this Hurricane. They need your help. We love you"}
{"tweet_id": "911597108872073216", "text": "#HurricaneMaria #PuertoRico The damage is extensive."}
{"tweet_id": "912402924575305729", "text": "Devastation from Hurricane Maria continues to cripple Puerto Rico, with fears a damaged dam on the island may break"}
{"tweet_id": "913693807727783936", "text": "#HurricaneMaria is getting little news coverage despite the severe damage afflicting #PuertoRico. Via @voxdotcom"}
{"tweet_id": "912320518765858816", "text": "Good Morning! We have setup a Relief effort to help the Victims of Hurricane Maria in Puerto"}
{"tweet_id": "910576028304715778", "text": "Power is out everywhere in PR. Hurricane Hunters found Marias now weaker center back over water- forecast to re-intensify next couple days."}
{"tweet_id": "912272394974265344", "text": "WHY HAS AID NOT BEEN GIVEN TO PUERTO RICO? PEOPLE ARE BEING LEFT TO DIE\u203c\ufe0f"}
{"tweet_id": "913852993065439234", "text": "Hurricane Maria: Interactive map shows damage street by street in Puerto Rico"}
{"tweet_id": "913227237398376448", "text": "RT @ThomasCaywood: Hurricane damage in Puerto Rico as seen from space:"}
{"tweet_id": "914207592683118594", "text": "U.S. Customs and Border Protection response and recovery efforts with @femaregion2 partners continue in Puerto Rico after #HurricaneMaria"}
{"tweet_id": "911961735149518848", "text": "RT @Littlebethell: No mention of Puerto Rico?! @realDonaldTrump The U.S. territory is completely damaged, no call for state of emergency? #"}
{"tweet_id": "913052004003565569", "text": "10 technological advances that can save lives in natural disasters #HurricaneMaria #HurricaneIrma #HurricaneHarvey"}
{"tweet_id": "913063568232243202", "text": "RT @KenSPope: While Trump Stalls & Blames, Heres How to Help Puerto Rico: 12 Effective Ways to Donate Money #PuertoRicoRelief"}
{"tweet_id": "913129390547931136", "text": "@FEMA do u need volunteers? Im sure my entire family in #puertorico would happily help distribute all the aid thats been sitting at ports!"}
{"tweet_id": "910719187504394240", "text": "RT @LiveStormsMedia: 9-20-2017 San Juan, Puerto Rico Hurricane Maria damage, flooding, clean up: via @YouTube"}
{"tweet_id": "910576832981950464", "text": "No power in ALL of Puerto Rico. Roofs torn off buildings. Major flooding. This is bad."}
{"tweet_id": "910720771437215744", "text": "RT @citizensclimate: Our fellow citizens on Puerto Rico are completely without power, thanks to #HurricaneMaria. #climate @HollyYanCNN http"}
{"tweet_id": "913145760258183169", "text": "#whataboutPR @realDonaldTrump @POTUS @FLOTUS @MELANIATRUMP @VP stop wasting time and give them the help they need. They are Americans!!! \u1f621"}
{"tweet_id": "913510244206211073", "text": "All T-Mobile corporate stores are collecting items donations to send to #HurricaneMaria"}
{"tweet_id": "914860150175010816", "text": "@KrSolveig @Olds_C00L @MokuMakani @SenWarren @realDonaldTrump They were, and now there are so many supplies there\u2019s no more room on the docks."}
{"tweet_id": "914846223735054336", "text": "RT @dmcrawford: This is what small donations can do: @MoveOn members raised $1million for Puerto Rico in just 3hrs. Give:"}
{"tweet_id": "913854166187040768", "text": "If youre looking for a reason to donate to help victims of Hurricane Maria, consider @realDonaldTrump says things are going really well"}
{"tweet_id": "914553912623079427", "text": "Now 11 days after Hurricane Maria tore through Puerto Rico, the victims deal with the destruction of their island."}
{"tweet_id": "914553962027679752", "text": "Just donated food and water for Hurricane Maria victims. Please do what you can!"}
{"tweet_id": "913583959631687682", "text": "9-28-2017 Cerro de Punta, Puerto Rico Homeland Security fixing com towers Hurricane Maria damage: via @YouTube"}
{"tweet_id": "914131847445172225", "text": "Can she be more melodramatic? Jeez! She needs 2talk2 governor who is at the port w/hundreds of containers of aid. They need truck drivers."}
{"tweet_id": "914124422088232960", "text": "RT @9NewsAUS: Hurricane Maria destroyed Puerto Ricos electrical system, leaving millions in the dark. #9News"}
{"tweet_id": "914577936640040966", "text": "List of key charities accepting donations 4 Puerto Rico & US Virgin Islands, plus link 2 Charity Navigator which rates charities."}
{"tweet_id": "913830785739829249", "text": "RT @FieldGuideInc: Check out El Fondo Boricua (A Fund of St. Paul Foundation) Hurricane Maria Relief Fundraiser #P"}
{"tweet_id": "912313500831281152", "text": "Retweeted Frances Robles (@FrancesRobles): Most of Puerto Ricos crops were wiped out by Hurricane Maria."}
{"tweet_id": "913236331374903296", "text": "RT @steelworkers: Mbrs in Puerto Rico need our help after Hurricane Maria devastated the island. Donate today: http"}
{"tweet_id": "913880080216182784", "text": "RT @TravelFeatures: #VerdanzaHotel, #PuertoRico, Reports No Major Damage from #HurricaneMaria, Plans to Reopen Oct. 15"}
{"tweet_id": "912078087868776449", "text": "RT @KRCR7: Maria kills 15 in Dominica, leaves Puerto Rico dark for months"}
{"tweet_id": "913970828215189504", "text": "#Atlanta #Donate #PuertoRico #HurricaneMaria Buen Provecho Restaurant, 2468 Windy Hill Road. Marietta, Ga. @TheSocialMobLLC"}
{"tweet_id": "912418902910566401", "text": "NWS issues unusual statement on Puerto Rico doppler radar site destroyed during Hurricane #Maria"}
{"tweet_id": "914839324566233089", "text": "Hurricane Marias destruction sets Puerto Rico back decades, even as authorities assess damage, official says"}
{"tweet_id": "914604759222505472", "text": "RT @FoxNews: Military logistics for Hurricane Maria relief in Puerto Rico. @ANHQDC"}
{"tweet_id": "914216483080871939", "text": "Great 1 minute video about this yuge aircraft & her dedicated crew thats been providing hurricane relief since August 31! #NoBounds #Maria"}
{"tweet_id": "914226747268141061", "text": "RT @GeorgeTorresNYC: Im raising money for Help For Puerto Rico. Click to Donate via @gofundme #HurricaneMaria #SO"}
{"tweet_id": "911713536342155264", "text": "RT @andreagonram: We updated our guide on how-to-help the victims of Hurricane Maria in Puerto Rico and the Caribbean:"}
{"tweet_id": "912258121506140160", "text": "RT @NBCNightlyNews: Some options to help victims of Hurricane Maria:"}
{"tweet_id": "913810464685137920", "text": "RT @Northeastern: #Northeastern student, Puerto Rico native Laura Rivera leads Boston-area relief efforts after #HurricaneMaria"}
{"tweet_id": "913187481054523392", "text": "PLEASE - Porto Rico - this beautiful Island and amazing people need any help as soon as possible from everybody all of the World. Thank You."}
{"tweet_id": "910534135734730754", "text": "Price declares public health emergency in Puerto Rico, US Virgin Islands prior to Hurricane Marias landfall We"}
{"tweet_id": "912297841896325121", "text": "A Tropical Storm Warning and Storm Surge Watch have been issued in Beaufort. Were monitoring Hurricane Maria"}
{"tweet_id": "910536945712889857", "text": "RT @corey_markfort: Hurricane for most brings images of damaging winds, but flooding is the major theme for 2017."}
{"tweet_id": "914736485391269888", "text": "Hurricane Maria Hit Puerto Rico\u2019s Giant Telescope - \u2014So Arecibo unfortunately did sustain a little damage"}
{"tweet_id": "914580314416123904", "text": "Even here in the US - disaster response needs to improve fast. In #PuertoRico 3.4M People in desperate need for help"}
{"tweet_id": "913098221307727872", "text": "RT @Seigonie: Maria is a hurricane again, slowly moving past the Carolinas w/gusty winds, storm-surge flooding; warnings in effect /"}
{"tweet_id": "914494171125370880", "text": "RT @Deplorable_Skip: Looking at the DEVASTATION of Hurricane Maria after she completely destroyed Puerto Rico, its obvious that Maria must"}
{"tweet_id": "911735613782667266", "text": "Any word on #Jayuya #Zamas today? Heard bridges were down and most homes flooded. #PuertoRico #Maria #PR #HurricaneMaria"}
{"tweet_id": "911595133258178560", "text": "RT @standardnews: Thousands flee homes over fears of deadly dam collapse in Puerto Rico"}
{"tweet_id": "912287091026997248", "text": "#B-FAST sending medical, reconstruction & water purification equipment in #Dominica to support victims of hurricane #Maria"}
{"tweet_id": "911776987122929665", "text": "@SenMarkey @SenWarren @RepMcGovern Congress needs to make sure Puerto Rico gets the help they need. Please help them."}
{"tweet_id": "914102251949404161", "text": "Our Fellow Citizens Need Our Help @JBStonestreet @BreakPointCC #PuertoRicoRelief #HurricaneMaria \u1f1f5\u1f1f7\u1f64F\u1f3fD\u1f1fA\u1f1f8\u1f625\u1f4a8\u1f30A"}
{"tweet_id": "914844183395004419", "text": "RT @MelinaVader: Hey friends I\u2019m doing ok. There\u2019s not good signal so I can\u2019t talk much. No water, no power, little food but surviving\u2764\ufe0f #H"}
{"tweet_id": "913883168985485312", "text": "Good to know! If youre affected, sterilize your water with this #HurricaneMaria #BeSafe"}
{"tweet_id": "911798116617089025", "text": "Ricardo, my brother is in need of some financial help from hurricane Maria. Thanks for your help!"}
{"tweet_id": "914853449023533058", "text": "RT @thetrudz: Given the magnitude of the destruction, many parts of #Dominica no longer exist.\u201d"}
{"tweet_id": "912093785244520449", "text": "#SanJuan Radar completely destroyed by Hurricane #Maria. Last pic is @NWSTampaBay Radar to show you what it should look like @RoyalCaribbean"}
{"tweet_id": "912247557224648705", "text": "RT @KatieCollettTV: JUST IN: Tropical Storm WARNING for Dare County, NC. Tropical Storm WATCH for Currituck County. #HurricaneMaria @WAVY_"}
{"tweet_id": "912287962666332160", "text": ".@MiamiDadeFire Urban Search & Rescue FL Task Force 1 members deployed to help Puerto Rico with #HurricaneMaria aftermath. #MiamiDadeStrong"}
{"tweet_id": "912299591097298947", "text": "RT @AlexJLamers: Puerto Rico: For as far as he could see, every one of his 14,000 trees was down. Same for the [crops]. #Maria ."}
{"tweet_id": "912361186313801729", "text": "@SenBlumenthal @ChrisMurphyCT Where are CTs relief efforts for #PuertoRico? Donation centers? Initiatives? Assist, please. #HurricaneMaria"}
{"tweet_id": "914255854127501314", "text": "Before @MT_FB game, #MTSU Trustee @DarrellSFreeman flew supplies to @usvirginislands for #HurricaneMaria @aerobridge relief! He is #TRUEBLUE"}
{"tweet_id": "914154121061691392", "text": "\u1f4e2 #PuertoRico Relief efforts in Puerto Rico after Hurricane Maria #KRTpro #News"}
{"tweet_id": "913928659811135489", "text": "Refugees: Waterbury and New Britain are profiled, but your town may face a similar situation soon. #HurricaneMaria"}
{"tweet_id": "911554672804147201", "text": "Puerto Rico has been savaged by both hurricanes and imperialism. Please help our comrades."}
{"tweet_id": "912206788841365504", "text": "RT @Aaaqilah: Aid from Palestine on way to Dominica"}
{"tweet_id": "912420455717511168", "text": "RT @hurrtrackerapp: Tropical Storm Warning has been extended southward to Bogue Inlet and Tropical Storm Watch has been discontinued west o"}
{"tweet_id": "913854535298420739", "text": "Miracle that as of 3/27/17 almost entire population of #PuertoRico saved 3,662,136. From CAT 5 storm. Reported death toll was 16 from storm"}
{"tweet_id": "913966482647785472", "text": "@KimKardashian Thank you to you and your family from myself, my family and friends, and #PuertoRico, we are thankful for your help #HurricaneMaria"}
{"tweet_id": "913025317480095745", "text": "RT @fema: @KenyaHarper17 Hi, search & rescue teams are on the ground & more supplies are en route. More updates:"}
{"tweet_id": "910562108907155461", "text": "RT @business: Hurricane Maria ripped through Puerto Rico, causing potentially billions in damage"}
{"tweet_id": "913846824452149248", "text": "Some interesting facts. This really shows the destruction a storm of #MariaHurricane size can do. #PuertoRico #PuertoRicoRelief"}
{"tweet_id": "913880445585989632", "text": "RT @cesto25: #loveforlovecity In the USVI, Maria drowned what Irma didnt destroy @noshoesradio donate @"}
{"tweet_id": "911546064091656192", "text": "The Weather Channel Hurricane Maria Death Toll Now 30; Turks and Caicos Battered by StormThe Weather ChannelHeavy rain from Hurricane Mari"}
{"tweet_id": "913844147752194048", "text": "RT @market32: \u26a0 #RedCross is helping people impacted by Hurricane #Maria in Puerto Rico and USVI. You can help now"}
{"tweet_id": "911757952213807105", "text": "@ai6yrham Where is the @BBCNews? situation in #Dominica after #HurricaneMaria is critical. Death toll will rise if no water and food reach remote area"}
{"tweet_id": "914251142724325376", "text": "RT @mtehuitz: Haunting scenes from 24 hours of reporting in Puerto Rico. Folks are searching for water, fuel, food and shelter."}
{"tweet_id": "913186608794492929", "text": "RT @Aaron8News: AT 11: Staff at Puerto Rican Bakery & Caf\u00e9 are pitching in to help victims of Hurricane Maria living in PR. @8NEWS /"}
{"tweet_id": "912087866137866242", "text": "RT @NWSHouston: Damage to San Juans radar after #Maria"}
{"tweet_id": "912314925858488323", "text": "Hurricane Maria damaged Puerto Rico\u2019s Agriculture and now Farmers report food will be scarce"}
{"tweet_id": "913925604881207296", "text": "@nytimes We can help but we need donations we have planes and partners on the ground ready, #CajunReliefInitiative RT"}
{"tweet_id": "914521240030908416", "text": "Of little islands forgotten. Hurricane Maria hit Dominica as a Cat 5 and just killed the island for over 8 hours."}
{"tweet_id": "911974703211978752", "text": "RT @PhotoTimeGeo: Hurricane Maria destroyed Puerto Rico. Restoring Power is a priority #HurricaneMaria #PuertoRico #PuertoRicoStrong http"}
{"tweet_id": "910755189673517056", "text": "#HurricaneMaria leaves trail of devastation in Puerto Rico; Search and rescue begins: WGN TV #environment"}
{"tweet_id": "913214803048415232", "text": "RT @HumanityRoad: #PuertoRico - Pentagon sending General to lead #HurricaneMaria recovery efforts: #MariaPR #Huraca"}
{"tweet_id": "913131705074114560", "text": "RT @WCL_PIJIP: Please consider donating at @AUWCL for Hurricane Maria/Puerto Rico relief."}
{"tweet_id": "912107520340238337", "text": "Many shelters open throughout Puerto Rico now, providing relief from #HurricaneMaria. Keeping our PR Red Crossers in our hearts today."}
{"tweet_id": "912980965659693056", "text": "All-Star pitcher Curt Schilling is flying to Puerto Rico to directly help the people suffering from #HurricaneMaria. Info here: .@gehrig38"}
{"tweet_id": "913052547262316544", "text": "All of the donations will go to help @BGCPR to recover from #HurricaneMaria damages. Donate today! #BuildPuertoRico"}
{"tweet_id": "914205749013893120", "text": "Here is a great place to donate if you are looking to help victims of Hurricane Maria in Puerto @PRrelief:"}
{"tweet_id": "914154617084067841", "text": "We can go evacuate our Canadians, but Trump cant get Puerto Rico supplies!? IMPEACH HIM NOW!!!!!"}
{"tweet_id": "914896320233709568", "text": "VIDEO: @Portus_us helps people of PR by preparing 50 truckloads of water for transport at JAXPORT w/ more to come #HurricaneMaria #PRStrong"}
{"tweet_id": "914540996943282177", "text": "@nytimes Rico after Hurricane Maria.Power supplies remain cut to most areas and property destruction was widespread on the island of 3.4 million"}
{"tweet_id": "911948067104067587", "text": "Drone footage shows the aftermath of Hurricane Maria in Puerto Rico, where the death toll has climbed to 33"}
{"tweet_id": "910531975483723777", "text": "#MorningEdition: In Puerto Rico, Hurricane Maria Brings Widespread Damage And Widespread Flooding"}
{"tweet_id": "913985824328384512", "text": "RT @CTmagazine: One of Puerto Rico\u2019s best-known pastors said that she was not aware of a single church that escaped damage or harm\u201d :"}
{"tweet_id": "912356979238203394", "text": "Hurricane Maria - MDTF-1 US&R arrived in Puerto Rico & today began rapid searches & damage surveys in more remote & isolated areas"}
{"tweet_id": "912279734603612160", "text": "Safe. Major damage to the island but thankfully not many deaths. Working on getting everything running. #HuracanMariaPR #HurricaneMaria"}
{"tweet_id": "912992935255396352", "text": "RT @CaribeIndigena: Send donations to Dominica Hurricane Maria Relief Fund at"}
{"tweet_id": "911638400175878149", "text": "Hurricane Maria adds to damage caused by Irma on Turks and Caicos September 23, 2017 at 11:15AM"}
{"tweet_id": "911629818671669248", "text": "Just in: photos of damage from #Hurricane #Maria in the British Virgin Islands. Roofs blown off, lush hills stripped, damage to buildings."}
{"tweet_id": "913803179778768896", "text": "Fuel shortage blamed for patient deaths at Puerto Rico hospital #hurricanemaria #puertorico"}
{"tweet_id": "910632969731264514", "text": "The Destruction Category 5 Hurricane Maria Left In Its Wake | NBC News #Trending #News #Politics #Defense #Crisis"}
{"tweet_id": "913117876982370307", "text": "Camp Caribes chapel extensively damaged by #hurricanemaria in #puertorico"}
{"tweet_id": "913250562740600832", "text": "Before and after VIIRS images of Puerto Rico show the devastation of Hurricane #Maria. Donate to the @RedCross here:"}
{"tweet_id": "913267317659668482", "text": "Maria, again a hurricane, swirls over North Carolina beaches & Outer Banks, from both sides, washing out roads."}
{"tweet_id": "911637887917215744", "text": "RT @readeologist: #SpeakUpForPuertoRico #HurricaneMaria has done so much damage. Hospitals are closed! They cant"}
{"tweet_id": "911535175959482369", "text": "Donate to Caribbean hurricane relief here -"}
{"tweet_id": "911543259268337664", "text": "More Canadians seeking evacuation after Hurricane Maria #RT"}
{"tweet_id": "913858475280781312", "text": "Yes! @Beyonce drops remix of Mi Gente to benefit #HurricaneMaria relief efforts"}
{"tweet_id": "914185316050853888", "text": "RT @NoradNorthcom: Would you like to support those affected by #hurricanemaria? Check out the links below to find out how you can help http"}
{"tweet_id": "910626767106428928", "text": "Gallery: St. Croix, like many other Caribbean islands, have been severely damaged by Hurricane Maria."}
{"tweet_id": "914191174285631488", "text": ".@HyattsvilleMD filled a van for #HurricaneMaria relief in #PuertoRico. @MayorCBH was ready to drive to Rockvilles collection site. @CNSmd"}
{"tweet_id": "912425509216063488", "text": "RT @FourStarNews: Puerto Rico is without power and low on supplies #trump #PuertoRico #HurricaneMaria"}
{"tweet_id": "912403188237651975", "text": "RT @kristiewells: The people of #PuertoRico & #USVI are in need of power, clean water & food. Please donate if you can."}
{"tweet_id": "910580496630996992", "text": "RT @RedCrossSC: Overnight in in Puerto Rico, 10,100 people sought refuge in 173 government evacuation shelters due to Hurricane #Maria."}
{"tweet_id": "914462276073205760", "text": "@ShelleyResists @haroldb54 @TraceyWilkes909 @glennyork @Thomas1774Paine @stringfellowfr4 @GeraldoRivera @realDonaldTrump @POTUS @Topix Been there, done that? What did you actually DO in the military? PR got hit by Maria, jst 2 wks aftr getting hit by Irma! What the 1st Hurricane didnt get? The 2nd DID! Theres NO infrastructure! NO roads, NO electricity, NO comms, San Juan Mayor SKIPPED FEMA meetings n San Juan"}
{"tweet_id": "913053124277018624", "text": "RT @NatGeo: The Arecibo Observatory in Puerto Rico has come through Hurricane Maria mostly intact\u2014but with crucial damage"}
{"tweet_id": "913208743927697409", "text": "RT @PRFAA: Federal Employees: You can help survivors of #HurricaneMaria through @DHSgovs Surge Capacity Force. More info:"}
{"tweet_id": "910693586085318656", "text": "Were co-located w/Governor on St. Croix, have liaisons on St. John & St. Thomas, pushed food, water, supplies ahead of #Maria. #Together"}
{"tweet_id": "912279686457188354", "text": "Where To Donate Money And Goods For Hurricane Maria Relief via @Gothamist"}
{"tweet_id": "914221752225591298", "text": "Esri: Maps and data for #PuertoRico hurricane damage are available here: #HurricaneMaria"}
{"tweet_id": "914847365739302912", "text": "Gov Scott declares state of emergency in FL to assist Puerto Ricans & people fleeing #HurricaneMaria to our state. @MiamiChamber"}
{"tweet_id": "914179353235410945", "text": "Cintron Family Hurricane Maria Fund"}
{"tweet_id": "913149049624244224", "text": "Puerto Ricos governor says immediate aid is needed via @cbsnews"}
{"tweet_id": "912289823129554944", "text": "Near desperation? Need 10m meals and 8m liters of water per day delivered in an area the size of CT w/ no power and flooded roads"}
{"tweet_id": "914142705227141120", "text": "RT @KatyCollin: Maybe part of #HurricaneMaria relief in #USVirginIslands and #PuertoRico could be normalizing their sovereign status: no Jo"}
{"tweet_id": "912095234338754560", "text": "RT @weatheroptics: Remember how the radar went down in PR as #Maria moved through? This is what the actual damage looks like. Not good. htt"}
{"tweet_id": "912211328990797826", "text": "How to Help Victims of Hurricane Maria - #PuertoRicoStrong #PuertoRico #HelpPuertoRico"}
{"tweet_id": "911667199252758528", "text": "RT @Mariie_4: \u1f6a8RT \u1f6a8Puerto Rico Need Us, Please Help Us With Any Donation \u1f64F\u1f3fC\u2665\ufe0f\u1f1f5\u1f1f7 #LosNuestros #PuertoRico #hurricaneMaria"}
{"tweet_id": "910736673025093632", "text": "Hurricane Maria cut all electricity from Puerto Rico, damaged with high winds, and now flooding"}
{"tweet_id": "913301681466740736", "text": "by Manuel Garcia Jr. / September 27th, 2017 The island of Puerto Rico has been destroyed by Hurricane Maria and"}
{"tweet_id": "912176893528592384", "text": "#Americans r suffering in #PuertoRico. Why is this not our focus? #HurricaneMaria destroyed the island. @MailOnline"}
{"tweet_id": "911935809309364224", "text": "Please RT to help my friend find her. Shes worried deeply."}
{"tweet_id": "912332102280114177", "text": "I am from Dominica, the island that was just destroyed by the hurricane Maria, many of my family still lives"}
{"tweet_id": "910615609800577024", "text": "New video by CNN: Hurricane Maria wreaks destruction in Puerto Rico"}
{"tweet_id": "912297179489939456", "text": "This @DavidBegnaud report on #PR is chilling. Theses are Americans w/o power,low on water & supplies 6d after storm"}
{"tweet_id": "913408809388953600", "text": "We all can see crisis. figure out how to distribute what is at the port.Helicopter it around the island.HUGE TRUCKS OF SUPPLIES SITTING.SAD."}
{"tweet_id": "911645122353385472", "text": "As some of you may know Puerto Rico was severely damaged from the path of Hurricane Maria."}
{"tweet_id": "914149828170526720", "text": "RT @pattiannbrowne: Some frame grabs from Irma coverage. The damage from this storm, Harvey and Maria will remain for a very long time."}
{"tweet_id": "914240444040601600", "text": "Hurricane Maria results in few direct deaths in Puerto Rico . . . Trump, hold my beer, I can out kill any hurricane"}
{"tweet_id": "913829405100838913", "text": "Got 4 tickets to todays game. Just get to the bar ASAP & make whatever donation you want to #HurricaneMaria relief."}
{"tweet_id": "913968009181458433", "text": ".@TIDALHiFi is doing their part in helping the victims of #HurricaneMaria & sending them 200,000 pounds of supplies."}
{"tweet_id": "913790494009970688", "text": "RT @US_TRANSCOM: Air Mobility Command continues relief efforts in Puerto Rico. Together, we deliver. #HurricaneMaria"}
{"tweet_id": "912270324074287105", "text": "Hurricane Maria slammed the Caribbean just days after it was hit by Irma. Heres how you can help those in need."}
{"tweet_id": "910687750537355264", "text": "All of Puerto Rico has lost power after Hurricane Maria. The storm killed at least 9 people in Caribbean islands."}
{"tweet_id": "914986320115593221", "text": "Likely count over 60 even though Puerto Rico hasn\u2019t updated the Hurricane Maria death toll in 5 days via @voxdotcom"}
{"tweet_id": "912094772155822080", "text": "Please donate to the Hurricane Relief Fund to #HelpPR They are in desperate need of help. Hurricane #Maria decimated #PuertoRico"}
{"tweet_id": "913026275526180864", "text": "The people of #PuertoRico are citizens of the US! Period! So they need our help! #PuertoRicoStrong #PuertoRicoRelief"}
{"tweet_id": "910677987598647296", "text": "All Power Out as Hurricane Maria\u2019s Winds, Floods Crush Puerto Rico-Worst case is island"}
{"tweet_id": "912124173698211840", "text": "Category 5 Hurricane Maria Causes Mind Boggling Damage to Dominica, on Path to Puerto Rico"}
{"tweet_id": "913398745563373568", "text": "@DavidBegnaud #Thankyou We contacted Drs. and March of Dimes to help the preemies & their moms in the USA. #PuertoRico #HurricaneMaria"}
{"tweet_id": "914921321070460928", "text": "The @UN & partners have launched a $31M appeal to provide aid to 65K people in #Dominica after #HurricaneMaria:"}
{"tweet_id": "913129065317466112", "text": "RT @SenatorLeahy: A must read. The people of Puerto Rico & US Virgin Islands need our help, & we need to act quickly #PuertoRicoRelief http"}
{"tweet_id": "914839889178488832", "text": "\u1f50A: Media briefing prior to #USNSComforts deployment from Norfolk this afternoon to #PuertoRico to support Hurricane #Maria relief. @fema"}
{"tweet_id": "913364108992491521", "text": "Priorities! .@RepTrey has time to tweet about Trump / NFL, but seems to have no position or empathy for American citizens at risk and in need of help following hurricane Maria. #PuertoRico"}
{"tweet_id": "912196348958588929", "text": "Aid reaches Puerto Rico after Maria as threat from cracked dam recedes"}
{"tweet_id": "912361668616884224", "text": "#DSTRFoodShortage No food: devastating impact of Maria in Pu"}
{"tweet_id": "913225453741248512", "text": "RT @PatriceMusik: We need your help. Please donate to our LifeLink of Puerto Rico Staff Aid. #HurricaneMaria #ourstaff #donate"}
{"tweet_id": "912314490351431681", "text": "Please Help this Childrens Hospital #PuertoRico #Maria #HurricaneMaria"}
{"tweet_id": "914190210728173575", "text": "Links for different charities you can donate to to help our Puerto Rican brothers and sisters after Hurricane Maria:"}
{"tweet_id": "914490673746907137", "text": "@MosesDidItBest @JoyAnnReid Official Death Toll of 16 not being updated eitherListen at 1:20 8 Police Officers dead"}
{"tweet_id": "912461989087236097", "text": "RT @nytimes: Jennifer Lopez pledges $1 million of own money to victims of Hurricane Maria in Puerto Rico"}
{"tweet_id": "913424297212948480", "text": "The 2017 Puerto Rico Tip-Off will be played at Coastal Carolina University (Conway, SC) due to the damage caused by Hurricane Maria."}
{"tweet_id": "914473257721585665", "text": "She said the Democrat Mayor would not allow the food, water & supplies to be distributed. She also said Feds need to take over."}
{"tweet_id": "911549177523589121", "text": "Puerto Rico is in real trouble. Dam breaking. 95% (!) of cell towers destroyed."}
{"tweet_id": "912334268273168384", "text": "Puerto Rico, you are not alone. @FDNY locations accept specific donations for residents affected by #HurricaneMaria."}
{"tweet_id": "914884223567360001", "text": "Donations being packaged from the Roberto Clemente Museum are being sent to Puerto Rico to help with recovery efforts from hurricane Maria"}
{"tweet_id": "914580981704732672", "text": "Head to head, Rahm Emanuel beats out hurricane Maria for number of minority folks killed."}
{"tweet_id": "913341422836883456", "text": "GALMOBILE Emergency Model #puertorico #hurricanemaria #clean #drinking #water #emergency #relief"}
{"tweet_id": "912362540612558850", "text": "Ive just heard from one of my best friends for the first time since hurricane Maria struck. She said the entire island of PR is destroyed. \u1f616"}
{"tweet_id": "912375775835377667", "text": "Just arrived in Puerto Rico. Will see the damage done by Hurricane Maria & assess what is needed from the federal govt. #puertoricostrong"}
{"tweet_id": "912193322126585856", "text": "Video shows destruction of Crashboat Beach in Puerto Rico. Aftermath of Hurricane Maria via /r/WTF"}
{"tweet_id": "911736751441498113", "text": "I took a break from loading supplies to be sent for #HurricaneMaria relief. Just had to watch #GreenDay! #GlobalCitizenFestival @MSNBC"}
{"tweet_id": "911701866970525698", "text": "Restoring full power to Puerto Rico \u2018could take a year\u2019 Read more: #flooding #puertoRico #hurricaneMaria"}
{"tweet_id": "912354634265616384", "text": "How to help the #Caribbean #USVirginIslands #BVI #donate"}
{"tweet_id": "913239991001563137", "text": "Where are the text a thons raising money for #PuertoRico and victims of #hurricaneMaria ? I wonder how @POTUS would act if something of this capacity happened to Hawaii- an island thats much further off the US coast than PR!?"}
{"tweet_id": "910646785814691840", "text": "Hurricane conditions are not over in Puerto Rico, #Maria will strengthen again, and no one can say where it goes past Saturday."}
{"tweet_id": "912315995666223105", "text": "Dam damaged by Hurricane Maria still posing threat. Thoughts remain w/all evacd & those still recovering from storm"}
{"tweet_id": "911646951581523970", "text": "An opportunity to rebuild distributed clean energy: A Storms Never Destroyed a Grid Like Maria Ruined Puerto Ricos"}
{"tweet_id": "910680782947090433", "text": "Hurricane Maria caused major damage in Puerto Rico. Hurricane Maria also knocked out the power in Puerto Rico. #HurricaneMaria"}
{"tweet_id": "914261024995454977", "text": "RT @USArmy: .@USACEHQ prepare mobile command vehicles for deployment to assist with Hurricane #Maria"}
{"tweet_id": "912183268577071104", "text": "#hurricanemaria QUESTELL FAMILY MISSING 5 DAYS IN PONCE. PLEASE HELP FIND THEM"}
{"tweet_id": "913898705421570053", "text": "Proud to share Walmart & @WalmartGiving commitment of $5M in support of #HurricaneMaria relief. Here\u2019s the latest:"}
{"tweet_id": "914571093343485952", "text": "Local #volunteers prepping donations 4 shipment to #HurricaneMaria ravaged @PuertoRicoPUR @FOX10Phoenix #food #ReliefEfforts #HelpPuertoRico"}
{"tweet_id": "913904413852487681", "text": "#PuertoRico dies while #DonaldTrump flies. #SavePuertoRico & #ImpeachTrumpNOW! Please donate to any of these: #Maria"}
{"tweet_id": "911634328215543808", "text": "It\u2019s about as large a scale damage as I have ever seen. #puertorico"}
{"tweet_id": "913178966827130880", "text": "Groups Offer Aid As Puerto Rico Faces Crisis After Hurricane Maria: Associations Now @NRECANews #RuralElectric"}
{"tweet_id": "912195797772517378", "text": "RT @fppoulet: Where is our Government? Puerto Rico needs help."}
{"tweet_id": "913366359194656769", "text": "RT @IronStache: .@realDonaldTrump, suspend the Jones Act. Americans in Puerto Rico devastated by Hurricane Maria need our help."}
{"tweet_id": "911558979037384705", "text": "@jeligon can you cover the damage done to my island of \u1f1e9\u1f1f2 by hurricane Maria the whole island is devastated 47 dead and counting"}
{"tweet_id": "913059002862505984", "text": "#News via #NPR: The damage left by Hurricane Maria has disabled running water for many in Puerto Rico. People are"}
{"tweet_id": "910724667131990016", "text": "New video of the devastating damage on Dominica after Hurricane #Maria roared through as a category 5. \u1f3a5: @ANUChronicle"}
{"tweet_id": "910543214997843968", "text": "CNN reports Aerial footage shows the catastrophic damage that Hurricane Maria brought to Dominica Follow live up"}
{"tweet_id": "914000441741938695", "text": "You R kind \u2764\ufe0fed. I respect that. I have a son W/A LOT of health issues.Been locked out of S7 for 4-5days.DESPERATELY NEED HELP!"}
{"tweet_id": "912328264978493440", "text": "#HurricaneMaria Destroyed our apartment \u1f622"}
{"tweet_id": "913132525626822656", "text": "Were collecting NEW toiletries, baby diapers & feminine hygiene products for #PuertoRicoRelief from #HurricaneMaria! #ROC"}
{"tweet_id": "912999826438152192", "text": "RT @SGottliebFDA: #FDA is mounting a broad effort to help the people of #PR and recover the island\u2019s substantial manufacturing base :"}
{"tweet_id": "913822449388711940", "text": "9-28 #CommunityDevelopments: Enterprise Examines CDBG-DR Program and Hurricane Maria Damage + much more: #PuertoRico"}
{"tweet_id": "910636636563738624", "text": "What Is Hurricane Marias Death Toll? #Trending #News #Politics #Defense #Crisis"}
{"tweet_id": "914963388840767488", "text": "U.S. Customs and Border Protection continues to support massive response efforts following #HurricaneMaria NEWSROOM:"}
{"tweet_id": "910548307335933957", "text": "We are so happy to report that The Buccaneer has been spared of major damage after Hurricane Maria passed by St."}
{"tweet_id": "912403360581595136", "text": "RT @bjorkianrice: Univision map offers up-to-date info about damage in Puerto Rico BLOOD IS ON THE HANDS OF THE GOPDT #THATGUY"}
{"tweet_id": "913000732479107072", "text": "Video shows CBP crew provide medical assistance to family in Puerto Rico who painted the word HELP on their roof after Hurricane Maria."}
{"tweet_id": "914178568611090433", "text": "Dominica My Country Destroyed By Hurricane Maria: via @YouTube"}
{"tweet_id": "912456273249079297", "text": "Jennifer Lopez pledged $1M from her Las Vegas residency to help PuertoRico after HurricaneMaria destruction."}
{"tweet_id": "912191238408998912", "text": "Dont be distracted by the kneeling crap, PEOPLE NEED HELP! GO DONATE!"}
{"tweet_id": "914674839612530689", "text": "Help my country plz! Most ppl dont even know where its located. But hurricane Maria did. Plz retweet! FOOD, MEDICINE & WATER NEEDED ASAP"}
{"tweet_id": "914995385743167488", "text": "Hurricane Maria left devastating damage in Puerto Rico. My brother @ricky_martin decided to create this page to provide aid. Please support!"}
{"tweet_id": "912179849707503616", "text": "Loiza, a town that already had been ravaged by Hurricane Irma, 90 percent of homes - 3,000 - were destroyed by Maria"}
{"tweet_id": "911726497551065088", "text": "RT @KayaJones: My good friend & dancer Ana whos from Puerto Rico\u1f1f5\u1f1f7Has created a page for #hurricanemaria victims if you can help\u1f64F\u1f3fC"}
{"tweet_id": "914988875390619649", "text": "COOL PHOTO shows our @USAID disaster team leader Tim at #Dominca port observing @southcomwatch airlifts of aid 4 #HurricaneMaria response"}
{"tweet_id": "911972113950609409", "text": "Heres a small indication of #HurricaneMarias damage in Puerto Rico. That is (was) my neighbors car."}
{"tweet_id": "783930991387762688", "text": "@shl Hurricane left Haiti. If YOU care donate to trusted faithbased charity, NOT #ClintonFoundation @realDonaldTrump"}
{"tweet_id": "784697434656034816", "text": "RT @RT_com: Over 870 killed, 350,000 in need of urgent aid in hurricane-stricken Haiti"}
{"tweet_id": "783884906833121280", "text": "Im raising money for Hurricane Relief fund for Haiti. Click to Donate: via @gofundme"}
{"tweet_id": "783827456713121792", "text": "#BreakingNews Hurricane Matthew kills 26 in Caribbean on destructive path to U.S.: LES CAYES, Haiti/GUA #News"}
{"tweet_id": "783831315149881344", "text": "In response to Hurricane Matthew and its devastation on Haiti, weve launched a Hurricane Matthew Relief Fund"}
{"tweet_id": "783405633450180609", "text": "Hurricane Matthew batters Haiti as US authorities plan evacuations:"}
{"tweet_id": "783704564859965440", "text": "RT @Alecforman: Dont know how to help Haiti and other hurricane victims? Heres your shot. #HurricaneMatthew"}
{"tweet_id": "783686318609936384", "text": "#USA #US #News : Hurricane Matthew: Thousands displaced in Haiti"}
{"tweet_id": "783472997709471744", "text": "9 Dead As Hurricane Matthew Hammers Haiti And Looks Increasingly Likely To Make Florida Landfall #breakingnews"}
{"tweet_id": "783566165016739840", "text": "Ugh. Poor Haiti. More details emerge of damage caused by hurricane Matthew on island -"}
{"tweet_id": "783456690754682880", "text": "Pray for Haiti, this hurricane is coming to do damage. If you have family over there call them, T-Mobile offers free calls there til Friday"}
{"tweet_id": "783830416419684352", "text": "US HAITI - U.S. allocates $1 mn in additional aid to Haiti after Hurricane Matthew"}
{"tweet_id": "783932324325036032", "text": "Bridge washed out in #Haiti in the aftermath and devastation from MONSTER Hurricane #Matthew civilians help each other across to otherside"}
{"tweet_id": "783776844428484608", "text": "RT @CMMBTweets: New update from our team in #Haiti. Initial reports indicate devastating damage from #HurricaneMatthew."}
{"tweet_id": "783881738858659840", "text": "Rescue workers in Haiti struggling to reach parts cut off by Matthew, the most powerful Caribbean hurricane in nearly a decade #NBS5Things"}
{"tweet_id": "783785407800565760", "text": "TheEconomist : A flooded street in Port-au-Prince after Hurricane Matthew slammed into Hai )"}
{"tweet_id": "783931318505701376", "text": "Haiti starting to assess full damage from Hurricane Matthews wrath the damage is catastrophic left behind by #Matthew photo from L.A.Times"}
{"tweet_id": "784649348466380800", "text": "Hurricane Matthew: 4 deaths in Florida @CNN"}
{"tweet_id": "783701383249850368", "text": "RT @BritishRedCross: Hurricane Matthew leaves trail of destruction in Haiti"}
{"tweet_id": "784689314571485184", "text": "RT @reportr1: Augusta safe haven for thousands of Hurricane Matthew evacuees"}
{"tweet_id": "783765099811049478", "text": "HELP THE HURRICANE RELIEF PEOPLE OF HAITI NEED THE HELP - Hope For The Nation of Haiti"}
{"tweet_id": "783801079901347842", "text": "5 pm update keeps peak winds at 120 mphstorm headed thru the Bahamas. 14,530 people displaced by flooding in #Haiti"}
{"tweet_id": "783854988464365568", "text": "I just donated $50 to @DirectRelief to support their disaster relief efforts in Haiti. Wont you join me? #HurricaneMatthew #donation"}
{"tweet_id": "783831303544242177", "text": "RT @ajplus: Hurricane Matthew has killed at least 25 people across the Caribbean, with most victims from Haiti and Cuba."}
{"tweet_id": "783430549062967297", "text": "South Carolina Begins Evacuations as H"}
{"tweet_id": "783586053215051776", "text": "Maryland Group Sending Hurricane Relief Supplies to Haiti #DC"}
{"tweet_id": "783405550054862848", "text": "Please do all you can to help!"}
{"tweet_id": "783388903676018689", "text": "RT @CARE: With Hurricane #Matthew closing in, CARE is already at work providing meals to those in evacuation shelters. #Haiti /"}
{"tweet_id": "783992995582468096", "text": "Hurricane Matthew Childrens Relief Fund - Save the Children to donate to help the children of Haiti."}
{"tweet_id": "783662293066346496", "text": "How to help those affected by Hurricane Matthew via @weathernetwork #haiti #hurricanematthew"}
{"tweet_id": "783849411302526976", "text": "Were starting to see some reports about the damage in Haiti caused by Hurricane #Matthew."}
{"tweet_id": "783832514565640193", "text": "RT @geohil: Hurricane Matthew Haiti Emergency Relief Donate \u2014 Childrens Relief International"}
{"tweet_id": "783383316888117248", "text": "UPDATED: Category 4 Hurricane Matthew roars across Haiti; at least 7 dead (with video, hurricane tracker) \u00bb #ArkDG"}
{"tweet_id": "783634879971852288", "text": "Hurricane Matthew inflicting major damage in Haiti & Cuba. 11 dead so far. The latest and the potential track with @accuweather at 6:53."}
{"tweet_id": "783670395010449408", "text": "RT @Anon_Eu: Hurricane Matthew leaves Haiti facing humanitarian crisis - UN: Eleven confirmed dead, thousands f"}
{"tweet_id": "783398854959828992", "text": "The Latest: South Carolina governor plans evacuation: PORT-AU-PRINCE, Haiti (AP) \u2014 The Latest on Hurricane Matthew"}
{"tweet_id": "783668354452189184", "text": "Unfortunately, Haiti was severely damaged. Our prayers are with them for a speedy recovery."}
{"tweet_id": "783807215354322944", "text": "Please dont donate money to the @RedCross. How did the Red Cross spend $106 Million donated for #Haitis disaster?"}
{"tweet_id": "783917160687104000", "text": "RT @CTVNews: Haiti working to gauge damage after Hurricane Matthew moves on to Bahamas"}
{"tweet_id": "783481455955423232", "text": "Hurricane Matthew brings flooding to Haiti. Join us at 8:10am edt, were talking to relief volunteers already on the ground there."}
{"tweet_id": "783824703278415873", "text": "VT Steps Up Hurricane Relief in Haiti"}
{"tweet_id": "783453931410251781", "text": "Partners in Health (@PIH) need your help. Haiti needs your help."}
{"tweet_id": "783779269721874432", "text": "Hurricane destroys family home in Haiti, mums concern is childrens uniforms washed awaywhat does this say about priorities in our life"}
{"tweet_id": "783961176896135168", "text": "Donate to @hopeforhaitiFL Hurricane Matthew Emergency Relief Response #HurricaneMatthew"}
{"tweet_id": "783487635780173825", "text": "Hurricane Matthew slams Haiti, takes aim at US East Coast Bulloch one of 12 Ga. counties under state of emergency"}
{"tweet_id": "783422604069654529", "text": "So sad Just hope people will look at how #RedCross spent the last money we donated to help the people of Haiti before donating to them again"}
{"tweet_id": "784696682344656896", "text": "Hurricane Matthew death toll nears 900 in Haiti #Abre los ojos!"}
{"tweet_id": "783938059586924544", "text": "Millions flee inland in southeast U.S. after Hurricane Matthew kills 26 in Haiti"}
{"tweet_id": "783699184025239554", "text": "Relief supplies are being collected by @AgapeFlights to help hurricane victims in #Haiti @fox13news #relief #venice"}
{"tweet_id": "783403166113013760", "text": "@STForeignDesk Thanks to the U.S. and our military going to the aid needed in Haiti for help and clean up after Matthew hurricane."}
{"tweet_id": "783923587971321856", "text": "Haiti starting to assess full damage from Hurricane Matthews wrath via the @FoxNews Android app I"}
{"tweet_id": "783733936279007232", "text": "Aid Teams Try to Reach Areas In Haiti Pounded By Hurricane: Rescue workers in Haiti began distributing suppli"}
{"tweet_id": "783465212687052801", "text": "RT @Bill_Bing: BREAKING: Hurricane Matthew Wallops Haiti. Bill and Hillary Clinton Promise $$$ Aid from The Clinton Foundation. (Ooops ."}
{"tweet_id": "783394299031461889", "text": "RT @STVNews: Four people dead as Hurricane Matthew makes landfall in Haiti with speeds of 145mph"}
{"tweet_id": "783991683188948992", "text": "RT @LindsayLogue: 3500+ homes destroyed in Haiti"}
{"tweet_id": "783995382758051840", "text": "@TeamBrokenEarth traveling to Haiti to provide medical relief post Hurricane Matthew. Good work on the swift action"}
{"tweet_id": "783436659949985792", "text": "We have to evacuate crap!Hurricane Matthew Slams Haiti as U.S. Evacuations Feared"}
{"tweet_id": "783833683459309568", "text": "Bay Area relief agencies raise funds for Hurricane Matthew victims in Haiti: Bay Area relief agencies are just now"}
{"tweet_id": "783461055943114754", "text": "Hurricane Matt:worst damage Ive ever seen rep of Haitis Civil Protection Agency. Damage reports sparse, communication cut off."}
{"tweet_id": "783771836735782912", "text": "RT @Hannah_Troyer_: Support SUSTAINABLE hurricane relief in Haiti-"}
{"tweet_id": "783496748476030976", "text": "Im supporting the Hurricane Victims in Haiti through The Williams-Jeannot Foundation Co.Inc. Support by retweeting."}
{"tweet_id": "783605256433393665", "text": "RT @wusa9: Hurricane Matthew slams Haiti, at least 11 dead"}
{"tweet_id": "783788546222125060", "text": "RT @globaliteman: UN chief Ban Ki-Moon says 370,000 evacuated in Cuba, some 350,000 in Haiti need help after #HurricaneMatthew"}
{"tweet_id": "783834163346497537", "text": "Haiti suffered severe damage at the wrath of Hurricane Matthew, but @WorldVisionUSA is on the ground with relief."}
{"tweet_id": "783939520081387520", "text": "Breaking News Hurricane Matthew Killed 23 In Haiti: Official: Hurricane Matthew has left 23 dead an #Followme"}
{"tweet_id": "783411018684854273", "text": "Ok, @meredeetch @Kimwilliamspais - what can we do to help Haiti in hurricane? Donate to @CARE?"}
{"tweet_id": "783827506357014528", "text": "RT @BaltimoreTVNews: Maryland Mobilizes to Aid Haiti After Hurricane Matthew | @CBSBaltimore"}
{"tweet_id": "783752281992769536", "text": "Hurricane Matthew triggers large-scale evacuations along US East Coast: Rescue workers in Haiti struggled to reach"}
{"tweet_id": "783768304699703296", "text": "Bridges out, communications cut, govt says at least 350,000 in need of help in Haiti after deadly #HurricaneMatthew"}
{"tweet_id": "783411606298296320", "text": "Hurricane Matthew: Seven dead as extremely dangerous category 4 storm makes landfall in Haiti via @telegraphnews"}
{"tweet_id": "783652917597315077", "text": "RT @NotJoshEarnest: The Clinton Foundation is collecting donations for Haiti hurricane relief, or a nice new house for Bill and Hillary."}
{"tweet_id": "783970973305466880", "text": "Hurricane Matthew created worst humanitarian crisis in Haiti since earthquake w/ ~350k people needing urgent help"}
{"tweet_id": "783734788502859776", "text": "Hurricane Matthew Has Hit Haiti \u2013 Please Help Us Respond"}
{"tweet_id": "783839082648473600", "text": "msnbc: Regaining Strength, Hurricane Pushes Toward Bahamas: Matthew killed at least 19 people in Haiti. Damag"}
{"tweet_id": "783750375169888256", "text": "RT @haitioutreach: #Haiti Outreach is responding to #HurricaneMatthew with water & medical relief. Learn more about our plan & needs!"}
{"tweet_id": "784649359292002304", "text": "RT @jayfeely: distributed 1.5 million meals in Haiti Our Warehouse is empty. 2million meals donated & ready to ship but need funds /"}
{"tweet_id": "783797367258570752", "text": "RT @plureveline: I get goosebumps seeing the damage hurricane Matthew has done to Cuba, Haiti, and Jamaica its absolutely insane my prayer"}
{"tweet_id": "783393218792714240", "text": "PICTURES: 3 dead and thousands flee as Hurricane Matthew slams into Haiti #hurricane #matthew"}
{"tweet_id": "783900032214806528", "text": "Hurricane Matthew: Photos of the Destruction in Haiti: The storm killed at least 25 on its path through the i"}
{"tweet_id": "783550843375218688", "text": "#StamfordGuru Relief Organizations Watching Path of Hurricane in Haiti"}
{"tweet_id": "783820755280605184", "text": "#UPI Hurricane Matthews toll: 19 dead in Haiti; widespread damage: Shawn Price, Andrew V. Pestano and Doug G"}
{"tweet_id": "783429151529308161", "text": "HAITI - 10/4/16 -- A few early photos are starting to come in of the storm damage from Hurricane Matthew as it"}
{"tweet_id": "783738443260108800", "text": "Haiti awaits full assessment of Hurricane Matthew aftermath [VIDEO] - 14,500 persons are displaced after"}
{"tweet_id": "783497536946470912", "text": "Tomorrow mourning you will see the death in Haiti from the Hurricane #clintofoundation stole the relief money it on their hands"}
{"tweet_id": "783872136800632832", "text": "#HurricaneMatthew to be ROUGH on my area & north. Please give to help #Haiti impact & US East Coast. Pray for safety. Be safe!"}
{"tweet_id": "783750156286042117", "text": "RT @citizentvkenya: 17 people killed in Haiti\u2019s hurricane Matthew #CitizenBusiness"}
{"tweet_id": "783925983250296832", "text": "Christian Catholics to the rescue."}
{"tweet_id": "783707214271741952", "text": "RT @TheTropixs: Over 11 deaths related to Hurricane Matthew in the Caribbean, 5 in Haiti"}
{"tweet_id": "783512857686179840", "text": "Maybe people can donate some of the extra food they bought in preparation for the hurricane to Haiti"}
{"tweet_id": "783702603204927488", "text": "gore, clintons, comey ready to launch RELIEF Funds for Haiti as hurricane builds. dems seek opportunities w/civil desasters strike! easy $$"}
{"tweet_id": "783611689577148417", "text": "RT @SheliNBC6: Hurricane Matthew death toll: 2-Haiti 4-Dominican Republic 1-NE Colombia 1-Grenadines Islands @nbc6"}
{"tweet_id": "783403211965292544", "text": "Hurricane Matthew has slammed into the island nation of Haiti today. Please help us save lives."}
{"tweet_id": "783674490672717824", "text": "Yes, and Haiti is still waiting for their charity!!! Earthquake 2010 now Hurricane Mathew, wheres all the \u1f4b0\u1f4b0 #ClintonCash #CrookedHillary"}
{"tweet_id": "783941693687013376", "text": "Hurricane Matthew death toll rises to 23 in Haiti: official: Hurricane Matthew has left 23 dead and three mis"}
{"tweet_id": "783908261468647424", "text": "OBAMAS MESSAGE TO AMERICANS HURRICANE MATTHEW: DONATE TO HAITI - because it worked so well after earthquake"}
{"tweet_id": "783758250680393728", "text": "US #Navy deploys aircraft carrier to help Haiti hurricane survivors."}
{"tweet_id": "783725049995988993", "text": "The Haiti YMCA will be able to support children and families directly impacted by the hurricane. Give today!"}
{"tweet_id": "783984300681105408", "text": "\u2b50\ufe0f #World \u2022 Rescuers battle to reach remote areas of Haiti hit by Hurricane Matthew: Efforts to access worst-"}
{"tweet_id": "783826569538273280", "text": "The hurricane killed 5 people in Haiti \u1f64F"}
{"tweet_id": "783496257054633986", "text": "WATCH :Live at Haitian-American Hurricane Matthew Haiti Emergency Relief Efforts in MIAMI \u2022"}
{"tweet_id": "783395012260147201", "text": "#HurricaneMatthew: -Evacuations in South Carolina -State of Emergency in Georgia -Bridge collapse in Haiti #Matthew"}
{"tweet_id": "783529112568795136", "text": "HELP HAITI NOW >> A generous donor has offered to match donations made for hurricane relief in Haiti. PLEASE GIVE >>"}
{"tweet_id": "783966533525516288", "text": "US military sends help to hurricane-battered Haiti via @Orange News9 : Latest News"}
{"tweet_id": "783517570158714880", "text": "RT @jgsphd: Concerned about suffering in Haiti? Please consider giving to this excellent organization. We do:"}
{"tweet_id": "783920880355127296", "text": "RT @AJENews: Some 80% of homes in Haitis southern province destroyed as Hurricane Matthew marches through the Caribbean"}
{"tweet_id": "783407098654699521", "text": "VIDEO:#HurricaneMatthew deaths sadly reported-Dom Republic,St Vincent,Columbia, Haiti.UNDP working w humanitarians"}
{"tweet_id": "783999927399612416", "text": "RT @Oxfam: Our teams are responding now, delivering aid. You can help: #HurricaneMatthew"}
{"tweet_id": "783679719581573120", "text": "5 people in Haiti died and at least 10 others injured from incidents related to Hurricane #Matthew, per Haitis Civil Protection Service."}
{"tweet_id": "783940510268350464", "text": "Damage assessment begins in Hurricane Matthew\u2019s wake: Haiti (MNN) -- Hurricane Matthew has trudged on from th"}
{"tweet_id": "783924572345266177", "text": "This horrible storm has already devastated Haiti. Ive sent help money. Pray you do the same DJT. #helpHaiti"}
{"tweet_id": "783641994270760960", "text": "The US is bracing for the storm\u2019s impact and a state of emergency has been declared inFlorida, Georgia and South Carolina."}
{"tweet_id": "783431996794105857", "text": "Hurricane would do less damage to Haiti if the #CrookedHillary #ClintonFoundation had done its job. #SpecialReport"}
{"tweet_id": "783418713378844672", "text": "i really do hope the hurricane doesnt do TOO much damage in Haiti"}
{"tweet_id": "783834801379782656", "text": "Hurricane Matthew leaves destruction in Haiti, rips through Bahamas: Hurricane Matthew left a broad swath of"}
{"tweet_id": "783767782265593857", "text": "RT @BeLikeBrit: Video update from Len and Cherylann about BLBs hurricane relief efforts: #Haiti #HurricaneMatthew"}
{"tweet_id": "783739988391268353", "text": "Maybe the #ClintonFoundation should sell Chelseas $4 Million condo in NY to donate to Haiti? @megynkelly"}
{"tweet_id": "783999699049209856", "text": "Our assessments show thousands of houses destroyed or damaged, in #Haiti following #HurricaneMatthew @usatoday"}
{"tweet_id": "783534531294920704", "text": "RT @cctvnews: At least 11 people have been killed by Hurricane Matthew pounding Haiti and Cuba with 230 kph winds"}
{"tweet_id": "783410870072307713", "text": "Omg not again. Im so sorry. I want to donate to help them."}
{"tweet_id": "783587286546079745", "text": "Hurricane Matthew is moving toward the Bahamas and Florida after briefly touching Cuba and wreaking destruction in Haiti"}
{"tweet_id": "783834022090674177", "text": "Hurricane Matthew smashed into Haiti, leaving a trail of devastation and affecting 350,000 Haitians. The country"}
{"tweet_id": "783493456257687553", "text": "RT @hermfritz: #Haitis #infrastructure especially vulnerable as #Hurricane #Matthew hits #floods #landslides @Marketplace @CEEatGT"}
{"tweet_id": "783692167978086402", "text": "RT @Haitian_Pootch: Will be going to Haiti soon to help people that were affected by the hurricane, if you want to donate let me know!"}
{"tweet_id": "783566922247905280", "text": "Hurricane Matthew: San Diego relief workers on their way to Haiti - CBS 8 San Diego: CBS 8 San DiegoHurricane"}
{"tweet_id": "783944326770372608", "text": "#news #International Haiti starting to gauge full damage from Hurricane Matthew\u2019s rampage: Two days after Hur"}
{"tweet_id": "784649065980190720", "text": "As the #HurricaneMatthew death toll climbs, 350,000 people need assistance. Hear directly from our #Haiti staff and see how were helping."}
{"tweet_id": "783751945425133568", "text": "RT @PlanUK: #HurricaneMatthew: were providing relief kits for up to 20,000 families & ensuring vulnerable children are safe"}
{"tweet_id": "783703309186048000", "text": "Hurricane Matthew killed 11 people in Haiti and is now expected to leave the Caribbean and hit Florida, stay tuned. #digitaljournos"}
{"tweet_id": "783689643917242368", "text": "We are raising support for @FoodForThePoor and EMERGENCY hurricane relief in Haiti this week. Wed love your help."}
{"tweet_id": "783986178118692864", "text": "Hurricane Matthew kills at least 23 people in Haiti: The storm is now heading for the Bahamas and is expected to"}
{"tweet_id": "783845072802500613", "text": "Barely 1% of houses left standing - Hurricane Matthew Leaves 10 Dead in Haiti, Cholera Surge Feared - ABC News -"}
{"tweet_id": "783675917990232068", "text": "@EEPhillips_WSJ @racheluranga (1) With the hurricane having destroyed thousands of homes in Haiti, the WFP should purchase excess containers"}
{"tweet_id": "783404372155826176", "text": "@realDonaldTrump @EricTrump @DonaldJTrumpJr @IvankaTrump @KellyannePolls Will Clintons be held accountable for Hurricane Matthew deaths?"}
{"tweet_id": "783875703443816448", "text": "JDC dispatches aid to hurricane-stricken Haiti"}
{"tweet_id": "783610563012231168", "text": "VIDEO - Hurricane Matthew: Death toll mounts as storm hits Haiti with full force, US bracing for arrival"}
{"tweet_id": "783836362789097472", "text": "@Lyricoldrap hey the hurricane has killed 13 people so far for haiti stock up on stuff"}
{"tweet_id": "783693947558178817", "text": "Entire towns destroyed. Reports come in about the severe damage to Haiti from Hurricane #Matthew: #ActOnClimate"}
{"tweet_id": "784698801646817280", "text": "One mans view of water-filled streets and the damage to his house in Leogane, Haiti, due to Hurricane #Matthew"}
{"tweet_id": "783786462432993281", "text": "#HurricaneMatthew #Matthew @CBSNLive Photo gallery of #Haiti damage"}
{"tweet_id": "783735836160331776", "text": "Hurricane Matthew substantially damaged our Haiti Mission Base. Donate now to help with urgent restoration efforts:"}
{"tweet_id": "783882565136490496", "text": "#eNews #EndTimesNews JDC dispatches aid to hurricane-stricken Haiti: American Jewish Joint Via @ArutzSheva_En"}
{"tweet_id": "783771967530885120", "text": "Hurricane #Matthew blamed for 25 deaths; 19 in Haiti, 4 in Dominican Republic, 1 in St. Vincent and the Grenadines, 1 in Colombia"}
{"tweet_id": "783856367383646208", "text": "#ElArcaDeTwitter Hurricane Matthew: Photos of the Destruction in Haiti: The storm killed at #TheArkOfTwitter"}
{"tweet_id": "783867719905058816", "text": "#Matthew Hurricane death toll is at least 25, expected to rise as Haiti and Cuba refine count"}
{"tweet_id": "783539813463027712", "text": "WowHurricane Matthews damage in Haiti really makes me nervous about it hitting home \u1f633\u1f629"}
{"tweet_id": "783400194163421184", "text": "RT @BrendanLilly: Nice to have built up the resources and capabilities to offer assistance during a disaster."}
{"tweet_id": "783406752603729922", "text": "My advice is give your money to the Red Cross. HRCs track record for following through with benevolence isnt all that good."}
{"tweet_id": "783429009401008128", "text": "#SouthCarolina Begins Evacuation of Coastal Areas as Hurricane #Matthew Heads North From Haiti via @GMA"}
{"tweet_id": "784697505946578944", "text": "Hurricane Matthew Death toll reaches 842 in Haiti; storm strikes the US 2: via @YouTube"}
{"tweet_id": "783883956512968704", "text": "16 Dead, 2 Million Affected As Hurricane Matthew Slams Haiti"}
{"tweet_id": "783402679967977472", "text": "RT @DadLibertarian: yeah just dont donate to the Clinton Slush Fund. They didnt do jack shit for Haiti"}
{"tweet_id": "783438681621143552", "text": "So, a severe Hurricane has hit Haiti. It is reported that a bridge collapsed near the southwestern corner of the"}
{"tweet_id": "783870371887853568", "text": "RT @AlishaLaventure: The damage in #Haiti is horrible. The countrys been through so much. Hoping thats the last of #Matthews wrath. http"}
{"tweet_id": "783937108683722752", "text": "@akalamusic This site is says it sends 100% of donations to Haiti."}
{"tweet_id": "783702972199043074", "text": "Haiti being damaged by hurricane after being destroyed by earthquake and the Clinton Foundation!"}
{"tweet_id": "783639547703808000", "text": "and the hospital ship Comfort were all preparing to deploy from the East Coast to provide humanitarian assistance"}
{"tweet_id": "783665339758292992", "text": "Lutheran World Relief Responds to Immediate Needs of Haitians Affected by Hurricane Mat via @reliefweb"}
{"tweet_id": "784697343807545344", "text": "Monster Hurricane Matthew: Haiti death toll reaches 842 as deadly stor via @reddit"}
{"tweet_id": "783853828114440192", "text": "RT @B911Weather: UPDATE: Death toll from Hurricane #Matthew climbs to at least 25, most deaths occurred in Haiti - NBC News"}
{"tweet_id": "783608502015053824", "text": "As Hurricane Matthew makes landfall in Haiti, #UN relief agencies on standby to provide assistance"}
{"tweet_id": "783917851128188929", "text": "#NEWS #WORLD #TrackingMatthew: Hurricane death toll rises to 10 in Haiti \u2014 officials - Jamaica Observer: Jama"}
{"tweet_id": "783426492952899584", "text": "Help us raise money for Food & Hurricane Relief in Haiti!"}
{"tweet_id": "783693570704220160", "text": "Hurricane Matthew Leaves Devastation, Destruction in Haiti #USA"}
{"tweet_id": "783775873052717056", "text": "@SaintAlsCarolyn thanks from Saint Alphonsus Project Haiti Board for coverage of hurricane Matthew. Prayers & donations needed!"}
{"tweet_id": "783385314555531264", "text": "#VIDEO: Category 4 Hurricane #Matthew roars across #Haiti; at least 7 #dead - Oct 4 @ 3:16 PM ET"}
{"tweet_id": "783864451170611200", "text": "Hurricane Matthews toll: 19 dead in Haiti; widespread damage: A NOAA satellite captured this image of Hurric"}
{"tweet_id": "783424296739831808", "text": "RT @USATODAY: Hurricane Matthew has the potential to devastate Haitis towns and villages."}
{"tweet_id": "1002537368207986689", "text": "This week we pay tribute to Air Force and Maryland Army National Guard member, Sgt. Eddison Alexander Hermond. He died last weekend while helping a passerby caught in the Ellicott City, Maryland floods:"}
{"tweet_id": "1001371607598878720", "text": "Massive flooding in Maryland leaves man missing and ruins businesses"}
{"tweet_id": "1004035240384499717", "text": "Lothian, Maryland: 1 person injured. Full report:"}
{"tweet_id": "1001159445194399744", "text": "Flash Flood Tears Through Maryland Town For Second Time In Two Years Less than two years after what had been called a once in a 1,000 years\u201d flood in 2016, Ellicott City, Md., sees its historic downtown ravaged anew. One man remains missing. from Flas"}
{"tweet_id": "1001835900400218112", "text": "Still waiting for Dumbo to recognize the bad flooding in Maryland, and now the treat of a dam breaking there, for him to say something about the people losing their homes in Hawaii,. about instead of 64 deaths from Hurricane Maria, its more like 4,600! . . . Doesnt Care!"}
{"tweet_id": "1001574904729350144", "text": "RT @UnitedHealthGrp: .@UHC and @Optum take action to support people affected by Maryland floods."}
{"tweet_id": "1001155756371136513", "text": "RT @TIME: Police searching for missing person after devastating 1,000-year flood in Ellicott City, Maryland"}
{"tweet_id": "1001879962394050560", "text": "Eight tweets today. Zero about the heroic National Guardsman who died tried to save a woman during the Maryland floods."}
{"tweet_id": "1001243494701195264", "text": "STATES OF EMERGENCY: An urgent search is on for a National Guardsman last seen swept away in flash floods while trying to help others in Ellicott City, Maryland, as dangerous rainmakers threaten millions up and down the East Coast. @David_Kerley reports."}
{"tweet_id": "1001387352542076929", "text": "Rain Rain Rain.\u2614\u1f327\u1f4a7 has been horrendous in Maryland an surrounding areas flooding also hopefully it will ease up!"}
{"tweet_id": "1001289928385449984", "text": "You can also donate to The Ellicott City Partnership! It helps cover damage to the small businesses in Ellicott City, which were hit very hard by the storm."}
{"tweet_id": "1001863567241613312", "text": "Body Of Missing Army National Guardsman Found After Flooding In Ellicott City, Maryland"}
{"tweet_id": "1003636085828665349", "text": "Prevention plans are key for cities at risk of natural disaster damage like flooding. Costly but worth it #flooding #mold #mould #health #news"}
{"tweet_id": "1001448334773575680", "text": "Missing: Maryland National Guard Soldier Eddison Hermond .39, swept away by raging flood waters in Ellicot City, Maryland recent flood. He attempted to save a life then the floodwaters came. St. Anthony of Padua Christ Jesus hear our prayers that Eddison will be found."}
{"tweet_id": "1001164907587538944", "text": "Ellicott City #FLOODING Pictures: Maryland Governor Declares State of Emergency After Severe Flash #FLOODS"}
{"tweet_id": "1001209276826779648", "text": "Rescuers seeking 1 man still missing in Maryland flooding Ellicott City devastated by another flood as rain drenches the Baltimore region"}
{"tweet_id": "1001226873404379136", "text": "The search continues in central Maryland for a man, a National Guard member and Air Force veteran, missing after flash flooding"}
{"tweet_id": "1001140461833150464", "text": "We are here for an update for @GMA Local officials made an announcement just a week ago to try and provide early warning for these flash floods."}
{"tweet_id": "1001844796875530240", "text": "As part of an employee\u2019s Workers\u2019 Compensation benefits in Maryland, an injured worker is entitled to vocational"}
{"tweet_id": "1001514826198220800", "text": "\u00bbMGN-AFRICA\u00ae pin:263789F4 \u00bb Missing Natl Guardsman tried to rescue woman when swept away in flood: Hes a hero: As rushing floodwaters quickly filled the small-town streets of Ellicott City, Maryland, a National Guardsman jumped into \u00bb @wizkidayo"}
{"tweet_id": "1001212592868671488", "text": "Eddie Hermond, a member of the Maryland National Guard, is missing after severe flooding in Ellicott City"}
{"tweet_id": "1001579615192846336", "text": "Tax Relief May Be Available For Maryland Property Owners Impacted By Heavy Rain and Flood Damage: #ECFlood"}
{"tweet_id": "1001206304793296896", "text": "#EddisonHermond missing after catastrophic flood hits #EllicottCity #Maryland; damage believed worse than 2016: #EllicottCityFlood #DMV"}
{"tweet_id": "1001532394950877187", "text": "Maryland is under a state of emergency after flash floods on Sunday. Parts of this bridge in Baltimore Co. washed away."}
{"tweet_id": "1001211097620369409", "text": "RT @LLPOS: Floods in Maryland are devastating. Be careful and safe."}
{"tweet_id": "1001269150600212480", "text": "\u2018Catastrophic\u2019 flash floods rip through Maryland toppling building and turning high streets into rivers #Topbuzz"}
{"tweet_id": "1001477538525331456", "text": "New aerial footage shows widespread devastation in Ellicott City, Maryland, after flash floods swept through the area, tearing through buildings and tossing cars as rescue workers desperate search for a missing National Guardsman."}
{"tweet_id": "1001514373205151745", "text": "Still awaiting identification, but Sgt. Eddison Hermond of the Maryland Army National Guard had been missing in the aftermath of the terrible flooding in Ellicott City. He was helping a woman rescue her cat when witnesses say he went under the water and didnt resurface."}
{"tweet_id": "1001154804658286597", "text": "What is happening to the infrastructure in New England? It isnt global warming, its misappropriated funds being abused that shouldve been used maintaining their infrastructure that couldve protected them from floods! Like New Orleans. Their mayor went to \u1f447#Maryland #floods"}
{"tweet_id": "1002978325269286917", "text": "Temple Hills (Camp Springs), Maryland: 1 person killed and 1 person injured. Full report:"}
{"tweet_id": "1001376222251712513", "text": "Maryland Flash #FLOODS: National Guardsman Missing After Getting Swept Away While Rescuing Cat #GPWX"}
{"tweet_id": "1001336319732277249", "text": "Flash floods again rip through Ellicott City, Maryland. Maryland Gov. Larry Hogan declared a state of emergency Sunday in Howard County. Alberto could contribute additional flooding in the next few days."}
{"tweet_id": "1001323647695507457", "text": "People in Ellicott City, Md., are surveying the damage to their homes and businesses after a historic flash flood raged through the city \u2014 the second in as many years. NPR\u2019s Mary Louise Kelly talks with Mark Hemmis, whose restaurant Phoenix Emporium was"}
{"tweet_id": "1001298205366280196", "text": "After heavy rain and flooding across our region yesterday, please stay safe around flooded areas. Follow guidance from your local officials and stay away from flood waters"}
{"tweet_id": "1001185240256311296", "text": "CBS News: Ellicott City floods: Maryland officials assess destruction, search for missing man in 1,000-year flood. via @GoogleNews"}
{"tweet_id": "1004054229462503424", "text": "RT @SimplySelvinn: Simple RT can help find my little cousin.. missing in Maryland"}
{"tweet_id": "1001180876548591618", "text": "I liked a @YouTube video BREAKING: Devastating flooding strikes Ellicott City, Maryland"}
{"tweet_id": "1002709154711076866", "text": "Unpopular opinion: no. People have died the past 2 floods and there is also no guarantee it won\u2019t happen again. Sorry, EC. You were great, but this is goodbye."}
{"tweet_id": "1001456447245336576", "text": "Flash Flooding Wreaks Havoc In Ellicott City\u00b8 Maryland"}
{"tweet_id": "1001178904617476098", "text": "@CBSNews Our Harts gos out to a Fellow Soldier missing in Maryland as he was HELPING Others, the fast moving Water Consuming him. Well all on the island are praying for the missing Soldier in Maryland."}
{"tweet_id": "1001421891322695680", "text": "Army National Guardsman missing after being swept away in Maryland floods"}
{"tweet_id": "1002964603213496320", "text": "\u26a0\ufe0fStorms and downpours are forecast to develop across #Maryland from Tomorrow morning, creating more risks of dangerous flash #flooding less than a week after a deluge killed one person and caused widespread damage from #EllicottCity to #Baltimore."}
{"tweet_id": "1001453284400484353", "text": "Top story: Maryland floods: The city where roads turned to rivers - BBC News , see more"}
{"tweet_id": "1001192363719618561", "text": "Elicott City, Maryland, struck by catastrophic flooding; 1 missing."}
{"tweet_id": "1001460350691172353", "text": "@DrewMacFarlane National Guard Member Missing After Floods Devastate Ellicott City, Maryland via @nbcwashington"}
{"tweet_id": "1003648875402547200", "text": "Female Injured After Grease Fire in Lexington Park | Southern Maryland News Net"}
{"tweet_id": "1001703259265003520", "text": "Retweeted ABC News (@ABC): National Guardsman found dead two days after being swept away attempting to rescue woman from Maryland floodwaters."}
{"tweet_id": "1001179909245587456", "text": "CRAZY VIDEO. Roaring flash #floods struck a #Maryland city Sunday that had been wracked by similar devastation two years ago, its main street turned into a raging river that reached the first floor of some buildings and swept away parked cars, authorities and witnesses say."}
{"tweet_id": "1002279603241615361", "text": "Maryland #Hurricane Evacuation Study is currently in its 2nd of 3 years to map areas vulnerable to storm surge with help of 17 jurisdictions. Helping plan, communicate and evacuate during #flooding. Speakers from @MDMEMA @FEMAregion3 @USACEBaltimore #KnowYourZone #MDEMA2018 "}
{"tweet_id": "1001409689974902784", "text": "RT @KATVKaila: Flash flooding caused devastation in the streets of Ellicott City, Maryland."}
{"tweet_id": "1001241227818405888", "text": "An Army national guard volunteered to help a woman during a flood in Maryland. Now, he\u2019s missing."}
{"tweet_id": "1001446202796277761", "text": "On Sunday, Elliott City and several surrounding areas in Howard County, Maryland suffered devastating flash floods. Here are some ways you can help and/or get help via @baltimoresun"}
{"tweet_id": "1001523591056379904", "text": "Very sad news. Eddison Hermond was attempting to rescue a shopkeeper when he got swept away and has now been found dead. He was also a National Guardsman and Air Force veteran. It seems he never stopped trying to help people and serve others."}
{"tweet_id": "1001232053893988359", "text": "Gut-wrenching devastation | An exclusive walk down Main Street in Ellicott City after catastrophic flooding (Via WUSA9)"}
{"tweet_id": "1002279312312229891", "text": "#Pennsylvania had the highest average number of deaths per year from #carbonmonoxide with 75 fatalities in the 2011-2015 period of any state. This number was 10 in #Maryland, 8 in #Virginia, and 6 in WestVirgina. @eparegion3 #fatalities #healthyhomes"}
{"tweet_id": "1001432796978667520", "text": "Memorial Day weekend floods ravage Maryland town"}
{"tweet_id": "1001155505459486722", "text": "SOLDER MISSING IN FLOOD.. PRAY FOR EDDISON HERMOND! PRAY FOR ELLICOTT CITY, MARYLAND! #PrayForEddisonHermond #PrayForEllicottCity"}
{"tweet_id": "1001236424891469825", "text": "RT @NBCNightlyNews: Flash floods ravage Ellicott City, Maryland; National Guardsman goes missing."}
{"tweet_id": "1001251398510612480", "text": "ATTN: #FloodNews #Raining State of emergency declared for Maryland flooding"}
{"tweet_id": "1002872971277553664", "text": "Flooding And Rising Seas Threaten Americas Oldest Farmland Some of the oldest farmland in America is on the Eastern Shore of Maryland. But as sea levels rise, saltwater is killing crops and threatening a way of life. June 02, 2018 at 03:58AM"}
{"tweet_id": "1001498151981793280", "text": "Search underway for missing guardsman after Maryland flood: May 29 (UPI) -- A search is underway for a 39-year-old National Guard member who was swept away while trying to rescue people during violent floods in Maryland. - UPI"}
{"tweet_id": "1001394889974743042", "text": "#Maryland flash floods sweep away National Guard member who was helping woman rescue her cat"}
{"tweet_id": "1002208017083969543", "text": "#Alerts- Once again another #FlashFlood Watch is in place for much of central #Maryland and @Mountain_MD this evening. Flash flood guidance suggest 1-2 in a 1 to 3 hour period will cause flooding concerns. Stay #weather aware this evening. #mdwx @WMAR2Weather"}
{"tweet_id": "1002297742004285445", "text": "parts of Frderick & Washington counties in Maryland are under a FLASH FLOOD WARNING until 815 PM. some rivers, streams and creeks are expected to quickly rise causing some flooding shortly. Be alert and avoid high water! @wusa9 @TenaciousTopper #WUSA9Weather"}
{"tweet_id": "1001447886582960128", "text": "MISSING | PLEASE SHARE: An aggressive search continues Tuesday for 39-year-old Eddison Eddie Hermond who was helping others during the height of Sundays raging flood in Ellicott City, Maryland when he disappeared into the water. #EllicottCityFlood"}
{"tweet_id": "1002189162412376064", "text": "Maryland weather: More flooding risks through Saturday, with rain in forecast and ground already saturated - #eWeatherNews #LatestComments"}
{"tweet_id": "1001193418113118211", "text": "It was a pretty chaotic scene when we arrived on scene. We had multiple people trapped in vehicles and in buildings. They were obviously our first priority, first responder says on rescue efforts in Ellicott City, Maryland"}
{"tweet_id": "1003861851115941891", "text": "Man missing after 1,000-year flood ravages Ellicott City for 2nd time in two yearsat what point will the US acknowledge the climate is changed?"}
{"tweet_id": "1001508059829751808", "text": "39 year old Eddison Hermond has been missing since Sunday after attempting to aid others after a massive flood in Ellicott City, Maryland."}
{"tweet_id": "1001199521228042245", "text": "Indiana County woman critically injured in jet ski collision in Maryland"}
{"tweet_id": "1001568880941326336", "text": "VCA Animal Hospitals Offers Free Boarding for Pets Affected by Flooding in Maryland"}
{"tweet_id": "1001720092722376705", "text": "\u2018Beyond rescue\u2019: Ellicott Citys bizarre, rainless flood and its deadly 20-foot wall of water On July 24, 1868, the thunderstorm looming to the west never hit the Maryland mill town. But the raging waters of the Patapsco did, leaving at least 43 people dead."}
{"tweet_id": "1001182906130280448", "text": "Thank you to the first responders who are taking swift action to aid the Ellicott City community. The entire Maryland Delegation is working with @FEMA to bring in federal resources. If you\u2019re in the area, please follow the guidance of local authorities and @MDMEMA."}
{"tweet_id": "1001482893028397056", "text": "Maryland flash flooding: Incredible images show historic Ellicott City ravaged by floodwaters #Maryland"}
{"tweet_id": "1001821646007697413", "text": "A lot of businesses in Maryland were heavily impacted by the heavy rain and flood damage from last weeks storms. Tax relief may be available, MD SDAT encourages residents to apply. For more information visit"}
{"tweet_id": "1001231665606414341", "text": "MORE: 1 missing after flash flooding devastates Ellicott City, Maryland: It rose so quickly it was unbelievable"}
{"tweet_id": "1001289525270757376", "text": "A man who went missing after flash flooding hit a central Maryland city was trying to help a woman rescue her cat amid the rising waters."}
{"tweet_id": "1001506483849359360", "text": "Authorities in Marylands Howard County have issued what theyre calling a precautionary health alert after a sewage main broke following torrential rains that prompted destructive flash flooding."}
{"tweet_id": "1110748157955194880", "text": "Due to horrible floods, damage to crops and lost livestock has cost Midwestern farmers lots of money. With so much loss, staying in business will be a struggle for the future. #ANS211"}
{"tweet_id": "1112357492191911936", "text": "#MidwestFlooding2019 threatens #water safety of more than a million water wells. The National Ground Water Association estimates that people living in 300+ counties across 10 states have groundwater threatened from #bacterial and #industrial_contamination"}
{"tweet_id": "1112157147465281537", "text": "As I stated earlier I started a gofundme for American Farmers and Ranchers in Nebraska. If you want to help but dont feel comfortable donating please visit Nebraska Dept of Agriculture there is info about how you can help in other ways. Please Support our Farmers and Ranchers."}
{"tweet_id": "1112583005279842304", "text": "The trucks that left North Dakota carrying hay and other supplies for flood victims arrived in Nebraska Saturday night."}
{"tweet_id": "1110997301152100353", "text": "Iowa/Nebraska folks: what organizations would you recommend for folks looking to give donations for flood relief in our neck of the woods? Asking for a friend. Ive recommended @ELCALDR but Im hoping yall have some additional worthy folks you know could put $$ to good use."}
{"tweet_id": "1113228967467790336", "text": "Also, before our fundraiser ends at 10 p.m. CST tomorrow, donate $5 or more to the GoFundMe in our bio to receive a free Happy Hour News sticker in the mail and a special surprise on the show. All donations will go to Nebraska Community Foundations #BankonNebraskaStrong."}
{"tweet_id": "1112441785073176576", "text": "Weve deployed staff members to Nebraska to aid in response efforts to the devastating floods occurring in the Midwest. Find your local service center to learn more about USDA programs that can help your agricultural operation recover -"}
{"tweet_id": "1112693479749140481", "text": "Hay Convoy, Destination Nebraska Flood Relief"}
{"tweet_id": "1110623374005415938", "text": "@GOP The flooding, just in Nebraska, turned a river into an ocean. $1B in livestock and crop losses alone. Houses evacuated, people fled to shelters. If this happens again and again there is no recovery. "}
{"tweet_id": "1112460468814258176", "text": "\u2764\ufe0f \u1f4aA\u1f3fB Did you purchase your #NebraskaStrong t-shirt yet from Sunset Plaza\u2019s Buckle? Stop in and purchase OR special order yours today! More shirts arriving Monday! All proceeds go to Nebraska\u2019s American Red Cross! #bucklebelieves #nebraskastrong #visitnorfolkareane #norfolknow"}
{"tweet_id": "1110874468728094720", "text": "The Nebraska Statewide Tornado Drill is today (Wednesday, March 27th) starting with a Test Tornado Watch at 9 am MT/10 am CT, and followed by a Test Tornado Warning at 9:15 am MT/10:15 am CT! #newx #SeverePrep"}
{"tweet_id": "1110752661266149377", "text": "Weve seen devastating flooding in Nebraska and the Midwest. The National Credit Union Foundation is distributing funds to the Nebraska Credit Union League through the CUAid General Disaster Relief Fund to assist CU people affected. Learn more:"}
{"tweet_id": "1110653075285372928", "text": "The storm surge damaged hundreds of properties in both states and has been blamed for two deaths in Nebraska and one in Iowa."}
{"tweet_id": "1111025112453517313", "text": "Labor union collecting cleaning supplies in Grand Island for flood victims #GrandIsland #Nebraska #GIIndependent \u1f517"}
{"tweet_id": "1111719290334519297", "text": "This is the America I know & love! \u1f1fA\u1f1f8 Heres our Wisconsin farmers sending hay to the Nebraska farmers effected by the floods. Look at all the American flags God bless our farmers! \u1f647\u200d\u2640\ufe0f"}
{"tweet_id": "1111105407714500608", "text": "Every single #Nebraska volunteer has an impact. @NebToday spoke with @NU_PPCs research specialist Ryan Lowry about volunteer efforts after the recent flooding around Nebraska. #NebraskaStrong"}
{"tweet_id": "1111644450827239424", "text": "Learn about how to protect your home from floodwaters as floods become more common via @USATODAY"}
{"tweet_id": "1110904304590704641", "text": "As part of Severe Weather Awareness Week, there will be a statewide tornado drill today at 10 a.m. @LaurenKummerNTV tells us how you can prepare if youre caught in severe weather."}
{"tweet_id": "1110261532250783744", "text": "IRS announces tax relief for #Nebraska victims of severe winter storm, straight-line winds & flooding. Those who reside or have a business in Butler, Cass, Colfax, Dodge, Douglas, Nemaha, Sarpy, Saunders & Washington counties may qualify for tax relief."}
{"tweet_id": "1112746190683164673", "text": "Faith groups helping after historic Nebraska floods"}
{"tweet_id": "1111259557970485248", "text": "The State of Nebraska and the Federal Emergency Management Agency will open their first Disaster Recovery Center tomorrow in Douglas County."}
{"tweet_id": "1111644782621851648", "text": "*UPDATE* The Winter Weather Advisory now includes several additional counties in western Nebraska until 1 AM CDT Saturday morning. Areas of heavy snow/mixed precipitation may continue through the day. Use extreme caution if driving in these conditions. #NEwx"}
{"tweet_id": "1111020236201811968", "text": "@Nebraska Help us get former all time great Husker running back Roger Craig into the Hall of Fame! Please retweet this petition to get the word out!"}
{"tweet_id": "1111857411919212544", "text": "American Farmers and Ranchers impacted by the floods in Nebraska Click to Donate: via @gofundme"}
{"tweet_id": "1112762371502682113", "text": "Sidney Public Schools Pre-K through 8th grade raised $1,289.71 for kids school supplies, clothing and shoes. The high school raised $362 for the Nebraska/Southwest Iowa Red Cross."}
{"tweet_id": "1111299398598828032", "text": "Countless hogs, calves, and chickens were killed. Iowa is estimating $1.6 billion in losses, Nebraska $1.3 billion.\u201d Springing into action, Senate puts forth LifeVests4all bill as it votes down #GreenNewDeal. "}
{"tweet_id": "1111324725597360128", "text": "ASK the EPA How many Toxic Radioactive SuperFund Sites in Nebraska were FLOODED? polluted radioactive flood water & WE ALL LIVE DOWNSTREAM"}
{"tweet_id": "1110523743208697858", "text": "A major Air Force base was damaged in the Nebraska flood Has @realDonaldTrump talked about anything but himself? #MSNBC @cspanwj #foxnews"}
{"tweet_id": "1110662851037982720", "text": "Walgreens supporting relief efforts across Iowa and Nebraska #pharmacists #pharmacy #health #healthcare"}
{"tweet_id": "1110973702852759552", "text": "@Sky_Lee_1 @BluePirate_ @HouseGOP @KassandraSeven @BonniBK @amvetsupport @SnowBiAuthor @DemocracyStorm @electroboyusa @ellievan65 @Katpa73 @ShuriResists @DanaScottlo Am in Nebraska 16 miles from Offutt AFB can confirm the flooding. Pentagon Federal Credit Union just donated to the Squadron in question I believe $100000.00 for flood relief. To my knowledge they are the 1st private donation for this project and federal funding is in ?"}
{"tweet_id": "1111326686493200385", "text": "Through my 4 years at Nebraska I met some of the nicest people in my life and I cant believe what they are going through right now. If you can, please consider helping them out by donating to the Red Cross and the flood relief - (844) 278-8555. #NebraskaStrong"}
{"tweet_id": "1110910628154273794", "text": "The EDF is still collecting Disaster Relief donations in response to devastating flooding in Iowa & Nebraska. These donations benefit employees of equipment dealerships who are impacted by the flooding. @INEDAssoc will match donations made by any of their dealer members."}
{"tweet_id": "1110949565694398464", "text": "CSC\u2019s Beta Beta Beta sent a pickup truck worth of donations from the campus donation boxes to Wahlstrom Ford last week to be sent on to Fremont, Nebraska, for flood relief. Donations will be collected over the next 2 weeks for Spencer, Nebraska, and to Pine Ridge, South Dakota."}
{"tweet_id": "1110656778113560582", "text": "@lutzviewfarms is working on getting a load of hay and other supplies together to go to Nebraska. Feed and even household goods are welcomed. If you would like to help John in this effort, please contact him directly for more information at: (734) 320-1969."}
{"tweet_id": "1111248757230845952", "text": "RVHS & RVES: Remember the KAY coffee bar this morning! All proceeds go to help the flood victims in Nebraska!"}
{"tweet_id": "1110267333522669569", "text": "Would love to help this displaced family of six from the #nebraska floods get into a hotel. Every little bit helps! Thank you for considering. #NebraskaStrong"}
{"tweet_id": "1112186396733784065", "text": "From volunteer reception centers to shelters for survivors to non profit partner FOBs, @itdrc has been on the move across Nebraska and Iowa this weekend working to connect communities in crisis. #CommIsAid #NebraskaStrong #IowaStrong"}
{"tweet_id": "1112516852041895939", "text": "Attention members!!!! This week we are taking donations of items from the list attached to help with the tragedy in Nebraska. Any donation is appreciated. This will begin tomorrow 4/1/19!!!!"}
{"tweet_id": "1111296325910437888", "text": "Weve had a little water there since you were there, Strategic Command chief Gen. John Hyten tells Liz Cheney. Offutt AFB in Nebraska, STRATCOMs home, saw major flooding this month. Hyten says STRATCOM is doing fine though Offutt has serious damage."}
{"tweet_id": "1113068931361763328", "text": "Blue 84 is partnering w/The University of Nebraska Athletic Department (@Huskers ) to help raise $ for thousands of flood victims across Nebraska. One StateOne Heartbeat\u201d summarizes the emotions felt by Nebraska Husker fans statewide from this spring disaster. \u2764\ufe0f #community"}
{"tweet_id": "1111084281600921600", "text": "@CNN I dont think this deserves National Attention. Maybe you should tell everyone hamburger, sugar, corn, potatoes, bacon, and other prices are gonna skyrocket thanks to the over billion dollars in damage my state of Nebraska has experienced by that storm!"}
{"tweet_id": "1111357294485213184", "text": "According to the USDA, flood impacted families could now be qualified for federal food benefits, if they meet the disaster income requirements."}
{"tweet_id": "1112896253384450053", "text": "Matthew 25: Ministries recently responded to disasters in the U.S., including tornadoes throughout the Southeast and widespread flooding in Nebraska. Thank you to our amazing volunteers"}
{"tweet_id": "1111405122444120066", "text": "The University of Nebraska Omaha Love Your Melon Crew sure knows how to make kids happy \u2013 with potato chips and fruit (don\u2019t worry, other food was served)! Thank you for your continued support of #MealsThatHeal!"}
{"tweet_id": "1110241642798301184", "text": "For every birdie he makes this week @LouisianaOpen, Scott Gutschewski (@S_Gutschewski) will donate $25 in support of flood relief in his home state of Nebraska. #LiveUnderPar"}
{"tweet_id": "1112406505955852288", "text": "@Adam_Morfeld @nealobermeyer Adam, Ive been Nebraskas volunteer ombudsman since I graduated from UNL moved to LA 19 years ago. Im not being hyperbolic when I say elected officials like Gov Ricketts and socially backwards policies give people a genuine fear of living in the Midwest. Keep up the good work."}
{"tweet_id": "1110730503580061696", "text": "Extreme weather has again damaged a major military base via @voxdotcom Wow"}
{"tweet_id": "1111115904560103424", "text": "last I checked FEMA is being used in assistance to the flooding in Nebraska so you may want to check your facts before you want to bash the president or the people who voted for him. Also my original tweet had nothing to do with either but yeah I agree how great they both are \u1f44D"}
{"tweet_id": "1111719447419670529", "text": "@PCS_Pride #FFA is joining forces with other FFA chapters across the state of Nebraska. Funds raised from the sale of these T-shirts will be used to help FFA members and chapters that suffered losses, due to the recent flooding. #NebraskaStrong"}
{"tweet_id": "1113108646626541568", "text": "Scott Frost Announces Shirt Being Sold For Nebraska Flood Relief"}
{"tweet_id": "1110896607841714177", "text": "No stream tonight. Going to a fundraiser for the flood relief here in Nebraska. Will resume Thursday evening. \u2022 \u2022 \u2022 #mixerstreamer #mixer #streamer #flood #nebraskastrong"}
{"tweet_id": "1110562626268913664", "text": "All profits from the sale of this T-shirt will be donated to the Nebraska Farm Bureau Disaster Relief Fund\u201d. Click here: +"}
{"tweet_id": "1113167777236434953", "text": "\u2705 Nebraska Farm Bureau Disaster Relief Fund - - Providing emergency aid to NE farmers, ranchers & rural communities affected by recent flooding. \u2705 350 - - Standing up to the fossil fuel industry & promoting clean energy for all."}
{"tweet_id": "1111863697700462592", "text": "#Nebraska and #IowaFarmers have been devastated by #2019Flooding. Many farmers lost outbuildings, feed bins, bulls and calves. You can help them rebuild. Please click the link for more details."}
{"tweet_id": "1113133240825524224", "text": "Jeremiah Hayes one of the guys who helped us at Triton Relief Group and busted his butt is now helping families in Nebraska that have suffered from the flooding there! Please take a moment and consider supporting him to help this family in a time of"}
{"tweet_id": "1111021202942902272", "text": "Students and staff from Rumsey Station Elementary School spent time doing a tornado drill this morning! Principal Dan Kauk is encouraging all parents to use this week (Nebraska Severe Weather Awareness Week) to go over tornado drills at home."}
{"tweet_id": "1110634769019211776", "text": "We are proud to team up with our fellow John Deere dealers in Nebraska to contribute $60,000 for recent disaster relief. This donation is being distributed to a variety of programs aiding farmers, ranchers and"}
{"tweet_id": "1111577365489111040", "text": "Yooooo. MegachopCEO is doing a stream for his buddy that lost everything in a flood in nebraska 100% of his donations are going to that family. Can we go in and show some dlove??? Drop some donations..@1lastround @legendsqueeniee @Toro_Time @OfficialDLive @DLiveFamily"}
{"tweet_id": "1112784034382446592", "text": "We are at the Herbster Angus Farms Bull Sale In Marysville, KS. @CWHerbster has agreed to donate the profits from the sale of his world famous record setting bull \u2018America\u2019 to Nebraska Flood Relief efforts. #nebraskastrong #auction #NowTen"}
{"tweet_id": "1110854432621649921", "text": "As severe weather season arrives we are excited to announce our First Alert Weather app available on both iphone and android devices. A great tool to stay up to date on the ever changing weather conditions we face here in central Nebraska."}
{"tweet_id": "1112794114985222144", "text": "Be careful, #Nebraska, or we may just end up with the same type of assistance from Trump that he gave to #PuertoRico. #NebraskaFlood #NebraskaStrong"}
{"tweet_id": "1110992719302795269", "text": "Couple #NebraskaFlood2019 updates: --From @NebraskaDOT, work beginning on flood-damaged roads in NE #Nebraska: --From @NE_DOL, disaster unemployment assistance available: @NETNebraska"}
{"tweet_id": "1111377640206688259", "text": "Millions of bushels of wheat, corn, and soybeans have been destroyed by the flooding so far, and thousands of farmers will not plant crops at all this year. And the livestock losses that we have already experienced will be felt for many years to come."}
{"tweet_id": "1111611318920986624", "text": "RT @Nebraskagov: Help out those in need from the #NebraskaFlood with donations and resources @"}
{"tweet_id": "1111847935225065473", "text": "#Nebraskafloods2019 damaged dozens of levees throughout the region. We fly with the #Nebraska @CivilAirPatrol to evaluate the levee system & see first hand whats being done to secure against future catastrophes. @WOWT6News #Exclusive @RogerHamer1"}
{"tweet_id": "1111289542718287873", "text": "@adapt2030 excellent drone footage of flood damage in Nebraska 2019 with plenty of details."}
{"tweet_id": "1111005776255033344", "text": "It started out as a convoy 18 strong from northeast Ohio, and it grew as the trucks drove toward Nebraska. Vehicles from across the United States are converging on the flood-ravaged state, filled with hay, livestock feed, food and household goods."}
{"tweet_id": "1110534266180509696", "text": "Flooding and Ice Nebraska Iowa Damage 032519"}
{"tweet_id": "1110451589091737600", "text": "Repair of flood-battered Northeast Nebraska roads to take time"}
{"tweet_id": "1110508333180616704", "text": "Catholic Charities of Central and Northern Missouri\u2019s national partner, Catholic Charities USA, is coordinating donation relief efforts for those impacted by flooding in Nebraska, Iowa, and Missouri. 100% of donations go directly to"}
{"tweet_id": "1110800449580515331", "text": "WATCH: As the @NEarmyguard surveys the damage left behind from flood waters in #Nebraska. The Guard says they hay to livestock left stranded by flood waters. #flood #NEwx"}
{"tweet_id": "1110851006802337792", "text": "This is Severe Weather Awareness Week in Nebraska and Iowa. Today at 10:00 AM CDT a test Tornado Watch followed by a test Tornado Warning will be issued. Take time to participate in this drill and find your safe location in severe weather, it could save your life. #Omaha #newx"}
{"tweet_id": "1111406959150792704", "text": "@SoledadIzquier7 @tennorman @SenRickScott @SenSchumer @CarmenYulinCruz You are so wrong. We all pitch in the to the central funds(pot of money) to be distributed as necessary when a need exceeds a local communities ability. Sometimes Florida needs help; sometimes Nebraska needs help. It\u2019s not pay-to-play."}
{"tweet_id": "1110547073131339776", "text": "#NebraskaFlood Tip>>Nebraska 211 The Heartland United Way 211 is a resource for information including shelter needs, cleanup, food, clothing, etc. If you cannot reach them by dialing 211, please call 866-813-1731. @UNLExtension"}
{"tweet_id": "1111765210006728704", "text": "RT @eaglebroadband: Help our neighbors in Nebraska and donate one for flood relief online at ."}
{"tweet_id": "1111075714449788928", "text": "@Bethenny Is #BStrong going to help Nebraska? Justin Timberlake just donated. My town was an island and only way out was by plane!! So many people still need help! We are not just flyover country. Dont forget about us!"}
{"tweet_id": "1111737961681293313", "text": "Disaster Unemployment Assistance Available to Workers Impacted by Floods Application Deadline is April 26, 2019 Nebraska Labor Commissioner John H. Albin announced today that workers who became unemployed as a direct result of flooding"}
{"tweet_id": "1111355807382294531", "text": "In case you need a reason to have a drinkNebraska Strong Red Ale will be available at breweries across the state next month with proceeds going to disaster relief efforts."}
{"tweet_id": "1110982610401050625", "text": "Our bill includes $3 billion for agriculture disaster relief and additional funds for Georgia and other states like Florida, Alabama, the Carolinas, Alaska, Hawaii, California, Iowa, Nebraska, Missouri, and Kansas that have battled natural disasters over the last year."}
{"tweet_id": "1110268446913097729", "text": "Areas in Nebraska are still inaccessible, so we mobilized a food delivery on ATV! Nebraskans Jane & Greg helped deliver hot soups & sandwiches to 80 people inside of Kings Lake off Ridge Road. WCK\u2019s Matt strapped them to Greg\u2019s vehicle for the ride in! #ChefsForNebraska"}
{"tweet_id": "1110698815298768896", "text": "US weather: Midwest braces for further floods after deadly storms hit Nebraska and Iowa - FiWEH Life -"}
{"tweet_id": "1110964383478353922", "text": "Redwood area cattlemens are matching up to $500 of donations to Nebraska Cattlemens affected by the flood at the steak fry Saturday."}
{"tweet_id": "1113101356523511808", "text": "Inspired by a social media post from a family member, a Fort Dodge woman is gathering donations to help people impacted by flooding in Nebraska and Iowa."}
{"tweet_id": "1112885082820407298", "text": "The Salvation Army of Genesee County EDS Team arrived in Nebraska & Iowa today to assist with this devastating disaster. Please keep all those affected by floods in your prayers."}
{"tweet_id": "1111803129924849665", "text": "Kevin and Kendra Schmidtke spearheaded a collection of much-needed supplies, from hay to horse feed to hygiene items, through area businesses for the NEIA Drop Spot in"}
{"tweet_id": "1110623574140829697", "text": "The John Deere agricultural dealers in Nebraska have teamed-up to contribute $60,000 for Disaster Relief. The donations are being distributed to a variety of programs aiding farmers, ranchers and rural communities. #johndeerestrong"}
{"tweet_id": "1111863460680384512", "text": "Nebraska Gov to FEMA: Prelim damage = $439m in infrastructure damage, $85m to private homes & businesses, 2,067 homes, 341 businesses damaged of lost, $400 million in cow/calf losses, and $440 million in crop losses #NebraskaFlood @ABAYLD @ABAesq @disaster_legal @GovRicketts"}
{"tweet_id": "1112750977461952512", "text": "North Dakota ag producers help Nebraska flood victims"}
{"tweet_id": "1111350937468186629", "text": "Nebraska Floods: How to Help Tribes, Farmers & Ranchers Recover"}
{"tweet_id": "1111325243430354944", "text": "I\u2019m grateful I\u2019m able to be donating my time today with the @RedCross to help with the #NebraskaFlood disaster. I\u2019m proud to live in Nebraska and blessed I have the privilege to assist in anyway I can \u2764\ufe0f #areyouwithus #NebraskaStrong @mirandajostark @nilcra1910"}
{"tweet_id": "1113067412276957184", "text": "@realDonaldTrump Meanwhile in Nebraska the State and people are professionally handling historic flooding and damage without politics and corruption."}
{"tweet_id": "1110634537871130624", "text": "Salvation Army helping flood victims along 300-mile corridor - Omaha World"}
{"tweet_id": "1110529869392302080", "text": "Flood relief shirts! Here is the order form. 100% of profit wiil be donated to Nebraska flood relief. Be kind. Pleass pay it foeward!"}
{"tweet_id": "1110745759035654147", "text": "Today, there will be a statewide tornado drill at 10 a.m. Heres how you can prepare for severe weather this season:"}
{"tweet_id": "1111289872277520384", "text": "NASA photos capture immense flooding of a vital U.S. Air Force base In 1948, Air Force Secretary Stuart Symington stationed the United States long-range nuclear bombers at Offutt Air Force Base in eastern Nebraska, a lo via @Mashable #Technology #nerd"}
{"tweet_id": "1110313891656093696", "text": ". NTV News and our sister stations are raising money for flood victims. Thanks to help from local businesses and organizations, the first $500,000 will be matched."}
{"tweet_id": "1110708013244055552", "text": "A Kansas nurse is using her skills to travel to Nebraska for the next six months to help those affected by devastating floodwaters."}
{"tweet_id": "1112785484105895936", "text": "Gravel roads are gone and so are 11 state bridges. The amount of livestock lost is still unknown. This update comes to us from a fellow farm broadcaster on the ground in Nebraska."}
{"tweet_id": "1111058651668570112", "text": "#Nebraska & #Iowa. Weve offered assistance w/shower/laundry, flood recovery (mud-out), & feeding. However, well need to wait until flood waters recede - possibly several weeks. Since our equipment is has been scheduled for maintenance 2/4"}
{"tweet_id": "1111298048330747904", "text": "Barn Town + @krosstrainbeer collab for Iowa & Nebraska flood victims. April 13, 2019 at Barn Town. $2 from every NEIGHBORS BEING NEIGHBORS pint will go to the relief fund. Come out and drink some beer for a good cause!"}
{"tweet_id": "1111273486553620480", "text": "@MicheleBrazelt1 @js_conservative @AOC Nebraska and parts of Wisconsin are badly damaged."}
{"tweet_id": "1113232115817111552", "text": "Woman buys out closing shoe store for Nebraska flood victims"}
{"tweet_id": "1110545301012729857", "text": "Nebraska has been devisteated by snow, ice jams and unprecidented flooding. There is the physical damages and agricultural damages, but there are also the mental and behavioral health damages and public health damages that longer behind headlines. #prep19 #NebraskaStrong"}
{"tweet_id": "1110950506116116482", "text": "Stopped at the Dows Junction on their way to help our neighbors in Nebraska. #Flood2019 @LathamSeeds #iawx"}
{"tweet_id": "1110921308831969285", "text": "The National Weather Service will conduct a test tornado drill across Nebraska and Iowa on Wednesday, March 27. NWS will treat its FCC-approved broadcasts as if it were a real tornado warning. The backup dates"}
{"tweet_id": "1111062307784847360", "text": "Ell-Saline FFA helping with the Nebraska flood relief. Donations of livestock supplies"}
{"tweet_id": "1110934769997615105", "text": "When you purchase a general admission ticket for the Pioneers vs Fremont Moo game and use promo code \u2018Relief\u2019, 50% of your purchase will go directly to the Nebraska flood and tornado relief efforts."}
{"tweet_id": "1111662082188038146", "text": "#IronHeroCrossFit taking on #OpenWOD 19.5! Also, #ThankYou to everyone who donated something to flood relief with @OmahaRapidResponse! Special shoutout to the #IHCFFamily who is out there and hands on helping right now! #HWPO #CrossFit #Omaha #Nebraska #NebraskaStrong"}
{"tweet_id": "1112842077082173440", "text": "#Huskers raising money to help folks affected by recent flooding in the state."}
{"tweet_id": "1111799411552718848", "text": "Help animals affected by the devastating flooding in Nebraska. We\u2019ll donate 100% of your purchase price to @nehumanesociety\u2019s animal flood relief efforts when you buy these treats made in"}
{"tweet_id": "1110555789633179649", "text": "A sister station of ours in Nebraska just helped to raise 600 thousand dollars for the folks who, in some cases, lost everything to the record flooding. Cant tell you how proud this makes me. WELL DONE KETV!"}
{"tweet_id": "1111829396128702464", "text": "Nebraska will brew a beer that will benefit flood disaster relief"}
{"tweet_id": "1111413201755791360", "text": "Free water testing begins today, March 28 and continues March 29, April 1 and April 2 for private well owners impacted by the flood. Updated address for April 2: Ashland City Library 1324 Silver Street #NebraskaFlood | #NebraskaStrong"}
{"tweet_id": "1110687429839732737", "text": "In Valley, roads are cut off, homes and buildings are underwater, fields are flooded. People throughout Western Douglas County are still dealing with the aftermath of the flood."}
{"tweet_id": "1111414506792452099", "text": "Harvest Hope partners with truck drivers to donate water to Nebraska flood victims >>>"}
{"tweet_id": "1111704284297613312", "text": "26 breweries throughout Nebraska are joining hands to each brew their own variations of a common beer, Nebraska Strong Red Ale, in hopes of providing much needed flood relief."}
{"tweet_id": "1111327916963647495", "text": "Thank you @NationalFCCLA! Multiple chapters in our state and the central region have been impacted by this flooding. We ask that you donate if you are able!"}
{"tweet_id": "1112800732531625985", "text": "Local farmers return home after donating to Nebraska flood victims"}
{"tweet_id": "1110537889190825984", "text": "Dozens of wastewater plants failed and are discharging untreated sewage, while six public water systems are not working in Nebraska. Other systems are dealing with power outages, water main breaks, and flooded wells.\u201d @waltonwater in @circleofblue"}
{"tweet_id": "1110388411389657089", "text": "Sen. @JohnStinner urges Nebraska Legislature to increase Medicaid payments to nursing homes"}
{"tweet_id": "1113101318447685641", "text": "15 pallets of supplies delivered to UNMC, UNO, Nebraska Medicine flood relief center"}
{"tweet_id": "1113077457194815489", "text": "Fund created to help Nebraska hospital employees impacted by floods | AHA News"}
{"tweet_id": "1110931552945475584", "text": "Nebraska Severe Weather Awareness Week continues today with the topic of Tornadoes. Do you know what to do if a Tornado Warning is issued for your area or you see a tornado? NOW is the time to make a plan! Use the TEST Tornado Warning today to practice your plan. #newx #swaw"}
{"tweet_id": "1111660735044743168", "text": "Hy-Vee is donating to the American Red Cross of Nebraska and Southwest Iowa. Join us in supporting our neighbors devastated by flooding and donate directly to the Nebraska and Southwest Iowa American Red Cross chapter at ."}
{"tweet_id": "1110399168806182912", "text": "Nebraska flooding: a major Air Force base was damaged - Vox The military knows its bases face more flood risks as the climate changes. It isn\u2019t ready."}
{"tweet_id": "1112106054630993920", "text": "Red Cross Senior VP for Disaster Services Trevor Riggen spent time visiting shelters and talking with volunteers in Nebraska and SW Iowa yesterday. #RedCrossStrong"}
{"tweet_id": "1112046904844697600", "text": "RT @buckeye_south: How to help those affected by the flooding in Nebraska and Iowa via @owhnews"}
{"tweet_id": "1111017663470424066", "text": "EVERYONE wants to help people impacted by the Nebraska floods including the crew from Bless This Mess which is filmed on location in the state. Help where you can:"}
{"tweet_id": "1110320044469161984", "text": "RT @LnacreBeth: Nebraska Cattlemen Disaster Relief Fund - Nebraska Cattlemen"}
{"tweet_id": "1110907970655797251", "text": "*Reminder* The outdoor warning system will sound at approximately 10:15 a.m. in participation of the Nebraska Statewide Tornado Drill."}
{"tweet_id": "1110369921345744897", "text": "Today I spoke on the House floor about the recent harsh weather & flooding in my home state of Nebraska. With $400+ million in infrastructure damage & an estimated $1 billion in lost crop & livestock production, the recovery wont be easy, but we will come back stronger than ever"}
{"tweet_id": "1110983456299929600", "text": "Way to go, guys! Bud & Miller Donate Nearly 35,000 Gallons Of Canned Water To Iowa/Nebraska Flood Victims via @WhiskeyRiff"}
{"tweet_id": "1111069061973196806", "text": "If you listen to the podcast, you know Paul\u2019s parents lost a lot with the Nebraska flood. They have a fundraiser to help rebuild. If you can donate, please do. Thank you."}
{"tweet_id": "1111035671207124993", "text": "AT&T is making a $20,000 donation to the American Red Cross to support those affected by the historic floods in Iowa and Nebraska. Get updates and learn how you can help."}
{"tweet_id": "1110540805951893504", "text": "A convoy of 24 trucks full of donated food, clothing, hay, animal feed, and other supplies is making its way toward flood victims in Nebraska - thanks to a group of local farmers, businesses, and church leaders from both Ashland and Mansfield."}
{"tweet_id": "1110925776424177664", "text": "1015 CDT am: A TEST tornado warning has been issued for Iowa and Nebraska as part of the annual tornado drill. A warning means, Take Action!. So put your action plan into gear, and use the power of social media to share this test."}
{"tweet_id": "1110489606078763008", "text": "Flood causes estimated $2.3 million damage to county roads #omaha #nebraska #NE"}
{"tweet_id": "1111560633743482880", "text": "@realDonaldTrump Please help Nebraska farmers, families and farmers livestock #NebraskaFlood"}
{"tweet_id": "1111810302474096640", "text": "One of our clients, Alan Case, owner of the Nine Quarter Circle farming operation near Delmont, SD, and the operator on the farm Shannon Klumb of Klumb Bros. Farming donated a load of alfalfa hay to farmers and ranchers in Nebraska suffering from flood damage. #NebraskaStrong"}
{"tweet_id": "1110319732320800769", "text": "A heartbreaking situation unfolding in Nebraska \u1f494 Thank you to the brave police officers who are rescuing stranded pets from floodwaters. #flooding #mothernature #Nebraska #wpbf25news"}
{"tweet_id": "1113134658621988864", "text": "Anyone in need of assistance recovering from flood damage can call the Nebraska Crisis Cleanup Hotline at 833-556-2476."}
{"tweet_id": "1112125568810659842", "text": "Nebraska was hit with a major flooding. Some see the destruction. I see living volunteers, their giving from the heart. If people die they are in God\u2019s hands. Volunteers are showing their love of God by helping all people: left, right, man, woman, white and non-white."}
{"tweet_id": "1110326051337465856", "text": "REALTORS\u00ae Disaster Relief Effort - Nebraska REALTORS\u00ae Association"}
{"tweet_id": "1112902433275957249", "text": "We are still raising money for Jake and his family. Can you please retweet this or, if possible, donate a few bucks?"}
{"tweet_id": "1111709761475670017", "text": "RT @NYFarmer: Volunteers hauling food for cows, supplies into flooded Nebraska."}
{"tweet_id": "1111454417583329282", "text": "Walhalla Couple Head to Nebraska to Help Flood Victims - KVRR Local News"}
{"tweet_id": "1110406752208670720", "text": "Owls helping staff deliver items for flood victims in eastern Nebraska."}
{"tweet_id": "1111388023847936002", "text": "Northwest Ohio Farmers close to Nebraska nowDropping supplies for Farm Families affected by severe flooding..Roll On"}
{"tweet_id": "1111402767698915333", "text": "Proud to run #NebraskaStrong here in DC!! | Runners Raise Funds for the Flooding in Nebraska - Running for Charity #NebraskaFlood \u2764\ufe0f\u2764\ufe0f\u2764\ufe0f\u2764\ufe0f"}
{"tweet_id": "1110337067567988736", "text": "Nebraska livestock has been hit hard by the flooding. On Monday, volunteers banded together today to help farmers struggling to get by."}
{"tweet_id": "1112525786467061760", "text": "Farmers from multiple states sending hay to the Nebraska farmers affected by the floods video"}
{"tweet_id": "1112087996399005698", "text": "@itsgabrielleu WE NEED HELP. DO IT FOR NEBRASKA!"}
{"tweet_id": "1110528045000155137", "text": "Can you keep helping us? We are making gifts for kids of flood victims. Toys and clothes at cost. Gifts so far are going to kids in: Dannebrog, Wood River, Genoa, Duncan, Thurman, Paradise Lakes, Nebraska City, Valley, Ashland, Genoa, Norfolk, Bellevue."}
{"tweet_id": "1111953781095313408", "text": "RT @rocket_rosie: #Minnesotans offer flood assistance to #Nebraska tribe; #MnDOT monitors closed roads by #drone vi"}
{"tweet_id": "1111813790973263873", "text": "Hey everyone! The Buckle has Nebraska Strong T-shirt\u2019s now and 100% of proceeds of these shirts go towards the flood relief in Nebraska!"}
{"tweet_id": "1111098977007611904", "text": "Flood waters are receding in Nebraska and Iowa and the devastation is coming into clarity. Our communities need support, please consider donating to the Rebuild the Heartland Community Fund, supporting post-disaster rebuild & recovery efforts locally."}
{"tweet_id": "1112311360577290247", "text": "Central Iowa farmers send aid to Nebraska flood victims. The very tops of houses peek through the murky water, people\u2019s belongings floating inside the once-livable homes. #thisisfortdodge #thisisiowa"}
{"tweet_id": "1111969851109769216", "text": "#climateaction is forthe elite says GOP - Tell that to people of Nebraska, who this month suffered $1.4 billion in flood damage,rising rivers knocked down bridges, crumbled critical roadways,destroyed 2,000 homes while crippling U.S. Air Force base."}
{"tweet_id": "1112375310568218625", "text": "I have received word and will be deploying on Tuesday morning to Omaha Nebraska, serving in response to the recent devastating flooding across the mid-west. I will be serving on my 14 day deployment as the"}
{"tweet_id": "1110324919332687877", "text": "NEBRASKA Flood Damaged House/ Eroded Roads via @YouTube"}
{"tweet_id": "1111260436857610240", "text": "John Deere Dealers are donating $60,000 towards aiding farmers and communities affected by flooding. #DealerNews #DisasterRelief"}
{"tweet_id": "1113090895690321920", "text": "Thanks to Dennis Jeff and the gang JT Express out of Washington IN. Truck load of supplies headed to Nebraska."}
{"tweet_id": "1112859212936372224", "text": "Red Cross volunteer Toni Taylor Wuenschel, of Missoula, is currently deployed to Fremont, Nebraska, where she is providing nursing care to those impacted by the devastating flooding. She is pictured here with"}
{"tweet_id": "1112862489631473666", "text": "The NPCC softball team spent their spring break helping flood victims in eastern Nebraska"}
{"tweet_id": "1111795632656838656", "text": "PHBA Amateur Board donates to Nebraska recovery efforts! So proud of our PHBA Amateur members! Love to have more involved! Interested? Love to visit with you!"}
{"tweet_id": "1113161174810423296", "text": "For friends and neighbors seeking flood recovery support, @NETNewsNebraska shared this update on FEMA Disaster Recovery Centers opening in multiple Nebraska counties."}
{"tweet_id": "1113041587272142852", "text": "Nebraska football wants everyone affected by the recent flooding to know that the team is with you and has created a shirt to help raise funds for those impacted."}
{"tweet_id": "1111352349916884994", "text": "The World\u2019s Greatest Agricultural Disaster Record floods devastated a wide swath of the Farm Belt across Iowa, Nebraska, South Dakota and several other states,\u201d says this article on . Early estimates of lost crops and livesto"}
{"tweet_id": "1110274609755099136", "text": "@BACyclone @IASTATEAD Please help. I live in Nebraska I\u2019m torn. I want Fred to go back to ISU to keep him Husker free #CycloneNation"}
{"tweet_id": "1111049207245361152", "text": "This relief effort needs to get more attention. Please share and help the Pine Ridge Reservation. It was severely effected by flooding last week in South Dakota, Nebraska and the surrounding areas."}
{"tweet_id": "1112110087542398977", "text": "@WISH_TV Volunteers from Boone/Montgomery county deliver supplies for Nebraska relief"}
{"tweet_id": "1112727353191469056", "text": "North Elementary Hat Day for Nebraska Flood Victims raised $371,00 Way to go North Elementary staff and students! #thepowerofus"}
{"tweet_id": "1111770119217262593", "text": "*sigh Ice or snow, take it slow. Please be safe if youre traveling in the snow in western Nebraska today. Call *55 if you need help on the roads today."}
{"tweet_id": "1113106595720835073", "text": "How can I help ? What can I do ? How can I make a difference ? The Good people in Iowa and Nebraska needs our help . The Red Cross is always there when people in need are in danger. You can help them by Donating at ."}
{"tweet_id": "1112791444048080898", "text": "Wow! We are so thankful for all the donations delivered by United Way of South Central Nebraska to help with flood relief! The Salvation Army Kearney NE. is amazing at helping people in need."}
{"tweet_id": "1111839710694068224", "text": "Our hometown of #Nebraska and #iowa has been hit hard with flooding. 100% OF THE PROFITS from these shirts will go directly to helping Farm and Ranch families who have lost so much. We need your help. #NebraskaFlood #NebraskaStrong #iowastrong #farmers"}
{"tweet_id": "1110711571834130432", "text": "@krassenstein I spent today cleaning up homes of flood victims in Nebraska, my home state. The fundamental difference is we believe that local governments need to be strong, held accountable & know the needs of their people best. Then the federal govt helps when needed."}
{"tweet_id": "1110269535297384448", "text": "News: (NE) Assistance is Available to Help Those Impacted by Nebraska Natural Disaster\u201d Read here:"}
{"tweet_id": "1111288037802045445", "text": "Alert from @NWSWPC on heavy rainfall and flash flooding possible in #kansas #nebraska #missouri due to a stationary weather front. 3/28/19"}
{"tweet_id": "1110761462513963008", "text": "I called Nebraska home once upon a time when I worked in the Midwest. My heart goes out to all Nebraskans and Iowans who are suffering from this historic, catastrophic flooding. @TMobile customers can donate $10 to the American Red Cross simply by texting REDCROSS\u201d to 90999."}
{"tweet_id": "1112819654018228224", "text": "RT @eve1753cm: Democrats need to stop blocking the disaster relief bill Nebraska and other states need help!!!!"}
{"tweet_id": "1110900286455988224", "text": "#haveyouherd How 2 farmers and a bunch of volunteers saved the worlds largest herd of rare goats from Nebraskas flooding"}
{"tweet_id": "1112919949989855234", "text": "Zipline and 25 other breweries in the state have joined forces to brew a special beer, Nebraska Strong Red Ale, to raise funds for flood relief."}
{"tweet_id": "1111313135120642054", "text": "Crews with @fema are arriving in Nebraska by the hundreds. Some went door to door today in King Lake letting homeowners know what federal help is available. A disaster recovery center open tomorrow in Valley. It will be a federal resource for flood victims. @KETV"}
{"tweet_id": "1110636632347197442", "text": "So much activity at Whiterock Conservancy with NCCC crew wrapping up to relieve Fremont, Nebraska with disaster relief. Paddocks ready for our land management goats. #whiterockconservancy #NCCC #Americorps #goats #restoration #workingtheland"}
{"tweet_id": "1112831621017763840", "text": "Today @SecWilkie held a call with Nebraska @GovRicketts to thank him for his support of Veterans across the state by signing laws for Veteran education, licensing, and families. @SecWilkie also pledged support as Nebraska recovers from the tragic flooding."}
{"tweet_id": "1112924176325754881", "text": "If you want to help your community/ country, donate to help those who are being affected by tragedy (here is a natural tragedy affecting people right now) And start ACTUAL communication to start change."}
{"tweet_id": "1110919594116562944", "text": "RT @VoiceOfMilk: @culvers to donate 20 percent of March 27 sales for Nebraska flood relief"}
{"tweet_id": "1110432225739329536", "text": "Manchester farmers collecting donations for flooded Nebraska farmers"}
{"tweet_id": "1111448254590390272", "text": "26 NCBG member breweries will be brewing up batches of Nebraska Strong Red Ale. 100% of the proceeds from the sale of this beer will be donated to flood relief efforts in Nebraska. Find out all the details: #BrewNEStrong #SudsForFloods #NebraskaStrong"}
{"tweet_id": "1110685420466171904", "text": "In chapel tomorrow, we will collect a special offering to support the communities around Nebraska that have been affected by flooding. Our offering will go to @OrphnGrainTrain disaster relief. Please pray for those affected by the #NebraskaFlooding."}
{"tweet_id": "1113138512398876675", "text": "We are so proud of our continued partnership with the #DreamweaverFoundation! They work to fulfill lifelong dreams for terminally ill seniors; many of which are our wonderful patients. Thank you for all that you do! #aseracarehospice #nebraska"}
{"tweet_id": "1110593000797814784", "text": "The SHSU Sigma Alpha-Beta Pi chapter is raising money through selling these t-shirts for our philanthropy for the semester. All proceeds will be sent to those that were affected by the Nebraska flooding. Shipping will be $5 dollars. We have a Venmo set up that you can pay with!"}
{"tweet_id": "1113240575065640960", "text": "Nebraska woman buys all remaining shoes at Payless store to donate to flood victims - New York Daily News"}
{"tweet_id": "1113165210846674944", "text": "Pheasants Forever & Quail Forever establish habitat relief fund to help Nebraska landowners rebuild for wildlife following devastating floods w/ @pheasants4ever #NebraskaFlood #NebraskaStrong #Nebraska"}
{"tweet_id": "1110287422020042752", "text": "Come out and support the Spring Hill FFA Alumni tonight for their Culver\u2019s Fundraiser from 4-8 pm!! Also, donate to the Nebraska Flood Relief and get a free relief and get a free concrete!!"}
{"tweet_id": "1110709311049793536", "text": "Final Preps for #helpjackgiveback and tomorrow\u2019s Ferris wheel marathon for Nebraska flood relief."}
{"tweet_id": "1113173811543801856", "text": "State of Nebraska and FEMA Will Open a #Disaster #Recovery #Center in Dodge County - #Agenparl #Align #Assistance #AgenparlEnglish #Sicurezza #SocialNetwork #TopNews"}
{"tweet_id": "1110924886564921344", "text": "From Nebraska to Iowa, spring rain and melting snow are flooding the U.S. grain belt, causing an estimated $3 billion of damage"}
{"tweet_id": "1110558626945617921", "text": "Thanks to all for the kind words yesterday. If I missed replying to anyone, I appreciate the welcomes back to full-time coverage in Lincoln. You can still receive 30% off a subscription, with 50% of the proceeds to benefit Nebraska flood relief:"}
{"tweet_id": "1112021987487088640", "text": "An agricultural organization in the western Twin Cities will collect food and supplies Saturday to help farmers and others affected by severe flooding in Nebraska"}
{"tweet_id": "1110662275810103296", "text": "INDIVIDUAL ASSISTANCE - Nebraska families, individuals, homeowners, renters, and business owners in DESIGNATED COUNTIES who sustained damage as a result of the March 2019 storms and floods to their homes, vehicles, personal property, businesses or inventory may apply. 1/3"}
{"tweet_id": "1111374905763729409", "text": "@realDonaldTrump PLEASE come to NEBRASKA!!!!!!! The \u2764\ufe0f- land needs YOU\u203c\ufe0f\u203c\ufe0f\u203c\ufe0fAfter all the flooding, WE need hope! WE need YOU\u203c\ufe0f\u203c\ufe0f\u203c\ufe0f WE need a WINNER!! and after maybe Iowa after Nebraska!!!! @DonaldJTrumpJr \u2764\ufe0f\u1f1fA\u1f1f8\u1f4aA"}
{"tweet_id": "1111636612927180801", "text": "@nationalpost Tough year for farmers all over as over 1 million calves lost in Nebraska Floods with more flooding on the way. Millions bushels of wheat and soybean were destroyed as well. Commodities speculation and positioning will be key."}
{"tweet_id": "1112780380371861509", "text": "Add this one to your disaster response toolkits-open CDBG planning grant cycle for disaster recovery. Let\u2019s use all this water to #GrowNe."}
{"tweet_id": "1111994853670424577", "text": "Brothers coming to the AID of Brothers. That is the AMERICAN Way!"}
{"tweet_id": "1112884351077900289", "text": "Mark your calendar for May 6 as NTV and the American Red Cross team up for the 16th annual blood drive."}
{"tweet_id": "1110874623330140161", "text": "To ensure that the flood impacted families are getting the assistance they need, the American Red Cross is holding a 24-hour fundraiser, and urges people to donate."}
{"tweet_id": "1112503493594673152", "text": "My daughter Lucy\u2019s teacher is from Nebraska and her class is trying to help with relief efforts. This 8-yr old took the initiative to make this flier on her own in an effort to support the cause. Please consider helping if possible. Thank you in advance. @Rumsonbulldawgs"}
{"tweet_id": "1110276926076260355", "text": "#JustinTimberlake Pledges To Help Nebraska Flood Victims"}
{"tweet_id": "1110679496817029125", "text": "BNSF employees and contractors continue to work around the clock to repair track and restore service in parts of Nebraska that have experienced heavy flooding. #Nebraska #NebraskaFlood2019"}
{"tweet_id": "1110550619927076866", "text": "C.H. Robinson worked alongside MillerCoors to ship 100,000 cans of water to those affected by flood waters in Nebraska & Iowa. Access to safe drinking water is criticalespecially in times of crisis.\u201d Read more here:"}
{"tweet_id": "1113027014930432000", "text": "Capitalizing on receding floodwaters in #Mozambique WFP plans to deliver food to 1.2 million people in the four most affected provinces. We have already reached 350,000 people affected by #CycloneIdai"}
{"tweet_id": "1108786037264920576", "text": "RT @grey_fortress_: #CycloneIdai donations from Zimbabwe Catholics in Johannesburg."}
{"tweet_id": "1108053846612459520", "text": "@realDonaldTrump good night, In Mozambique, specifically in the border city, there was a disastrous storm known as (Cyclone IDAI), this storm destroyed several houses, hospitals, floods, access roads were destroyed, power poles, communication networks, deaths very much Sad even."}
{"tweet_id": "1107614864816726016", "text": "A great start to the day. 5496 people have contributed RTGS$42,501 as at 0900 hrs on 18 March 2019. A BIG Thank you to each an everyone who went deep into their pockets to help the less fortunate #CycloneIdai"}
{"tweet_id": "1116619145179611136", "text": "Ester told us she had to keep moving as houses she took shelter in kept collapsing. #CycloneIdai \u1f1fF\u1f1fC"}
{"tweet_id": "1108827854006030340", "text": "WFP is rushing food & other assistance to large numbers of people affected by #cycloneIdai WFP\u2019s Gerald Bourke explains the challenges to @CTVNews here:"}
{"tweet_id": "1113068685189476353", "text": "FAWUZ salutes Zambian on the donation of $400K worth of medical supplies and medicines to cyclone IDAI hit areas of Mozambique, Malawi and Zimbabwe. Humanitarian aid is a symbols of our humanity and compassion in times of grief, loss and trouble. FAWUZ& Zambia Mourns with you"}
{"tweet_id": "1110591964142026752", "text": "This is Courage. In the aftermath of #CycloneIdai, he says I am glad to see the helicopter, it\u2019s so big.\u201d With emergency funding from @eu_echo, this @WFP_UNHAS chopper is saving lives in #Zimbabwe and inspiring others to do the same! \u1f681"}
{"tweet_id": "1108347145629954048", "text": "OCHA Rosea team is in Beira, #Mozambique, supporting the coordination of the humanitarian response in the aftermath of the #CycloneIdai. Needs are dire and the full extent of the damage is yet to be known."}
{"tweet_id": "1109539570087952385", "text": "Zimbabwe Online News Cyclone Idai: UNICEF warns of \u2018race against time\u2019 to protect children, prevent spread of disease in flood-ravaged Mozambique"}
{"tweet_id": "1111200930463129600", "text": "#CycloneIdai donation update as of 07:00 today. Thanks to the 22,343 generous people who have donated over $215,000 Lets continue to mobilise and help those in need! #ReachOut"}
{"tweet_id": "1106983475649961986", "text": "The deadly cyclone flooded homes and washed away buildings and bridges in Zimbabwes eastern province bordering with Mozambique, and left thousands in the dark and hundreds missing"}
{"tweet_id": "1110103073647742977", "text": "Extremely heavy rains in lower Shire River districts of Chikwawa & Nsanje in #Malawi\u2019s far south has been compounded by further rains from last week\u2019s #CycloneIdai. The rain has caused severe flooding in 14 of Nsanje\u2019s 28 districts.- Relief Web"}
{"tweet_id": "1108101699523223554", "text": "At yur level, u shud be telling the public the quantities of resources that u\u2019ve so far mobilised to assist the victims of Cyclone Idai. Focus on preventing more deaths by mobilizing medicines, food, blankets, clothes, tents, money, etc for the displaced pple. @DrNkuSibanda"}
{"tweet_id": "1108403742578262018", "text": "Cyclone Idai ravaged parts of Mozambique, Malawi & Zimbabwe in what the UN says could be the worst weather-related disaster ever to hit the southern hemisphere. Entire cities have been destroyed. Millions of people were in the direct path of the cyclone"}
{"tweet_id": "1106814374398881792", "text": "Stay safe everyone. Do not drink flood water , do not eat food that was in flood water . Stay warm !! #CycloneIdai #Harare"}
{"tweet_id": "1108410194197790720", "text": "Cyclone Idai: Mozambique survivors desperate for help #ZimStandard #263Chat"}
{"tweet_id": "1109835139499151360", "text": "UPDATE: this UN helicopter \u1f681is being loaded TODAY in Beira with #UKaid \u1f1eC\u1f1e7shelter kits. They\u2019ll be air-dropped to those still stranded in some of the hardest-to-reach areas affected by #CycloneIdai Thanks to our partners on the ground and the authorities @DFID_UK @PennyMordaunt"}
{"tweet_id": "1106639626872279041", "text": "#Floods in #Malawi has left thousands displaced. Communities are now facing a second threat of flash floods following #CycloneIdai. @MalawiRedCross is providing critical life-saving relief items and ensuring communities are evacuated safely. Hear from @tmarki on the ground:"}
{"tweet_id": "1108050500593876998", "text": "Where are the Queen Bs in this time of #CycloneIdai . We should have seen big donations."}
{"tweet_id": "1106881628855549952", "text": "#CycloneIdai hits Zimbabwe, at least 24 confirmed dead and many displaced #CycloneIdaiUPDATE"}
{"tweet_id": "1108612902649511936", "text": "RT @Klein0112: @larry_moyo Whats wrong with buying chickens from the market to donate to #cycloneIdai victims?"}
{"tweet_id": "1108276336488054784", "text": "#CycloneIdai: Local musicians have joined hands with various associations to mobilise resources for victims of Cyclone Idai. The musicians will hold The Cyclone Relief Concert\u201d on Friday afternoon at the Julius Nyerere Way Parkade. READ MORE:"}
{"tweet_id": "1109553711737651201", "text": "#Canada announces $3.5M in cyclone aid funds as tens of thousands in southern Africa need help #Moambique #Zimbabwe #Malawi #CycloneIdai #Idai #CicloneIdai"}
{"tweet_id": "1109086250282176513", "text": "Zimat CEO Mustafa Sachak thanks the honourable ministers for accepting the donations on behalf of the Masawara group #CycloneIdai #MakingLifeBetter"}
{"tweet_id": "1110628888382750720", "text": "#CycloneIdai has affected more than 1.85 million people in #Mozambique. 483,000 people have been displaced by the floods. Red Cross teams are working tirelessly. #EstamosJuntos \u1f4f7 @PunainenRisti"}
{"tweet_id": "1113386979025145856", "text": "Thank you so much to Zimbabwe Sokyokushin Karate for inviting us to their Dojo to receive this donation that will go towards relief efforts for victims of #CycloneIdai ! #TogetherWeCan @GeorgeMaposa7 @tapera_david @Newsbae @MuripoSam"}
{"tweet_id": "1107651624825208833", "text": "RT @NehandaRadio: Red Cross says Mozambique\u2019s Beira port devastated by cyclone -"}
{"tweet_id": "1108680842287697920", "text": "The government is moving fast to repair the roads am bridges damaged by #CycloneIdai"}
{"tweet_id": "1107960709349019648", "text": "Damaged bridge that links Mutare and Chimanimani after Cyclone Idai floods in the Manicaland province of Zimbabwe *The bridge is between Wengezi and Nhedziwa, 3km after Mhandarume and 3km before Matsororo #Zimbabwe #Manicaland #Chimanimani #CycloneIdai"}
{"tweet_id": "1109031404128665601", "text": "RT @263Chat: Food items donated by @ZB_Bank towards the victims of the #cycloneIdai #Tinokudai #263chat"}
{"tweet_id": "1108129902115647488", "text": "My daughter was washed away from me Survivors speak about devastating floods caused by Cyclone Idai in Mozambique. At least 1,000 people may have been killed, President Filipe Nyusi says [tap to expand]"}
{"tweet_id": "1107926439448506369", "text": "Never walk, swim, drive through flood water or venture into unsafe/ disused mine shafts, report any missing persons to police as soon as it is practical to do so. In case of emergency dial 112 or 111. #cpu #CycloneIdai"}
{"tweet_id": "1106495942847614976", "text": "The Met Department and the CPU have issued a floods warning due to Cyclone Idai which is expected to hit Zimbabwe today from our eastern border with Mozambique. I urge everyone to be on high alert, to avoid flooded rivers and to guard & pray for safety throughout the ordeal."}
{"tweet_id": "1108860656294477824", "text": "This is Fernando. His entire family is missing in #Beira, so he\u2019s joined thousands of volunteers giving time and donations in #Maputo #humanchain #CycloneIdai #Mozambique @BBCNews"}
{"tweet_id": "1110827008827817985", "text": "Loaded and ready to go! @WFP Super Cereal and medicine from @ZrcsRed ready to be delivered on today\u2019s first flight to Chimanimani. \u1f681 WFP assistance adheres to #humanitarian principles, and goes to the most vulnerable people. #CycloneIdai"}
{"tweet_id": "1107467668263714821", "text": "Mozambique: \u2022The death toll from #CycloneIdai landfall has reportedly risen to at least 48. \u2022Authorities have issued a Red Alert for flooding along the River Buzi, with a high risk of floods in Buzi and Pungo\u00e9. More on the Flash Update 3:"}
{"tweet_id": "1112044766089367555", "text": "As Africans, we need to rise to d occasion & send relief to victims of #CycloneIdai. As many as 300,000 people have been displaced. With just $10 (R150, N3600) u can provide a meal for 1 family. Pls donate here: #TheNextMile #PledgeIdai @cycloneidaifund"}
{"tweet_id": "1110904860390625281", "text": "Jerry cans, latrines, plastic sheeting, nutritional peanut paste and water purification tablets. Supplies funded by #UKaid for @UNICEF being loaded onto a @WFP helicopter flight funded by @EUinZim - to distribute to people affected by #CycloneIdai in eastern Zimbabwe today."}
{"tweet_id": "1107194651411398656", "text": "1/9 2)Christina Pr Sch near Steinstroom sec sch on the Jopa copper road, is another district command rescue serves the Risitu valley. This is the furthest that vehicles can access from Jopa to Risitu valley due to destroyed bridges.#CycloneIdai"}
{"tweet_id": "1109093641925128192", "text": "It\u2019s World Water Day! \u1f4a7 UNICEF is bringing urgent life-saving support to the affected children in Mozambique by #CycloneIDAI, including clean water, sanitation and hygiene."}
{"tweet_id": "1108059885768491008", "text": "Take Action Now & Donate towards relief efforts for those affected by #CycloneIdai Spread the Word! Lets help those in need \u1f91D\u1f3fD #ReachOut"}
{"tweet_id": "1108967792890413056", "text": "Deeply saddened by the devastation caused by #CycloneIdai in Southern Africa. Welcome @UN & partners\u2019 efforts to respond to immediate humanitarian needs. @UNECOSOC stands ready to support affected countries pursue a risk-informed & #climateresilient #2030Agenda #SDGs"}
{"tweet_id": "1113492622436335616", "text": "Mozambique woman gives birth in mango tree during floods while escaping floods caused by #CycloneIdai. The family was rescued two days later. #StrongAfricanWomen."}
{"tweet_id": "1108353547052158976", "text": "#CycloneIdai we have deployed 46 water tanks and two bowser trucks to provide potable water to affected communities. These have been deployed in Buhera (2), Checheche (2), Rimbi (1), Chibuwe (1), Murambinda (2) while the rest have been reserved for Chimanimani and Chipinge"}
{"tweet_id": "1111867528765153280", "text": "#StCharlesLuwanga boarding pupils are all refusing to return after a #CycloneIdai induced landslide killed two of their colleague and a school staffer. 52 students and 4 teachers have died across #Chimanimani @ZimExplorer @InfoMinZW @normatsopo"}
{"tweet_id": "1107866248573005829", "text": "RT @BBGAfrica: More than 1,000 people may have died in flooding caused by a cyclone in Mozambique"}
{"tweet_id": "1107899480211419136", "text": "~36 hours after the landfall of Cyclone #Idai \u2014 what the @WMO called a potential worst case scenario\u201d \u2014 these are some of the first photos of Beira, Mozambique, a city that is still largely cut off from the rest of the world by flooding. A growing humanitarian catastrophe."}
{"tweet_id": "1109103303923769347", "text": "Together we are stronger. Let us lend a hand to #cycloneIdai victims @VelilesDube @BusinessTimesZW @MugagaTakunda @archiedongo @joelgombera @FingazLive"}
{"tweet_id": "1112946618754625536", "text": "Resilience shines through. This is Ana Jo. Her school in Sofola \u1f1f2\u1f1fF like hundreds was destroyed by #CycloneIdai. Ana salvaged school books from the wreckage so that her students can still use them when lessons restart. @Gorongosanationalpark @INGC @DFID_UK @opais @tvmiramar"}
{"tweet_id": "1110843071346982912", "text": "Relieved to see our donations reached the intended recipients. This is heartwarming but much work remains @taylor_sherine @limited_united"}
{"tweet_id": "1107398816121217025", "text": "The Cyclone Idai struck Beira, Mozambique with harsh winds of 180km/h on Thursday, the 14th. It has caused a lot of damage, people lost their families and homes, some are injured, schools, airports and hospitals are destroyed, roads are flooded, they\u2019re going through a hard time."}
{"tweet_id": "1109337227904061440", "text": "Fuel pipeline not damaged by #CycloneIdai \u2013 Joram Gumbo says #3mob"}
{"tweet_id": "1111707512166846464", "text": "RT @UNmigration: With @UKaid, we are delivering shelter kits to displaced communities affected by #CycloneIdai in Mozambique. /"}
{"tweet_id": "1107913941160771584", "text": "I was sleeping and I woke up because I felt like I was floating. But my leg was actually in water. A cyclone in Mozambique is feared to have killed more than 1,000 people"}
{"tweet_id": "1108822588061560841", "text": "#Mozambique: avoid all non-essential travel to the provinces of #Sofala and #Zambezia and to the districts of #Cuamba and #Madimba in the province of #Niassa, due to severe flooding caused by tropical cyclone #Idai."}
{"tweet_id": "1109353225646497792", "text": "@KupetaNoah1 @misazimbabwe @jsnetzim @UKinZimbabwe @KirstyCoventry CCOSA seeks to make a difference to victims of #CycloneIdai . Partner with us as we make donations towards the affected"}
{"tweet_id": "1108271160507228161", "text": "The President did not procure anything, get your facts right. Abu Dhabi is sending charity relief to all 3 countries Malawi, Mozambique &Zim. Your hunger to sanitize EDs GVt is beyond normal. Stop it!"}
{"tweet_id": "1106909090784133120", "text": "RT @kwirirayi: Was there a call for people to leave dangerous areas before #CycloneIdai before it happened?"}
{"tweet_id": "1108410706775416834", "text": "#CycloneIdai devastated #Mozambique, &continued through to #Malawi & #Zimbabwe. Now, families throughout all 3 countries are displaced & in need of food, water & shelter. CRS\u2014along with local partners\u2014is responding. You can help: . #Idai"}
{"tweet_id": "1107012567145287682", "text": "Ongoing cyclone aida currently destroying homes and roads in the eastern part of Zimbabwe and Mozambique. I understand lives have been lost."}
{"tweet_id": "1108068871813193729", "text": "In response to the floods that have affected parts of Malawi, Today, Old Mutual Malawi handed over various items worth K10 million to Department of Disaster Management, to assist those affected by the floods. #CycloneIdai #DoingGreatThingsEveryDay"}
{"tweet_id": "1111709190798610432", "text": "I know this place very well, what it looked like before & the limitations of accessing water & sanitation\u201d Norman works for @DFID_UK \u1f1fF\u1f1fC & is from Chimanimani.He is helping to coordinate the response to #CycloneIdai, & seeing the difference that #UKaid is making #HometownHero"}
{"tweet_id": "1110839434025541632", "text": "@zinwawater teams mobilising this morning before taking more water tanks to #CycloneIdai affected areas. Also joining the ongoing efforts are drilling rigs which shall be drilling boreholes for affected communities @InfoMinZW @freemanchari @ZBCNewsonline @diamond1038FM"}
{"tweet_id": "1117176535444860929", "text": "USAID and other international aid organisations will continue to deliver essential supplies to assist the people of #Mozambique."}
{"tweet_id": "1108722187803000833", "text": "#cycloneidai Update: Tanzanian Government dispatches aid supplies consisting of medicine, rice and Maize to Zimbabwe, Malawi and Mozambique. Zimbabwean consignment arrived last night."}
{"tweet_id": "1107501046195204096", "text": "Death toll has risen to the 64. Our hearts are with the departed souls."}
{"tweet_id": "1112464008756543488", "text": "Our staff are working around the clock to help survivors of #CycloneIdai. YOU can help. Please donate what you can now\u2192"}
{"tweet_id": "1107165727931404289", "text": "Cyclone Ida has wrecked havoc in Manicaland & Mozambique \u1f1f2\u1f1fF, a sign of increasing global warming. Very difficult to prepare for & avoid. It has destroyed our crops & taken lives.May the souls of the departed rest in eternal peace. Very sad indeed."}
{"tweet_id": "1111470401652174848", "text": "The teams are back from #cycloneidai afffected areas. Debriefing underway. Stories are devestating. We will be looking at how we can provide a long term response to support survivors with #bereavement & #trauma services #zimbabwe @JoanPalchase @MoHCCZim @DFID_UK @UNICEFZIMBABWE"}
{"tweet_id": "1111260768127852545", "text": "#CycloneIdai destroyed lives, livelihoods & critical water, sanitation, energy and road networks\u201d \u1f447\u1f3fEPhotos taken by our Humanitarian Advisor Norman Tinarwo during an assessment of the initial response to #CycloneIdai in Manicaland. Scale of damage to infrastructure \u1f62D#UKaid"}
{"tweet_id": "1118080078997610496", "text": "To assist rural communities in #Mozambique with the respectful and dignified management of the dead in the aftermath of #CycloneIdai, our @ICRC forensics unit is distributing supplies including body bags & grave markers amongst other essential tools."}
{"tweet_id": "1108578511101530113", "text": "Big thank you to Etherton Judgement yard for donating and supporting the #Cycloneidai relief. #ZiJudgementyard #ZiCares"}
{"tweet_id": "1110255893084626944", "text": "After destruction, the terrible silence. School bells always ring at 7 each morning. But in areas of Mozambique devastated by Cyclone Idai, again this Monday morning they did not. Many schools are ruined, while others are being used to shelter storm refugees."}
{"tweet_id": "1108730821857476610", "text": "if you are interested in Voluntary work in Manicaland helping victims of #cycloneIdai please call this number: 0775783024 All expenses are paid for Please RT some1 on your TL might be interested @Thesideniqqa @MikkaJay @tudzaa @Bibaz23 @powerfmzimbabwe @TrendinglnZim"}
{"tweet_id": "1106880886539239424", "text": "#CycloneIdai We have seen an urban-centric coverage of the damage like the cyclone targets towns/cities yet there could be more harrowing pictures of destroyed crops or livestock lost Do we have anyone outside cities with pictures + updates @MaminiminiObert @RFChamby @DelilahTee"}
{"tweet_id": "1110120603611262977", "text": "If youre in the diaspora you can donate here \u1f447 #CycloneIdai"}
{"tweet_id": "1107980955569045504", "text": "St Charles Lwanga rescue operation after Cyclone Idai floods in Zimbabwe: What really happened #Zimbabwe #CycloneIdai #Chimanimani #Chipinge #CycloneIdaiZW"}
{"tweet_id": "1110987347343130626", "text": "RT @africanews: Mass graves for Mozambique cyclone victims, death toll at 534"}
{"tweet_id": "1106492477043867649", "text": "RT @News24: Cyclone Idai makes landfall in Mozambique, dozens already killed | @Duncan025"}
{"tweet_id": "1117066255482093568", "text": "U.S. forces concluding relief efforts in #Mozambique #US #Idai #CycloneIdai #AFRICOM"}
{"tweet_id": "1107820097626873856", "text": "Periods dont stop for cyclone. Its hard to imagine dealing with a period in the wake of the cyclone that has caused much destruction. Today, we donated packs of sanitary pads to @ADRAZimbabwe which is collecting items for relief to victims of #CycloneIdai"}
{"tweet_id": "1110451733845688320", "text": "The cargo ship filled with donations mobilized by Unidos pela Beira has arrived in Beira. Solidariedade - juntos somos mas."}
{"tweet_id": "1110412269098336257", "text": "RT @ewnreporter: #CycloneIdai Buckets containing maize meal, beans, oil, soap, blankets etc. are distributed per family. CE"}
{"tweet_id": "1111740623051243520", "text": "Catastrophic cyclone Idai leaves pregnant women vulnerable in #Mozambique, #Zimbabwe and #Malawi! @UNFPA is working with partner organizations and governments to provide urgent relief! via @UNFPA_Zimbabwe @UNFPAMalawi @UNFPAMocambique"}
{"tweet_id": "1107604098000609282", "text": "Unfortunately official response to the #CycloneIdai disaster has been lacking. It is our duty to our fellow citizens to bridge the gap. Lets donate to those coordinating the rescue effort."}
{"tweet_id": "1115912220695777282", "text": "The Government of #Mozambique is hard at work responding to #CycloneIdai with support from @WFP, @WFP_UNHAS, @LogCluster, and @ETCluster to restore connectivity, conduct #drone assessments, & deliver lifesaving aid via #helicopter & amphibious transports to people in need."}
{"tweet_id": "1111943169913036800", "text": "In the wake of #CycloneIdai and catastrophic floods, a #cholera outbreak has been confirmed in Beira city, #Mozambique. Our teams have been treating more than 100 patients per day with suspected cholera. These are the 8 key items for a cholera response."}
{"tweet_id": "1106673127130583040", "text": "\u1f6a8#CycloneIDAI ALERT Please alert your relatives living within and around the heatmap shown on the map. Areas covering #Manicaland towards #Muzarabani are likely to be affected. #IDAI will also move towards Harare & other Northern parts of the country."}
{"tweet_id": "1112991839605460994", "text": "#CycloneIdaiUpdate The first death from Cholera has been confirmed in the cyclone-hit port city of Beira, with cases of the disease almost doubling in Mozambique in the past 24 hours, health officials say. (Source:BBC News)"}
{"tweet_id": "1108574058088747008", "text": "Mozambique, Zimbabwe cyclone deaths exceed 300 as UN boosts aid"}
{"tweet_id": "1113327371640352768", "text": "To all those who came through with donations for Cyclone Idai victims. Tinotenda, siyabonga, thank you. We passed on the donations to @HigherLifeFDN for onward transportation and distribution to the beneficiaries in Chimanimani #CycloneidaiZW #CycloneIdai #CycloneIdai"}
{"tweet_id": "1113361588545826817", "text": "Cholera vaccinations campaign has started in areas affected by #CycloneIdai. This picture shows on of the vaccination brigades in Beira city. Pay attention to the detail yes, the picture of the president hanging on the tree."}
{"tweet_id": "1107128825220075521", "text": "My heart bleeds, lives lost, property destroyed, pple homeless #CycloneIdai #Chimanimani govt broke to bail out the pple @ZELA_Infor haunted by huge leakage of #Marange diamond revenue #taxjustice for #WomensRights @GA4TJ @TaxJusticeAfric @AFRODAD2011 @MorebieChidaush @nangabe"}
{"tweet_id": "1107270231238590465", "text": "@DavidColtart This same Cyclone killed people in Mozambique and Malawi David its no time for blame games and cheap politiking"}
{"tweet_id": "1107353602434183169", "text": "Maybe armchair critics like @lilomatic can appreciate what the real situation on the ground is like, in mounting rescue operations within the affected areas. Mountainous areas like Chimanimani, Chipinge, Vumba, Nyanga, etc are no stroll in the park."}
{"tweet_id": "1109448383067054081", "text": "This must be the greatest solidarity movement that ever existed in Mozambique. Congrats for everyone who donate a little to help our brothers in the zones affected by #cycloneIdai."}
{"tweet_id": "1109147489838485505", "text": "These are the remains of parts of Ngangu village #Chimanimani where many people were affected by #CycloneIdai.#MSF is working with @MoHCCZim & partners to provide medical assistance where needed including treating trauma & providing medication for those who lost theirs in floods"}
{"tweet_id": "1108299359769235456", "text": "African Union announces immediate support of USD 350,000 to the 3countries, affected by Cyclone Idai, Malawi , Zimbabwe and Mozambique.Over 2 million people affected. Mozambique, the hardest hit of the 3 countries will receive $150,000 from the emergency AU funds."}
{"tweet_id": "1106635576218918912", "text": "#MozambiqueFloods2019 LATEST: #CycloneIdai took down electricity cables and trees fell. Roofs flew off and part of the Munhava municipal stadium collapsed. More than 500,000 in Sofala Province have no electricity. Communication is impacted. - @WorldVisions Claudio Jamal"}
{"tweet_id": "1111162425225691136", "text": "With support from @USAID Zimbabwe GOAL will supply water purification chemicals and soap to affected households to prevent disease outbreaks such as cholera. Find basic cholera prevention steps from @CDCgov here: #CycloneIdai"}
{"tweet_id": "1108312861057732608", "text": "Thank you to all the volunteers all over Zimbabwe working so hard to contribute to relief efforts. Volunteers through their involvement reflect a nations compassion, unselfish caring, patience, and love one for another. Erma Bombeck @unvzimbabwe"}
{"tweet_id": "1109734927296282624", "text": "BBC News - Cyclone Idai: Scores more deaths reported in Mozambique #Floods #MozambiqueFloods2019 #MozambiqueFloods #CycloneIdai"}
{"tweet_id": "1107332137613701121", "text": "After walking around the local community we estimate that 1/4 of the buildings suffered catastrophic damage from cyclone #Idai. #CycloneIdai"}
{"tweet_id": "1106656256956207112", "text": "RT @KudziChidakwa: #CycloneIdai RED ALERT \u26a0\u1f6aB\u1f6aB and contact numbers for the Emergency response services?"}
{"tweet_id": "1111975059764199425", "text": ".@FAO is asking for an initial $19M to support those most affected in \u1f1f2\u1f1fF #Mozambique by #CycloneIdai over the next 3 months, focusing on \u27a1 resuming local food production, \u27a1 assisting fishing communities \u27a1 supporting livestock owners. #ZeroHunger"}
{"tweet_id": "1109101793550745600", "text": "Find missing persons or register yourself if youre in the affected areas #cyclone #cycloneIdai #emergencyservices #volunteers #chimanimani Follow this link @ZrcsRed @MalawiRedCross @IReachOutMyHand @nelsonchamisa @mdczimbabwe"}
{"tweet_id": "1107193121438400512", "text": "Or He could have stayed in the country and put measures to protect people in areas HE KNEW would be affected. He better be coming with food, aid and those damn scarves for everyone in chimanimani #CycloneIdia #cyclonechimanimani"}
{"tweet_id": "1112417657763057667", "text": "Those affected by #CycloneIdai need our continued help and strong support. Please donate today: @cycloneidaifund"}
{"tweet_id": "1117774372977152000", "text": "Thank you for the great relief operation cooperation also in #Zimbabwe. Together, we were able to help those affected better. #EUinZim"}
{"tweet_id": "1112460938710532097", "text": "RT @TRF_Stories: The number of cholera cases has almost doubled in #Mozambique in the past 24 hours | #Humanitarian #CycloneIdai /"}
{"tweet_id": "1108124875871399937", "text": "@AdraSouth #CycloneIdai What can we as church members do to assist with donations to this catastrophe?"}
{"tweet_id": "1112678382091804673", "text": "#UNHCR , which yesterday donated 80 metric tonnes of goods, including medicine, to #cycloneidai survivors, has challenged government to ensure transparency in handouts distribution. #NewsDayZim @HStvZim"}
{"tweet_id": "1107301677890183169", "text": "RT @ZiFMStereo: #CycloneIDAI In case of strong winds, shelter in a house with the strongest roof and close all windows and doors."}
{"tweet_id": "1108249123461967872", "text": "#rescue & #relief. In a loss of words with the #Cycloneidai tragedy in #Sofala, here goes a little description of our day: + SAAF flight saved some 40 people stranded people, including babies; + #Airdrop of 4.2 tonnes of biscuits in #Buzi. Mission: #savinglives."}
{"tweet_id": "1110299707727904773", "text": "This is more like it. We applaud the UN for availing a helicopter with the ideal lift capability to ferry food, medical & shelter supplies to the victims of #CycloneIdai. The SADC Standby Force shud also avail their aircraft to assist in critical areas. @SADC_News"}
{"tweet_id": "1109077432257167362", "text": "In response to #Cycloneidai, @UNFPA is working with @UN in #Malawi, #Mozambique & #Zimbabwe to ensure that the women, girls & young people who are currently affected receive life-saving reproductive health kits, dignity kits,Maama kits & family planning resource kits."}
{"tweet_id": "1110897880787795969", "text": "To afford the missing #CycloneIdai victims a decent burial, the GVT needs to mobilise: 1. Ground Penetrating Radar 2. K-9 Unit Sniffer Dogs 3. Forensic DNA Testing We shouldnt bury them unidentified or leave others mud-trapped beneath. @InfoMinZW @fortunechasi @nickmangwana"}
{"tweet_id": "1107241345758965760", "text": "AFRIKA NOW IS THE TIME to reach out and touch families affected by this vicious cyclone that has killed about 150 people in Malawi \u1f1f2\u1f1fC, Mozambique \u1f1f2\u1f1fF and Zimbabwe \u1f1fF\u1f1fC leaving hundreds missing and thousands stranded. There is no better time to show the spirit of UBUNTU than now."}
{"tweet_id": "1109130914284609537", "text": "South Africas state power utility Eskom will get an additional 900 megawatts of power from Mozambique after power lines damaged by Cyclone Idai were restored, President Cyril Ramaphosa said on Friday. #Mozambique #SouthAfrica #CycloneIdai"}
{"tweet_id": "1108030839407947776", "text": "#CycloneIdai : Help centre full of children, but empty of food \u2013 Chimoio #Mozambique #Idai #CicloneIdai"}
{"tweet_id": "1109723474564734976", "text": "The first team of South Africans to respond to #CycloneIdai are back in the country. They operated in Mozambique and Zimbabwe under the banner of Rescue SA. @malungelob #NewsHour Courtesy #DStv403"}
{"tweet_id": "1110398367299964928", "text": "#Zimbabwe #CycloneIdaiZW #CycloneIdai #CycloneIdaiUPDATE #Motivation #Donate #263chat #Africa #Hope #Twimbos You do not need the best position or earn a 6 digit salary. Kindness is free. It is gift we can all share. We rise by lifting others"}
{"tweet_id": "1110815958778691584", "text": "Damage caused to an Integrated Services Center for Victims of Violence in the District of Dondo after #CycloneIdai. Assessments are ongoing - we will continue to support the Governments efforts to protect those at risk."}
{"tweet_id": "1113457031997005824", "text": "BREAKING NEWS: We are providing an additional US$2.5 million to respond to #CycloneIdai in Zimbabwe. Latest contribution from @USAIDFFP through @WFP_Zimbabwe will provide food assistance to 133,000 individuals in Chimanimani & Chipinge. #WeStandWithZim"}
{"tweet_id": "1110495625534160898", "text": "These figures are scary - about 1,000 people feared dead, and an estimated 900,000 children, thats half of the total 1.8M have been orphaned and made homeless by Cyclone Idai in Mozambique - one of the worst tropical cyclones on record to affect Africa. #PrayForMozambique"}
{"tweet_id": "1108353061792157697", "text": "Presidents of Mozambique, Zimbabwe return home after cyclone kills 150"}
{"tweet_id": "1110237231502057480", "text": "The EU has provided a helicopter for the #CycloneIdai relief effort - and today, it started its three week operation under the auspices of the World Food Programme to move relief goods, injured survivors and"}
{"tweet_id": "1107916246417317888", "text": "Hope ZCDC will mobilise equipment to clear roads, build bridges&provide help to the many affected pple &it\u2019s workers in Marange &Chimanimani"}
{"tweet_id": "1107001395134255106", "text": "More than 140 killed after Cyclone Idai hits 3 southern African countries \u2014 Mozambique, Zimbabwe and Malawi; hundreds reported missing, thousands stranded in mostly poor, rural areas"}
{"tweet_id": "1109088313435148293", "text": "While donor assistance is welcome, it can never be the main source of funding for such critical institutions as the CPU. We cannot, as a country, outsource our own existence. #CycloneIdai"}
{"tweet_id": "1108126634643738629", "text": "EU releases \u20ac3.5 million in emergency aid following Tropical Cyclone #Idai and deadly floods in Mozambique, Malawi and Zimbabwe. The funding will provide logistical support, emergency shelter, hygiene, sanitation & health care: #IdaiCyclone"}
{"tweet_id": "1108700384019787776", "text": "#Mozambique #Norway provides humanitarian assistance to #Idai Mozambique through @WFP and deploys personnel from The Norwegian Directorate for Civil Protection @DSB_no . #ConsistentPartner \u201d #hmrd #CycloneIdai"}
{"tweet_id": "1109074720396333057", "text": "A city of 500,000 inhabitants destroyed. We have launched an Emergency Funding campaign to support countries affected by #CycloneIdai. To support #Mozambique, #Zimbabwe or #Malawi visit and make a donation dedicated to this particular crisis."}
{"tweet_id": "1110867778532200449", "text": "Distribution of donations to #CycloneIdai victims should have / must be done after thorough surveys. Cases in Chipinge where people pretend to be victims are a drawback."}
{"tweet_id": "1107747256885825536", "text": "In times of despair, the true character of a nation emerges. Zimbabwe has amazing humans. Just finished a shift sorting through donations & the response has been amazing. If you have a few hours to help pass by Highlands Presbyterian Church tomorrow. #CycloneIdai"}
{"tweet_id": "1113067545416826880", "text": "Cyclone Idai\u2014Relief Work in Mozambique #jwMozambique"}
{"tweet_id": "1108036573558382592", "text": "In these trying times, let us help reduce the problems and not add on to them. The risk of waterborne diseases is great in such times and with the capital going through a hectic water cut. Let us practice good hygiene and keep each other safe! #CycloneIdai \u1f64F"}
{"tweet_id": "1108410069656453121", "text": "\u2b07\ufe0fAnd we have touch down! First of three @WFP MI8 helicopters arrived in #Beira #Mozambique today. Next flight plan: Rescue stranded people and food delivery. #CycloneIdai"}
{"tweet_id": "1107374941450784768", "text": "@ZBCNewsonline A responsible government should have ordered evacuation of schools the moment dozens of deaths were reported in Mozambique and the cyclone was forecast to hit the Eastern Highlands."}
{"tweet_id": "1113439564486647809", "text": "#CycloneIdai Survivors: Mrs Gapara stays with her daughter-in law in Gutu and continue using collapsed houses because she doesnt have anywhere to go. #LivesCanBeSaved Please help us save lives and give what you can:"}
{"tweet_id": "1113100819874885632", "text": "Food security and health needs because of #CycloneIdai are so great, as I told @UNECOSOC just a little bit ago. The damage is here to stay for quite some time."}
{"tweet_id": "1106832666324860928", "text": "Areas adjacent to this brdge has been completely drowned overnight including a police camp,houses and shops #CycloneIdai"}
{"tweet_id": "1107262052459003904", "text": "#CycloneIdai You may not understand it if you r in the comfort of your home. Families r traumatized by the effects of the clyclone. People have died. Others r still missing. Homes & bridges have been destroyed. Some have no food. Others r now vulnerable to diseases. HELP THEM OUT"}
{"tweet_id": "1109767619257794560", "text": "#UPDATE This @Ruptly video shows the #Chimanimani #CycloneIdai victims who were buried in pairs per grave. It also shows the magnitude of the damage caused and how the victims are now battling to forge ahead in the aftermath of #CycloneIdai. Heart-breaking scenes! @InfoMinZW"}
{"tweet_id": "1106856684364939264", "text": "ST. Charles Lwanga. A rockfall from the Mt n hit e dinning hall ch then collapsed onto a dormitory wth sleeping boarders. Rescue efforts on right nw. 3 stdnts trapped. There are high fears of loss of life. Lets pray. Lets also help in any way we can. #CycloneIdai"}
{"tweet_id": "1109343705138376704", "text": "South Africa state electricity company: Stage 2 rolling blackouts nationwide today 9am-11pm as mismanaged, scandal-hit firm struggles with low capacity made critical by loss of power from Mozambique dams due to Cyclone Idai. Polluting diesel now being burned for electricity."}
{"tweet_id": "1107640570925776897", "text": "Zimbabwe not coast with the Indian Ocean, however, the death tall from Cyclone Idai, is disproportionately too high in Zimbabwe compared to Mozambique. 150 missing and 65 confirmed dead = 215 people. Could this is a sign that Mr. Mnangagwa @edmnangagwa runs a briefcase Government"}
{"tweet_id": "1111537198770343937", "text": "Meanwhile, our borehole at the Chipinge office has been a life line for #women, #girls and #children in the community by providing the much needed water for drinking, cooking, washing and bathing since #CycloneIdai stuck two weeks ago #CycloneIdaiZW"}
{"tweet_id": "1109635821005619200", "text": "The deafening silence by SADC Secretariat on Cyclone Idai that hit Mozambique, Zimbabwe and Malawi that left many dead and destroyed lots of property is shocking. By now The Secretariat could have convene to discuss interventions. Chairman Namibia is futile and sleeping !"}
{"tweet_id": "1108659050877734913", "text": "#UNFPA #Mozambique is thrilled to distribute Dignity Kits to new mothers and women displaced from their homes by the floods in Tete Province. More on the way for those impacted by Cyclone Idai."}
{"tweet_id": "1111534949604229121", "text": "Both MDC & Zanu PF officials are working together to distribute Cyclone Idai food aid. - July Moyo (Zimbabwes Minister of Local government) #Zimbabwe #CycloneIdai #JulyMoyo #MDC #ZanuPF Video credit @Zimpaperstv"}
{"tweet_id": "1106941332558217216", "text": "An estimated 600,000 people in #Mozambique have been affected by cyclone Idai; 260,000 are children. Thousands are displaced, their houses destroyed by the severe weather. We\u2019re on the ground. #MozambiqueFloods2019"}
{"tweet_id": "1107708876521115648", "text": "On behalf of the Zimbabwe National Liberation War Veterans Association I would like to extend our heartfelt condolences to those killed by #CycloneIdai and wish those affected a speedy recovery. Victor Matemadanda now on @ZiFMStereo"}
{"tweet_id": "1108620374093123584", "text": ".@UNFPA is sending 1,000 dignity kits to Tete & Sofala in #Mozambique for distribution to the most vulnerable displaced women & girls. We are there with you! #Cycloneidai"}
{"tweet_id": "1108411619099529216", "text": "Mozambique President Filipe Nyusi has declared a national state of emergency. and three days of mourning March 20 to commemorate the victims of the Cyclone Idai\u201d. Flood waters are still rising hence the President said: We are in an extremely difficult situation.\u201d"}
{"tweet_id": "1111181125702037504", "text": "Zimbabwe Latest - Chimanimani People Speaks Out About Food Distribution via @YouTube #CycloneIdai #zimbabwe #Harare"}
{"tweet_id": "1108139346262151169", "text": "My brilliant team in action today offloading vital supplies #UKAid working in partnership with INGC @IOM_Mozambique @NosbachMarc and @CruzVermelhaMOZ"}
{"tweet_id": "1106813189499600896", "text": "#CycloneIdai has hits parts of #Zimbabwe.Chimanimani in particular with more than 100 people feard dead. in ward 15 a flash flood & mudslide has resulted in mo than 30 houses washed away. #rescue is underway. Assistance with food,tents;blankets is appreciated. #PrayForMozambique"}
{"tweet_id": "1108160909980196865", "text": "#CycloneIdai Tofa here tese tiri ivhu. The people of Manicaland cry for your help. Support with your small donation via the Gofundme link and please retweet to spread the message."}
{"tweet_id": "1113062758285635589", "text": "Government departments are working round the clock to restore services disrupted by #CycloneIdai including electricity supply. In Ngangu, Chimanimani and other areas, there has been a power outage since 15 March 2019."}
{"tweet_id": "1113178238497550336", "text": "Please donate to help the victims of #CycloneIdai and help imaan.hassim reach her fundraising goal! Link: Thanks for doing this imaan.hassim!!"}
{"tweet_id": "1111659060435304448", "text": "Mozambican president visiting accommodation camps for people displaced by floods following #cycloneIdai. People complained about delays and insufficient food distribution in the camps."}
{"tweet_id": "1111271521216090112", "text": "Hundreds dead, countless missing. Bodies washed miles from their homes by flood waters. Two weeks after Cyclone Idai hit, and bodies are being found in trees 20 foot high. A dispatch from our forensic specialist in Mozambique."}
{"tweet_id": "1109571047286849538", "text": "The damage following #CycloneIdai is assessed in this map of #Chimanimani in #Zimbabwe: Estimated areas of flooding are highlighted in blue and landslides are dark red."}
{"tweet_id": "1110838738383446018", "text": "RT @makcawzim: #CycloneIdai #MAkCAW #Chimanimani. Make Children and Women Count team donate to affected communities in Chimanimani."}
{"tweet_id": "1110234432261316608", "text": ".@CARE is delivering aid to #CycloneIdai survivors in #Malawi and #Mozambique and setting up community groups to protect women and girls from abuse."}
{"tweet_id": "1112979696369721344", "text": "A pregnancy is a lifetime of love waiting to happen\u2764\ufe0f You can help nearly 75,000 pregnant women who are caught up in the aftermath #CycloneIdai to experience this joy! Donate today: @UNFPA @UNFPAMalawi @UNFPAMozambique @UNFPAZimbabwe"}
{"tweet_id": "1107966753043300358", "text": "The scale of devastation is enormous. It seems that 90% of the area is completely destroyed.\u201d -Red Cross on Beira, Mozambique\u2014a city bigger than Atlanta, Miami or New Orleans\u2014that took a direct hit from Cyclone Idai"}
{"tweet_id": "1106927276141264898", "text": "#CycloneIdai, Dams are also at risk of breaching since they already have high water levels. Those staying downstream should be warned."}
{"tweet_id": "1107985042326908930", "text": "Rapidly rising floodwaters have created an inland ocean in Mozambique endangering thousands of families, as aid organizations scramble to rescue and provide food to survivors of Cyclone Idai"}
{"tweet_id": "1109088149182009345", "text": "Casa C 295 H avion civil fant\u00e1stico ! Thanks really needed for the Chimoio -Beira humanitarian air bridge for food and goods transport ! @WFP_UNHAS @wfp_mozambique #IdaiCyclone"}
{"tweet_id": "1110744341419642880", "text": "#CycloneIdai Here is a todays video showing youths clad in #ZANUPFs @edmnangagwa regalia controlling queued aid recipients. The question is: Is it proper for them to manage the queue in party regalia? Let us discuss. @InfoMinZW @Wamagaisa @nickmangwana @ProfJNMoyo @matigary"}
{"tweet_id": "1116118304295247872", "text": "EU announces additional 7 mln Euros for victims of cyclone Idai in Mozambique"}
{"tweet_id": "1110493647756234752", "text": "Govt of Mozambique say official death toll of Cyclone Idai stands at 446 and is expected to increase. Acc to U.N. 58,600 homes destroyed. 110,000 ppl sheltering in sites across Sofala. Save the Children say many children left traumatised as they saw parents being swept away."}
{"tweet_id": "1107966239455019008", "text": "#CycloneIdai: the UK \u1f1eC\u1f1e7 is funding these relief efforts through our partner @UNICEFZimbabwe @DFID_UK @foreignoffice @hbaldwin @AnnabelGerry @1David_Bailey @JessPPZ @UKinMozambique @263chat @StarfmZimbabwe @DFID_Education @UKinMalawi"}
{"tweet_id": "1111188120924491776", "text": "@ActionAidZim Brings releif to #CycloneIdai affected women the oraganisation has extended US$50,000 worth donations targeted at addressing women dignity issues @GMCZimbabwe @GenderZimbabwe @GenderLinks @UNFPA_Zimbabwe @MoHCCZim @CWGH1"}
{"tweet_id": "1108227041126727681", "text": "\u1f464 126 people have been killed \u26fa 80,000 people displaced Cyclone Idai has affected over 1 million people. We are working with local partners in Malawi & Zimbabwe to provide emergency assistance. Stand with us and donate:"}
{"tweet_id": "1110459900700823553", "text": "An estimated 900,000 children in Mozambique have been orphaned, separated from their families, made homeless, or otherwise affected by Cyclone Idai, officials say. Thats half of the 1.8 million people impacted overall."}
{"tweet_id": "1106896318772011008", "text": "Loss of life and damage. To think some of the infrastructure damage from Cyclone Eline in 2000 was only getting repaired now, 20 years later #CycloneIdai"}
{"tweet_id": "1108393260932874240", "text": "My husband and our family are still there. There is no way to save all of them. Rescue teams continue to evacuate people stranded by floods, caused by #CycloneIdai in Mozambique. \u27a1\ufe0f"}
{"tweet_id": "1113541202207563777", "text": "RT @Kschnoering: Displaced people queuing in the camp to receive the Cholera vaccine.#Beira #CycloneIdai"}
{"tweet_id": "1109040666712199170", "text": "#Mozambique: #Tussana Ngome, #Manica province - flash floods from #CycloneIdai killed at least 24 and displaced 220 families 1/3"}
{"tweet_id": "1111679998161756165", "text": "Update on #CycloneIdai \u1f6a8 2 cargo planes landed in Beira, #Mozambique, on Wednesday carrying the supplies we need to respond to a deadly outbreak of cholera. More than 100 tons of equipment have been shipped in the last 5 days. Its a race against time to reach those affected."}
{"tweet_id": "1112800176450822150", "text": "@Martin79851584 @KMutisi @matongo_84260 @matigary @zanupf_patriots Once met that guy ,best MP ever.I heard people are planning to make him the whole life MP.The idea came after he donated food aid relief, blankets ,tents etc to #CycloneIdai victims ."}
{"tweet_id": "1108682359837286405", "text": "An estimated 230,000 women of child bearing age have been displaced with #floodsinMalawi #CycloneIdai . UNFPA Malawi is swiftly ordering Dignity Kits containing soap, zitenje, sanitary pads & many more to address women & girls sanitary and dignity needs in the camps"}
{"tweet_id": "1107902427360083968", "text": "RT @TIME: More than 1,000 people are feared dead after devastating cyclone cripples Mozambique"}
{"tweet_id": "1108426881731387399", "text": "Families in #Mozambique, #Malawi and #Zimbabwe are still reeling from the devastation wrought by #CycloneIdai. UNICEF is on the ground, delivering emergency supplies to impacted children and families. Heres what you need to know and how you can help:"}
{"tweet_id": "1107293127453364225", "text": "Concerned about how this money will be used? The GoFundMe page is administered by @freemanchari , who has established a track record of transparency and delivery on fundraising efforts. #CycloneIdaiZW #CycloneIdai"}
{"tweet_id": "1107254938470662144", "text": "The effort to reach the marooned compatriots is hindered by these kinds of rubble and debris on the road. But we are witnessing a lot bravery and commitment from everyone including volunteers and other well-wishers #CycloneIdai"}
{"tweet_id": "1112267276257030144", "text": "Good morning my colleagues, i am in a process of organising some aid to go to Mozambique and further assist our people affected by Cyclone Idai. Please i currently need 5 Chefs who will voluntarily travel to Beira to cook for the affected people for a week and there after 5 more"}
{"tweet_id": "1106958884923686914", "text": "RT @tbsena04: ALA is collecting food and clothes. We are at No. 2 Princess Drive, Newlands, Harare. Call 0782001880 #CycloneIdai ."}
{"tweet_id": "1111595692412174337", "text": "Survivors of devastating #CycloneIdai are in dire need of global support. UNHCR @refugees airlift has delivered family tents, tarpaulins, sleeping mats, blankets, mosquito nets, solar lanterns, cooking sets, jerry cans. But more needed. Please help here:"}
{"tweet_id": "1111181169335435264", "text": "Girls as young as 9 are sleeping in camps without food & blankets as a result of #CycloneIdai #MalawiFloods2019 in Phalombe. We need your SUPPORT to reach out to more girls."}
{"tweet_id": "1111290216017465344", "text": "So sad to realise that all efforts and donations being made to #CycloneIdai victims by the corperate world is being politicized @TheCEOMagZim @WeArePindula"}
{"tweet_id": "1108164200344498176", "text": "#Tanzania President @MagufuliJP has extended #humatarian Aid via #Tanzania Air force which has been deployed to offer humanitarian support (Food and Medicine) to flood-ravaged #Malawi, #Zimbabwe and #Mozambique in the aftermath of the torrential rains and Tropical Cyclone Idai."}
{"tweet_id": "1109192273215008774", "text": "#3moNews | #CycloneIdai did not damage fuel pipeline, Zimbabwes energy minister has said #3mob"}
{"tweet_id": "1108010538632658944", "text": "Our hearts\u1f499go out to all those who have been affected by #CycloneIdai including loss of life, destruction of property & displacement of people due to flooding and landslides. @WFP is supporting ongoing assessment efforts with @UNZimbabwe and stands with the people of #Zimbabwe."}
{"tweet_id": "1107706898558713856", "text": "War Vets are involved in the efforts on the ground #cycloneidai. Matemadanda now on @ZiFMStereo"}
{"tweet_id": "1107950818177806337", "text": "The moral gestapos are awake commenting on Vimbai Zimutos images, telling people how to donate towards #CycloneIdai and keep quiet not pics on social media, hee, chii chii hee. Yohweee varipabasa shuwa."}
{"tweet_id": "1109123156164382720", "text": "@TeaLeoni @UNICEFUSA This is beautiful, your donation brings a smile to #CycloneIdai victims @Afrn_Uni_EForum @ntandoe_ndhlovu @Delta_Boost_MSU @MSUChristianUn1 @enactus_msu_zim @enactuszw @nustenactus"}
{"tweet_id": "1107296725935505408", "text": "Listen to Chimanimani East MP Joshua Sacco speaking on the effects of #CycloneIdai and the efforts being made to assist and rescue those afflicted. @StarFMNews @ChronicleZim @SundayNewsZimba @SundayMailZim @ManicaPostZim"}
{"tweet_id": "1110037640806567937", "text": "#CycloneIdai update: WFP is setting up storages facilities in some of the affected areas to make sure that the chronically ill get their medicine in time. \u1f4f9: The last load for today, medicine headed to Chimanimani, being loaded at Mutare aerodrome."}
{"tweet_id": "1109116359101820932", "text": "#LetsGo watch the @kwesesports Rugby Invitational 7s this weekend. Teams include Georgia, Uganda, 4 Women\u2019s teams & 6 school teams! Get 20% discount on all rides. 5% of all gate takings will go towards #cycloneidai relief & there will be collection areas for any donations!"}
{"tweet_id": "1108684337493495808", "text": "@megdoesmath Hi Meg. There are many different organizations out there accepting donations etc. If you google, search on twitter or fb youll find some! Thank you, we need all the help we can get."}
{"tweet_id": "1108313050904432641", "text": "The African Union (AU) has released US$350,000 of emergency funding to Mozambique, Zimbabwe and Malawi in the aftermath of cyclone Idai. Mozambique, as the worst affected country, will receive US$150,000 of that money."}
{"tweet_id": "1108430719439826944", "text": "4/4 #SeanKidd The residents of #Ngangu wish to thank Sean Kidd. His team has been very active, rescuing people and transporting food and medication with their helicopter. Sean Kidd is the one who also bought the material used to make the coffins. Thank you Sean! #CycloneIdai"}
{"tweet_id": "1118072192376475648", "text": "Ongoing Operation Sahayata, to sustain HADR operation and help to affected people of Mozambique due to cyclone IDAI, Indian Naval Ship Magar carried 250 tonnes of rice and 500 kgs of essential medicines to"}
{"tweet_id": "1109891635649880064", "text": "Here farmer Malita inspects what is left of her field after #cycloneidai - her entire crop has been wiped out just one month before harvest. Concern is responding with basic essential items such as cooking utensils, mosquito nets, and soap. You can help:"}
{"tweet_id": "1110200010157842433", "text": "More UK aid has arrived at Beira airport in #Mozambique for victims of #CycloneIdai - food, water and filtration kits so desperately needed for thousands affected here @GMB"}
{"tweet_id": "1109063885632483328", "text": "#Mozambique: #Tussana Ngome, #Manica province - flash floods from #CycloneIdai killed at least 24 and displaced 220 families - resident says they waited for 2-3days on trees or high ground for water to drain to walk to safety at least 24 dead"}
{"tweet_id": "1109119995282378754", "text": "#SeedCoZimbabwe SeedCo we are here in Manicaland today donating mealie meal to the Cyclone affected victims through The Ministry of Agric & Ministry and Council of Chiefs. We remain in prayer as we contribute to this cause. #Zimbabwe #CycloneIdai"}
{"tweet_id": "1108667868118425600", "text": "Incredible scenes of destruction in Beira, Mozambique under the effects of Tropical Cyclone Idai. Report via Meteo Tras Os Montes."}
{"tweet_id": "1109812365132849152", "text": "Clothes donations being packed at Highlands Presbyterian Church in Harare today. This is the 26th truck thats left from here! #CycloneIdaiUPDATE #CycloneIdaiZW #CycloneIdai"}
{"tweet_id": "1107989773787037698", "text": "#CycloneIdai: @WFP continues life-saving aid distribution in Beira, Mozambique, including helicopter food drops, in wake of devastating flooding."}
{"tweet_id": "1108757047741480960", "text": "\u1f198This is #important and #urgent! #aid has not been sufficient\u1f198 #euros | #pounds | #dollars it\u2019s the same! #emergency #mozambique #donate #help @UN \u1f1f5\u1f1f9#Portugal \u1f1eC\u1f1e7#UK \u1f1eA\u1f1fA@EU_Commission Mozambique already faces difficulties without natural disasters."}
{"tweet_id": "1109390403353096199", "text": "#CycloneIdai has triggered a massive disaster in Southern Africa, affecting hundreds of thousands of people. As the number of victims grows, #Mozambique has declared a national emergency. @WFP is rushing food & other assistance w/ support from donors like @eu_echo \u1f1f2\u1f1fF\u1f1eA\u1f1fA"}
{"tweet_id": "1108381764777639936", "text": "Drone footage shows the severe damage left by Cyclone Idai in Southern Africa. More than 200 people in Mozambique have been confirmed dead, President Filipe Nyusi said, and the number is expected to rise significantly:"}
{"tweet_id": "1111081920719400962", "text": "#CycloneIdai death toll still rising, has now reached 1,065. This number could still double as more information emerges over the coming days. #Mozambique #Zimbabwe"}
{"tweet_id": "1107756443774668801", "text": "Cyclone #Idai leaves trail of death, destruction and homelessness in Malawi, Mozambique & Zimbabwe, affected countries appeal for urgent aid. Oxfam teams are assessing the needs of people worst affected in all 3 countries: #CycloneIdai"}
{"tweet_id": "1116777032032169984", "text": "RT @TawandaKarikoga: Cleared n out of border, Over to you Honourable @fortunechasi #CycloneIdai donations"}
{"tweet_id": "1107185981155934210", "text": "At least 43 died in central Mozambique & Zimbabwe after a cyclone tore through the southern African nations, knocking out electricity & phone networks & cutting power to South Africa from a hydropower dam. The storm has affected 1.5M people #CycloneIdai"}
{"tweet_id": "1112044845403648001", "text": "Good morning y\u2019all! Please donate to help our people from #Zimbabwe #Malawi and #Mozambique . Please also retweet. #CycloneIdaiZW #TheNextMile #cycloneidai @cycloneidaifund"}
{"tweet_id": "1106984371637157888", "text": "Relief efforts coming from individuals and organizations/associations..if you are providing drop off points or collecting provisions towards #CycloneIdai please share details even details of those you know who are @UNZimbabwe @BishowParajuli @classic263 @SwedeninZW @NLinZimbabwe"}
{"tweet_id": "1110166341208674304", "text": "Cholera cases have been reported & there is threat of more waterborne diseases. Lack of clean water & access to sanitation facilities are huge problems facing survivors. CARE are currently distributing hygiene kits. #CycloneIdai @decappeal"}
{"tweet_id": "1108382742780231680", "text": "Bikita district in Masvingo ravaged by #CycloneIdai 4 deaths and several homes destroyed"}
{"tweet_id": "1109838422099804160", "text": "CYCLONE IDAI UPDATE Electricity The main line from Chipinge to Chimanimani has 200 poles washed away. Works in progress Mt Selinda to Chipinge, 6 poles collapsed and works are in progress. #CycloneIdai"}
{"tweet_id": "1107679247840219137", "text": "#CycloneIdai This is heartbreaking! The death toll in Zimbabwe stands at 89. Behind those numbers are real people - bread winners, children, mothers, fathers, brothers, sisters and importantly, fellow citizens. We stand in solidarity with the bereaving families. @InfoMinZW"}
{"tweet_id": "1106956296031518721", "text": "Any Organisations need of #Volunteers to respond to #CycloneIdai in Chimanimani, I am in, please DM. @UNVolunteers @WorldVisionZim @nangozim @OxfaminZim @redcross @civilProtectionZim"}
{"tweet_id": "1108380988852367366", "text": "Our Doves Team is on the ground and we are happy our nation has united to assist. Please continue to send in your donations. @advocatemahere @fortunechasi , @Wamagaisa, @DavidColtart, @daddyhope, @DebraWakanaka #CycloneIDai #Doves"}
{"tweet_id": "1111596796881571840", "text": "Mozambique, Zimbabwe & Malawi remains critical after #CycloneIdai: more than 1 million people affected, 650 lost their lives, many injured. @refugees is distributing tents, waterproof tarpaulins, mattresses, canisters, buckets, mosquito nets, solar lamps and soap."}
{"tweet_id": "1108634513398263809", "text": "Dear Zimbabwe: My sincere thanks for the FIVE PORTABLE BOXES FROM the opposition @mdczimbabwe leader @nelsonchamisa towards #CycloneIdai victims. Indeed @realDonaldTrump is only a call away - the 5 boxes came fast. This is leadership! P/S: Dont misinterpret & @me."}
{"tweet_id": "1109362295724040192", "text": "#CycloneIdai: this week @DFID_UK \u1f1eC\u1f1e7 partners responded with medicines hygiene kits & psychosocial support. The UK announced it will match donations of up to \u00a32m, @PennyMordaunt updated @HouseofCommons on #UKaid response AND the Queen sent messages to those affected in Zimbabwe \u1f1fF\u1f1fC"}
{"tweet_id": "1107077598595739649", "text": "I had never heard of a cyclone in Africa, this severe and very strong cyclone has led to the death of several people in the areas its passing through, especially the coastal Mozambique town of Beira, parts of Zimbabwe and"}
{"tweet_id": "1108005969135616005", "text": "Video: Chamisa handing out donations to Cyclone Idai survivors in Manicaland #Zimbabwe #CycloneIdai #Chamisa #Manicaland"}
{"tweet_id": "1108245505186893824", "text": "RT @tonganaiw: Its #OneTime as I play my part using @OneMoneyZw to contribute to efforts to assist those affected by #CycloneIdai /"}
{"tweet_id": "1107307518609498117", "text": "Econet will double your donation for the relief fund ..any amount is welcome send via their biller code #Cycloneidai #idai Econet Zimbabwe"}
{"tweet_id": "1107018356077576193", "text": "RT @OxfaminZim: SEE: Cyclone Idai leaves trail of destruction in Mozambique, Malawi, Zimbabwe, killing 140 via @New"}
{"tweet_id": "1107685045714776066", "text": "Really shocking this morning that an African city of a half-million people, #Beira #Mozambique, has apparently been almost totally destroyed, and it barely rates a mention in US news media. @nytimes @washingtonpost @CNN #CycloneIdai"}
{"tweet_id": "1110892108196515842", "text": "BREAKING NEWS: Five cases of #cholera have been confirmed in #Beira and surrounding areas in #Mozambique following the cyclone that ravaged the country, killing at least 468 people. - Reuters"}
{"tweet_id": "1113152518069080065", "text": "In cyclone-decimated Beira, Mozambique, cholera is quickly spreading in the wake of flooding that killed more than 750 people"}
{"tweet_id": "1116594693712662528", "text": "FACES AND STORIES FROM #CYCLONEIDAI Over 129,000 children were affected by #CycloneIdai. With \u1f1f8\u1f1eA core support, UNICEF Zimbabwe and Childline Zimbabwe is doing an incredible job assisting"}
{"tweet_id": "1111506654900772864", "text": "The @GiftoftheGivers K9 team is headed for an area in Chimanimani called Kopa. There are 39 school children missing. The search to locate their & other remains begins today. Look out for my & Linge\u2019s report on @eNCA on Sat morning. #CycloneIdai #Zimbabwe \u1f1fF\u1f1fC"}
{"tweet_id": "1111340334456422400", "text": "The DEMA team is now complete. This afternoon the last 4 members of our crew arrived along with our water purification equipment on a transport flight. Tomorrow we start setting up. #Beira #Mozambique #CycloneIDAI #MozambiqueFloods2019"}
{"tweet_id": "1112423928469901312", "text": "More than 50 pupils & three teachers have been confirmed dead while 70 school going children are still not accounted for and are feared dead in the #CycloneIdai hit areas with an estimated $10 million worth of school infrastructure having been lost @miketerungwa @ConnectedCathy"}
{"tweet_id": "1106489914844164096", "text": "\u1f1f2\u1f1fFMozambique: Nearly 63,000 people have been affected by floods, including more than 10,500 displaced. At least 10 deaths have been reported. #CycloneIdai is expected to bring more heavy rains & strong winds Find out more on #MozambiqueFloods2019 >>"}
{"tweet_id": "1109105128714305536", "text": "In order to help the victims of Cyclone Idai we urgently need volunteers willing to travel to Mozambique to assist our teams in the relief efforts. We are looking for volunteers to serve"}
{"tweet_id": "1115969186671538179", "text": "#EastTimor : Country offers $1M to #CPLP fund for cyclone victims #Mozambique #Idai #CycloneIdai #CicloneIdai"}
{"tweet_id": "1107142971185659906", "text": "The hardest hit residence is Ngangu Township in Chimanimani. Most loss of life happened here. Over a hundred houses were damaged by mud-falls and rockfalls. This is followed by Rusitu Valley Community whose topography made it difficult for residents and property.#cycloneidai"}
{"tweet_id": "1107329569365712896", "text": "#CycloneIdai left a trail of destruction in its wake in #Beira Roads are cut off, power and communication are down, buildings are destroyed. Relatively few casualties reported so far but the true extent remains to be seen."}
{"tweet_id": "1112003162884456449", "text": ".@UNDP has deployed early respondents & recovery advisors. Devastation of Beira Port in #Mozambique & corridor to #Zimbabwe is a major concern as it is a route for bringing in fuel, food & medical supplies to the two countries, and livelihoods for people inland. #CycloneIdai"}
{"tweet_id": "1110191088973869056", "text": "@CGwesere @hallaboutafrica @reliefweb reported The rain has caused severe flooding in 14 of Nsanje\u2019s 28 districts so all we have to do as Malawians is give Info instead of debating while fellow citizens there suffer, thanks."}
{"tweet_id": "1108645096378036224", "text": "Can someone tell us how much our great Chinese friends\u201d donated ? These are the people looting Diamonds in Manicaland including Chimanimani! @CharityMaodza @KMutisi @Letty_Mabhena @daddyhope @fortunechasi @dudumo @UKinZimbabwe @mmawere @Busisa74 @happ_zenge @TrevorNcube"}
{"tweet_id": "1110506507018424325", "text": "We have touched down in #Chimanimani and are offloading goods for the affected residents. They have lost almost everything, and there is no water in town. #CycloneIdai #EUinZim"}
{"tweet_id": "1107294236691578881", "text": "Live on @SkyzMetroFM with @TheMasterEli appealing for donation to assist #CycloneIdai .You can also drop you donations @SkyzMetroFM offices. 9th floor Pioner Hse. Thank you @SkyzMetroFM for the airtime #Asakhe. #Esabantu"}
{"tweet_id": "1110120473025761281", "text": "Lets hit the $200,000 mark today! We are so close & every contribution matters! Help those affected by the #cyclone rebuild their lives & find a sense of normalcy after this disaster - Donate via @EcoCash Biller Code 320041 #ReachOut \u1f91D\u1f1fF\u1f1fC\u1f91D #CycloneIdai"}
{"tweet_id": "1107262903072243712", "text": "Cyclone Idai that cut through Madagascar and has killed hundreds in Malawi and Mozambique and hit Zimbabwe hard with scores of fatalities now striking Zambia. In headline, Zambia Daily Mail warns: Stay in your homes."}
{"tweet_id": "1112430775666769920", "text": "#GorongosaReliefTeam delivered 641 food packages yesterday to people stranded by floods in #Mozambique. It took 2 helicopters, 21 flights & 40 hours of land travel, but it was worth every minute. Thanks for your support Photo: .@jen_guyton #CycloneIdai"}
{"tweet_id": "1107919834694778883", "text": "#S.A to help with rescue efforts in #Mocambique. #CycloneIdai"}
{"tweet_id": "1107114541035540482", "text": "Good morning #Zimbabwe let us pray to the #Allmighty so that no more deaths again in this tragic #CycloneIdai. God bless #Zimbabwe let us help our brothers and sisters affected by this #Idai please"}
{"tweet_id": "903597712251248640", "text": "Harvey Live Updates: Death Toll Rises in Texas by THE NEW YORK TIMES via NYT Keywords: Hurricane Harvey (2017),"}
{"tweet_id": "902648150166568960", "text": "Quiet at Delco, Austin #Harvey evacuee shelter, where Secret Service did a sweep, but POTUS ultimately didnt stop by."}
{"tweet_id": "903644050150051840", "text": "If there are any models affected by #HurricaneHarvey, Im in Texas, safe, and I have a place for you to crash \ud83d\udc96"}
{"tweet_id": "903435368481136640", "text": "#Nationals Max Scherzer paying all adoption fees for all Texas pets who were displaced by Hurricane Harvey."}
{"tweet_id": "903646875437461506", "text": "We learned from #ColoradoFlood #Harvey survivors with limited resources will need extra help from @NationalVOAD organizations. You can help"}
{"tweet_id": "903054148337324032", "text": "#NEW: @Walmart just announced a $20M donation to #Houston shelters. @CBSDFW #Harvey"}
{"tweet_id": "902654199493791758", "text": "#Oil #Gas Shell Pledges $1 Million to American Red Cross for Hurricane Harvey Relief"}
{"tweet_id": "902851683251875840", "text": "#Miami help the #HurricaneHarvey relief by donating items at the stadium tomorrow. We know how devestating hurricanes can be, lets help!"}
{"tweet_id": "902836448830902272", "text": "Update: They said Harvey was suppose to die down, hurricane winds are blowing, its flooding more, and my telephone pole snapped in half."}
{"tweet_id": "902858819985924096", "text": "@Stathakis82 @StoriesandMagic Jensen said that hell make sure all money goes to the families and charities, to help with the relief from Hurricane Harvey."}
{"tweet_id": "903686490051530756", "text": "#Houston #auto dealers and employees begin assessing damage from #HurricaneHarvey."}
{"tweet_id": "901772397967224832", "text": "Just in: Parts of Texas 71 in Bastrop County closed due to flooding #Harvey"}
{"tweet_id": "903657343165988864", "text": "#HurricaneHarvey: unprecedented damage, unprecedented lawsuits?"}
{"tweet_id": "903060889183629314", "text": "FOXNEWS: A husband and wife sleep on cots at a shelter that was set up for evacuees of Hurricane Harvey."}
{"tweet_id": "901701369983373312", "text": "Houston - stay off the roads! Its far too dangerous out there! #Harvey #houwx"}
{"tweet_id": "903657487387295745", "text": "UPDATE :Hurricane Harvey-related death toll rises to 39"}
{"tweet_id": "903408391594405889", "text": "Jason Witten just got a caller who donated $200,000 to Hurricane Harvey relief"}
{"tweet_id": "901663091443818496", "text": "RT @abc13houston: A possible tornado was reported in northwest Harris County on Barker Cypress"}
{"tweet_id": "902652463790133252", "text": "@HoustonRockets owners & the @astros organization together have donated $14 MILLION to #HurricaneHarvey relief. Htown has a lot of love."}
{"tweet_id": "903533547251781633", "text": "New post (UGK Archives Are Destroyed Due to Hurricane Harvey) has been published on Trap4Ever -"}
{"tweet_id": "903625673817767936", "text": "Tyler Perry Is Donating $1 Million to Hurricane Harvey Relief, Including Joel Osteen - via"}
{"tweet_id": "903762039574749184", "text": "Gearing up for #Harvey. Our crews are packed and driving to Texas to support @CNPalerts with restoration and relief. #ThankaLineman"}
{"tweet_id": "903748795846066176", "text": "Guys, help buy these shirts to support those affected by Hurricane Harvey."}
{"tweet_id": "902843083431100418", "text": "Hurricane Harvey \u2013 No Horse Left Behind \u2013 Equine Rescue Network"}