-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathamazon forest fire.csv
We can't make this file beautiful and searchable because it's too large.
3060 lines (2747 loc) · 970 KB
/
amazon forest fire.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
id,conversation_id,created_at,date,time,timezone,user_id,username,name,place,tweet,mentions,urls,photos,replies_count,retweets_count,likes_count,hashtags,cashtags,link,retweet,quote_url,video,near,geo,source,user_rt_id,user_rt,retweet_id,reply_to,retweet_date
1205535510057439232,1205535510057439232,1576257038000,2019-12-13,20:10:38,MSK,984083569483157504,ellisrosemason,enlis,,What ever happened to the forest fire in the Amazon?,[],[],[],0,0,0,[],[],https://twitter.com/ellisrosemason/status/1205535510057439232,False,,0,,,,,,,"[{'user_id': '984083569483157504', 'username': 'ellisrosemason'}]",
1205483746067132417,1164585857464115200,1576244696000,2019-12-13,16:44:56,MSK,119407394,vugica,Grabar Kos Bojana,,Burnt and blinded by Amazon forest fire !,['araquem_oficial'],[],[],0,0,0,[],[],https://twitter.com/Vugica/status/1205483746067132417,False,,0,,,,,,,"[{'user_id': '119407394', 'username': 'Vugica'}, {'user_id': '216909495', 'username': 'Araquem_oficial'}]",
1205472032202412034,1205472032202412034,1576241903000,2019-12-13,15:58:23,MSK,3802529241,commonland,Commonland,,"How can you bounce back better after a large forest fire? We asked a researcher, an indigenous woman from the Amazon, and two community builders. Rewatch the digital summit here; https://bit.ly/34WdbIF
@GlobalLF #4returnsstories #4returns
@enable4returns pic.twitter.com/dPvt3cIClL","['globallf', 'enable4returns']",['https://bit.ly/34WdbIF'],['https://pbs.twimg.com/media/ELqya1cWkAE0ejB.jpg'],0,2,4,"['#4returnsstories', '#4returns']",[],https://twitter.com/Commonland/status/1205472032202412034,False,,0,,,,,,,"[{'user_id': '3802529241', 'username': 'Commonland'}, {'user_id': '540734980', 'username': 'GlobalLF'}, {'user_id': '848866680281464836', 'username': 'enable4returns'}]",
1205277656570322946,1205277652036259846,1576195560000,2019-12-13,03:06:00,MSK,867767261330898945,sachoje,Sachoje,,Earlier in 2019 the Amazon Rainforest was ravaged by a forest fire unlike any before was faced not with anger but support millions joined in to help this cause. The Hong Kong protestors have gained international support from individuals like you and me who have no voice.,[],[],[],1,0,2,[],[],https://twitter.com/SaChoJe/status/1205277656570322946,False,,0,,,,,,,"[{'user_id': '867767261330898945', 'username': 'SaChoJe'}]",
1205203797447974913,1204822160470093824,1576177951000,2019-12-12,22:12:31,MSK,970771853101928448,thatasianguy42,ThatAsianGuy42,,"Amazon forest fire firefighters
Mr Beast buying trees
Those who have literally spent millions to purchase forests
Quantum computer specialist trying to solve important issues
Energy scientist
Etc","['lili_marguerite', 'realromadowney', 'gretathunberg']",[],[],0,0,0,[],[],https://twitter.com/ThatAsianGuy42/status/1205203797447974913,False,,0,,,,,,,"[{'user_id': '970771853101928448', 'username': 'ThatAsianGuy42'}, {'user_id': '1196885393783832579', 'username': 'lili_marguerite'}, {'user_id': '322293052', 'username': 'RealRomaDowney'}, {'user_id': '1006419421244678144', 'username': 'GretaThunberg'}]",
1205151870873767941,1205151870873767941,1576165571000,2019-12-12,18:46:11,MSK,892862183675015172,jamiesmallboy,Nohtikwew pisim,,"It sounds like two giant meat companies hid behind the forest fire season to make some fires of their own, needing more land for pasture, the Amazon was in their way so they burned it down.That was cold hearted and greedy.That was a direct strike at every life on the planet. https://twitter.com/GlobalUnion3/status/1204841025304440834 …",[],['https://twitter.com/GlobalUnion3/status/1204841025304440834'],[],1,0,0,[],[],https://twitter.com/JamieSmallboy/status/1205151870873767941,False,https://twitter.com/GlobalUnion3/status/1204841025304440834,0,,,,,,,"[{'user_id': '892862183675015172', 'username': 'JamieSmallboy'}]",
1205085563990110208,1205084883326062593,1576149762000,2019-12-12,14:22:42,MSK,1205071128852492290,thebraveman5,The Brave man,,Amazon Forest fire incident...,['guardian'],[],[],0,0,0,[],[],https://twitter.com/TheBraveman5/status/1205085563990110208,False,,0,,,,,,,"[{'user_id': '1205071128852492290', 'username': 'TheBraveman5'}, {'user_id': '87818409', 'username': 'guardian'}]",
1205061470221811712,1205059231214272512,1576144018000,2019-12-12,12:46:58,MSK,1128967551256485888,bbibbuddaeng,🐳☄️,,"BTS fans launch #ARMYHelpThePlanet in response to devastating Amazon forest fire
#BTSforCharity
#BTSLoveMyself
#BTSforKIDS
#BTSEndViolenceCampaign
#BTSLoveYourself
#BTSWorldLeaders
#BTSforthekids pic.twitter.com/y0VwHcmqdW",[],[],['https://pbs.twimg.com/media/ELk9AbAVUAAPJZp.jpg'],0,3,4,"['#armyhelptheplanet', '#btsforcharity', '#btslovemyself', '#btsforkids', '#btsendviolencecampaign', '#btsloveyourself', '#btsworldleaders', '#btsforthekids']",[],https://twitter.com/bbibbuddaeng/status/1205061470221811712,False,,0,,,,,,,"[{'user_id': '1128967551256485888', 'username': 'bbibbuddaeng'}]",
1205019126143406081,1204889447562526725,1576133922000,2019-12-12,09:58:42,MSK,1189719927059439617,govinda930,Ramaswamy,,"With <3% votes in the country, u want to go international? With Amazon forest fire protest. Have u no shame.?","['comradarjun', 'arannanew', 'decimatechnolog', 'roteindischer', 'ivan_sikorsky', 'bhaujan_connect', 'optimuspanky']",[],[],2,0,0,[],[],https://twitter.com/Govinda930/status/1205019126143406081,False,,0,,,,,,,"[{'user_id': '1189719927059439617', 'username': 'Govinda930'}, {'user_id': '24387932', 'username': 'comradarjun'}, {'user_id': '1074884194164064256', 'username': 'ARanNaNew'}, {'user_id': '1128633385264435201', 'username': 'DecimaTechnolog'}, {'user_id': '117343659', 'username': 'roteIndischer'}, {'user_id': '217786649', 'username': 'ivan_sikorsky'}, {'user_id': '549174712', 'username': 'Bhaujan_connect'}, {'user_id': '3250833402', 'username': 'Optimuspanky'}]",
1205018579755622402,1204889447562526725,1576133792000,2019-12-12,09:56:32,MSK,1189719927059439617,govinda930,Ramaswamy,,"I saw ur crap in Delhi, against Amazon forest fire, while delhi was under smog.","['decimatechnolog', 'arannanew', 'comradarjun', 'roteindischer', 'ivan_sikorsky', 'bhaujan_connect', 'optimuspanky']",[],[],2,0,0,[],[],https://twitter.com/Govinda930/status/1205018579755622402,False,,0,,,,,,,"[{'user_id': '1189719927059439617', 'username': 'Govinda930'}, {'user_id': '1128633385264435201', 'username': 'DecimaTechnolog'}, {'user_id': '1074884194164064256', 'username': 'ARanNaNew'}, {'user_id': '24387932', 'username': 'comradarjun'}, {'user_id': '117343659', 'username': 'roteIndischer'}, {'user_id': '217786649', 'username': 'ivan_sikorsky'}, {'user_id': '549174712', 'username': 'Bhaujan_connect'}, {'user_id': '3250833402', 'username': 'Optimuspanky'}]",
1204771676514177031,1204771676514177031,1576074925000,2019-12-11,17:35:25,MSK,139639456,breakingviews4u,Breaking Movies,,"Most Searched News in #Google in 2019 - #India
1 #LokSabhaElectionresults
2 #Chandrayaan2
3 #Article370
4 PM Kisan Yojana
5 Maharashtra assembly elections
6 Haryana assembly election result
7 #PulwamaAttack
8 Cyclone Fani
9 #Ayodhyaverdict
10 Amazon forest fire
#YearInSearch",[],[],[],1,1,3,"['#google', '#india', '#loksabhaelectionresults', '#chandrayaan2', '#article370', '#pulwamaattack', '#ayodhyaverdict', '#yearinsearch']",[],https://twitter.com/BreakingViews4u/status/1204771676514177031,False,,0,,,,,,,"[{'user_id': '139639456', 'username': 'BreakingViews4u'}]",
1204749521349156871,1204749521349156871,1576069643000,2019-12-11,16:07:23,MSK,198583192,aurisha88,Aurisha Sengupta,,Yes ofcourse she is a brat coz you know Brazil did such a fantastic job in saving the Amazon forest fire! https://twitter.com/TIME/status/1204475905810354184 …,[],['https://twitter.com/TIME/status/1204475905810354184'],[],0,0,1,[],[],https://twitter.com/aurisha88/status/1204749521349156871,False,https://twitter.com/TIME/status/1204475905810354184,0,,,,,,,"[{'user_id': '198583192', 'username': 'aurisha88'}]",
1204745400998981633,1204745400998981633,1576068661000,2019-12-11,15:51:01,MSK,15187395,sajithm78,Stupid Common Man,,"Air Quality drop, Amazon forest fire, Sydney forest fire, global warming etc. This world is going to end is not a myth.",[],[],[],0,0,0,[],[],https://twitter.com/sajithm78/status/1204745400998981633,False,,0,,,,,,,"[{'user_id': '15187395', 'username': 'sajithm78'}]",
1204731636413128704,1204731636413128704,1576065379000,2019-12-11,14:56:19,MSK,762908792673538048,digitalsusanta,Susanta Manna,,"𝐆𝐨𝐨𝐠𝐥𝐞 𝐬𝐞𝐚𝐫𝐜𝐡 𝐍𝐞𝐰𝐬 𝐢𝐧 𝐈𝐧𝐝𝐢𝐚 𝟐𝟎𝟏𝟗
1) Lok Sabha election results
2) Chandrayaan 2
3) Article370
4) PM Kisan Yojana
5) Maharashtra elections
6) Haryana assembly election result
7) Pulwama attack
8) Cyclone Fani
9) Ayodhya verdict
10) Amazon forest fire",[],[],[],0,0,1,[],[],https://twitter.com/Digitalsusanta/status/1204731636413128704,False,,0,,,,,,,"[{'user_id': '762908792673538048', 'username': 'Digitalsusanta'}]",
1204717468171685892,1204717468171685892,1576062001000,2019-12-11,14:00:01,MSK,65924665,dineshrockie,Dinesh Kumar,,"#LokSabhaElectionResults is the top trending news in #Google in India for 2019
2) Chandrayaan 2
3) Article 370
4) PM Kisan Yojana
5) Maharashtra assembly elections
6) Haryana assembly election result
7) Pulwama attack
8) Cyclone Fani
9) Ayodhya verdict
10) Amazon forest fire",[],[],[],0,0,0,"['#loksabhaelectionresults', '#google']",[],https://twitter.com/dineshrockie/status/1204717468171685892,False,,0,,,,,,,"[{'user_id': '65924665', 'username': 'dineshrockie'}]",
1204700140008878081,1204700140008878081,1576057870000,2019-12-11,12:51:10,MSK,563890062,uniave,Douglas Ewing,,'Indonesia's 2019 fires were estimated to have produced almost double the emissions caused by blazes in the Brazilian Amazon this year'... Indonesia hit with $5.2 billion in forest-fire losses: World Bank https://www.france24.com/en/20191211-indonesia-hit-with-5-2-billion-in-forest-fire-losses-world-bank … via @FRANCE24,['france24'],['https://www.france24.com/en/20191211-indonesia-hit-with-5-2-billion-in-forest-fire-losses-world-bank'],[],0,0,0,[],[],https://twitter.com/uniave/status/1204700140008878081,False,,0,,,,,,,"[{'user_id': '563890062', 'username': 'uniave'}, {'user_id': '1994321', 'username': 'FRANCE24'}]",
1204642158931795968,1204475905810354184,1576044046000,2019-12-11,09:00:46,MSK,29065528,princesschi,CHINYERE OPIA,,"The same guy has:
1. Insulted the French President's wife (comparing her to his own wife)
2. Blamed Leonardo DiCaprio for the Amazon rain forest fire
Now:
3. Attacking and insulting a mere child.
Way to go President Bolsonaro",['time'],[],[],0,0,0,[],[],https://twitter.com/PrincessChi/status/1204642158931795968,False,,0,,,,,,,"[{'user_id': '29065528', 'username': 'PrincessChi'}, {'user_id': '14293310', 'username': 'TIME'}]",
1204583505247653888,1204248678652772352,1576030062000,2019-12-11,05:07:42,MSK,1196882417572646912,commenter_just,Just a commenter,,"There was an amazon forest fire which destroyed alot of the trees there, many animals have to relocated and koalas were taken in by Volunteers","['maicontemtem', 'coyjandreau', 'pubgmobile', 'globalgreen']",[],[],1,0,0,[],[],https://twitter.com/commenter_just/status/1204583505247653888,False,,0,,,,,,,"[{'user_id': '1196882417572646912', 'username': 'commenter_just'}, {'user_id': '572096611', 'username': 'maicontemtem'}, {'user_id': '30037319', 'username': 'CoyJandreau'}, {'user_id': '968652142750810114', 'username': 'PUBGMOBILE'}, {'user_id': '19409588', 'username': 'globalgreen'}]",
1204572571301081088,1204572571301081088,1576027455000,2019-12-11,04:24:15,MSK,25257817,scarletsascha,💎 Sharon Martin 👑,,"Words from a president who refused to use Bic ballpens because they’re a French brand. Prior to that, his ego was stung by Macron’s remarks about the Amazon forest fire. https://twitter.com/time/status/1204475905810354184 …",[],['https://twitter.com/time/status/1204475905810354184'],[],0,0,0,[],[],https://twitter.com/scarletsascha/status/1204572571301081088,False,https://twitter.com/TIME/status/1204475905810354184,0,,,,,,,"[{'user_id': '25257817', 'username': 'scarletsascha'}]",
1204562002070265856,1204475905810354184,1576024935000,2019-12-11,03:42:15,MSK,38890225,uglywanderlust,Ugly Wanderlust,,"Coming from the person behind the Amazon Forest fire, jeez, the nerve!",['time'],[],[],0,0,0,[],[],https://twitter.com/UglyWanderlust/status/1204562002070265856,False,,0,,,,,,,"[{'user_id': '38890225', 'username': 'UglyWanderlust'}, {'user_id': '14293310', 'username': 'TIME'}]",
1204526604476538880,1204475905810354184,1576016496000,2019-12-11,01:21:36,MSK,933207280018898944,jataathejataa,+h€ j∆+∆∆,,Amazon forest fire anyone?,['time'],[],[],0,0,1,[],[],https://twitter.com/jataathejataa/status/1204526604476538880,False,,0,,,,,,,"[{'user_id': '933207280018898944', 'username': 'jataathejataa'}, {'user_id': '14293310', 'username': 'TIME'}]",
1204499493304946689,1204499493304946689,1576010032000,2019-12-10,23:33:52,MSK,128334085,mthaslett,Mark Haslett,,"This is an American “Amazon forest fire.”
As I write this, American Brains are being torched by Fox and there is apparently nothing anyone can do about it. https://twitter.com/benwikler/status/1204480361020952577 …",[],['https://twitter.com/benwikler/status/1204480361020952577'],[],0,0,0,[],[],https://twitter.com/mthaslett/status/1204499493304946689,False,https://twitter.com/benwikler/status/1204480361020952577,0,,,,,,,"[{'user_id': '128334085', 'username': 'mthaslett'}]",
1204368398722965504,1204368398722965504,1575978776000,2019-12-10,14:52:56,MSK,1156246718545047552,itsibitzi,sam cutler,,"By fusing NASA data, the legally defined Amazon and estimated beef buying zones we can show how beef farming areas correlate with forest fire alerts.
Thanks to @alexandraheal @Andrew_Wasley and André Campos! https://www.theguardian.com/environment/2019/dec/10/revealed-fires-three-times-more-common-in-amazon-beef-farming-zones …","['alexandraheal', 'andrew_wasley']",['https://www.theguardian.com/environment/2019/dec/10/revealed-fires-three-times-more-common-in-amazon-beef-farming-zones'],[],0,2,3,[],[],https://twitter.com/itsibitzi/status/1204368398722965504,False,,0,,,,,,,"[{'user_id': '1156246718545047552', 'username': 'itsibitzi'}, {'user_id': '388220308', 'username': 'alexandraheal'}, {'user_id': '1545618764', 'username': 'Andrew_Wasley'}]",
1204221874953023490,1204221874953023490,1575943843000,2019-12-10,05:10:43,MSK,86907994,natasha1024,Natasha Willing To Fight For Someone I Don't Know,,"Forest Fire Emissions From Indonesia Worse Than Amazon, EU Says - Bloomberg https://www.bloomberg.com/news/articles/2019-11-26/forest-fire-emissions-from-indonesia-worse-than-amazon-eu-says …",[],['https://www.bloomberg.com/news/articles/2019-11-26/forest-fire-emissions-from-indonesia-worse-than-amazon-eu-says'],[],0,0,0,[],[],https://twitter.com/Natasha1024/status/1204221874953023490,False,,0,,,,,,,"[{'user_id': '86907994', 'username': 'Natasha1024'}]",
1204076740806471680,1204076740806471680,1575909240000,2019-12-09,19:34:00,MSK,22630205,isaynews,i-Say,,"The growing impact of climate change can even be measured on social media!
For example, earlier this year, conversation about the Amazon rain forest fire began on Twitter before being picked up by mainstream media.
🌳🌳🔥🌳🔥🔥
Read more: https://i-say.co/climatesocialmedia … pic.twitter.com/l6A4TzqeD7",[],['https://i-say.co/climatesocialmedia'],['https://pbs.twimg.com/media/EK-crx6XkAAJTC2.jpg'],0,0,0,[],[],https://twitter.com/isaynews/status/1204076740806471680,False,,0,,,,,,,"[{'user_id': '22630205', 'username': 'isaynews'}]",
1203761500080312320,1203761274615545856,1575834081000,2019-12-08,22:41:21,MSK,989795796781584384,lyncellev,Lily,,"2019 is a year that marks many important events, from the burning down of the Notre Dame Cathedral to the Amazon forest fire burning for 3 weeks before anyone noticed, among a variety of other good and bad events that have happened.
#ThirtyYearAnniversary",[],[],[],0,0,0,['#thirtyyearanniversary'],[],https://twitter.com/lyncellev/status/1203761500080312320,False,,0,,,,,,,"[{'user_id': '989795796781584384', 'username': 'lyncellev'}]",
1203699588739133440,1203699588739133440,1575819320000,2019-12-08,18:35:20,MSK,705699279789125632,likeasomebobby,bobby’s third personality,,juice wrld’s death spreading faster than the amazon forest fire jesus christ,[],[],[],1,0,6,[],[],https://twitter.com/likeasomebobby/status/1203699588739133440,False,,0,,,,,,,"[{'user_id': '705699279789125632', 'username': 'likeasomebobby'}]",
1203435805248835585,1203435805248835585,1575756429000,2019-12-08,01:07:09,MSK,246456073,aliho710,Alison Ho and happy with no middle name.,,"Ti Prego, Please, Ferma, and Sign: https://amazonwatch.org/take-action/end-amazon-crude …
Intense. U.S.Oil Extraction in the Amazon. So the Amazon Forest Fire -- figured it out, U.S. Oil Company's accountability, fault, and are the criminals. pic.twitter.com/gv3cs6aRB1",[],['https://amazonwatch.org/take-action/end-amazon-crude'],"['https://pbs.twimg.com/media/ELN2bqYWsAARdTw.jpg', 'https://pbs.twimg.com/media/ELN2bqbWsAIKEpp.jpg']",0,0,0,[],[],https://twitter.com/aliho710/status/1203435805248835585,False,,0,,,,,,,"[{'user_id': '246456073', 'username': 'aliho710'}]",
1203321899809304576,1203273440918028288,1575729272000,2019-12-07,17:34:32,MSK,946598933022752768,cardzxxxxxx,𝕿𝖔𝖙𝖆𝖑 𝖉𝖎𝖘𝖆𝖕𝖕𝖔𝖎𝖓𝖙𝖒𝖊𝖓𝖙,,:after maka survive sa amazon forest fire,['angelahdelgado'],[],[],2,0,2,[],[],https://twitter.com/Cardzxxxxxx/status/1203321899809304576,False,,0,,,,,,,"[{'user_id': '946598933022752768', 'username': 'Cardzxxxxxx'}, {'user_id': '916802388387700736', 'username': 'angelahdelgado'}]",
1203303967842635777,1203303967842635777,1575724996000,2019-12-07,16:23:16,MSK,1069166075760205825,pankajvashistt,Pankaj Vashist,,"Brazil: Amazon Forest Fire.
Australia: Bush Fire.
India: Rape Victim Fire.
India is not growing either economically or mentally.
#unnaokibeti #unnaovictim #GodBlessIndia",[],[],[],0,0,0,"['#unnaokibeti', '#unnaovictim', '#godblessindia']",[],https://twitter.com/Pankajvashistt/status/1203303967842635777,False,,0,,,,,,,"[{'user_id': '1069166075760205825', 'username': 'Pankajvashistt'}]",
1203031249511518208,1203017944130678784,1575659975000,2019-12-06,22:19:35,MSK,816171603838922753,yinwoman_,Roma,,Lust is uncontrollable than Amazon forest fire.,[],[],[],0,1,1,[],[],https://twitter.com/yinwoman_/status/1203031249511518208,False,,0,,,,,,,"[{'user_id': '816171603838922753', 'username': 'yinwoman_'}]",
1202928715551793152,1202928715551793152,1575635529000,2019-12-06,15:32:09,MSK,200600208,drsidjreddy,"Sid J Reddy, PhD",,"""Analyzing Amazon Forest Fire Spots with Python Part 1 http://bit.ly/2Rq1jdT "" pic.twitter.com/pCaNAxH5xf",[],['http://bit.ly/2Rq1jdT'],['https://pbs.twimg.com/media/ELGpSqkUYAEx4sq.jpg'],0,0,0,[],[],https://twitter.com/DrSidJReddy/status/1202928715551793152,False,,0,,,,,,,"[{'user_id': '200600208', 'username': 'DrSidJReddy'}]",
1202871538879356928,1202871538879356928,1575621897000,2019-12-06,11:44:57,MSK,1720681,anonamiss,Katie,,"2 millions hectares of NSW has burned this year already.
The Amazon forest fire burned 906,000.
Not even one peep from our Government.",[],[],[],0,0,3,[],[],https://twitter.com/anonamiss/status/1202871538879356928,False,,0,,,,,,,"[{'user_id': '1720681', 'username': 'anonamiss'}]",
1202466309499432960,1202466309499432960,1575525283000,2019-12-05,08:54:43,MSK,1959753926,homesickii,akemi,,"Me: we don’t have earthquakes in Brazil ;)
Canadian friend: but you have Amazon forest fire
Damn........",[],[],[],2,0,6,[],[],https://twitter.com/homesickII/status/1202466309499432960,False,,0,,,,,,,"[{'user_id': '1959753926', 'username': 'homesickII'}]",
1202409583962025985,1202409583962025985,1575511759000,2019-12-05,05:09:19,MSK,1168099635962896385,sahinews24,सही News24,,Amazon Record Rainforest Fires 2019: Amazon forest fires worst year of fire ever In past 6 Years – Forest Fire in http://rviv.ly/yozm9K ,[],['http://rviv.ly/yozm9K'],[],0,0,0,[],[],https://twitter.com/SahiNews24/status/1202409583962025985,False,,0,,,,,,,"[{'user_id': '1168099635962896385', 'username': 'SahiNews24'}]",
1202237783781195777,1202237783781195777,1575470798000,2019-12-04,17:46:38,MSK,117343659,roteindischer,The Red Indian Chap,,"Where's the NGT and greens when you need them the most? There was a Bolsonaro to catalyse an Amazon forest fire, here we have the #MoSha Inc https://twitter.com/svaradarajan/status/1202236763412021248 …",[],['https://twitter.com/svaradarajan/status/1202236763412021248'],[],0,0,1,['#mosha'],[],https://twitter.com/roteIndischer/status/1202237783781195777,False,https://twitter.com/svaradarajan/status/1202236763412021248,0,,,,,,,"[{'user_id': '117343659', 'username': 'roteIndischer'}]",
1201994476136357889,1201994476136357889,1575412789000,2019-12-04,01:39:49,MSK,1160943712115052545,sandwalker420,Anakin Skywalker,,"YouTube rewind this year will be
Keanu Reeves
Annoying overused Minecraft memes
A PewdiePie cameo
Cringy storytime animators
An emotional segment where they talk about Amazon forest fire shit with them then talking about mr.beasts team trees
Stuff from YouTubers I don't watch",[],[],[],2,1,10,[],[],https://twitter.com/Sandwalker420/status/1201994476136357889,False,,0,,,,,,,"[{'user_id': '1160943712115052545', 'username': 'Sandwalker420'}]",
1201810543947833344,1201810543947833344,1575368936000,2019-12-03,13:28:56,MSK,2578186346,nattwara1,NattWara 『Buffet Investment Returner』,,"Donate to help Amazon forest fire and get Pope pet for $50
By your will, I confer my $50, your holiness. 😇
OTL pic.twitter.com/HJwBbMoSJt",[],[],['https://pbs.twimg.com/media/EK2wT1yVAAEwlfE.jpg'],1,0,0,[],[],https://twitter.com/nattwara1/status/1201810543947833344,False,,0,,,,,,,"[{'user_id': '2578186346', 'username': 'nattwara1'}]",
1201807732560449537,1201807732560449537,1575368266000,2019-12-03,13:17:46,MSK,18210270,mapsofworld,MapsofWorld,,"There is zero credibility in President of Brazil's statement blaming Leonardo Dicaprio for Amazon forest fire. Here is the real reason behind fires in Amazon Rainforest - https://www.mapsofworld.com/answers/disasters/why-are-there-fires-in-the-amazon-rainforest/ …
#fact #Amazon #LeonardoDiCaprio #Brazil",[],['https://www.mapsofworld.com/answers/disasters/why-are-there-fires-in-the-amazon-rainforest/'],[],1,1,3,"['#fact', '#amazon', '#leonardodicaprio', '#brazil']",[],https://twitter.com/mapsofworld/status/1201807732560449537,False,,0,,,,,,,"[{'user_id': '18210270', 'username': 'mapsofworld'}]",
1201656825797431296,1201656825797431296,1575332287000,2019-12-03,03:18:07,MSK,959522169779757056,reclusescrub,JustAScrub,,"Anyone find it weird that Amazon has a tablet with ""Fire"" in its name? I mean, the company is named after the rainforest, and the forest fire is still ongoing.",[],[],[],0,0,0,[],[],https://twitter.com/RecluseScrub/status/1201656825797431296,False,,0,,,,,,,"[{'user_id': '959522169779757056', 'username': 'RecluseScrub'}]",
1201604621329948672,1201370950220107776,1575319841000,2019-12-02,23:50:41,MSK,19044094,heyitsashley,ᗩᔕᕼᒪEY 🎄☃️ T,,"Artist of the decade and Leo starting the amazon forest fire together! Alexa, play The Man",['tailorswips'],[],[],0,0,0,[],[],https://twitter.com/heyitsashley/status/1201604621329948672,False,,0,,,,,,,"[{'user_id': '19044094', 'username': 'heyitsashley'}, {'user_id': '1120802594664927235', 'username': 'tailorswips'}]",
1201555465060016129,1141095003659198464,1575308121000,2019-12-02,20:35:21,MSK,4749769333,punicgoddess,Uncas Blythe,,"Yeah, why is Amazon more truthy than Netflix in the online data forest fire...","['oskarswift', 'labuzamovies']",[],[],1,0,0,[],[],https://twitter.com/punicgoddess/status/1201555465060016129,False,,0,,,,,,,"[{'user_id': '4749769333', 'username': 'punicgoddess'}, {'user_id': '1081547932959236098', 'username': 'OskarSwift'}, {'user_id': '16982828', 'username': 'labuzamovies'}]",
1201405543929151488,1201405543929151488,1575272377000,2019-12-02,10:39:37,MSK,985093462847451136,shahruk68551419,Shahrukh Khan,,"Amazon forest fire
#NationalPollutionControlDay pic.twitter.com/jirsKzGoPy",[],[],['https://pbs.twimg.com/media/EKw_-V6UEAA4hFl.jpg'],0,0,0,['#nationalpollutioncontrolday'],[],https://twitter.com/Shahruk68551419/status/1201405543929151488,False,,0,,,,,,,"[{'user_id': '985093462847451136', 'username': 'Shahruk68551419'}]",
1201332957258113027,1201293643006586881,1575255071000,2019-12-02,05:51:11,MSK,38753036,silvio_siergo,I'm_Here👉👉 🇧🇷,,"Did you know who denounced the ""environmental organizations"" (leftists) that set the forest fire in the forest were Amazon indians? Will you attack the indians too, to defend the leftists?",['markruffalo'],[],[],0,0,0,[],[],https://twitter.com/Silvio_Siergo/status/1201332957258113027,False,,0,,,,,,,"[{'user_id': '38753036', 'username': 'Silvio_Siergo'}, {'user_id': '47285504', 'username': 'MarkRuffalo'}]",
1201322914655559680,1201322914655559680,1575252677000,2019-12-02,05:11:17,MSK,131135499,gigazine_en,GIGAZINE,,"`` Leonardo DiCaprio has invested in Amazon's forest fire criminal, '' Brazilian President accused, DiCaprio also countered
https://gigazine.net/gsc_news/en/20191202-brazils-president-dicaprio-amazon-fire/ …",[],['https://gigazine.net/gsc_news/en/20191202-brazils-president-dicaprio-amazon-fire/'],[],0,0,0,[],[],https://twitter.com/gigazine_en/status/1201322914655559680,False,,0,,,,,,,"[{'user_id': '131135499', 'username': 'gigazine_en'}]",
1201291664817455105,1185149635607834624,1575245226000,2019-12-02,03:07:06,MSK,2353965530,tomuram,🇯🇵arumot,,"buenos dias ☕✋
japan is cloudy morning ☁️
it will rain soon☂️
i'm anxious about forest fire of Amazon🔥🔥🌳🌳🌲",['joseliasvieira1'],[],[],0,0,0,[],[],https://twitter.com/TOMURAM/status/1201291664817455105,False,,0,,,,,,,"[{'user_id': '2353965530', 'username': 'TOMURAM'}, {'user_id': '2937661991', 'username': 'JosEliasVieira1'}]",
1201189718727118848,1201041928483147781,1575220920000,2019-12-01,20:22:00,MSK,2265739578,lula999999999,🖤🤟#SS8manila__choi🤟,,OMG😱😳 what is wrong with presidents nowadays? First there is trump. Then duterte. And whose president is it that blame leonardo dicaprio for the amazon forest fire? Ahhh lord please 🙏🙏,['kakiep83'],[],[],0,0,0,[],[],https://twitter.com/lula999999999/status/1201189718727118848,False,,0,,,,,,,"[{'user_id': '2265739578', 'username': 'lula999999999'}, {'user_id': '3316544996', 'username': 'kakiep83'}]",
1201186991242665986,1201186991242665986,1575220270000,2019-12-01,20:11:10,MSK,1195250937335468034,grumpygroovy,gröøvy,,"Trending today:
-#NoNutNovember
-The president of Brazil blames Leonardo DiCaprio for forest fire in Amazon
-#XmasUsesForCumSocks
-Baby Yoda
-Mass shooting
What a time to be alive",[],[],[],1,2,20,"['#nonutnovember', '#xmasusesforcumsocks']",[],https://twitter.com/grumpygroovy/status/1201186991242665986,False,,0,,,,,,,"[{'user_id': '1195250937335468034', 'username': 'grumpygroovy'}]",
1201143475535826951,1200461841815756800,1575209895000,2019-12-01,17:18:15,MSK,3374590367,bugeaten296,ゆいなーる,,But the Amazon forest fire has been all over American news. And Leo is a known speaker on environmental protection in America. Like I get the rest of the world likes to say Americans only care about ourselves. But...,"['bomnaleaves', 'isaklallemant']",[],[],0,0,1,[],[],https://twitter.com/bugeaten296/status/1201143475535826951,False,,0,,,,,,,"[{'user_id': '3374590367', 'username': 'bugeaten296'}, {'user_id': '371434646', 'username': 'bomnaleaves'}, {'user_id': '2787552521', 'username': 'isaklallemant'}]",
1201126678614990848,1201126678614990848,1575205890000,2019-12-01,16:11:30,MSK,21236211,wolfe_gordon,James Gordon Wolfe,,I heard on the news that the President of Brazil is blaming the Amazon forest fire on Leonardo DiCaprio. Who remembers? “ Mr. DiCaprio I’m not speaking merely to remind you that the Amazon forests are on fire; I’M SPEAKING TO BLAME YOU!”,[],[],[],0,0,0,[],[],https://twitter.com/wolfe_gordon/status/1201126678614990848,False,,0,,,,,,,"[{'user_id': '21236211', 'username': 'wolfe_gordon'}]",
1201049791460864000,1201049791460864000,1575187559000,2019-12-01,11:05:59,MSK,1164770500020584449,anna48027187,Anna,,"President of Brazil lay the blame of Amazon forest fire on Leonardo Dicaprio? What the fuck! The deforestation in Amazon is because you allow many businesses to exploit Amazon,now u are disclaiming all responsibility? We are not stupid,sir 🙂 #savetheplanet #PrayforAmazonia",[],[],[],0,0,0,"['#savetheplanet', '#prayforamazonia']",[],https://twitter.com/Anna48027187/status/1201049791460864000,False,,0,,,,,,,"[{'user_id': '1164770500020584449', 'username': 'Anna48027187'}]",
1200999046472597504,1200999046472597504,1575175460000,2019-12-01,07:44:20,MSK,52321789,newvinay,Vinay Handa,,Brazilian President has accused Actor DiCaprio of funding NGOs responsible for Amazon Fire. This charge has been denied by the Actor.DiCaprio is a Founder of Earth Alliance which has pledged $5 million as Amazon Forest Fire Fund. Who are the Co-Chairs of the Earth Alliance? pic.twitter.com/t532pHHTLI,[],[],['https://pbs.twimg.com/media/EKrORFyVUAAWZzv.png'],1,0,2,[],[],https://twitter.com/newvinay/status/1200999046472597504,False,,0,,,,,,,"[{'user_id': '52321789', 'username': 'newvinay'}]",
1200972010295189504,1200761441604833280,1575169014000,2019-12-01,05:56:54,MSK,842235649298112513,expendablegos,ExpendabLegos,,An environmentalist the caliber of DiCaprio causing a forest fire in the Amazon? Isn't this this same President under pressure to resign? This sounds like something trump would say. Completely Ridiculous.,['nytimesworld'],[],[],1,0,1,[],[],https://twitter.com/ExpendabLegos/status/1200972010295189504,False,,0,,,,,,,"[{'user_id': '842235649298112513', 'username': 'ExpendabLegos'}, {'user_id': '1877831', 'username': 'nytimesworld'}]",
1200933158721478656,1200933158721478656,1575159751000,2019-12-01,03:22:31,MSK,1141998213131407360,seshaiah_g,G.Venkata Seshaiah,,"‘Cool guy’ Leonardo DiCaprio gave money to torch Amazon, says Brazil President Jair Bolsonaro - world news - Hindustan Times https://www.hindustantimes.com/world-news/cool-guy-leonardo-dicaprio-gave-money-to-torch-amazon-says-brazil-president-jair-bolsonaro/story-5cemAbGp9ppmjioacHnQBL.html …
Did I not tell when BRAZIL REFUSED HELP OF OTHER COUNTRIES. FOR PUTTING OFF AMEZON FOREST FIRE?
MONEY MAKES MANY THINGS WE DON'T",[],['https://www.hindustantimes.com/world-news/cool-guy-leonardo-dicaprio-gave-money-to-torch-amazon-says-brazil-president-jair-bolsonaro/story-5cemAbGp9ppmjioacHnQBL.html'],[],1,0,0,[],[],https://twitter.com/seshaiah_g/status/1200933158721478656,False,,0,,,,,,,"[{'user_id': '1141998213131407360', 'username': 'seshaiah_g'}]",
1200822488407531520,1200817902397509633,1575133366000,2019-11-30,20:02:46,MSK,55736423,masterknyhll,King Crowley,,"Seriously?
What if he said the Dalai Lama was involved?
By your logic because the president mentioned the Dalai Lama then he should be involved.
As you have seen people are talking about Leonardo di Caprio now and not anymore the Forest Fire in the Amazon.","['urpagevisiting', 'tmz']",[],[],0,0,3,[],[],https://twitter.com/masterknyhll/status/1200822488407531520,False,,0,,,,,,,"[{'user_id': '55736423', 'username': 'masterknyhll'}, {'user_id': '1539775040', 'username': 'UrPageVisiting'}, {'user_id': '16331010', 'username': 'TMZ'}]",
1200795797627064320,1200795797627064320,1575127002000,2019-11-30,18:16:42,MSK,98735770,indeara333,Indeara,,Amazon forest fire: What it tells us about deforestation https://youtu.be/B5gv4bka5Qg via @YouTube,['youtube'],['https://youtu.be/B5gv4bka5Qg'],[],0,0,0,[],[],https://twitter.com/Indeara333/status/1200795797627064320,False,,0,,,,,,,"[{'user_id': '98735770', 'username': 'Indeara333'}, {'user_id': '10228272', 'username': 'YouTube'}]",
1200789761360891906,1200789761360891906,1575125563000,2019-11-30,17:52:43,MSK,164381383,miazuhl,Ulli Zeon,,"Forest Fire Emissions From Indonesia Worse Than Amazon, EU Says https://www.bloomberg.com/news/articles/2019-11-26/forest-fire-emissions-from-indonesia-worse-than-amazon-eu-says …",[],['https://www.bloomberg.com/news/articles/2019-11-26/forest-fire-emissions-from-indonesia-worse-than-amazon-eu-says'],[],0,0,0,[],[],https://twitter.com/MiaZuhl/status/1200789761360891906,False,,0,,,,,,,"[{'user_id': '164381383', 'username': 'MiaZuhl'}]",
1200772408195633152,1200772408195633152,1575121426000,2019-11-30,16:43:46,MSK,1194310116205613057,canuckistand,Canuckistan Dave,,"Let me get this straight.
You report about a politician blaming a Hollywood Actor for a forest fire?
Your title was a bit misleading.
I thought this was about Leonardo DiCaprio setting an Amazon warehouse on fire, which is probably more likely to be true. https://twitter.com/BBCWorld/status/1200742936570404864 …",[],['https://twitter.com/BBCWorld/status/1200742936570404864'],[],0,1,0,[],[],https://twitter.com/CanuckistanD/status/1200772408195633152,False,https://twitter.com/BBCWorld/status/1200742936570404864,0,,,,,,,"[{'user_id': '1194310116205613057', 'username': 'CanuckistanD'}]",
1200772291103281152,1200742936570404864,1575121398000,2019-11-30,16:43:18,MSK,1194310116205613057,canuckistand,Canuckistan Dave,,"Let me get this straight.
You report about a politician blaming a Hollywood Actor for a forest fire?
Your title was a bit misleading.
I thought this was about Leonardo DiCaprio setting an Amazon warehouse on fire, which is probably more likely to be true.",['bbcworld'],[],[],0,0,0,[],[],https://twitter.com/CanuckistanD/status/1200772291103281152,False,,0,,,,,,,"[{'user_id': '1194310116205613057', 'username': 'CanuckistanD'}, {'user_id': '742143', 'username': 'BBCWorld'}]",
1200763468586143744,1200763468586143744,1575119294000,2019-11-30,16:08:14,MSK,311183603,purplehaze_tam,Orchid,,"Forest Fire Emissions From Indonesia Worse Than Amazon, EU Says - Bloomberg https://www.bloomberg.com/news/articles/2019-11-26/forest-fire-emissions-from-indonesia-worse-than-amazon-eu-says …",[],['https://www.bloomberg.com/news/articles/2019-11-26/forest-fire-emissions-from-indonesia-worse-than-amazon-eu-says'],[],0,0,0,[],[],https://twitter.com/PurpleHaze_Tam/status/1200763468586143744,False,,0,,,,,,,"[{'user_id': '311183603', 'username': 'PurpleHaze_Tam'}]",
1200760434720157701,1200760434720157701,1575118571000,2019-11-30,15:56:11,MSK,227806165,fjoppe,Frank Joppe,,Amazon forest fire News is a fabricated hoax with political agenda. https://twitter.com/BreitbartNews/status/1200757175003602944 …,[],['https://twitter.com/BreitbartNews/status/1200757175003602944'],[],0,0,0,[],[],https://twitter.com/fjoppe/status/1200760434720157701,False,https://twitter.com/BreitbartNews/status/1200757175003602944,0,,,,,,,"[{'user_id': '227806165', 'username': 'fjoppe'}]",
1200658647480590337,1200658647480590337,1575094303000,2019-11-30,09:11:43,MSK,152603258,bala_83831,Balamuruga,,"Absolutely! It’s warmer than usual at nights. Global warming, Amazon forest fire, chopping down trees adds to this! pic.twitter.com/gYUSQEj8Xo",[],[],['https://pbs.twimg.com/media/EKmYq96VUAA23Ll.jpg'],0,0,0,[],[],https://twitter.com/bala_83831/status/1200658647480590337,False,,0,,,,,,,"[{'user_id': '152603258', 'username': 'bala_83831'}]",
1200631693184585728,1200629738022359040,1575087876000,2019-11-30,07:24:36,MSK,1153788666944401408,depressedasians,thatoneindian,,Your hot ass breath literally caused the amazon forest fire,['kelszskok'],[],[],1,0,0,[],[],https://twitter.com/depressedasians/status/1200631693184585728,False,,0,,,,,,,"[{'user_id': '1153788666944401408', 'username': 'depressedasians'}, {'user_id': '1150733864702291968', 'username': 'kelszsKok'}]",
1200617865113522176,1200617865113522176,1575084580000,2019-11-30,06:29:40,MSK,114602265,allihanes,Allison C Hanes 🦍,,EU: Forest fire emissions from Indonesia worse than Amazon's https://str.sg/J5gv ,[],['https://str.sg/J5gv'],[],0,0,0,[],[],https://twitter.com/AlliHanes/status/1200617865113522176,False,,0,,,,,,,"[{'user_id': '114602265', 'username': 'AlliHanes'}]",
1200581841188614145,1200581841188614145,1575075991000,2019-11-30,04:06:31,MSK,1170924145728618497,niharikabravya,Bravya Niharika,,"People don't realize something needs to change around them until something big happens. Like the Amazon forest fire or these victims.
The hype lasts for a few days where government does all this fake stuff
For the media. Do you still want me to believe this is gonna change? https://twitter.com/imMAK02/status/1200438141129125889 …",[],['https://twitter.com/imMAK02/status/1200438141129125889'],[],0,0,0,[],[],https://twitter.com/NiharikaBravya/status/1200581841188614145,False,https://twitter.com/imMAK02/status/1200438141129125889,0,,,,,,,"[{'user_id': '1170924145728618497', 'username': 'NiharikaBravya'}]",
1200500311208742914,1200500311208742914,1575056553000,2019-11-29,22:42:33,MSK,843125304440905730,cruelprdise,ℓαяเ 🎄 TayTay Day,,The president is blaming Leo de Caprio for the Amazon forest fire. I can't deal with this anymore.,[],[],[],1,0,0,[],[],https://twitter.com/cruelprdise/status/1200500311208742914,False,,0,,,,,,,"[{'user_id': '843125304440905730', 'username': 'cruelprdise'}]",
1200451802589646849,1200451802589646849,1575044987000,2019-11-29,19:29:47,MSK,537137966,luzlazarus,Yopi Makdori,,EU: Forest fire emissions from Indonesia worse than Amazon's https://www.straitstimes.com/asia/se-asia/eu-forest-fire-emissions-from-indonesia-worse-than-amazons …,[],['https://www.straitstimes.com/asia/se-asia/eu-forest-fire-emissions-from-indonesia-worse-than-amazons'],[],0,0,0,[],[],https://twitter.com/LuzLazarus/status/1200451802589646849,False,,0,,,,,,,"[{'user_id': '537137966', 'username': 'LuzLazarus'}]",
1200413003369373696,1200413003369373696,1575035737000,2019-11-29,16:55:37,MSK,712152473939521541,lubispenang,arlubis,,EU: Forest fire emissions from Indonesia worse than Amazon's https://www.straitstimes.com/asia/se-asia/eu-forest-fire-emissions-from-indonesia-worse-than-amazons …,[],['https://www.straitstimes.com/asia/se-asia/eu-forest-fire-emissions-from-indonesia-worse-than-amazons'],[],0,0,0,[],[],https://twitter.com/lubispenang/status/1200413003369373696,False,,0,,,,,,,"[{'user_id': '712152473939521541', 'username': 'lubispenang'}]",
1200321224603127808,1200321224603127808,1575013855000,2019-11-29,10:50:55,MSK,410483404,kesha_ayres,Kesha Ayres,,"Yes people this is what I was tryna say, please make some noise!!! #AmazonFires #amazon #borneo #orangutans #ClimateChange
#ClimateEmergency EU: Forest fire emissions from Indonesia worse than Amazon's https://str.sg/J5gv ",[],['https://str.sg/J5gv'],[],0,1,3,"['#amazonfires', '#amazon', '#borneo', '#orangutans', '#climatechange', '#climateemergency']",[],https://twitter.com/Kesha_Ayres/status/1200321224603127808,False,,0,,,,,,,"[{'user_id': '410483404', 'username': 'Kesha_Ayres'}]",
1200243169889144833,1200243169889144833,1574995245000,2019-11-29,05:40:45,MSK,747751022454575104,borneonature,BorneoNatureFdn,,EU: Forest fire emissions from Indonesia worse than Amazon's https://str.sg/J5gv ,[],['https://str.sg/J5gv'],[],0,6,2,[],[],https://twitter.com/BorneoNature/status/1200243169889144833,False,,0,,,,,,,"[{'user_id': '747751022454575104', 'username': 'BorneoNature'}]",
1200105875920375808,1200105875920375808,1574962512000,2019-11-28,20:35:12,MSK,378586131,jena_ecohealth,Jena Webb,,"In periods of dry weather, hospitalizations for respiratory complaints soar throughout the Brazilian Amazon due to irritating particles billowing up from dry soil & forest fire fumes. (Smith et al. 2014).
#ecohealth
@hhrjournal @Genevaforum @IJPH_official https://www.amazonfrontlines.org/chronicles/three-critical-consequences-of-the-amazon-fires/ …","['hhrjournal', 'genevaforum', 'ijph_official']",['https://www.amazonfrontlines.org/chronicles/three-critical-consequences-of-the-amazon-fires/'],[],0,2,1,['#ecohealth'],[],https://twitter.com/jena_ecohealth/status/1200105875920375808,False,,0,,,,,,,"[{'user_id': '378586131', 'username': 'jena_ecohealth'}, {'user_id': '59198929', 'username': 'hhrjournal'}, {'user_id': '371960204', 'username': 'Genevaforum'}, {'user_id': '465866900', 'username': 'IJPH_official'}]",
1200074948427038726,1200074948427038726,1574955138000,2019-11-28,18:32:18,MSK,520967539,thepowerofmeow,🌹The one with the Ⓥ save the🐬🐋 🦈,,"Forest Fire Emissions From Indonesia Worse Than Amazon, EU Says https://www.bloomberg.com/news/articles/2019-11-26/forest-fire-emissions-from-indonesia-worse-than-amazon-eu-says …",[],['https://www.bloomberg.com/news/articles/2019-11-26/forest-fire-emissions-from-indonesia-worse-than-amazon-eu-says'],[],0,0,0,[],[],https://twitter.com/thepowerofmeow/status/1200074948427038726,False,,0,,,,,,,"[{'user_id': '520967539', 'username': 'thepowerofmeow'}]",
1200071761712353286,1200071761712353286,1574954378000,2019-11-28,18:19:38,MSK,102157523,terliwetter,Özden Terli,,"„Forest Fire Emissions From Indonesia Worse Than Amazon, EU Says“ https://www.bloomberg.com/news/articles/2019-11-26/forest-fire-emissions-from-indonesia-worse-than-amazon-eu-says …",[],['https://www.bloomberg.com/news/articles/2019-11-26/forest-fire-emissions-from-indonesia-worse-than-amazon-eu-says'],[],0,5,8,[],[],https://twitter.com/TerliWetter/status/1200071761712353286,False,,0,,,,,,,"[{'user_id': '102157523', 'username': 'TerliWetter'}]",
1200071100769689600,1200071100769689600,1574954221000,2019-11-28,18:17:01,MSK,13766492,akshatrathi,Akshat Rathi,,Forest fire emissions from Indonesia are worse than those from the Amazon https://www.bloomberg.com/news/articles/2019-11-26/forest-fire-emissions-from-indonesia-worse-than-amazon-eu-says …,[],['https://www.bloomberg.com/news/articles/2019-11-26/forest-fire-emissions-from-indonesia-worse-than-amazon-eu-says'],[],5,36,39,[],[],https://twitter.com/AkshatRathi/status/1200071100769689600,False,,0,,,,,,,"[{'user_id': '13766492', 'username': 'AkshatRathi'}]",
1199924562470637568,1199924562470637568,1574919283000,2019-11-28,08:34:43,MSK,585973,wolwol,wg™,,"And yes. Selain urusan FPI. We really do have a LOT at the hand of @jokowi
EU: Forest fire emissions from Indonesia worse than Amazon's https://www.straitstimes.com/asia/se-asia/eu-forest-fire-emissions-from-indonesia-worse-than-amazons … pic.twitter.com/Q0iuWa46QJ",['jokowi'],['https://www.straitstimes.com/asia/se-asia/eu-forest-fire-emissions-from-indonesia-worse-than-amazons'],['https://pbs.twimg.com/media/EKb9BpNUUAAkC82.jpg'],0,0,0,[],[],https://twitter.com/wolwol/status/1199924562470637568,False,,0,,,,,,,"[{'user_id': '585973', 'username': 'wolwol'}, {'user_id': '366987179', 'username': 'jokowi'}]",
1199849581942575109,1199849581942575109,1574901407000,2019-11-28,03:36:47,MSK,1397428159,gasanalysers,Signal Group Ltd,,"Forest Fire Emissions From #Indonesia Worse Than #Amazon, EU Says https://ift.tt/35CDvrd ",[],['https://ift.tt/35CDvrd'],[],0,1,0,"['#indonesia', '#amazon']",[],https://twitter.com/GasAnalysers/status/1199849581942575109,False,,0,,,,,,,"[{'user_id': '1397428159', 'username': 'GasAnalysers'}]",
1199804779712667648,1199804779712667648,1574890725000,2019-11-28,00:38:45,MSK,1131352537,stforeigndesk,ST Foreign Desk,,EU: Forest fire emissions from Indonesia worse than Amazon's https://www.straitstimes.com/asia/se-asia/eu-forest-fire-emissions-from-indonesia-worse-than-amazons?utm_term=Autofeed&utm_campaign=sttw&utm_medium=Social&utm_source=Twitter#Echobox=1574890725 …,[],['https://www.straitstimes.com/asia/se-asia/eu-forest-fire-emissions-from-indonesia-worse-than-amazons?utm_term=Autofeed&utm_campaign=sttw&utm_medium=Social&utm_source=Twitter#Echobox=1574890725'],[],0,0,1,[],[],https://twitter.com/STForeignDesk/status/1199804779712667648,False,,0,,,,,,,"[{'user_id': '1131352537', 'username': 'STForeignDesk'}]",
1199619077427216385,1199619077427216385,1574846450000,2019-11-27,12:20:50,MSK,877766066155532289,hypocrisykiller,Hypocrite Buster,,"Forest fire emissions from Indonesia is allegedly 'worse' than from #Amazon, still nothing when compared to #EU's cumulative #GHG pollution since 1800s.
We all know EU's flimsy report will be used for future artificial trade barrier
. https://www.straitstimes.com/asia/se-asia/forest-fire-emissions-from-indonesia-worse-than-amazon-eu …",[],['https://www.straitstimes.com/asia/se-asia/forest-fire-emissions-from-indonesia-worse-than-amazon-eu'],[],0,0,1,"['#amazon', '#eu', '#ghg']",[],https://twitter.com/HypocrisyKiller/status/1199619077427216385,False,,0,,,,,,,"[{'user_id': '877766066155532289', 'username': 'HypocrisyKiller'}]",
1199605237700550656,1199605237700550656,1574843150000,2019-11-27,11:25:50,MSK,1073342248601960448,agency_pan,Pan Pacific Agency,,Forest #fire emissions from #Indonesia worse than from Amazon: EU #ecology https://panpacificagency.com/news/indonesia/11/27/forest-fire-emissions-from-indonesia-worse-than-from-amazon-eu/ … #Asia #Pacific #News #Analytics #PanPacificAgency,[],['https://panpacificagency.com/news/indonesia/11/27/forest-fire-emissions-from-indonesia-worse-than-from-amazon-eu/'],[],0,0,0,"['#fire', '#indonesia', '#ecology', '#asia', '#pacific', '#news', '#analytics', '#panpacificagency']",[],https://twitter.com/agency_pan/status/1199605237700550656,False,,0,,,,,,,"[{'user_id': '1073342248601960448', 'username': 'agency_pan'}]",
1199586100139814913,1199586100139814913,1574838588000,2019-11-27,10:09:48,MSK,1155468995539038208,roboticscats,RoboticsCats,,"Forest Fire Emissions From Indonesia Worse Than Amazon, EU Says - @business @DiwantaraW https://www.bloomberg.com/news/articles/2019-11-26/forest-fire-emissions-from-indonesia-worse-than-amazon-eu-says …","['business', 'diwantaraw']",['https://www.bloomberg.com/news/articles/2019-11-26/forest-fire-emissions-from-indonesia-worse-than-amazon-eu-says'],[],0,0,0,[],[],https://twitter.com/roboticscats/status/1199586100139814913,False,,0,,,,,,,"[{'user_id': '1155468995539038208', 'username': 'roboticscats'}, {'user_id': '34713362', 'username': 'business'}, {'user_id': '1112949390262427649', 'username': 'DiwantaraW'}]",
1199583750637735937,1199583750637735937,1574838027000,2019-11-27,10:00:27,MSK,976184926725984266,raadarde,RAADAR,,"Forest Fire Emissions From Indonesia Worse Than Amazon, EU Says: https://news.bloombergenvironment.com/environment-and-energy/forest-fire-emissions-from-indonesia-worse-than-amazon-eu-says?utm_medium=raadar&utm_source=raadar.de …",[],['https://news.bloombergenvironment.com/environment-and-energy/forest-fire-emissions-from-indonesia-worse-than-amazon-eu-says?utm_medium=raadar&utm_source=raadar.de'],[],0,0,0,[],[],https://twitter.com/RAADARde/status/1199583750637735937,False,,0,,,,,,,"[{'user_id': '976184926725984266', 'username': 'RAADARde'}]",
1199557006329176064,1199557006329176064,1574831651000,2019-11-27,08:14:11,MSK,1113712267093139456,ntu_ase,NTU_ASE,,Forest fire emissions from Indonesia worse than from Amazon: EU https://str.sg/J5pp ,[],['https://str.sg/J5pp'],[],0,1,2,[],[],https://twitter.com/NTU_ASE/status/1199557006329176064,False,,0,,,,,,,"[{'user_id': '1113712267093139456', 'username': 'NTU_ASE'}]",
1199537692725301250,1199537692725301250,1574827046000,2019-11-27,06:57:26,MSK,860712123889885184,jackksoh,Jack Soh,,"Where are all the climate warriors in the West? Damn
“Forest Fire Emissions From Indonesia Worse Than Amazon, EU Says” https://www.bloomberg.com/news/articles/2019-11-26/forest-fire-emissions-from-indonesia-worse-than-amazon-eu-says …",[],['https://www.bloomberg.com/news/articles/2019-11-26/forest-fire-emissions-from-indonesia-worse-than-amazon-eu-says'],[],1,1,0,[],[],https://twitter.com/JackKSoh/status/1199537692725301250,False,,0,,,,,,,"[{'user_id': '860712123889885184', 'username': 'JackKSoh'}]",
1199515658993590275,1199515658993590275,1574821793000,2019-11-27,05:29:53,MSK,26717288,tsyen10,Tsyen Teoh,,"Forest Fire Emissions From Indonesia Worse Than Amazon, EU Says https://www.bloomberg.com/news/articles/2019-11-26/forest-fire-emissions-from-indonesia-worse-than-amazon-eu-says …",[],['https://www.bloomberg.com/news/articles/2019-11-26/forest-fire-emissions-from-indonesia-worse-than-amazon-eu-says'],[],0,0,0,[],[],https://twitter.com/Tsyen10/status/1199515658993590275,False,,0,,,,,,,"[{'user_id': '26717288', 'username': 'Tsyen10'}]",
1199514875594076160,1199514875594076160,1574821606000,2019-11-27,05:26:46,MSK,21835499,dvmis,Davor Miskulin,,"Forest Fire Emissions From Indonesia Worse Than Amazon, EU Says / where the impact can be made - its not a car that will solve it. https://www.bloomberg.com/news/articles/2019-11-26/forest-fire-emissions-from-indonesia-worse-than-amazon-eu-says …",[],['https://www.bloomberg.com/news/articles/2019-11-26/forest-fire-emissions-from-indonesia-worse-than-amazon-eu-says'],[],0,0,0,[],[],https://twitter.com/dvmis/status/1199514875594076160,False,,0,,,,,,,"[{'user_id': '21835499', 'username': 'dvmis'}]",
1199513930822901760,1199147034462179329,1574821381000,2019-11-27,05:23:01,MSK,1610732888,calvinsatans,calvin,,"New article! Forest Fire Emissions From Indonesia Worse Than Amazon, EU Says https://www.bloomberg.com/news/articles/2019-11-26/forest-fire-emissions-from-indonesia-worse-than-amazon-eu-says …",[],['https://www.bloomberg.com/news/articles/2019-11-26/forest-fire-emissions-from-indonesia-worse-than-amazon-eu-says'],[],0,0,0,[],[],https://twitter.com/calvinsatans/status/1199513930822901760,False,,0,,,,,,,"[{'user_id': '1610732888', 'username': 'calvinsatans'}]",
1199409302601121795,1199409302601121795,1574796436000,2019-11-26,22:27:16,MSK,30701862,shehzadyounis,Shehzad Younis,,"Forest Fire Emissions From Indonesia Worse Than Amazon, EU Says https://www.bloomberg.com/news/articles/2019-11-26/forest-fire-emissions-from-indonesia-worse-than-amazon-eu-says …",[],['https://www.bloomberg.com/news/articles/2019-11-26/forest-fire-emissions-from-indonesia-worse-than-amazon-eu-says'],[],0,0,0,[],[],https://twitter.com/shehzadyounis/status/1199409302601121795,False,,0,,,,,,,"[{'user_id': '30701862', 'username': 'shehzadyounis'}]",
1199400176558989315,1199400176558989315,1574794260000,2019-11-26,21:51:00,MSK,1131352537,stforeigndesk,ST Foreign Desk,,Forest fire emissions from Indonesia worse than Amazon: EU https://www.straitstimes.com/asia/se-asia/forest-fire-emissions-from-indonesia-worse-than-amazon-eu?utm_term=Autofeed&utm_campaign=sttw&utm_medium=Social&utm_source=Twitter#Echobox=1574794260 …,[],['https://www.straitstimes.com/asia/se-asia/forest-fire-emissions-from-indonesia-worse-than-amazon-eu?utm_term=Autofeed&utm_campaign=sttw&utm_medium=Social&utm_source=Twitter#Echobox=1574794260'],[],0,0,0,[],[],https://twitter.com/STForeignDesk/status/1199400176558989315,False,,0,,,,,,,"[{'user_id': '1131352537', 'username': 'STForeignDesk'}]",
1199399286448021504,1199399286448021504,1574794048000,2019-11-26,21:47:28,MSK,37874853,stcom,The Straits Times,,Forest fire emissions from Indonesia worse than Amazon: EU https://www.straitstimes.com/asia/se-asia/forest-fire-emissions-from-indonesia-worse-than-amazon-eu?utm_term=Autofeed&utm_campaign=sttw&utm_medium=social&utm_source=Twitter#Echobox=1574794047 …,[],['https://www.straitstimes.com/asia/se-asia/forest-fire-emissions-from-indonesia-worse-than-amazon-eu?utm_term=Autofeed&utm_campaign=sttw&utm_medium=social&utm_source=Twitter#Echobox=1574794047'],[],0,4,2,[],[],https://twitter.com/STcom/status/1199399286448021504,False,,0,,,,,,,"[{'user_id': '37874853', 'username': 'STcom'}]",
1199395113820131330,1199395113820131330,1574793053000,2019-11-26,21:30:53,MSK,982947409536827392,i_care_movement,I Care Movement,,"Forest Fire Emissions From Indonesia Worse Than Amazon, EU Says https://flip.it/fWqbmQ ",[],['https://flip.it/fWqbmQ'],[],0,2,2,[],[],https://twitter.com/I_care_movement/status/1199395113820131330,False,,0,,,,,,,"[{'user_id': '982947409536827392', 'username': 'I_care_movement'}]",
1199370991861825537,1199370991861825537,1574787302000,2019-11-26,19:55:02,MSK,164680149,indonesia_bali,Indonesia & bali tip,,"Forest Fire Emissions From Indonesia Worse Than Amazon, EU Says - Ottawa Citizen http://dlvr.it/RK8KGd ",[],['http://dlvr.it/RK8KGd'],[],0,0,0,[],[],https://twitter.com/Indonesia_bali/status/1199370991861825537,False,,0,,,,,,,"[{'user_id': '164680149', 'username': 'Indonesia_bali'}]",
1199362180094795776,1199362180094795776,1574785201000,2019-11-26,19:20:01,MSK,748817972970463232,finzine,finzine,,"$AMZN Forest Fire Emissions From Indonesia Worse Than Amazon, EU Says via http://www.hvper.com/?ref=s ",[],['http://www.hvper.com/?ref=s'],[],0,0,0,[],['$amzn'],https://twitter.com/finzine/status/1199362180094795776,False,,0,,,,,,,"[{'user_id': '748817972970463232', 'username': 'finzine'}]",
1198596161893879809,1198596161893879809,1574602568000,2019-11-24,16:36:08,MSK,1576002727,expert_knows,mistermarioexpert,,"Hanamaru! You're about to start a forest fire in the Amazon rainforest!
Hanamaru: Zura? https://twitter.com/llsimgfunbot/status/1198587088821600256 …",[],['https://twitter.com/llsimgfunbot/status/1198587088821600256'],[],0,0,0,[],[],https://twitter.com/expert_knows/status/1198596161893879809,False,https://twitter.com/llsimgfunbot/status/1198587088821600256,0,,,,,,,"[{'user_id': '1576002727', 'username': 'expert_knows'}]",
1198433163053355009,1198034121261539329,1574563706000,2019-11-24,05:48:26,MSK,361204677,basicbee15,Banny🐝,,"Sources say Execs think Scarlett Johansson would’ve been perfect for the role, but she’s unavailable because of scheduling conflicts with the Amazon Forest Fire biopic in which she’s starring a titular role.",['popcrave'],[],[],1,4,111,[],[],https://twitter.com/basicbee15/status/1198433163053355009,False,,0,,,,,,,"[{'user_id': '361204677', 'username': 'basicbee15'}, {'user_id': '4429003533', 'username': 'PopCrave'}]",
1198074985035649024,1198074985035649024,1574478310000,2019-11-23,06:05:10,MSK,712488484955680768,pinkbells360,๑•ัMarshmallow•ั๑,,"Amazon forest is on the brink of self-deforestation!!!
#Forest #fire #wildfire #tree #woods #earth #conservation #deforestation #viciouscycle #environment #climatechange #habitateloss https://amp.economist.com/briefing/2019/08/01/the-amazon-is-approaching-an-irreversible-tipping-point?__twitter_impression=true …",[],['https://amp.economist.com/briefing/2019/08/01/the-amazon-is-approaching-an-irreversible-tipping-point?__twitter_impression=true'],[],0,0,0,"['#forest', '#fire', '#wildfire', '#tree', '#woods', '#earth', '#conservation', '#deforestation', '#viciouscycle', '#environment', '#climatechange', '#habitateloss']",[],https://twitter.com/pinkbells360/status/1198074985035649024,False,,0,,,,,,,"[{'user_id': '712488484955680768', 'username': 'pinkbells360'}]",
1197812289568563201,1197795474381529088,1574415678000,2019-11-22,12:41:18,MSK,1155080469198671872,ginggingpasaway,𝓎𝒶𝓃𝓃𝒶𝒽,,I just remembered the amazon forest fire 😢 grabe yun. Yung millions of species na nakainhabit don na nadamay ng fire... heartbreaking.,"['zeroryuu48', '165minion', 'marupok48']",[],[],1,1,1,[],[],https://twitter.com/GinggingPasaway/status/1197812289568563201,False,,0,,,,,,,"[{'user_id': '1155080469198671872', 'username': 'GinggingPasaway'}, {'user_id': '1190775925752786945', 'username': 'ZeroRyuu48'}, {'user_id': '1172366680250445824', 'username': '165Minion'}, {'user_id': '1176446714628079617', 'username': 'marupok48'}]",
1197652967144345600,1197652967144345600,1574377693000,2019-11-22,02:08:13,MSK,817742820450537473,impiuslux,playing possum,,Happy birthday to @mic_cab_ still can't believe you saved me in the Amazon forest fire when I was a baby and raised me in your Château Blanc 😭😭😭 I love you bro pic.twitter.com/kMGkl7Trpa,['mic_cab_'],[],"['https://pbs.twimg.com/media/EJ7q_JuUcAAz6RW.jpg', 'https://pbs.twimg.com/media/EJ7rAsYUEAAwhq1.jpg']",0,1,3,[],[],https://twitter.com/impiuslux/status/1197652967144345600,False,,0,,,,,,,"[{'user_id': '817742820450537473', 'username': 'impiuslux'}, {'user_id': '815833547428638720', 'username': 'mic_cab_'}]",
1197615985236287492,1197615985236287492,1574368876000,2019-11-21,23:41:16,MSK,2492950304,kokopellient,Kokopelli,,"To think $58M was budgeted to fix Flit's pipes.
And to think that is just $1.16 M per US state.
People donated over 1 BILLION to fix Notre Dame cathedral.
Millions to Amazon forest fire relief.
But can Flint get its proper due?",[],[],[],0,0,1,[],[],https://twitter.com/KokopelliEnt/status/1197615985236287492,False,,0,,,,,,,"[{'user_id': '2492950304', 'username': 'KokopelliEnt'}]",
1197588521227128832,1197588521227128832,1574362328000,2019-11-21,21:52:08,MSK,121317024,drleorebello,Dr. Leo Rebello,,President of Brazil #BOLSONARO will be Chief Guest on Republic Day 2020. It is said that he is responsible for Amazon Forest Fire and against the Indigenous people of Brazil. Should India withdraw the invitation given to him?,[],[],[],1,1,3,['#bolsonaro'],[],https://twitter.com/DrLeoRebello/status/1197588521227128832,False,,0,,,,,,,"[{'user_id': '121317024', 'username': 'DrLeoRebello'}]",
1197497516729569281,1197497516729569281,1574340631000,2019-11-21,15:50:31,MSK,1174627229696843776,aryanguptaz,Aryan Gupta,,The amazon forest fire is making people homeless it is now spreading to the australia. This major problem has burnt millions of tree's! It is also becoming a cause of 'air pollution'. Many animals are died! It is a big disaster for humanity. pic.twitter.com/pjS693IT6S,[],[],['https://pbs.twimg.com/media/EJ5do_DVAAAHAW5.jpg'],2,1,7,[],[],https://twitter.com/aryanguptaz/status/1197497516729569281,False,,0,,,,,,,"[{'user_id': '1174627229696843776', 'username': 'aryanguptaz'}]",
1197399755279736832,1195726560512397318,1574317322000,2019-11-21,09:22:02,MSK,203176610,jordan_c_fan,jordan c. fan,,"Me, Prophet:Bible,“God had created earth in 7 days!”As Prophet,I ended it🌎in 2 months:Since July record flood in DC,heat/drought melted polar ice,Disease,Massacre Paso/Dayton,Amazon🔥forest fire,Dorian destroyed W Indies,HK Riot,Impeachment,tariff.Rebuild ice/forest need 2000yr.","['_cesar_munoz', 'foreignpolicy']",[],[],0,0,0,[],[],https://twitter.com/jordan_c_fan/status/1197399755279736832,False,,0,,,,,,,"[{'user_id': '203176610', 'username': 'jordan_c_fan'}, {'user_id': '618171834', 'username': '_Cesar_Munoz'}, {'user_id': '26792275', 'username': 'ForeignPolicy'}]",
1197394207381446656,1197394207381446656,1574316000000,2019-11-21,09:00:00,MSK,121156279,ssgovforum,SSF,,#Amazon #deforestation 'at highest level in a decade' https://www.theguardian.com/environment/2019/nov/18/amazon-deforestation-at-highest-level-in-a-decade?CMP=share_btn_tw … #Forest #fire #rainforest,[],['https://www.theguardian.com/environment/2019/nov/18/amazon-deforestation-at-highest-level-in-a-decade?CMP=share_btn_tw'],[],0,0,0,"['#amazon', '#deforestation', '#forest', '#fire', '#rainforest']",[],https://twitter.com/ssgovforum/status/1197394207381446656,False,,0,,,,,,,"[{'user_id': '121156279', 'username': 'ssgovforum'}]",
1197353811246862336,1197353811246862336,1574306369000,2019-11-21,06:19:29,MSK,4333027160,hswaminath,Dr M.H.Swaminath.,,"Amazon deforestation rate is highest in last 11 years and will alter global gaseous cycle and other climate balancing forces. Forest Fire in California, Australia and clearances in Indonesia and India will impact the global ecosystem unless they are reversed.",[],[],[],0,0,0,[],[],https://twitter.com/HSwaminath/status/1197353811246862336,False,,0,,,,,,,"[{'user_id': '4333027160', 'username': 'HSwaminath'}]",
1196844950467555328,1196687876676820992,1574185047000,2019-11-19,20:37:27,MSK,1052416238385803264,iiuslarson,e.e.e.e.e.e. #AMBER SAID BI RIGHTS,,⋆ amber donated to help stop the amazon forest fire and encouraged other people / her fans to donate if they could,[],[],[],1,3,14,[],[],https://twitter.com/Iiuslarson/status/1196844950467555328,False,,0,,,,,,,"[{'user_id': '1052416238385803264', 'username': 'Iiuslarson'}]",
1196753830911913984,1196753830911913984,1574163322000,2019-11-19,14:35:22,MSK,782356263044775936,gibbybeats,Gibs.,,So....is the Amazon Forest fire still going? Haven't seen allot of people talk about it much or are we just done pretending to be Captain Planet?,[],[],[],0,0,1,[],[],https://twitter.com/GibbyBeats/status/1196753830911913984,False,,0,,,,,,,"[{'user_id': '782356263044775936', 'username': 'GibbyBeats'}]",
1196667498155909120,1196667498155909120,1574142739000,2019-11-19,08:52:19,MSK,3007495223,luchtw8,luchtw8,,"A forest fire, like the amazon is true, yeah give me a hard time.
But you ever seen it ore bin there, guess not...
Not the issue, when a Forrest burns it will be back in several years, bigger and better. Ore did non of you had biology in school?? Shame one you. Bunch of doomsday",[],[],[],0,0,0,[],[],https://twitter.com/luchtw8/status/1196667498155909120,False,,0,,,,,,,"[{'user_id': '3007495223', 'username': 'luchtw8'}]",
1196613521657589760,1196613521657589760,1574129870000,2019-11-19,05:17:50,MSK,1164796500209094656,oyetrending,Oye Trending,,Amazon Forest Fire http://oyetrending.com/amazon-forest-fire/ …,[],['http://oyetrending.com/amazon-forest-fire/'],[],0,0,0,[],[],https://twitter.com/OyeTrending/status/1196613521657589760,False,,0,,,,,,,"[{'user_id': '1164796500209094656', 'username': 'OyeTrending'}]",
1196573782514847747,1196457688722489350,1574120395000,2019-11-19,02:39:55,MSK,1186662643723067392,yanghengjia,YANGHENGJIA LI,,"Hi, my name is Yanghengjia Li. I come from China and base in London now. I'm working on Ma Industrial Design at Central Saint Martins College of Arts . I feel very sad about the news of the amazon forest fire, so I am working on a project about the amazon forest.","['forestplots', 'ppbio_inpa', 'museugoeldi', 'ourvoicesdc', 'socioambiental', 'leeds_leaf']",[],[],0,0,1,[],[],https://twitter.com/yanghengjia/status/1196573782514847747,False,,0,,,,,,,"[{'user_id': '1186662643723067392', 'username': 'yanghengjia'}, {'user_id': '1415740117', 'username': 'ForestPlots'}, {'user_id': '183660651', 'username': 'PPBio_INPA'}, {'user_id': '87448133', 'username': 'museugoeldi'}, {'user_id': '1177781513980710912', 'username': 'OurVoicesDC'}, {'user_id': '17871562', 'username': 'socioambiental'}, {'user_id': '1879398085', 'username': 'Leeds_LEAF'}]",
1196573369090617344,1196542207039287296,1574120297000,2019-11-19,02:38:17,MSK,1186662643723067392,yanghengjia,YANGHENGJIA LI,,"Hi, my name is Yanghengjia Li. I come from China and base in London now. I'm working on Ma Industrial Design at Central Saint Martins College of Arts. I feel very sad about the news of the amazon forest fire, so I am working on a project about the amazon forest.","['hertonescobar', 'diretodaciencia']",[],[],0,0,0,[],[],https://twitter.com/yanghengjia/status/1196573369090617344,False,,0,,,,,,,"[{'user_id': '1186662643723067392', 'username': 'yanghengjia'}, {'user_id': '94664132', 'username': 'hertonescobar'}, {'user_id': '713318124242731009', 'username': 'diretodaciencia'}]",
1196572783364509696,1196423192639918080,1574120157000,2019-11-19,02:35:57,MSK,1186662643723067392,yanghengjia,YANGHENGJIA LI,,"Hi, my name is Yanghengjia Li. I come from China and base in London now. I'm working on Ma Industrial Design at Central Saint Martins College of Arts. I feel very sad about the news of the amazon forest fire, so I am working on a project about the amazon forest.",['giovanagirardi'],[],[],0,0,1,[],[],https://twitter.com/yanghengjia/status/1196572783364509696,False,,0,,,,,,,"[{'user_id': '1186662643723067392', 'username': 'yanghengjia'}, {'user_id': '88762702', 'username': 'giovanagirardi'}]",
1196234136257794048,1195996075045335040,1574039417000,2019-11-18,04:10:17,MSK,1187847651611557896,ripajuca,juca della ripa,,Nothing. Looking for AMAZON forest fire while French break down.,['becabrix'],[],[],0,0,0,[],[],https://twitter.com/RipaJuca/status/1196234136257794048,False,,0,,,,,,,"[{'user_id': '1187847651611557896', 'username': 'RipaJuca'}, {'user_id': '37499660', 'username': 'BecaBrix'}]",
1195992016607420416,1195992016607420416,1573981691000,2019-11-17,12:08:11,MSK,91047948,bonny420,yadnesh sanzgiry,,"NaMo was awarded for his efforts in protecting the environment by the UN (I have no clue what those efforts were). But by inviting the person behind the amazon forest fire on republic day, NaMo has just delivered a tight slap on the face of UN. https://thelogicalindian.com/opinion/bolsanaro-brazil-republic-day-india/ …",[],['https://thelogicalindian.com/opinion/bolsanaro-brazil-republic-day-india/'],[],0,0,0,[],[],https://twitter.com/bonny420/status/1195992016607420416,False,,0,,,,,,,"[{'user_id': '91047948', 'username': 'bonny420'}]",
1195849579054424069,1195849579054424069,1573947732000,2019-11-17,02:42:12,MSK,908772448631476225,draconicshinx,dragon alexi 🐉,,I’m making beef for the first time in a long time (since the amazon forest fire I think) and I might be going a bit overboard... I got 3lbs of ground beef,[],[],[],1,0,2,[],[],https://twitter.com/draconicshinx/status/1195849579054424069,False,,0,,,,,,,"[{'user_id': '908772448631476225', 'username': 'draconicshinx'}]",
1195792681420677122,1195792681420677122,1573934166000,2019-11-16,22:56:06,MSK,1115480077,dux_gec,Mr. Bagshaw,,"Alanna, representing Germany, is hoping to find a solution to the Amazon Rain Forest Fire here at Catholic Memorial. pic.twitter.com/gacO6VdZXu",[],[],['https://pbs.twimg.com/media/EJhPE-OWoAAREJS.jpg'],0,0,2,[],[],https://twitter.com/DUX_GEC/status/1195792681420677122,False,,0,,,,,,,"[{'user_id': '1115480077', 'username': 'DUX_GEC'}]",
1195462207867379713,1195354472811302913,1573855375000,2019-11-16,01:02:55,MSK,364548954,geauxcrimson,Cool Kids Club Bananas,,Not this week for sure. It’s a strange world we are living in. Did we even put out the amazon forest fire?,"['ashrpash', 'bourbonghost']",[],[],2,0,1,[],[],https://twitter.com/geauxcrimson/status/1195462207867379713,False,,0,,,,,,,"[{'user_id': '364548954', 'username': 'geauxcrimson'}, {'user_id': '214150532', 'username': 'ashrpash'}, {'user_id': '171960153', 'username': 'BourbonGhost'}]",
1195405064002686976,1195035012715962371,1573841751000,2019-11-15,21:15:51,MSK,3250750676,imnuralam,SK. NUR ALAM,,He is the main culprit of Amazon Forest Fire. So Don't want to see the man in our country on that glorious day. #gobackmodi #goback @jairbolsonaro,"['narendramodi', 'jairbolsonaro']",[],[],0,0,0,"['#gobackmodi', '#goback']",[],https://twitter.com/ImNurAlam/status/1195405064002686976,False,,0,,,,,,,"[{'user_id': '3250750676', 'username': 'ImNurAlam'}, {'user_id': '18839785', 'username': 'narendramodi'}, {'user_id': '128372940', 'username': 'jairbolsonaro'}]",
1195404251528196096,1195404251528196096,1573841557000,2019-11-15,21:12:37,MSK,3250750676,imnuralam,SK. NUR ALAM,,He is culprit man of amazon Forest Fire . Don't want to see the man in our country. #gobackmodi https://twitter.com/narendramodi/status/1195035012715962371 …,[],['https://twitter.com/narendramodi/status/1195035012715962371'],[],0,0,0,['#gobackmodi'],[],https://twitter.com/ImNurAlam/status/1195404251528196096,False,https://twitter.com/narendramodi/status/1195035012715962371,0,,,,,,,"[{'user_id': '3250750676', 'username': 'ImNurAlam'}]",
1195385620870258688,1195034224774041601,1573837115000,2019-11-15,19:58:35,MSK,96802150,aroraga,GAGAN ARORA,,"Janab, question Brazil @jairbolsonaro about Amazon rain forest fire.","['narendramodi', 'sureshpprabhu', 'jairbolsonaro']",[],[],0,0,0,[],[],https://twitter.com/aroraga/status/1195385620870258688,False,,0,,,,,,,"[{'user_id': '96802150', 'username': 'aroraga'}, {'user_id': '18839785', 'username': 'narendramodi'}, {'user_id': '141208596', 'username': 'sureshpprabhu'}, {'user_id': '128372940', 'username': 'jairbolsonaro'}]",
1195364615561076737,1195364615561076737,1573832107000,2019-11-15,18:35:07,MSK,1003067425,sondralaporte,Sondra Laporte,,The other Amazon forest fire - that no one is talking about https://youtu.be/AR6SOTOMwfg via @YouTube,['youtube'],['https://youtu.be/AR6SOTOMwfg'],[],0,0,0,[],[],https://twitter.com/SondraLaporte/status/1195364615561076737,False,,0,,,,,,,"[{'user_id': '1003067425', 'username': 'SondraLaporte'}, {'user_id': '10228272', 'username': 'YouTube'}]",
1195363321496494081,1195363321496494081,1573831799000,2019-11-15,18:29:59,MSK,1132499574092836864,sackboyplzwait,nightcapppppppp,,Franco burns down braincells like the amazon forest fire,[],[],[],0,0,5,[],[],https://twitter.com/sackboyplzwait/status/1195363321496494081,False,,0,,,,,,,"[{'user_id': '1132499574092836864', 'username': 'sackboyplzwait'}]",
1194995862214037504,1194899234996269057,1573744190000,2019-11-14,18:09:50,MSK,455517273,sandy2_singh,Sandeep singh,,"Due to Amazon forest fire, delhi is choking. Awww very poor. Call your father odd father kejriwal and check if he is ok?",['dhruv_rathee'],[],[],0,1,1,[],[],https://twitter.com/sandy2_singh/status/1194995862214037504,False,,0,,,,,,,"[{'user_id': '455517273', 'username': 'sandy2_singh'}, {'user_id': '730520573701443584', 'username': 'dhruv_rathee'}]",
1194950459808735232,1194950459808735232,1573733365000,2019-11-14,15:09:25,MSK,1143640369944518656,angelictearsbae,angel,,"why asking the earth what's wrong and not asking what's wrong with US - those, whose fault it is that EARTH is warming. ya'll thought it's all 'just' global warming, but issa big thing ! the amazon forest fire should've been a warning for us. GET A LIFE (if u/we even have time) https://twitter.com/mudopiaabdul/status/1194705732576448512 …",[],['https://twitter.com/mudopiaabdul/status/1194705732576448512'],[],0,0,0,[],[],https://twitter.com/angelictearsbae/status/1194950459808735232,False,https://twitter.com/mudopiaabdul/status/1194705732576448512,0,,,,,,,"[{'user_id': '1143640369944518656', 'username': 'angelictearsbae'}]",
1194894289467166720,1194894289467166720,1573719973000,2019-11-14,11:26:13,MSK,71976360,desidarzee,Ankit,,Remember Amazon Forest Fire ? The guy who let that happen is the new Bestie ... #BirdsOfaFeatherFlockTogether #modibffs https://www.thehindu.com/news/national/brazils-jair-bolsonaro-to-be-chief-guest-at-republic-day-celebrations-next-year/article29966936.ece …,[],['https://www.thehindu.com/news/national/brazils-jair-bolsonaro-to-be-chief-guest-at-republic-day-celebrations-next-year/article29966936.ece'],[],0,1,0,"['#birdsofafeatherflocktogether', '#modibffs']",[],https://twitter.com/DesiDarzee/status/1194894289467166720,False,,0,,,,,,,"[{'user_id': '71976360', 'username': 'DesiDarzee'}]",
1194775153307029505,1194775153307029505,1573691569000,2019-11-14,03:32:49,MSK,1172759819523985409,kanapathygeetha,Geetha Kanapathy⚓,,"First, it was the Amazon rainforest fires, then Sumatran & Kalimantan forest fire, followed by the African forest fires and now it's the Australian bush fire! So painful.
These have become annual routine between July to December 😔😔
#prayforaustralia https://www.theguardian.com/australia-news/2019/nov/11/australia-fires-nation-braces-for-most-dangerous-bushfire-week-ever-seen …",[],['https://www.theguardian.com/australia-news/2019/nov/11/australia-fires-nation-braces-for-most-dangerous-bushfire-week-ever-seen'],[],1,1,1,['#prayforaustralia'],[],https://twitter.com/KanapathyGeetha/status/1194775153307029505,False,,0,,,,,,,"[{'user_id': '1172759819523985409', 'username': 'KanapathyGeetha'}]",
1194640987290656769,1194640987290656769,1573659581000,2019-11-13,18:39:41,MSK,272874773,duttarathin47,Rathin Dutta,,"Forest Fire in Australia
Greece under high Tides
India under Cyclone.
Forest Fire in Amazon.
You need more proofs? 🧐",[],[],[],0,0,0,[],[],https://twitter.com/duttarathin47/status/1194640987290656769,False,,0,,,,,,,"[{'user_id': '272874773', 'username': 'duttarathin47'}]",
1194634872595202048,1194634872595202048,1573658123000,2019-11-13,18:15:23,MSK,902134066778165248,djbabybachchoi,bi(ll hader)nta📌it au(s),,"...anyways, australia is on fire and has already lost more land than the amazon forest fire https://twitter.com/Penny_Gsell/status/1194439302006157314 …",[],['https://twitter.com/Penny_Gsell/status/1194439302006157314'],[],0,1,5,[],[],https://twitter.com/djbabybachchoi/status/1194634872595202048,False,https://twitter.com/Penny_Gsell/status/1194439302006157314,0,,,,,,,"[{'user_id': '902134066778165248', 'username': 'djbabybachchoi'}]",
1194622077484982272,1194622077484982272,1573655072000,2019-11-13,17:24:32,MSK,166107813,iamjanezkie,Jane Culz,,From Amazon and Africa's forest fire... and now Australia's bushfire? 😢 c'mon! Please save the mother Earth 😭🙏,[],[],[],0,0,0,[],[],https://twitter.com/iamjanezkie/status/1194622077484982272,False,,0,,,,,,,"[{'user_id': '166107813', 'username': 'iamjanezkie'}]",
1194443092914528256,1194443092914528256,1573612399000,2019-11-13,05:33:19,MSK,58297636,mmbris,It's Spoopy Megan,,Bolsonaro still needs to get thrown into the Amazon forest fire.,[],[],[],1,0,0,[],[],https://twitter.com/MMBris/status/1194443092914528256,False,,0,,,,,,,"[{'user_id': '58297636', 'username': 'MMBris'}]",
1194336138166784001,1194285737346314240,1573586899000,2019-11-12,22:28:19,MSK,2571469788,jacqui_osz,jacqui osz,,"@Timcast evidence of the amazon forest fire being politically motivated by blaming climate change. look at netflix series MARS. in the last episode, they mention the amazon fires...before the amazon fire happened. the movie was being filmed in 2018 not 2019.",['timcast'],[],[],0,0,1,[],[],https://twitter.com/jacqui_osz/status/1194336138166784001,False,,0,,,,,,,"[{'user_id': '2571469788', 'username': 'jacqui_osz'}, {'user_id': '27000730', 'username': 'Timcast'}]",
1194336030826127365,1193513030199451648,1573586874000,2019-11-12,22:27:54,MSK,2571469788,jacqui_osz,jacqui osz,,"@Timcast evidence of the amazon forest fire being politically motivated by blaming climate change. look at netflix series MARS. in the last episode, they mention the amazon fires...before the amazon fire happened. the movie was being filmed in 2018 not 2019.",['timcast'],[],[],0,0,0,[],[],https://twitter.com/jacqui_osz/status/1194336030826127365,False,,0,,,,,,,"[{'user_id': '2571469788', 'username': 'jacqui_osz'}, {'user_id': '27000730', 'username': 'Timcast'}]",
1194335219874172934,1194335219874172934,1573586680000,2019-11-12,22:24:40,MSK,2571469788,jacqui_osz,jacqui osz,,"@Timcast evidence of the amazon forest fire being politically motivated by blaming climate change. look at netflix series MARS. in the last episode, they mention the amazon fires...before the amazon fire happened. the movie was being filmed in 2018 not 2019.",['timcast'],[],[],1,0,0,[],[],https://twitter.com/jacqui_osz/status/1194335219874172934,False,,0,,,,,,,"[{'user_id': '2571469788', 'username': 'jacqui_osz'}, {'user_id': '27000730', 'username': 'Timcast'}]",
1194291650090024962,1194291650090024962,1573576292000,2019-11-12,19:31:32,MSK,715323412395139072,aceallinone,Aceallinone,,"Hey @PhillyD can you do an update on the Amazon fire. Some interesting news we need to see and how it the forest, fire or not, is still getting smaller.",['phillyd'],[],[],0,0,0,[],[],https://twitter.com/aceallinone/status/1194291650090024962,False,,0,,,,,,,"[{'user_id': '715323412395139072', 'username': 'aceallinone'}, {'user_id': '6351572', 'username': 'PhillyD'}]",
1194249889363849216,1194249889363849216,1573566336000,2019-11-12,16:45:36,MSK,991946400727318529,biggianttweety,💧biggianttweetybird,,"Perspective:
Amazon rain forest fire burnt 125,000 hectares.
Australia so far has lost 970,000 hectares and fire season officially starts in February.
#auspol",[],[],[],0,1,1,['#auspol'],[],https://twitter.com/biggianttweety/status/1194249889363849216,False,,0,,,,,,,"[{'user_id': '991946400727318529', 'username': 'biggianttweety'}]",
1193855001048879105,1193855001048879105,1573472187000,2019-11-11,14:36:27,MSK,2970406949,henrywaclark,Henry Clark,,"Now we're putting @WeVerify into practice. This tweet from French president Macron regarding the Amazon fires this summer actually contains a forest fire image from 2017. If a man of his power is being misled, what is there to stop you or I being too? #IJW19 #journalism #FakeNews https://twitter.com/EmmanuelMacron/status/1164617008962527232 …",['weverify'],['https://twitter.com/EmmanuelMacron/status/1164617008962527232'],[],1,4,5,"['#ijw19', '#journalism', '#fakenews']",[],https://twitter.com/HenryWAClark/status/1193855001048879105,False,https://twitter.com/EmmanuelMacron/status/1164617008962527232,0,,,,,,,"[{'user_id': '2970406949', 'username': 'HenryWAClark'}, {'user_id': '1031837755234549760', 'username': 'WeVerify'}]",
1193599197343301637,1193599197343301637,1573411199000,2019-11-10,21:39:59,MSK,119873055,seb_mrage,S.rage,,#NSWRFS #QLDFires #NSWBushfires #TeamTrees amazon forest fire california forest fire #deforestation #environnement pic.twitter.com/JBdSUfyI57,[],[],['https://pbs.twimg.com/media/EJCEIVlXUAE1bXu.jpg'],0,2,2,"['#nswrfs', '#qldfires', '#nswbushfires', '#teamtrees', '#deforestation', '#environnement']",[],https://twitter.com/Seb_mrage/status/1193599197343301637,False,,0,,,,,,,"[{'user_id': '119873055', 'username': 'Seb_mrage'}]",
1193469634957250560,1193469634957250560,1573380309000,2019-11-10,13:05:09,MSK,552505169,kingadindu,Kingsley Adindu,,Accord Congo Forest Fire the same priority as the Amazon forest. https://twitter.com/CNN/status/1193468606476095488 …,[],['https://twitter.com/CNN/status/1193468606476095488'],[],1,5,12,[],[],https://twitter.com/kingadindu/status/1193469634957250560,False,https://twitter.com/CNN/status/1193468606476095488,0,,,,,,,"[{'user_id': '552505169', 'username': 'kingadindu'}]",
1193469343159459847,1193468606476095488,1573380239000,2019-11-10,13:03:59,MSK,552505169,kingadindu,Kingsley Adindu,,When will you report Congo Forest Fire? Its a s important as the Amazon forest.,['cnn'],[],[],2,1,5,[],[],https://twitter.com/kingadindu/status/1193469343159459847,False,,0,,,,,,,"[{'user_id': '552505169', 'username': 'kingadindu'}, {'user_id': '759251', 'username': 'CNN'}]",
1193453213254639616,1193451597482745856,1573376393000,2019-11-10,11:59:53,MSK,1123156841620545537,oecdykes,sam ³⁶⁵,,amazon forest fire,['69seokjin'],[],[],1,0,1,[],[],https://twitter.com/oecdykes/status/1193453213254639616,False,,0,,,,,,,"[{'user_id': '1123156841620545537', 'username': 'oecdykes'}, {'user_id': '890248010478886913', 'username': '69SEOKJIN'}]",
1193452659417575424,1193451597482745856,1573376261000,2019-11-10,11:57:41,MSK,925362382339162112,parkyumss,gab☁ ㅠㅅㄴ ㅔㅁㅍㄷㅇ 솓 ㅈ묘,,amazon forest fire?,['69seokjin'],[],[],0,0,1,[],[],https://twitter.com/parkyumss/status/1193452659417575424,False,,0,,,,,,,"[{'user_id': '925362382339162112', 'username': 'parkyumss'}, {'user_id': '890248010478886913', 'username': '69SEOKJIN'}]",
1193439003459981312,1193439003459981312,1573373006000,2019-11-10,11:03:26,MSK,1067615334855716864,bonevoid,bonevoid - No Nut November SURVIVOR,,"yeah bro all u idiots that were donating to try and stop the amazon forest fire just hurt the amazon instead
losers https://twitter.com/MooreCharitable/status/1125873171461283840 …",[],['https://twitter.com/MooreCharitable/status/1125873171461283840'],[],1,0,0,[],[],https://twitter.com/bonevoid/status/1193439003459981312,False,https://twitter.com/MooreCharitable/status/1125873171461283840,0,,,,,,,"[{'user_id': '1067615334855716864', 'username': 'bonevoid'}]",
1193128151066411009,1193126320256872448,1573298893000,2019-11-09,14:28:13,MSK,3314837700,jamreynon,jameena,,"++ amazon forest fire was months ago pero alam ba talaga natin ang reason why it was and continuosly burning? And solution we can contribute? Kasi I believe that if we really care, we will took action.",[],[],[],1,0,2,[],[],https://twitter.com/jamreynon/status/1193128151066411009,False,,0,,,,,,,"[{'user_id': '3314837700', 'username': 'jamreynon'}]",
1193126320256872448,1193126320256872448,1573298456000,2019-11-09,14:20:56,MSK,3314837700,jamreynon,jameena,,"Gusto ko lang sabihin na we are bunch of pop cultured citizens who are hypocrites. We re/tweet about a concerned issue and kunware may pake pero we didn't took action. I talk about mental health, equality, amazon forest fire, global warming, you name it",[],[],[],1,1,2,[],[],https://twitter.com/jamreynon/status/1193126320256872448,False,,0,,,,,,,"[{'user_id': '3314837700', 'username': 'jamreynon'}]",
1192817391547359233,1192817391547359233,1573224802000,2019-11-08,17:53:22,MSK,856267598920601600,smackboy4k,tex machina,,All I see the more psyched I am about the amazon forest fire???????,[],[],[],0,0,0,[],[],https://twitter.com/smackboy4k/status/1192817391547359233,False,,0,,,,,,,"[{'user_id': '856267598920601600', 'username': 'smackboy4k'}]",
1192324555752329221,1192259321691684865,1573107301000,2019-11-07,09:15:01,MSK,1009478955135619073,caesarstabber15,chewtle's single tooth,,hey patty forgot to say this earlier but thank you for letting me borrow your third lamborghini to bring my grandma to church and tysm for saving those orphans from the amazon forest fire bro,"['pattytrills', 'afrosenju']",[],[],1,1,55,[],[],https://twitter.com/caesarstabber15/status/1192324555752329221,False,,0,,,,,,,"[{'user_id': '1009478955135619073', 'username': 'caesarstabber15'}, {'user_id': '3905186234', 'username': 'PattyTrills'}, {'user_id': '2544468266', 'username': 'AfroSenju'}]",
1192324044869079040,1192324044869079040,1573107179000,2019-11-07,09:12:59,MSK,2773242283,dvlanwihte,Luka doncic fan club,,Yo how about that Amazon Rain forest fire,[],[],[],1,0,0,[],[],https://twitter.com/dvlanwihte/status/1192324044869079040,False,,0,,,,,,,"[{'user_id': '2773242283', 'username': 'dvlanwihte'}]",
1192271759145222144,1192271759145222144,1573094713000,2019-11-07,05:45:13,MSK,3623125458,sharat57,Sharat Sinha,,Amazon forest fire: What it tells us about deforestation https://globalnews.ca/video/6128902/amazon-forest-fire-what-it-tells-us-about-deforestation …,[],['https://globalnews.ca/video/6128902/amazon-forest-fire-what-it-tells-us-about-deforestation'],[],0,0,0,[],[],https://twitter.com/Sharat57/status/1192271759145222144,False,,0,,,,,,,"[{'user_id': '3623125458', 'username': 'Sharat57'}]",
1192266534284120064,1192266534284120064,1573093467000,2019-11-07,05:24:27,MSK,2851194747,louiemartinnnn,louiemartin,,What ever happened to the amazon forest fire,[],[],[],0,0,2,[],[],https://twitter.com/louiemartinnnn/status/1192266534284120064,False,,0,,,,,,,"[{'user_id': '2851194747', 'username': 'louiemartinnnn'}]",
1192253460298620928,1192253222540460032,1573090350000,2019-11-07,04:32:30,MSK,719655513240145920,isabella7092,IsaTweets,,"""Why do I feel a burning sensation?""
*Cue Amazon Forest fire",['emojimashupplus'],[],[],1,0,42,[],[],https://twitter.com/Isabella7092/status/1192253460298620928,False,,0,,,,,,,"[{'user_id': '719655513240145920', 'username': 'Isabella7092'}, {'user_id': '1175292276769198080', 'username': 'EmojiMashupPlus'}]",
1192146548177588224,1192146548177588224,1573064860000,2019-11-06,21:27:40,MSK,1586388810,dnepstad1,Dan Nepstad,,"This is a HUGELY important finding--the air above the Amazon is drying. The time is NOW to take action--less deforestation, more new forests, better forest fire prevention/control. ""Human Activities Are Drying Out the Amazon: NASA Study https://www.jpl.nasa.gov/news/news.php?feature=7533#.XcMQGEBPILM.twitter …",[],['https://www.jpl.nasa.gov/news/news.php?feature=7533#.XcMQGEBPILM.twitter'],[],3,115,143,[],[],https://twitter.com/dnepstad1/status/1192146548177588224,False,,0,,,,,,,"[{'user_id': '1586388810', 'username': 'dnepstad1'}]",
1192134873022189570,1192134873022189570,1573062077000,2019-11-06,20:41:17,MSK,22971125,amazonwatch,AMAZON WATCH,,Urgent Update: forest fire is now raging in the same indigenous reserve in the Brazilian Amazon where Indigenous forest defender Paulo Paulino Guajajara was killed on Nov 1. Cause still unknown. #AmazonFires https://g1.globo.com/ma/maranhao/noticia/2019/11/05/incendio-atinge-terra-indigena-arariboia-onde-lider-indigena-foi-morto-no-maranhao.ghtml … pic.twitter.com/Xd1nWHUeYN,[],['https://g1.globo.com/ma/maranhao/noticia/2019/11/05/incendio-atinge-terra-indigena-arariboia-onde-lider-indigena-foi-morto-no-maranhao.ghtml'],"['https://pbs.twimg.com/media/EItQWUtWoAEAl2t.jpg', 'https://pbs.twimg.com/media/EItQWUEWoAApN4c.jpg']",2,65,71,['#amazonfires'],[],https://twitter.com/AmazonWatch/status/1192134873022189570,False,,0,,,,,,,"[{'user_id': '22971125', 'username': 'AmazonWatch'}]",
1191951246988578816,1191951208644300802,1573018297000,2019-11-06,08:31:37,MSK,1191288884648235009,youthbabie,ᴹᵒᶰᵏᵉʸ,,— “Isn't it funny when the rainforest got burned this year? Amazon rainforest is the earth lungs but we just witnessed the painful tragedy. It's correct that the forest fire happens during the dry season between July and October. It's a natural cause buy as WE KNOW—,[],[],[],1,0,0,[],[],https://twitter.com/youthbabie/status/1191951246988578816,False,,0,,,,,,,"[{'user_id': '1191288884648235009', 'username': 'youthbabie'}]",
1191932357453996036,1191932357453996036,1573013793000,2019-11-06,07:16:33,MSK,75983511,punarbashu,Prasanna Mishra,,"We seem to be in the midst of spreading #Anger, that's manifesting in Amazon forest fire, in tsunami, in active volcanoes, in running elephants, in squabbling policemen & irate advocates and in Delhi smog. Let Mother Earth cool down, let's give Her a chance. Let's behave.",[],[],[],0,1,15,['#anger'],[],https://twitter.com/punarbashu/status/1191932357453996036,False,,0,,,,,,,"[{'user_id': '75983511', 'username': 'punarbashu'}]",
1191918253246840832,1191918253246840832,1573010431000,2019-11-06,06:20:31,MSK,2292876096,svent_in,SESHADRI.G,,BRASIL 3 natural DISASTER # amazon forest fire # oil spill all over ocean n beaches # mining dust issues # all BIG nations should come forward & help in all ways# this is nature # our problems too #,[],[],[],0,0,0,[],[],https://twitter.com/svent_in/status/1191918253246840832,False,,0,,,,,,,"[{'user_id': '2292876096', 'username': 'svent_in'}]",
1191831734591086592,1191831734591086592,1572989803000,2019-11-06,00:36:43,MSK,1171871807663747078,babybot21243477,working baby bot,,Baby forest fire prevention specialist commits tax fraud at Amazon Headquarters to get even over another traditional day at kindergarden,[],[],[],0,0,0,[],[],https://twitter.com/babybot21243477/status/1191831734591086592,False,,0,,,,,,,"[{'user_id': '1171871807663747078', 'username': 'babybot21243477'}]",
1191681179591663616,1191681179591663616,1572953908000,2019-11-05,14:38:28,MSK,1412575381,deorachandra,TaleOfAnUnsuccessful,,First Amazon rain forest fire and now this...severe conditions for biodiversity in Brazil. https://twitter.com/nehaa_sinha/status/1191678181784162305 …,[],['https://twitter.com/nehaa_sinha/status/1191678181784162305'],[],0,0,3,[],[],https://twitter.com/deorachandra/status/1191681179591663616,False,https://twitter.com/nehaa_sinha/status/1191678181784162305,0,,,,,,,"[{'user_id': '1412575381', 'username': 'deorachandra'}]",
1191650395111735296,1191650395111735296,1572946568000,2019-11-05,12:36:08,MSK,1171871807663747078,babybot21243477,working baby bot,,Baby forest fire prevention specialist attempts to become a foreign agent at Amazon Headquarters as revenge for growing out of beloved iPad,[],[],[],0,0,0,[],[],https://twitter.com/babybot21243477/status/1191650395111735296,False,,0,,,,,,,"[{'user_id': '1171871807663747078', 'username': 'babybot21243477'}]",
1191597601402970113,1191597601402970113,1572933981000,2019-11-05,09:06:21,MSK,1155585326749847553,pravina64341999,Pravin anand,,"Amazon forest fire......
https://www.youtube.com/watch?v=7W-O16rn8dc …
Please like, share, comment and subscribe my channel.",[],['https://www.youtube.com/watch?v=7W-O16rn8dc'],[],0,0,0,[],[],https://twitter.com/Pravina64341999/status/1191597601402970113,False,,0,,,,,,,"[{'user_id': '1155585326749847553', 'username': 'Pravina64341999'}]",
1191166722297995266,1191165667128627201,1572831252000,2019-11-04,04:34:12,MSK,1175120725168070656,shreyatweets1,ShreyaTweets,,"There was panic in Indian board camp. They always knew Indian players r manageable ,they will never make a noise. If BCCI asks then to play in Amazon forest fire they will go there;that’s the bonded labour relationship board has managed with players over the years.
3/n
#INDvBAN",[],[],[],1,0,2,['#indvban'],[],https://twitter.com/ShreyaTweets1/status/1191166722297995266,False,,0,,,,,,,"[{'user_id': '1175120725168070656', 'username': 'ShreyaTweets1'}]",
1191059835099332608,1191059835099332608,1572805768000,2019-11-03,21:29:28,MSK,48653199,megha25,Moujhuri Guha,,Why no news about Amazon forest fire? #amazonforestfire https://www.nytimes.com/2019/11/02/world/americas/brazil-amazon-fires-cowboys.amp.html …,[],['https://www.nytimes.com/2019/11/02/world/americas/brazil-amazon-fires-cowboys.amp.html'],[],0,0,0,['#amazonforestfire'],[],https://twitter.com/Megha25/status/1191059835099332608,False,,0,,,,,,,"[{'user_id': '48653199', 'username': 'Megha25'}]",
1190745972965597189,1190745972965597189,1572730937000,2019-11-03,00:42:17,MSK,959768006208425984,eucaria3,Carla Maria Ferreira de Azevedo Melo,,Jair Bolsonaro claims NGOs behind Amazon forest fire surge – but provides no evidence https://www.theguardian.com/world/2019/aug/21/jair-bolsonaro-accuses-ngos-setting-fire-amazon-rainforest?CMP=share_btn_tw …,[],['https://www.theguardian.com/world/2019/aug/21/jair-bolsonaro-accuses-ngos-setting-fire-amazon-rainforest?CMP=share_btn_tw'],[],0,0,0,[],[],https://twitter.com/Eucaria3/status/1190745972965597189,False,,0,,,,,,,"[{'user_id': '959768006208425984', 'username': 'Eucaria3'}]",
1190499395155791872,1190499392760844288,1572672148000,2019-11-02,08:22:28,MSK,163879283,kevinanthonyrn,kheboi ⚡,,"Why can’t we ALL unite to rise from this downfall? Why can’t we ALL pray for everyone’s safety? We’ve been concerned for the Amazon forest fire and other natural disasters, but why can’t WE do the same for OUR country?",[],[],[],1,0,3,[],[],https://twitter.com/kevinanthonyRN/status/1190499395155791872,False,,0,,,,,,,"[{'user_id': '163879283', 'username': 'kevinanthonyRN'}]",
1190309779253682177,1190309779253682177,1572626940000,2019-11-01,19:49:00,MSK,402869080,lokmane2010,chakraoui farouk,,Amazon Forest Fire Explained! | Peekaboo Shorts | Best Learning Videos F... https://youtu.be/KrkUjc_CGMY via @YouTube,['youtube'],['https://youtu.be/KrkUjc_CGMY'],[],0,0,0,[],[],https://twitter.com/lokmane2010/status/1190309779253682177,False,,0,,,,,,,"[{'user_id': '402869080', 'username': 'lokmane2010'}, {'user_id': '10228272', 'username': 'YouTube'}]",
1190233591914975232,1190233591914975232,1572608776000,2019-11-01,14:46:16,MSK,2917058996,apkatian,âpkat,,"#punerain Look at satellite images, cloud formation from East and flowing those towards west are huge, Will rain stop in near future? Is it effect of Amazon Forest fire 🔥 pic.twitter.com/pu0m2pt7wY",[],[],['https://pbs.twimg.com/media/EISPERUWoAEeG5O.jpg'],0,0,0,['#punerain'],[],https://twitter.com/apkatian/status/1190233591914975232,False,,0,,,,,,,"[{'user_id': '2917058996', 'username': 'apkatian'}]",
1190047989462683656,1190047989462683656,1572564525000,2019-11-01,02:28:45,MSK,103489568,paragonkael,North Kaelrean News Agency,,The Amazon Rain Forest fire has the potential to be an extinction level event for the entirety the Amazon Basin as it's ecosystem dies and is replaced by farmland and cities. That won't matter when you're enjoying the LSD Title Match at Rumble at the Rock! #HeraldOfTheEndTimes,[],[],[],0,0,0,['#heraldoftheendtimes'],[],https://twitter.com/ParagonKael/status/1190047989462683656,False,,0,,,,,,,"[{'user_id': '103489568', 'username': 'ParagonKael'}]",
1189969415812648960,1189969415812648960,1572545791000,2019-10-31,21:16:31,MSK,180382825,1kavaa,Bantersaurus ❼,,so what happened to the Amazon forest fire?,[],[],[],0,0,1,[],[],https://twitter.com/1kavaa/status/1189969415812648960,False,,0,,,,,,,"[{'user_id': '180382825', 'username': '1kavaa'}]",
1189965854286336000,1189965854286336000,1572544942000,2019-10-31,21:02:22,MSK,110467490,appurv_gupta,Appurv Gupta-GuptaJi,,What a fog today in Delhi! Thanks to all you lovely cuties who said Ek din mein patakha jalane se kya hi hoga. Main toh kahta hun ab Brazil ke Amazon forest fire se compete kar lo. Saans hum agle saal le lenge. (1/n),[],[],[],4,8,53,[],[],https://twitter.com/appurv_gupta/status/1189965854286336000,False,,0,,,,,,,"[{'user_id': '110467490', 'username': 'appurv_gupta'}]",
1189943710194135040,1189943710194135040,1572539663000,2019-10-31,19:34:23,MSK,149404405,prateek25101982,Prateek Dhawan,,@narendramodi sir 🙏 can you plz instruct airforce to sprinkle water over Delhi NCR so that SMOGGY situation can be curb down. This happens when Amazon forest fire has to be taken off.,['narendramodi'],[],[],0,0,0,[],[],https://twitter.com/prateek25101982/status/1189943710194135040,False,,0,,,,,,,"[{'user_id': '149404405', 'username': 'prateek25101982'}, {'user_id': '18839785', 'username': 'narendramodi'}]",
1189618817577738241,1189618817577738241,1572462202000,2019-10-30,22:03:22,MSK,1083718988528566273,afterlifesuber,Death,,"Can't have a forest fire, if you build a wall around the Amazon!
- @realDonaldTrump 2020",['realdonaldtrump'],[],[],2,3,15,[],[],https://twitter.com/AfterLifesUber/status/1189618817577738241,False,,0,,,,,,,"[{'user_id': '1083718988528566273', 'username': 'AfterLifesUber'}, {'user_id': '25073877', 'username': 'realDonaldTrump'}]",
1189605194528706561,1189599979960094720,1572458954000,2019-10-30,21:09:14,MSK,2400892514,sheilazulfiqar,SheilaZulfiqarAhmed1,,"May GodAlmighty have mercy and efforts at controlling the fire succeed .Amin. Very tragic . Some think like the Amazon Forest fire, forest fires are the result of human activities like that of poachers and miners in the case of Amazon.Human greed is destroying the Earth","['pattersonnbc', 'nbcnews']",[],[],0,1,1,[],[],https://twitter.com/SheilaZulfiqar/status/1189605194528706561,False,,0,,,,,,,"[{'user_id': '2400892514', 'username': 'SheilaZulfiqar'}, {'user_id': '17100518', 'username': 'PattersonNBC'}, {'user_id': '14173315', 'username': 'NBCNews'}]",
1189365596170797056,1188093985878872065,1572401830000,2019-10-30,05:17:10,MSK,722098930981277696,freeze_fun,💣FreezeFun ζ⃠,,"Forest fires are also a major problem in my country. There was a forest fire happening a few months ago, and I bet a lot of people didn't know that because the western media only covers the Amazon fire.","['bishuku', 'geoffprofit', 'koo_kuro', 'chicoescobarzed', 'jmcappiello']",[],[],0,0,3,[],[],https://twitter.com/Freeze_Fun/status/1189365596170797056,False,,0,,,,,,,"[{'user_id': '722098930981277696', 'username': 'Freeze_Fun'}, {'user_id': '2859287087', 'username': 'Bishuku'}, {'user_id': '1025172170098524160', 'username': 'GeoffProfit'}, {'user_id': '1074900630983061505', 'username': 'Koo_kuro'}, {'user_id': '609639273', 'username': 'ChicoEscobarZed'}, {'user_id': '351198392', 'username': 'jmcappiello'}]",
1189348617330610178,1189348617330610178,1572397782000,2019-10-30,04:09:42,MSK,930118484306153472,thiccboyibby,Ibrahim Khalil,,If you remember not too long ago thousands of trees were burnt during the AMAZON FOREST FIRE and this is a way of giving back to the planet. I just planted trees with #TeamTrees! Every dollar you donate puts a tree in the ground. Join the team at http://share.teamtrees.org/541426907t ,[],['http://share.teamtrees.org/541426907t'],[],0,0,0,['#teamtrees'],[],https://twitter.com/thiccboyibby/status/1189348617330610178,False,,0,,,,,,,"[{'user_id': '930118484306153472', 'username': 'thiccboyibby'}]",
1189304423870324742,1189298377923715079,1572387245000,2019-10-30,01:14:05,MSK,1065199014159638528,ei77krzhwp7uhqa,Apostol Hong 洪景明 ,成功大學機械系62B級畢業,,"California forest fire and Amazon Rainforest fire have raised the world
atmosphere temperature approaching to the limit, America and Brazil should be blamed for the
mismanagement of their forest safety. The eruption of forest fire can be distinguished only at the first
stage !",['abc'],[],[],0,0,0,[],[],https://twitter.com/eI77kRZHwP7UhqA/status/1189304423870324742,False,,0,,,,,,,"[{'user_id': '1065199014159638528', 'username': 'eI77kRZHwP7UhqA'}, {'user_id': '28785486', 'username': 'ABC'}]",
1189221059012255745,1189221059012255745,1572367369000,2019-10-29,19:42:49,MSK,708942402048888836,aishwarya5jun,Aishwarya,,What happened to Amazon forest fire? pic.twitter.com/8cMiWGPsqi,[],[],['https://pbs.twimg.com/media/EID2PqfUEAItCa2.png'],0,0,1,[],[],https://twitter.com/Aishwarya5jun/status/1189221059012255745,False,,0,,,,,,,"[{'user_id': '708942402048888836', 'username': 'Aishwarya5jun'}]",
1189009919766355968,1188477980454076418,1572317030000,2019-10-29,05:43:50,MSK,745770773776900100,austinletenyei,Austin Letenyei,,Pshhh I’m one step ahead of you gayschlatt. Who do you think started the forest fire in the Amazon?,['jschlatt'],[],[],0,0,0,[],[],https://twitter.com/AustinLetenyei/status/1189009919766355968,False,,0,,,,,,,"[{'user_id': '745770773776900100', 'username': 'AustinLetenyei'}, {'user_id': '4694011844', 'username': 'jschlatt'}]",
1188884986075574278,1188884986075574278,1572287243000,2019-10-28,21:27:23,MSK,634676291,drtommartinphd,Dr. Tom Martin (Ph.D.),,"Satellite: Amazon Rain Forest Fire.
Source: https://www.businessinsider.com/amazon-fires-satellite-images-map-of-rainforest-blazes-2019-8 …
#Love-Comin'-At-Ya pic.twitter.com/RzVFN6675n",[],['https://www.businessinsider.com/amazon-fires-satellite-images-map-of-rainforest-blazes-2019-8'],['https://pbs.twimg.com/media/EH_Elx8UcAAtAEL.jpg'],0,1,1,['#love'],[],https://twitter.com/DrTomMartinPhD/status/1188884986075574278,False,,0,,,,,,,"[{'user_id': '634676291', 'username': 'DrTomMartinPhD'}]",
1188864850706886656,1188861907454681088,1572282443000,2019-10-28,20:07:23,MSK,2817145202,bestum_best,Kya ** Hai,,It's not just Pakistan who has a problem. Our Liberals are Burning more intensely than the Amazon forest fire.,['majorgauravarya'],[],[],0,0,0,[],[],https://twitter.com/Bestum_best/status/1188864850706886656,False,,0,,,,,,,"[{'user_id': '2817145202', 'username': 'Bestum_best'}, {'user_id': '758859344561569792', 'username': 'majorgauravarya'}]",
1188637385745227777,1188637385745227777,1572228211000,2019-10-28,05:03:31,MSK,34931945,liruopu,Ruopu Li,,Another one after the Amazon forest fire. https://twitter.com/AGU_Eos/status/1188489329905192960 …,[],['https://twitter.com/AGU_Eos/status/1188489329905192960'],[],0,0,1,[],[],https://twitter.com/liruopu/status/1188637385745227777,False,https://twitter.com/AGU_Eos/status/1188489329905192960,0,,,,,,,"[{'user_id': '34931945', 'username': 'liruopu'}]",
1188517676601098240,1188307642357186561,1572199670000,2019-10-27,21:07:50,MSK,3635063054,vinalmehta18,Monu,,"How could people be so double standard?? The ones posting on social media account for Amazon forest fire and other environmental issues, are the ones still bursting crackers..
Please don't fake it
Be true to the environment atleast..","['mybmc', 'prakashjavdekar', 'pibmumbai', 'india4climate', 'mybmcwarda', 'mybmcwardb', 'mybmcwardc', 'mybmcwardd', 'mybmcwarde', 'mybmcwardfs', 'cmomaharashtra']",[],[],0,0,0,[],[],https://twitter.com/vinalmehta18/status/1188517676601098240,False,,0,,,,,,,"[{'user_id': '3635063054', 'username': 'vinalmehta18'}, {'user_id': '1200214398', 'username': 'mybmc'}, {'user_id': '1072993274', 'username': 'PrakashJavdekar'}, {'user_id': '309553876', 'username': 'PIBMumbai'}, {'user_id': '3606504676', 'username': 'India4Climate'}, {'user_id': '1140603383952232448', 'username': 'mybmcWardA'}, {'user_id': '1140610127315161089', 'username': 'mybmcWardB'}, {'user_id': '1140620510541168640', 'username': 'mybmcWardC'}, {'user_id': '1140625138720768000', 'username': 'mybmcWardD'}, {'user_id': '1140629069815402501', 'username': 'mybmcWardE'}, {'user_id': '1140630344292433922', 'username': 'mybmcWardFS'}, {'user_id': '2597666894', 'username': 'CMOMaharashtra'}]",
1188497458017587201,1188497458017587201,1572194849000,2019-10-27,19:47:29,MSK,247621434,myrnastwit,Myrna Lim,,"Under fascist Bolsonaro, Brazil is experiencing the worst environmental catastrophes - Amazon forest fire, now massive oil spill... https://news.yahoo.com/brazil-deploys-5-000-troops-193411079.html?soc_src=hl-viewer&soc_trk=fb …",[],['https://news.yahoo.com/brazil-deploys-5-000-troops-193411079.html?soc_src=hl-viewer&soc_trk=fb'],[],0,0,0,[],[],https://twitter.com/Myrnastwit/status/1188497458017587201,False,,0,,,,,,,"[{'user_id': '247621434', 'username': 'Myrnastwit'}]",
1188191207580676096,1188191207580676096,1572121834000,2019-10-26,23:30:34,MSK,804816690399838209,metheirony,Irony,,Everyone was talking about the Amazon forest fire and why no one is taking about this?? https://twitter.com/MrBeastYT/status/1188106861008044033 …,[],['https://twitter.com/MrBeastYT/status/1188106861008044033'],[],0,0,0,[],[],https://twitter.com/metheirony/status/1188191207580676096,False,https://twitter.com/MrBeastYT/status/1188106861008044033,0,,,,,,,"[{'user_id': '804816690399838209', 'username': 'metheirony'}]",
1188117756270366720,1188117756270366720,1572104321000,2019-10-26,18:38:41,MSK,827371908773638145,shrewdmposition,Michael Moore,,"Is it me or does it feel like the forest fire shyt ain't like a big deal to our gov't, like wtf is going on? Them trees been burning forever g, why can we not get water there? Like what is the problem? Where is Amazon, Google, you smart tech fuckers do nothing for the REAL world.",[],[],[],0,0,0,[],[],https://twitter.com/Shrewdmposition/status/1188117756270366720,False,,0,,,,,,,"[{'user_id': '827371908773638145', 'username': 'Shrewdmposition'}]",
1188087957888159744,1188087957888159744,1572097217000,2019-10-26,16:40:17,MSK,4373036776,waleeddurrani72,Waleed,,"People are globally donating to plant trees after the forest fire in amazon, lots of big creators like alan walker are donating to plant more trees. We need the same thing in Pakistan too so can we make this possible? #teamtrees pic.twitter.com/EvaTGqyREr",[],[],['https://pbs.twimg.com/media/EHzvr8RXUAA97Gu.jpg'],0,0,0,['#teamtrees'],[],https://twitter.com/waleeddurrani72/status/1188087957888159744,False,,0,,,,,,,"[{'user_id': '4373036776', 'username': 'waleeddurrani72'}]",
1187808572652032002,1187806819420426240,1572030606000,2019-10-25,22:10:06,MSK,1082705867387088896,10k53051225,???,,Yeah this is how we defeat the Amazon forest fire,"['liron_segev', 'mrbeastyt', 'markrober']",[],[],3,0,7,[],[],https://twitter.com/10K53051225/status/1187808572652032002,False,,0,,,,,,,"[{'user_id': '1082705867387088896', 'username': '10K53051225'}, {'user_id': '25493009', 'username': 'Liron_Segev'}, {'user_id': '2455740283', 'username': 'MrBeastYT'}, {'user_id': '490932793', 'username': 'MarkRober'}]",
1187807877165133828,1187806031520268288,1572030440000,2019-10-25,22:07:20,MSK,1082705867387088896,10k53051225,???,,Amazon forest fire: wait that's illegal,"['youtube', 'mrbeastyt']",[],[],1,0,5,[],[],https://twitter.com/10K53051225/status/1187807877165133828,False,,0,,,,,,,"[{'user_id': '1082705867387088896', 'username': '10K53051225'}, {'user_id': '10228272', 'username': 'YouTube'}, {'user_id': '2455740283', 'username': 'MrBeastYT'}]",
1187700352461758464,1187700352461758464,1572004805000,2019-10-25,15:00:05,MSK,1179452491135639553,markovroderick,john markov roderick,,How can get in a woman gave a LOT smarter than just try mushrooms for the Amazon forest fire.,[],[],[],0,0,0,[],[],https://twitter.com/markovroderick/status/1187700352461758464,False,,0,,,,,,,"[{'user_id': '1179452491135639553', 'username': 'markovroderick'}]",
1187433398836449280,1187433398836449280,1571941158000,2019-10-24,21:19:18,MSK,3096810372,xjermdog,Jeremy,,Remember the amazon forest fire that everyone was so wound up about? Yeah guess not. Media really has you all trained to care about a “tragedy” for as little as possible 😂 https://twitter.com/nowthisnews/status/1187431812781490181 …,[],['https://twitter.com/nowthisnews/status/1187431812781490181'],[],0,0,0,[],[],https://twitter.com/xjermdog/status/1187433398836449280,False,https://twitter.com/nowthisnews/status/1187431812781490181,0,,,,,,,"[{'user_id': '3096810372', 'username': 'xjermdog'}]",
1187383961921773568,1187227271935021057,1571929371000,2019-10-24,18:02:51,MSK,1350915006,dhamuven,Dhamu,,"Haha, u set fire on liberals and it's burning faster than amazon forest fire.",['realdonaldtrump'],[],[],0,0,0,[],[],https://twitter.com/dhamuven/status/1187383961921773568,False,,0,,,,,,,"[{'user_id': '1350915006', 'username': 'dhamuven'}, {'user_id': '25073877', 'username': 'realDonaldTrump'}]",
1186716898542657536,1186304139308994562,1571770331000,2019-10-22,21:52:11,MSK,1185506067301703680,julienneanne3,JulienneAnne,,"The Catholic Church was established by Jesus Christ for the salvation of souls.
The primary concern of the Catholic Church for the people of the Amazon is how to bring them out of paganism to the truth of Christ.
This is infinitely more important than any forest fire.",['fwn_science'],[],[],2,3,14,[],[],https://twitter.com/JulienneAnne3/status/1186716898542657536,False,,0,,,,,,,"[{'user_id': '1185506067301703680', 'username': 'JulienneAnne3'}, {'user_id': '937972724563173376', 'username': 'fwn_science'}]",
1186655844286582784,1186655844286582784,1571755774000,2019-10-22,17:49:34,MSK,865962527750049792,johannes_kemomu,Johannes,,"#amazonislife ""The Amazon is the lung of the world"" ""I am very sad😐"", this beautiful place was affected by a forest fire in most of its forests where animals and plants suffered many damages, this was caused by deforestation, such as: logging trees, affecting the water cycle😶.",[],[],[],0,2,3,['#amazonislife'],[],https://twitter.com/johannes_kemomu/status/1186655844286582784,False,,0,,,,,,,"[{'user_id': '865962527750049792', 'username': 'johannes_kemomu'}]",
1186593481084538880,1186096963063705600,1571740906000,2019-10-22,13:41:46,MSK,903794169533095936,jinxixwdw,Kendra🏳️🌈,,"I got in a fight with a vegan on Instagram and they said the amazon forest fire was my fault because I ate meat. I tried to be nice to them but it’s no use when I’m belittled and talk down to, even when I use facts. It’s sad the world we live in",['ciarralifts'],[],[],1,0,34,[],[],https://twitter.com/jinxixwdw/status/1186593481084538880,False,,0,,,,,,,"[{'user_id': '903794169533095936', 'username': 'jinxixwdw'}, {'user_id': '1131971060327276544', 'username': 'ciarralifts'}]",
1186591248796151808,1186591248796151808,1571740374000,2019-10-22,13:32:54,MSK,981822164851503104,andrejuliann,ᴅʀᴇ,,"⚪ Lebanon Forest Fire
⚪ Mindanao Earthquake
⚪ Amazon Forest burnt
and now
⚪ Chile's Chaos
Please pray for the world.",[],[],[],0,4,15,[],[],https://twitter.com/AndreJuliann/status/1186591248796151808,False,,0,,,,,,,"[{'user_id': '981822164851503104', 'username': 'AndreJuliann'}]",
1186289726115856384,1186289726115856384,1571668485000,2019-10-21,17:34:45,MSK,319225053,melcara_27,dest.,,"My favorite thing is when a lot of people started going vegan after the Amazon forest fire, talked down on meat eaters, then went back to eating meat like a couple of weeks later 🥴",[],[],[],0,0,0,[],[],https://twitter.com/melcara_27/status/1186289726115856384,False,,0,,,,,,,"[{'user_id': '319225053', 'username': 'melcara_27'}]",
1186287054759628801,1186252465894805504,1571667848000,2019-10-21,17:24:08,MSK,1635660584,beatrice_tee,Weird female,,"The world has been erupting with fires
Amazon forest
Fire in Palestine
Etc
Nobody is building superstition there","['lanzi_wayne', 'oldgee8', 'i_amthe_uno', 'subdeliveryzone']",[],[],1,0,0,[],[],https://twitter.com/beatrice_tee/status/1186287054759628801,False,,0,,,,,,,"[{'user_id': '1635660584', 'username': 'beatrice_tee'}, {'user_id': '1027585094003970048', 'username': 'Lanzi_wayne'}, {'user_id': '1091871773421957120', 'username': 'Oldgee8'}, {'user_id': '888733472', 'username': 'i_amthe_uno'}, {'user_id': '892400664638304256', 'username': 'SubDeliveryZone'}]",
1186059969659101185,1186059969659101185,1571613707000,2019-10-21,02:21:47,MSK,966568898,7azter,oN Tazter,,the real cause of the amazon rain forest fire pic.twitter.com/CxDZfxvuEy,[],[],['https://pbs.twimg.com/media/EHW7QCJX4AA8JlS.jpg'],2,8,55,[],[],https://twitter.com/7azter/status/1186059969659101185,False,,0,,,,,,,"[{'user_id': '966568898', 'username': '7azter'}]",
1185958921694896128,1185958921694896128,1571589615000,2019-10-20,19:40:15,MSK,124122534,deeaalya,Deea Alya,,"World is now in its mad mode. Looking at #cataloniaprotests #HongKongProtests and never ending protests in #Indonesia. Not forget to mention forest fire in the highest oxygen producer, Amazon forest, then Kalimantan forest. Hope these things r going to end soon.",[],[],[],0,0,5,"['#cataloniaprotests', '#hongkongprotests', '#indonesia']",[],https://twitter.com/DeeaAlya/status/1185958921694896128,False,,0,,,,,,,"[{'user_id': '124122534', 'username': 'DeeaAlya'}]",
1185937935075545090,1185937935075545090,1571584612000,2019-10-20,18:16:52,MSK,102452881,srpadheesays,S,,#AmazonRainforest what happened to the Amazon rain forest fire ?,[],[],[],0,0,0,['#amazonrainforest'],[],https://twitter.com/srpadheesays/status/1185937935075545090,False,,0,,,,,,,"[{'user_id': '102452881', 'username': 'srpadheesays'}]",
1185897517705236481,1185897517705236481,1571574975000,2019-10-20,15:36:15,MSK,1171871807663747078,babybot21243477,working baby bot,,Baby forest fire prevention specialist steals someone's labeled lunch from the fridge at Amazon Headquarters over boring crossword puzzle,[],[],[],0,0,0,[],[],https://twitter.com/babybot21243477/status/1185897517705236481,False,,0,,,,,,,"[{'user_id': '1171871807663747078', 'username': 'babybot21243477'}]",
1185706023543365636,1185706023543365636,1571529320000,2019-10-20,02:55:20,MSK,874742071655112705,masterchief424,Hayden,,Amazon rain forest fire https://twitter.com/i/broadcasts/1ynJOwzpZNzJR …,[],['https://twitter.com/i/broadcasts/1ynJOwzpZNzJR'],[],0,0,1,[],[],https://twitter.com/Masterchief424/status/1185706023543365636,False,,0,,,,,,,"[{'user_id': '874742071655112705', 'username': 'Masterchief424'}]",
1185279333650313216,1185279333650313216,1571427589000,2019-10-18,22:39:49,MSK,253273260,jaidhimar,jaishal,,Are we just goin forget about the whole amazon forest fire thing,[],[],[],0,0,1,[],[],https://twitter.com/JaiDhimar/status/1185279333650313216,False,,0,,,,,,,"[{'user_id': '253273260', 'username': 'JaiDhimar'}]",
1185209724590948352,1185208331444424705,1571410993000,2019-10-18,18:03:13,MSK,2773007676,ahmadizzzdanial,𝙖𝙝𝙢𝙖𝙙 𝙞𝙯𝙯,,like the amazon forest fire,['mrhighkeyweak'],[],[],0,0,0,[],[],https://twitter.com/ahmadizzzdanial/status/1185209724590948352,False,,0,,,,,,,"[{'user_id': '2773007676', 'username': 'ahmadizzzdanial'}, {'user_id': '2973909895', 'username': 'MRHIGHKEYWEAK'}]",
1185205646838370305,1184892155216748544,1571410020000,2019-10-18,17:47:00,MSK,745577497165762560,jeffpresco1969,Jeff presco,,First the Amazon Rain Forest fire and now this. Very sad!!,['rebeccalords'],[],[],0,0,0,[],[],https://twitter.com/Jeffpresco1969/status/1185205646838370305,False,,0,,,,,,,"[{'user_id': '745577497165762560', 'username': 'Jeffpresco1969'}, {'user_id': '53397595', 'username': 'rebeccalords'}]",
1185148670724980736,1185034059929358342,1571396436000,2019-10-18,14:00:36,MSK,2326356919,chrnsh,yung C,,"Ok I admit I did not know that but thank you for telling me that! I still think the Amazon forest fire should be covered as often as politics. It is also a hot topic politically! At least 17% of the Forest was burned, now you might think; 17% isn’t that much-",['ngen_thoughts'],[],[],1,0,2,[],[],https://twitter.com/chrnsh/status/1185148670724980736,False,,0,,,,,,,"[{'user_id': '2326356919', 'username': 'chrnsh'}, {'user_id': '1177069659146739712', 'username': 'ngen_thoughts'}]",
1185120678279729152,1185120678279729152,1571389762000,2019-10-18,12:09:22,MSK,412596977,pajamastew,No Senses 😑,,"Cardboard Box Trees in the Amazon rainforest with branches hanging heavy under the weight of their smiling fruit, brown cubes filled with graphic novels, witty t-shirts, wireless headphones. The workers desperately try to pack the boxes onto trucks as the forest fire approaches.",[],[],[],0,3,17,[],[],https://twitter.com/PajamaStew/status/1185120678279729152,False,,0,,,,,,,"[{'user_id': '412596977', 'username': 'PajamaStew'}]",
1185014314069049344,1185014314069049344,1571364403000,2019-10-18,05:06:43,MSK,92290840,the_tou,The_ToU,,"Help the Yawanawa fight the Amazon forest fires
We recommend this opportunity to directly help people on the ground in their struggle to preserve land and prevent forest fire in the Brazilian rain forest. #Amazon #Forest #Help https://templeofunderstanding.org/help-the-yawanawa-battle-the-amazon-fires/ … pic.twitter.com/tr3LU3D1rB",[],['https://templeofunderstanding.org/help-the-yawanawa-battle-the-amazon-fires/'],['https://pbs.twimg.com/media/EHIEPP9XUAARBzS.jpg'],0,1,0,"['#amazon', '#forest', '#help']",[],https://twitter.com/The_ToU/status/1185014314069049344,False,,0,,,,,,,"[{'user_id': '92290840', 'username': 'The_ToU'}]",
1184996114904178688,1184996114904178688,1571360064000,2019-10-18,03:54:24,MSK,1073865693651623936,gon_felicity,FelicityGonzalesNg,,"im forgot to share:
5th Celebration:
Charity/amazon Rain forest
U definitely all know about the amazon forest fire..as we wish to engrave #Donghae name in the history of the ""Lungs of earth"" we hv planted 24 trees under his name
@SJofficial
#HappyDonghaeDay pic.twitter.com/9KRDlxHoMF",['sjofficial'],[],['https://pbs.twimg.com/media/EHHzrFoXUAAmKiS.jpg'],0,1,7,"['#donghae', '#happydonghaeday']",[],https://twitter.com/gon_felicity/status/1184996114904178688,False,,0,,,,,,,"[{'user_id': '1073865693651623936', 'username': 'gon_felicity'}, {'user_id': '965487301722701826', 'username': 'SJofficial'}]",
1184887153681227778,1184886153444548608,1571334086000,2019-10-17,20:41:26,MSK,1166069950538235905,hereareesh,AreeshHere,,"From global warming to amazon forest fire PTM would blame Pak army for everything in this world
Yeah General Razik was a saint and PTM leadership would be saddened by his death like @mjdawar was last year","['bhittanikhannnn', 'mjdawar']",[],[],0,2,27,[],[],https://twitter.com/HereAreesh/status/1184887153681227778,False,,0,,,,,,,"[{'user_id': '1166069950538235905', 'username': 'HereAreesh'}, {'user_id': '2831713327', 'username': 'BhittaniKhannnn'}, {'user_id': '138340856', 'username': 'mjdawar'}]",
1184832559290691584,1184831552380760065,1571321069000,2019-10-17,17:04:29,MSK,256553032,gwenryuunami,Gwen Ryuunami,,"also I have asthma! I like trees! I like the amazon! I don't want to suffocate because some idiot wanted more tax dollars coming into their coffers. also can you say ""younger dryas""? because that's the last time a continent wide forest fire happened brazil! hope you're happy!","['rnfrstalliance', 'guardian']",[],[],0,0,0,[],[],https://twitter.com/GwenRyuunami/status/1184832559290691584,False,,0,,,,,,,"[{'user_id': '256553032', 'username': 'GwenRyuunami'}, {'user_id': '14786217', 'username': 'RnfrstAlliance'}, {'user_id': '87818409', 'username': 'guardian'}]",
1184773701876752385,1184426696243601409,1571307037000,2019-10-17,13:10:37,MSK,2879394557,jamaelski,#ZKFAM🎄🎁Ting☃️❄,,You think that little bit of water can stop a forest fire? The Amazon is wet 24/7 and look what happened 🤦♂️,"['pcruc25', 'fregisset', 'shmeat']",[],[],1,0,2,[],[],https://twitter.com/jamaelski/status/1184773701876752385,False,,0,,,,,,,"[{'user_id': '2879394557', 'username': 'jamaelski'}, {'user_id': '952898263077851136', 'username': 'Pcruc25'}, {'user_id': '80400081', 'username': 'fregisset'}, {'user_id': '3113441799', 'username': 'shmeat'}]",
1184719757632819200,1184719757632819200,1571294175000,2019-10-17,09:36:15,MSK,1171871807663747078,babybot21243477,working baby bot,,Baby forest fire prevention specialist is mean to his secretary at Amazon Headquarters over loud noise,[],[],[],0,0,0,[],[],https://twitter.com/babybot21243477/status/1184719757632819200,False,,0,,,,,,,"[{'user_id': '1171871807663747078', 'username': 'babybot21243477'}]",
1184704814183108608,1184704814183108608,1571290613000,2019-10-17,08:36:53,MSK,189292222,thenotoriousmad,Moriah ✨,,What happened to the amazon forest fire? We stopped hearing about that pretty abruptly.,[],[],[],0,1,0,[],[],https://twitter.com/TheNotoriousMAD/status/1184704814183108608,False,,0,,,,,,,"[{'user_id': '189292222', 'username': 'TheNotoriousMAD'}]",
1184693751337254912,1184693751337254912,1571287975000,2019-10-17,07:52:55,MSK,1139516042,fatimahtimtim,Tim,,"Forest fire sa amazon and lebanon
Earthquakes
Typhoon sa japan https://twitter.com/AbdulChuhdray/status/1183570740823711745 …",[],['https://twitter.com/AbdulChuhdray/status/1183570740823711745'],[],0,1,18,[],[],https://twitter.com/fatimahtimtim/status/1184693751337254912,False,https://twitter.com/AbdulChuhdray/status/1183570740823711745,0,,,,,,,"[{'user_id': '1139516042', 'username': 'fatimahtimtim'}]",
1184680815705223168,1184626780050583552,1571284891000,2019-10-17,07:01:31,MSK,204393094,vikasagarwalll,Vikas Agarwal,,"She is not to be blamed. This candle is burning more like the recent amazon rain forest fire 😂
Jokes apart a very Happy birthday to her.",['rhdalmia'],[],[],1,0,1,[],[],https://twitter.com/VikasAgarwalll/status/1184680815705223168,False,,0,,,,,,,"[{'user_id': '204393094', 'username': 'VikasAgarwalll'}, {'user_id': '1044090932319195136', 'username': 'RHDalmia'}]",
1184589510983725057,1184589510983725057,1571263122000,2019-10-17,00:58:42,MSK,894315800860995587,jungoodreams,𝑁ღ🇱🇧 loves Wonho,,"People really like to pick and choose when it comes to spreading awareness about shit. Ya’ll where talking about the amazon forest fire for WEEKS, but none of y’all budged when the same shit happened in fucking Lebanon/Syria? This is so sick #PrayForLebanon",[],[],[],2,8,19,['#prayforlebanon'],[],https://twitter.com/jungoodreams/status/1184589510983725057,False,,0,,,,,,,"[{'user_id': '894315800860995587', 'username': 'jungoodreams'}]",
1184575899171205123,1184575899171205123,1571259877000,2019-10-17,00:04:37,MSK,1010134254683029504,wildwoodward,Jordan Woodward,,Remember when the Amazon was destroyed by forest fire and we lost all our air?,[],[],[],7,12,59,[],[],https://twitter.com/WildWoodward/status/1184575899171205123,False,,0,,,,,,,"[{'user_id': '1010134254683029504', 'username': 'WildWoodward'}]",
1184567650539704320,1184430702462406656,1571257910000,2019-10-16,23:31:50,MSK,1854886070,lilysara18,Lily Sara,,"It’s all political. Lebanon refused expert help from Israel, That’s hateful politics. Israel was ready to help as they did in Haiti, the Amazon Rain Forest fire, hurricanes in Puerto Rico, Texas etc., Israel sent aid to many African countries but Lebanon is above help from Israel","['hadiiisepic', 'khalidnajjar9', 'lackboys3']",[],[],1,1,2,[],[],https://twitter.com/LilySara18/status/1184567650539704320,False,,0,,,,,,,"[{'user_id': '1854886070', 'username': 'LilySara18'}, {'user_id': '824671408508796928', 'username': 'Hadiiisepic'}, {'user_id': '1069239804330692608', 'username': 'KhalidNajjar9'}, {'user_id': '22799251', 'username': 'lackboys3'}]",
1184539589077282817,1184539589077282817,1571251220000,2019-10-16,21:40:20,MSK,2476630963,lemongrill_,jean #SOGIEEqualityNOW #SaveOurFarmers,,it's sad that people seem to have forgotten about the amazon forest fire incident. no one talks about it anymore and i havent seen a single news article on social media about it after it had media coverage a few months ago. they were all after the clout all along.,[],[],[],1,6,15,[],[],https://twitter.com/lemongrill_/status/1184539589077282817,False,,0,,,,,,,"[{'user_id': '2476630963', 'username': 'lemongrill_'}]",
1184447325764227072,1184447325764227072,1571229223000,2019-10-16,15:33:43,MSK,114780476,cacecar,Luis Caceres,,"Amazon Forest Fire May Soon Boost #Malaria Rates, Study Warns https://www.medicaldaily.com/amazon-forest-fire-may-soon-boost-malaria-rates-study-warns-444461 …",[],['https://www.medicaldaily.com/amazon-forest-fire-may-soon-boost-malaria-rates-study-warns-444461'],[],0,0,0,['#malaria'],[],https://twitter.com/cacecar/status/1184447325764227072,False,,0,,,,,,,"[{'user_id': '114780476', 'username': 'cacecar'}]",
1184438396053155841,1184438396053155841,1571227094000,2019-10-16,14:58:14,MSK,421844233,aromaticallied,Aromatic & Allied,,Another forest fire destroyed regions of Syria and Lebanon today! Amazon wild forest fire has still not been controlled yet. What is happening? Are we humans still not awake? Do you think this the human life is going to survive for long time? #globalwarming #protectnature pic.twitter.com/FWxzwFEMap,[],[],['https://pbs.twimg.com/media/EG_4bovUEAAd0Xs.jpg'],0,0,0,"['#globalwarming', '#protectnature']",[],https://twitter.com/AromaticAllied/status/1184438396053155841,False,,0,,,,,,,"[{'user_id': '421844233', 'username': 'AromaticAllied'}]",
1184375920112439296,1184125891502174209,1571212198000,2019-10-16,10:49:58,MSK,2354520828,hemantbengani,His Highness Hemant,,Amazon Forest fire lasted for more than 20 days. why was this technology not used.,['bhattarai0077'],[],[],0,0,0,[],[],https://twitter.com/HemantBengani/status/1184375920112439296,False,,0,,,,,,,"[{'user_id': '2354520828', 'username': 'HemantBengani'}, {'user_id': '1079339596272582656', 'username': 'Bhattarai0077'}]",
1184317206898888704,1184317206898888704,1571198200000,2019-10-16,06:56:40,MSK,1629467485,hildopaixao,Hildo Paixao,,"Just follow the chronological order of the 27 sanctions against humanity!
After a fire in the Amazon in Brazil, followed by oil spills in the Brazilian sea,
Everything happened as expected in the Holy Gospel.
After the California forest fire, there will also be an oil spill in pic.twitter.com/c1ver5laeQ",[],[],['https://pbs.twimg.com/media/EG-KNdHW4AAEBue.jpg'],0,0,0,[],[],https://twitter.com/hildopaixao/status/1184317206898888704,False,,0,,,,,,,"[{'user_id': '1629467485', 'username': 'hildopaixao'}]",
1184307841345171456,1184307841345171456,1571195967000,2019-10-16,06:19:27,MSK,1559914512,responsible_biz,Responsible Business,,"Despite the recent public outcry on the Amazon forest fire, deforestation in the Brazilian Amazon continues and is on track to be the highest in the decade, raising concerns that global temperature could increase significantly. https://bit.ly/2oBWmmu via @mongabay #deforestation pic.twitter.com/jkFEpcGxjp",['mongabay'],['https://bit.ly/2oBWmmu'],['https://pbs.twimg.com/media/EG-BtF7X4AAxfXv.jpg'],0,2,0,['#deforestation'],[],https://twitter.com/Responsible_Biz/status/1184307841345171456,False,,0,,,,,,,"[{'user_id': '1559914512', 'username': 'Responsible_Biz'}, {'user_id': '27740227', 'username': 'mongabay'}]",
1184216113598599169,1182189895122657280,1571174097000,2019-10-16,00:14:57,MSK,4827142755,sjtunisianelf,SJ DH TUNISIAN ELF,,"5th Celebration : Charity/amazon Rain forest
U definitely all know about the amazon forest fire ..as we wish to engrave #Donghae name in the history of the ""Lungs of earth"" we have planted 24 trees under his name
@HatoArgentina
@egyptianelf_sj
@Pal15elf
@sjworld
#HappyDonghaeDay pic.twitter.com/QPJ6Ex6LWM","['hatoargentina', 'egyptianelf_sj', 'pal15elf', 'sjworld']",[],['https://pbs.twimg.com/media/EG8uP0OWwAQNca4.jpg'],8,75,82,"['#donghae', '#happydonghaeday']",[],https://twitter.com/SJTunisianELF/status/1184216113598599169,False,,0,,,,,,,"[{'user_id': '4827142755', 'username': 'SJTunisianELF'}, {'user_id': '404623779', 'username': 'HatoArgentina'}, {'user_id': '881420429012983808', 'username': 'egyptianelf_sj'}, {'user_id': '1038520454321975297', 'username': 'Pal15elf'}, {'user_id': '61504616', 'username': 'sjworld'}]",
1184198073783914498,1184198073783914498,1571169796000,2019-10-15,23:03:16,MSK,29497382,paulericmorris,Paul Morris,,This kid would be great in a forest fire! (Amazons seller storefront for matress covers) #YouSuckAtPhotoshop pic.twitter.com/2uizakW2Gi,[],[],['https://pbs.twimg.com/media/EG8d3ruWwAAkCMd.jpg'],0,0,0,['#yousuckatphotoshop'],[],https://twitter.com/paulericmorris/status/1184198073783914498,False,,0,,,,,,,"[{'user_id': '29497382', 'username': 'paulericmorris'}]",
1184147030530232321,1184147030530232321,1571157627000,2019-10-15,19:40:27,MSK,257363233,caiikapowski,Jessie Smooyay,,"White people be having Amazon forest fire levels of smoke for cops. It's ""on sight"" with them for no reason.",[],[],[],0,0,0,[],[],https://twitter.com/CaIiKapowski/status/1184147030530232321,False,,0,,,,,,,"[{'user_id': '257363233', 'username': 'CaIiKapowski'}]",
1184145169018511362,1184142283215704070,1571157183000,2019-10-15,19:33:03,MSK,1183004391521034240,thechaosdemon,𝕁𝕖𝕧𝕚𝕝 Genderbent | ℂ𝕙𝕒𝕠𝕤 𝕂𝕚𝕟𝕘,,The reason why there a Amazon Rain forest fire. pic.twitter.com/NlajJP1i1r,['drunkentrainer'],[],['https://pbs.twimg.com/media/EG7tuSaXUAU8XA6.png'],2,0,1,[],[],https://twitter.com/TheChaosDemon/status/1184145169018511362,False,,0,,,,,,,"[{'user_id': '1183004391521034240', 'username': 'TheChaosDemon'}, {'user_id': '1094324658562912258', 'username': 'DrunkenTrainer'}]",
1183962449365651456,1183962449365651456,1571113619000,2019-10-15,07:26:59,MSK,1130676085568540675,noahjaveri,noah javeri,,"Day two without fortnite
This amazon forest fire looks intense",[],[],[],0,0,2,[],[],https://twitter.com/noahjaveri/status/1183962449365651456,False,,0,,,,,,,"[{'user_id': '1130676085568540675', 'username': 'noahjaveri'}]",
1183599599245647873,1183599599245647873,1571027109000,2019-10-14,07:25:09,MSK,1082234415470718976,dharmra18675842,Dharmraj Gurjar,,"Amazon forest fire, poisonous smoke in 9 countries pic.twitter.com/PCQTkv3eLo",[],[],['https://pbs.twimg.com/media/EGz9j_MUwAIZx4P.jpg'],0,0,3,[],[],https://twitter.com/Dharmra18675842/status/1183599599245647873,False,,0,,,,,,,"[{'user_id': '1082234415470718976', 'username': 'Dharmra18675842'}]",
1183584990665175041,1183554223444811776,1571023626000,2019-10-14,06:27:06,MSK,923541787385450497,firefrommc,"Fire, CEO of Lil",,What do you think about the Amazon Forest fire,['schlattingot'],[],[],1,0,3,[],[],https://twitter.com/FirefromMC/status/1183584990665175041,False,,0,,,,,,,"[{'user_id': '923541787385450497', 'username': 'FirefromMC'}, {'user_id': '1145614768847413249', 'username': 'SchlattIngot'}]",
1183522728541859841,1183522549038305280,1571008781000,2019-10-14,02:19:41,MSK,797608710961041408,theletodeck,👑𝔗𝔴𝔦𝔱𝔱𝔢𝔯'𝔰 𝔐𝔬𝔰𝔱 ℌ𝔞𝔱𝔢𝔡👑,,The footage of the forest fire was just gonna be the footage of the Amazon rainforest burning away,[],[],[],0,0,1,[],[],https://twitter.com/TheLetoDeck/status/1183522728541859841,False,,0,,,,,,,"[{'user_id': '797608710961041408', 'username': 'TheLetoDeck'}]",
1183362338721677315,1183362338721677315,1570970542000,2019-10-13,15:42:22,MSK,564669222,pranaypalei02,Pranay Palei,,"I think we are going to end the world very soon, because first the Amazon forest fire, then the typhoon in Japan and then the earthquakes in the whole world
#earthquake #earthquake pic.twitter.com/aOrXrS3JHD",[],[],"['https://pbs.twimg.com/media/EGwlwT-UcAEohQY.jpg', 'https://pbs.twimg.com/media/EGwlwT2UUAEEQBO.jpg']",0,0,0,"['#earthquake', '#earthquake']",[],https://twitter.com/PranayPalei02/status/1183362338721677315,False,,0,,,,,,,"[{'user_id': '564669222', 'username': 'PranayPalei02'}]",
1183357849625190400,1183357849625190400,1570969471000,2019-10-13,15:24:31,MSK,1114551032153948160,creativity725,çŕèàťìvìťý,,Hi friends... I'm here to show you guys the nature changes.. Here is a best reality example.. As we know that amazon forest fire had control but because of the pollution the global warming has brought a more changes.. #GlobalWarming #amazonfo #earthquake in India #japanTyphoon pic.twitter.com/LFmueErroT,[],[],['https://pbs.twimg.com/media/EGwhrQJU4AUl0Ce.jpg'],1,0,1,"['#globalwarming', '#amazonfo', '#earthquake', '#japantyphoon']",[],https://twitter.com/creativity725/status/1183357849625190400,False,,0,,,,,,,"[{'user_id': '1114551032153948160', 'username': 'creativity725'}]",
1183324917611163648,1183324917611163648,1570961620000,2019-10-13,13:13:40,MSK,189393422,nishkarsh1108,निष्कर्ष (Nishh),,"first the Amazon forest fire, then the typhoon in Japan and then the earthquakes in the whole world
4.5-magnitude earthquake hits Rajasthan's Bikaner today morning, #earthquake #RajasthanEarthquake pic.twitter.com/dBS3xXgsf1",[],[],"['https://pbs.twimg.com/media/EGvfj6FVAAAIMbE.jpg', 'https://pbs.twimg.com/media/EGvflKWUUAE8Ikp.jpg']",1,2,3,"['#earthquake', '#rajasthanearthquake']",[],https://twitter.com/Nishkarsh1108/status/1183324917611163648,False,,0,,,,,,,"[{'user_id': '189393422', 'username': 'Nishkarsh1108'}]",
1183316932768030720,1183316932768030720,1570959716000,2019-10-13,12:41:56,MSK,3220802287,rishi_xyz,Rishi 🇮🇳,,"I think we are going to end the world very soon, because first the Amazon forest fire, then the typhoon in Japan and then the earthquakes in the whole world.... 🌀🌍
#earthquake 🌀
#PrayForJapan 🇯🇵
#saveEarth 🌍 pic.twitter.com/cLRo1kvFPN",[],[],['https://pbs.twimg.com/media/EGv8ejMWoAI3Sbr.jpg'],0,0,2,"['#earthquake', '#prayforjapan', '#saveearth']",[],https://twitter.com/rishi_xyz/status/1183316932768030720,False,,0,,,,,,,"[{'user_id': '3220802287', 'username': 'rishi_xyz'}]",
1183299824508178432,1183299824508178432,1570955637000,2019-10-13,11:33:57,MSK,1177521975025123329,michael36496119,Michael Clark,,See the amazon rain forest fire's gone quiet,[],[],[],0,0,0,[],[],https://twitter.com/Michael36496119/status/1183299824508178432,False,,0,,,,,,,"[{'user_id': '1177521975025123329', 'username': 'Michael36496119'}]",
1183297901922938880,1183297901922938880,1570955179000,2019-10-13,11:26:19,MSK,554987907,imsameersid,Sameer Yadav,,"I think we are going to end the world very soon, because first the Amazon forest fire, then the typhoon in Japan and then the earthquakes in the whole world
#earthquakes",[],[],[],0,0,8,['#earthquakes'],[],https://twitter.com/imsameersid/status/1183297901922938880,False,,0,,,,,,,"[{'user_id': '554987907', 'username': 'imsameersid'}]",
1183297856678944768,1183297856678944768,1570955168000,2019-10-13,11:26:08,MSK,772461198528827392,arvindbajpayee2,Arvind Bajpayee (💯% Follow 4 follow back 💯),,"I think we are going to end the world very soon, because first the Amazon forest fire, then the typhoon in Japan and then the earthquakes in the whole world
#earthquake pic.twitter.com/m8LgX3u5xE",[],[],"['https://pbs.twimg.com/media/EGvfj6FVAAAIMbE.jpg', 'https://pbs.twimg.com/media/EGvflKWUUAE8Ikp.jpg']",0,0,4,['#earthquake'],[],https://twitter.com/ArvindBajpayee2/status/1183297856678944768,False,,0,,,,,,,"[{'user_id': '772461198528827392', 'username': 'ArvindBajpayee2'}]",
1183297793961517058,1183297793961517058,1570955153000,2019-10-13,11:25:53,MSK,3859927752,arvindbajpayee1,Avind kr Vajpayee,,"I think we are going to end the world very soon, because first the Amazon forest fire, then the typhoon in Japan and then the earthquakes in the whole world
#earthquake pic.twitter.com/CDJTq8WQxd
#earthquake",[],[],"['https://pbs.twimg.com/media/EGvfj6FVAAAIMbE.jpg', 'https://pbs.twimg.com/media/EGvflKWUUAE8Ikp.jpg']",0,3,6,"['#earthquake', '#earthquake']",[],https://twitter.com/ArvindBajpayee1/status/1183297793961517058,False,,0,,,,,,,"[{'user_id': '3859927752', 'username': 'ArvindBajpayee1'}]",
1183285186265415680,1183285186265415680,1570952147000,2019-10-13,10:35:47,MSK,1031907978239139840,tanishq__oo7,Tanishq🇮🇳,,"I think we are going to end the world very soon, because first the Amazon forest fire, then the typhoon in Japan and then the earthquakes in the whole world
#earthquake pic.twitter.com/kqM0fmRoT5",[],[],"['https://pbs.twimg.com/media/EGvfj6FVAAAIMbE.jpg', 'https://pbs.twimg.com/media/EGvflKWUUAE8Ikp.jpg']",12,72,228,['#earthquake'],[],https://twitter.com/Tanishq__oo7/status/1183285186265415680,False,,0,,,,,,,"[{'user_id': '1031907978239139840', 'username': 'Tanishq__oo7'}]",
1183072218953273345,1183072218953273345,1570901372000,2019-10-12,20:29:32,MSK,1041874263932846080,averaoxi,Averaoxi,,"I feel like this needs to be said, but I wish people didn't shame others who were disappointed when Spider-Man was taken out of the MCU, around the time of the Amazon rain forest fire. I get that there's a level of importance of topics, but don't get mad at people for having",[],[],[],1,0,1,[],[],https://twitter.com/averaoxi/status/1183072218953273345,False,,0,,,,,,,"[{'user_id': '1041874263932846080', 'username': 'averaoxi'}]",
1182919563446501376,1182909915045810176,1570864976000,2019-10-12,10:22:56,MSK,637134948,charlie_bant0n,Charlie,,"Because there are non to me, see the case of the Amazon forest fire outbreak.
A sham from beginning to the end.",['mayoveli'],[],[],0,0,0,[],[],https://twitter.com/Charlie_Bant0n/status/1182919563446501376,False,,0,,,,,,,"[{'user_id': '637134948', 'username': 'Charlie_Bant0n'}, {'user_id': '212237871', 'username': 'Mayoveli'}]",
1182821038255558656,1182821038255558656,1570841485000,2019-10-12,03:51:25,MSK,488889892,kennethsenining,Ken,,Is this a result of amazon forest fire? Idk😔 https://twitter.com/IvanBenedictus/status/1182706639754821632 …,[],['https://twitter.com/IvanBenedictus/status/1182706639754821632'],[],0,1,0,[],[],https://twitter.com/kennethsenining/status/1182821038255558656,False,https://twitter.com/IvanBenedictus/status/1182706639754821632,0,,,,,,,"[{'user_id': '488889892', 'username': 'kennethsenining'}]",
1182787255020216321,1181650640864497665,1570833431000,2019-10-12,01:37:11,MSK,1180316138661711872,boiyelling,Helmetless!Yelmut,,"No. Still technically a sword fighter, so he should die in a forest fire, preferably the Amazon rainforest one so he could use his sweat to put it out, instead.",['smashadditions'],[],[],0,0,0,[],[],https://twitter.com/BoiYelling/status/1182787255020216321,False,,0,,,,,,,"[{'user_id': '1180316138661711872', 'username': 'BoiYelling'}, {'user_id': '1007987285999128576', 'username': 'SmashAdditions'}]",
1182726889695305730,1182726889695305730,1570819039000,2019-10-11,21:37:19,MSK,1171871807663747078,babybot21243477,working baby bot,,Baby forest fire prevention specialist attempts to start a union at Amazon Headquarters because of another traditional day at kindergarden,[],[],[],0,0,0,[],[],https://twitter.com/babybot21243477/status/1182726889695305730,False,,0,,,,,,,"[{'user_id': '1171871807663747078', 'username': 'babybot21243477'}]",
1182635277967343617,1182519441570983936,1570797197000,2019-10-11,15:33:17,MSK,1066574159474503681,antonypanda1,Antonypanda,,By the way. Are everybody ok. The weather is crazy. My island with hurricane Maria then bahamas the Amazon forest fire and now Japon super Hurricane 😱,['hitomi_official'],[],[],0,0,0,[],[],https://twitter.com/Antonypanda1/status/1182635277967343617,False,,0,,,,,,,"[{'user_id': '1066574159474503681', 'username': 'Antonypanda1'}, {'user_id': '2203817017', 'username': 'Hitomi_official'}]",
1182619907520974848,1182619907520974848,1570793532000,2019-10-11,14:32:12,MSK,531569615,thebl0nde1,Incel,,So is that uh.. detrimental Amazon forest fire still a thing?,[],[],[],0,0,1,[],[],https://twitter.com/Thebl0nde1/status/1182619907520974848,False,,0,,,,,,,"[{'user_id': '531569615', 'username': 'Thebl0nde1'}]",
1182580504815521793,1182577901553602560,1570784138000,2019-10-11,11:55:38,MSK,2375019068,_madeinheaven__,Mr. D,,"Oh look, the new amazon forest fire meme!",['it_meirl_bot'],[],[],0,1,8,[],[],https://twitter.com/_MadeInHeaven__/status/1182580504815521793,False,,0,,,,,,,"[{'user_id': '2375019068', 'username': '_MadeInHeaven__'}, {'user_id': '1009514640844308481', 'username': 'it_meirl_bot'}]",
1182568166544855041,1182563371729768449,1570781196000,2019-10-11,11:06:36,MSK,109079760,kingkambalame,King K.,,"What's next? Huh? Are you going to buy a Migos album and wonder why they haven't dealt with social injustice, the amazon forest fire and the plight of Palestines in the middle east? Lol.
""I bought this Migos album and all they say is they are wearing a white t-shirt!! """,[],[],[],2,4,3,[],[],https://twitter.com/KingKambalame/status/1182568166544855041,False,,0,,,,,,,"[{'user_id': '109079760', 'username': 'KingKambalame'}]",
1182495717538971650,1182495717538971650,1570763923000,2019-10-11,06:18:43,MSK,1627957554,iichanakya,C,,Amazon forest fire is okay now? No one's posting anything about the lungs of Earth.,[],[],[],0,0,2,[],[],https://twitter.com/IIChanakya/status/1182495717538971650,False,,0,,,,,,,"[{'user_id': '1627957554', 'username': 'IIChanakya'}]",
1182067903689965568,1182066643620503552,1570661924000,2019-10-10,01:58:44,MSK,974888173,chris12902,chris,,"the amazon rain forest fire: shows how fucked we are if we don't tackle climate change now. 1 week of press attention
H K situation: shows... how much the people there want to be colonized again by flying flags of the UK and US? 1 month of press attention",['cloneteee1019'],[],[],1,0,1,[],[],https://twitter.com/Chris12902/status/1182067903689965568,False,,0,,,,,,,"[{'user_id': '974888173', 'username': 'Chris12902'}, {'user_id': '930214288584839169', 'username': 'CloneTeee1019'}]",
1182019362095542272,1181707999523553283,1570650351000,2019-10-09,22:45:51,MSK,346851795,dirkydierkerson,Eric Dierkes,,Thanks Aaron for extinguishing the Amazon forest fire by yourself! You are a true humanitarian and the local villages making you their king was a sight to behold!,['aaron_steele20'],[],[],0,2,154,[],[],https://twitter.com/DirkyDierkerson/status/1182019362095542272,False,,0,,,,,,,"[{'user_id': '346851795', 'username': 'DirkyDierkerson'}, {'user_id': '3308299791', 'username': 'Aaron_Steele20'}]",
1181973055007907840,1181830152616955904,1570639310000,2019-10-09,19:41:50,MSK,2563771208,howardemiller,Howard eMiller,,"I guess if you want a forest fire, you shouldn't order it from Amazon.",['ritaparada'],[],[],0,0,0,[],[],https://twitter.com/HowardeMiller/status/1181973055007907840,False,,0,,,,,,,"[{'user_id': '2563771208', 'username': 'HowardeMiller'}, {'user_id': '14636243', 'username': 'ritaparada'}]",
1181849421463670786,1181849421463670786,1570609834000,2019-10-09,11:30:34,MSK,845499075625717761,sharerussharing,Sharer UsSharing,,"Watch ""The other Amazon forest fire - that no one is talking about"" on YouTube https://youtu.be/AR6SOTOMwfg ",[],['https://youtu.be/AR6SOTOMwfg'],[],0,14,13,[],[],https://twitter.com/SharerUssharing/status/1181849421463670786,False,,0,,,,,,,"[{'user_id': '845499075625717761', 'username': 'SharerUssharing'}]",
1181719177293451264,1181699181561417728,1570578781000,2019-10-09,02:53:01,MSK,1009494540959526912,memes_an_dreams,Bored_Monkey,,"How about the one where the clintons started the Amazon rainforest fire to get everyone to forget about Epstein's death, and how the media lied and said that the forest fire had been going on for weeks before his death even though we had no clue about it until after his death","['unusualquesti0n', 'unusualimagery']",[],[],0,0,0,[],[],https://twitter.com/memes_an_dreams/status/1181719177293451264,False,,0,,,,,,,"[{'user_id': '1009494540959526912', 'username': 'memes_an_dreams'}, {'user_id': '1121791454647652352', 'username': 'UnusualQuesti0n'}, {'user_id': '2395114790', 'username': 'unusualImagery'}]",
1181596572380991489,1181596572380991489,1570549550000,2019-10-08,18:45:50,MSK,21691327,ayallgood,AY Allgood,,"While we've all been distracted by America's implosion and the Brexit circus, nobody bothered to put out that Amazon forest fire https://fark.com/go/10579738 ",[],['https://fark.com/go/10579738'],[],0,0,0,[],[],https://twitter.com/ayallgood/status/1181596572380991489,False,,0,,,,,,,"[{'user_id': '21691327', 'username': 'ayallgood'}]",
1181578369609211904,1181578369609211904,1570545210000,2019-10-08,17:33:30,MSK,62304590,mizmaxgordon,🍑 Impeach Indict Imprison Trump✏️🇺🇸🏳️🌈,,"While we've all been distracted by America's implosion and the Brexit circus, nobody bothered to put out that Amazon forest fire https://fark.com/go/10579738 ",[],['https://fark.com/go/10579738'],[],0,0,0,[],[],https://twitter.com/mizmaxgordon/status/1181578369609211904,False,,0,,,,,,,"[{'user_id': '62304590', 'username': 'mizmaxgordon'}]",
1181512795596046336,1181476034601984000,1570529576000,2019-10-08,13:12:56,MSK,198102060,karty25,karthickshenbagam,,And who knows they could blame our rituals as the cause of Amazon forest fire 🤦♂️🤦♂️😅😅😇😇;,['drpratiksha1'],[],[],0,0,2,[],[],https://twitter.com/karty25/status/1181512795596046336,False,,0,,,,,,,"[{'user_id': '198102060', 'username': 'karty25'}, {'user_id': '1018119100151877633', 'username': 'Drpratiksha1'}]",
1181421049134469120,1181260201170735107,1570507702000,2019-10-08,07:08:22,MSK,995664906971041795,borker_b,Manoj Borker,,"Nobody came for bandipura forest fire, but they marched for amazon fire !! These ppl do only protest that's it !!",['princearihan'],[],[],0,0,0,[],[],https://twitter.com/borker_b/status/1181421049134469120,False,,0,,,,,,,"[{'user_id': '995664906971041795', 'username': 'borker_b'}, {'user_id': '1890327224', 'username': 'PrinceArihan'}]",
1181316194374160384,1181316194374160384,1570482703000,2019-10-08,00:11:43,MSK,236848096,starscream_299,Sean i,,#TheWalkingDeadUK shouldve sent that lot to the Amazon. They fought a forest fire with water pistols and human blood,[],[],[],0,0,1,['#thewalkingdeaduk'],[],https://twitter.com/starscream_299/status/1181316194374160384,False,,0,,,,,,,"[{'user_id': '236848096', 'username': 'starscream_299'}]",
1181303503395966976,1181303503395966976,1570479677000,2019-10-07,23:21:17,MSK,3179828773,jpdrakeent,JP Drake Enterprises,,"While we've all been distracted by America's implosion and the Brexit circus, nobody bothered to put out that Amazon forest fire [Sad] https://ift.tt/31QzIFb ",[],['https://ift.tt/31QzIFb'],[],0,0,0,[],[],https://twitter.com/JPDrakeEnt/status/1181303503395966976,False,,0,,,,,,,"[{'user_id': '3179828773', 'username': 'JPDrakeEnt'}]",
1181228687397490688,1181227240379408384,1570461839000,2019-10-07,18:23:59,MSK,3044582147,chandan_khaoash,Chandan Khaoash,,Lost in Amazon forest fire,['raggedtag'],[],[],0,0,0,[],[],https://twitter.com/chandan_khaoash/status/1181228687397490688,False,,0,,,,,,,"[{'user_id': '3044582147', 'username': 'chandan_khaoash'}, {'user_id': '23291925', 'username': 'raggedtag'}]",
1181098241892372480,1181098241892372480,1570430739000,2019-10-07,09:45:39,MSK,1336047366,ajay2916,Ajay Kumar,,"Joir Bolsonaro, brazilian president allegedly responsible for about 26 lakh acres of amazon forest fire to pave way for his industrialist supporters to set up industry there has such similarity of view when you consider the people behind #Aarey crime. Wiki says about Joir: pic.twitter.com/CcIyizQfT8",[],[],['https://pbs.twimg.com/media/EGQalBhVUAAr_MG.jpg'],0,0,0,['#aarey'],[],https://twitter.com/Ajay2916/status/1181098241892372480,False,,0,,,,,,,"[{'user_id': '1336047366', 'username': 'Ajay2916'}]",
1181047301692805121,1181046347610279936,1570418594000,2019-10-07,06:23:14,MSK,185949943,kalpathisn,Narayanan Subramanian நாராயணன் சுப்பிரமணியன் 🇮🇳,,"Did I say Amazon's forest fire is right? Were there not similar fires in America, Australia of all places? Did they get such negative coverage as the one in Brazil? It is like the guzzler driving liberal ruminating the pollution caused by Diwali crackers. Selective hypocrisy!",['manasi71'],[],[],1,0,2,[],[],https://twitter.com/KalpathiSN/status/1181047301692805121,False,,0,,,,,,,"[{'user_id': '185949943', 'username': 'KalpathiSN'}, {'user_id': '1110078962850357248', 'username': 'Manasi71'}]",
1181004184557981696,1181004184557981696,1570408314000,2019-10-07,03:31:54,MSK,1140442682084352000,its_jaybaar,Jay B,,"damn, is the amazon okay? that forest fire thing really be slowing down business, my package was supposed to be in yesterday. prayin for ya Amazon",[],[],[],0,0,1,[],[],https://twitter.com/its_JayBaar/status/1181004184557981696,False,,0,,,,,,,"[{'user_id': '1140442682084352000', 'username': 'its_JayBaar'}]",
1180978114253471744,1180978114253471744,1570402098000,2019-10-07,01:48:18,MSK,205952287,mashahaan,Mash,,As if the Amazon forest fire is still burning..,[],[],[],1,0,0,[],[],https://twitter.com/Mashahaan/status/1180978114253471744,False,,0,,,,,,,"[{'user_id': '205952287', 'username': 'Mashahaan'}]",
1180914650793172992,1180914650793172992,1570386967000,2019-10-06,21:36:07,MSK,1156477136808505344,mikasawaifu,Mikasa 🧢,,"The entire government of Iraq has ceased internet access to it's citizens for a few days now. The MSM won't even cover this, let alone the Amazon forest fire.",[],[],[],0,0,0,[],[],https://twitter.com/mikasawaifu/status/1180914650793172992,False,,0,,,,,,,"[{'user_id': '1156477136808505344', 'username': 'mikasawaifu'}]",
1180901821855830017,1180901821855830017,1570383909000,2019-10-06,20:45:09,MSK,731028917792985089,finalbloodbath,RP,,Any update on the amazon forest fire?,[],[],[],0,0,7,[],[],https://twitter.com/Finalbloodbath/status/1180901821855830017,False,,0,,,,,,,"[{'user_id': '731028917792985089', 'username': 'Finalbloodbath'}]",
1180859513542283266,1180719301881450501,1570373821000,2019-10-06,17:57:01,MSK,1066531383365918720,rajeshlostsoul,Rajesh aggarwal,,Cutting 3 thousand trees and even when multiple thousand trees are planted in lieu of them and amazon forest fire are equal according to you?,['sneheshphilip'],[],[],0,0,0,[],[],https://twitter.com/rajeshlostsoul/status/1180859513542283266,False,,0,,,,,,,"[{'user_id': '1066531383365918720', 'username': 'rajeshlostsoul'}, {'user_id': '53089452', 'username': 'sneheshphilip'}]",
1180815032306688000,1180800138320711680,1570363216000,2019-10-06,15:00:16,MSK,4794618332,dinlow206,Din,,"I am very concerned about the global warming, especially after Amazon Forest fire. I don’t know why people surrounding like living in another planet, they don’t change their life style, keep wasting lots of energy everyday. Frustrated.",['cnni'],[],[],0,0,0,[],[],https://twitter.com/dinlow206/status/1180815032306688000,False,,0,,,,,,,"[{'user_id': '4794618332', 'username': 'dinlow206'}, {'user_id': '2097571', 'username': 'cnni'}]",
1180792029816573953,1180792029816573953,1570357732000,2019-10-06,13:28:52,MSK,946633557102829568,van_patriotic,विनय अरुण नाईक,,"Those crying over Amazon Forest Fire, Look whats happening in your own backyard..
How Trees are being cut in Aarey
@RajThackeray @Dev_Fadnavis @narendramodi.@mnsadhikrut.@LeoDiCaprio
@akshaykumar @SrBachchan @priyankachopra @abpmajhatv @MumMetro #mmrcl #jica #MumbaiMetro3 pic.twitter.com/yPA1tXXycn","['rajthackeray', 'dev_fadnavis', 'narendramodi', 'mnsadhikrut', 'leodicaprio', 'akshaykumar', 'srbachchan', 'priyankachopra', 'abpmajhatv', 'mummetro']",[],['https://pbs.twimg.com/media/EGMEF4HVUAI9FMv.jpg'],0,1,0,"['#mmrcl', '#jica', '#mumbaimetro3']",[],https://twitter.com/VAN_Patriotic/status/1180792029816573953,False,,0,,,,,,,"[{'user_id': '946633557102829568', 'username': 'VAN_Patriotic'}, {'user_id': '864794008496742400', 'username': 'RajThackeray'}, {'user_id': '137780376', 'username': 'Dev_Fadnavis'}, {'user_id': '18839785', 'username': 'narendramodi'}, {'user_id': '1598146819', 'username': 'mnsadhikrut'}, {'user_id': '133880286', 'username': 'LeoDiCaprio'}, {'user_id': '31348594', 'username': 'akshaykumar'}, {'user_id': '145125358', 'username': 'SrBachchan'}, {'user_id': '18681139', 'username': 'priyankachopra'}, {'user_id': '52121743', 'username': 'abpmajhatv'}, {'user_id': '2373688789', 'username': 'MumMetro'}]",
1180775543911931905,1180775543911931905,1570353802000,2019-10-06,12:23:22,MSK,958333646066388992,udhan_khatola,urbanomed🏳️🌈,,"The ones who were criticising people and calling hypocrites for posting Amazon forest fire and said you never voice for our very own Indian forests, are mum now. We are still voicing against deforestation then and now.",[],[],[],0,0,2,[],[],https://twitter.com/udhan_khatola/status/1180775543911931905,False,,0,,,,,,,"[{'user_id': '958333646066388992', 'username': 'udhan_khatola'}]",
1180764453966532608,1180764453966532608,1570351158000,2019-10-06,11:39:18,MSK,2240516899,s197mitra,s mitra,,What about Amazon forest fire ? Doused ?,[],[],[],0,0,0,[],[],https://twitter.com/S197Mitra/status/1180764453966532608,False,,0,,,,,,,"[{'user_id': '2240516899', 'username': 'S197Mitra'}]",
1180740615325114368,1180740615325114368,1570345474000,2019-10-06,10:04:34,MSK,336640978,annette193,Annie,,"@MumbaiPolice for once show that you are for the people and not for the government. You spoke about the amazon forest fire but do not see the destruction in your own country?? Hypocrisy. Sold to the government.
#AareyForestPolitics
#AareyProtest https://twitter.com/MumbaiPolice/status/1166620696539205641 …",['mumbaipolice'],['https://twitter.com/MumbaiPolice/status/1166620696539205641'],[],0,4,3,"['#aareyforestpolitics', '#aareyprotest']",[],https://twitter.com/annette193/status/1180740615325114368,False,https://twitter.com/MumbaiPolice/status/1166620696539205641,0,,,,,,,"[{'user_id': '336640978', 'username': 'annette193'}, {'user_id': '4573405572', 'username': 'MumbaiPolice'}]",
1180740123194843136,1180740123194843136,1570345357000,2019-10-06,10:02:37,MSK,623541527,pratiktejale,PRATIK TEJALE,,Remember amazon forest fire we all stood up but what happen now...they are cutting our forest..on one side govt talks abt global warming and on other side this...hate media ..its still time wake up..Frgt ur diffrnc and unite..bcz oxygen is fr all us #AareyForest #AareyProtest https://twitter.com/deespeak/status/1180437884886638592 …,[],['https://twitter.com/deespeak/status/1180437884886638592'],[],0,0,0,"['#aareyforest', '#aareyprotest']",[],https://twitter.com/PRATIKTEJALE/status/1180740123194843136,False,https://twitter.com/deespeak/status/1180437884886638592,0,,,,,,,"[{'user_id': '623541527', 'username': 'PRATIKTEJALE'}]",
1180724142389116928,1180719301881450501,1570341546000,2019-10-06,08:59:06,MSK,222622375,abommakanti,Ashrita Bommakanti,,Can’t compare Aarey to Amazon forest fire. The metro is already a few decades late for Mumbai.,['sneheshphilip'],[],[],0,0,2,[],[],https://twitter.com/ABommakanti/status/1180724142389116928,False,,0,,,,,,,"[{'user_id': '222622375', 'username': 'ABommakanti'}, {'user_id': '53089452', 'username': 'sneheshphilip'}]",
1180722403887865859,1180722403887865859,1570341132000,2019-10-06,08:52:12,MSK,2913181436,rbcca_pwll,Rebecca Powell,,So uhh has the Amazon forest fire been put out,[],[],[],0,0,4,[],[],https://twitter.com/Rbcca_Pwll/status/1180722403887865859,False,,0,,,,,,,"[{'user_id': '2913181436', 'username': 'Rbcca_Pwll'}]",
1180721150311034880,1180190475405402113,1570340833000,2019-10-06,08:47:13,MSK,284346792,sandhya_jane,#SandhyaJane 🇮🇳,,"Have you
1. protested against beef industry and Amazon forest fire?
2. protested against cutting down millions of Christmas trees every year?
3. protested against New Year fire work across the globe?
4. turned vegetarian to protect environment?
5. promoted all above and more?",['fayedsouza'],[],[],0,0,0,[],[],https://twitter.com/Sandhya_Jane/status/1180721150311034880,False,,0,,,,,,,"[{'user_id': '284346792', 'username': 'Sandhya_Jane'}, {'user_id': '33915298', 'username': 'fayedsouza'}]",
1180676127074897920,1180676127074897920,1570330099000,2019-10-06,05:48:19,MSK,186479754,jairamchakravar,jairam chakravarthi,,Save trees !!! Why film fraternity is not reacting on #SaveAarey as much as it reacted for Amazon forest fire. #RAPO ni taarif cheyalsindhe for supporting https://twitter.com/ramsayz/status/1180479918460719105 …,[],['https://twitter.com/ramsayz/status/1180479918460719105'],[],0,0,0,"['#saveaarey', '#rapo']",[],https://twitter.com/jairamchakravar/status/1180676127074897920,False,https://twitter.com/ramsayz/status/1180479918460719105,0,,,,,,,"[{'user_id': '186479754', 'username': 'jairamchakravar'}]",
1180675919331115008,1180675919331115008,1570330049000,2019-10-06,05:47:29,MSK,42469253,team_johnarr,King Mar$,,The other Amazon forest fire - that no one is talking about https://youtu.be/AR6SOTOMwfg via @YouTube,['youtube'],['https://youtu.be/AR6SOTOMwfg'],[],0,1,1,[],[],https://twitter.com/team_johnarr/status/1180675919331115008,False,,0,,,,,,,"[{'user_id': '42469253', 'username': 'team_johnarr'}, {'user_id': '10228272', 'username': 'YouTube'}]",
1180657266191716352,1180637091530711041,1570325602000,2019-10-06,04:33:22,MSK,721753843684483072,juliorodrigox,Júlio Rodrigo,,"Thanks for asking. Brazil is very large and I live more than 2000 miles from the Amazon rainforest. I only see forest fire on TV, but the effects will be felt all over the world.",['electrogamesco'],[],[],1,0,0,[],[],https://twitter.com/juliorodrigox/status/1180657266191716352,False,,0,,,,,,,"[{'user_id': '721753843684483072', 'username': 'juliorodrigox'}, {'user_id': '912013808415248384', 'username': 'ElectroGamesCo'}]",
1180587707715579904,1180587707715579904,1570309018000,2019-10-05,23:56:58,MSK,832974954404548609,najmussaquib19,Najmus Saquib (Hoda),,"#SaveAarey
Those crying over Amazon Forest Fire, Look whats happening in your own backyard....
#SaveAareyForest #SaveAareySaveMumbai
jangal raaton raat nhi bna krte h
phir ise raat ke andheron m q mitaya ja rha h
#AareyChipko pic.twitter.com/NBNrg69kOq",[],[],['https://pbs.twimg.com/media/EGJKQNKUUAI-uda.jpg'],0,0,4,"['#saveaarey', '#saveaareyforest', '#saveaareysavemumbai', '#aareychipko']",[],https://twitter.com/NajmusSaquib19/status/1180587707715579904,False,,0,,,,,,,"[{'user_id': '832974954404548609', 'username': 'NajmusSaquib19'}]",
1180486951314411520,1180486951314411520,1570284996000,2019-10-05,17:16:36,MSK,1016786527,aartic02,Aarti,,"Those crying over Amazon Forest Fire, Look whats happening in your own backyard..
How Trees are being cut in #AareyForest ..
#SaveAarey pic.twitter.com/WhuWWPxycv",[],[],[],50,353,554,"['#aareyforest', '#saveaarey']",[],https://twitter.com/aartic02/status/1180486951314411520,False,,1,,,,,,,"[{'user_id': '1016786527', 'username': 'aartic02'}]",
1180480527943421952,1180480527943421952,1570283464000,2019-10-05,16:51:04,MSK,75521696,svmurthy,S.Vasudeva Murthy ,,"Heart wrenching video footage.
For a Far Away Amazon Forest Fire Too Indians Expressed Concern.
Hope World Watching. #AareyColony #AareyProtest #AareyChipko #AareyForest https://twitter.com/deespeak/status/1180437884886638592 …",[],['https://twitter.com/deespeak/status/1180437884886638592'],[],0,3,4,"['#aareycolony', '#aareyprotest', '#aareychipko', '#aareyforest']",[],https://twitter.com/svmurthy/status/1180480527943421952,False,https://twitter.com/deespeak/status/1180437884886638592,0,,,,,,,"[{'user_id': '75521696', 'username': 'svmurthy'}]",
1180461869863059459,1180438399657885696,1570279016000,2019-10-05,15:36:56,MSK,3316306891,coffeenchirps,Totapari,,"Actually I was, a part of the Human chain FYI
IDid you fly down to Brazil to stop Amazon forest fire? Should everyone who expressed grief and concern do so? Did you?",['mumbairepresent'],[],[],0,0,0,[],[],https://twitter.com/CoffeeNChirps/status/1180461869863059459,False,,0,,,,,,,"[{'user_id': '3316306891', 'username': 'CoffeeNChirps'}, {'user_id': '1158480990458851328', 'username': 'mumbairepresent'}]",
1180450220087230465,1180450220087230465,1570276238000,2019-10-05,14:50:38,MSK,1069646886091526144,akashswamii,Akash Swami,,"Time for Chipko movement pt.2!!
By the way where is fake environmentalist @akshaykumar? Who was shedding crocodile tears few days back for Amazon Forest Fire, someone tell him #AareyForest is forest too.
2600+ full grown trees ain't a joke!!
#AareyAiKaNa #SaveAareyForest https://twitter.com/mataonline/status/1180174700091035648 …",['akshaykumar'],['https://twitter.com/mataonline/status/1180174700091035648'],[],0,0,3,"['#aareyforest', '#aareyaikana', '#saveaareyforest']",[],https://twitter.com/akashswamii/status/1180450220087230465,False,https://twitter.com/mataonline/status/1180174700091035648,0,,,,,,,"[{'user_id': '1069646886091526144', 'username': 'akashswamii'}, {'user_id': '31348594', 'username': 'akshaykumar'}]",
1180376393693061120,1180376393693061120,1570258637000,2019-10-05,09:57:17,MSK,47534480,torontodreams,Toronto Dreams,,"Fastest finger first:
Arrange these in increasing number of trees involved
👉 2700 Trees at Aarey
👉 Trees planted by metro authority
👉 Borivli Sanjay Gandhi National Park
👉 Amazon forest fire
#kbc2019 #MumbaiMetro #AareyAiKaNa",[],[],[],0,0,0,"['#kbc2019', '#mumbaimetro', '#aareyaikana']",[],https://twitter.com/TorontoDreams/status/1180376393693061120,False,,0,,,,,,,"[{'user_id': '47534480', 'username': 'TorontoDreams'}]",
1180361443193114631,1180239348358352898,1570255072000,2019-10-05,08:57:52,MSK,742089277975236608,realkeirreeves,Keir Reeves,,"..... because Climate Change is all about politics & bugger-all to do with science. Why do you think that an unremarkable forest fire in The Amazon became global news? Answer, because now there is a right-wing government in charge.","['cmorrisonesq', 'dvatw']",[],[],0,0,0,[],[],https://twitter.com/realKeirReeves/status/1180361443193114631,False,,0,,,,,,,"[{'user_id': '742089277975236608', 'username': 'realKeirReeves'}, {'user_id': '1118861449160474624', 'username': 'CMorrisonEsq'}, {'user_id': '19899606', 'username': 'DVATW'}]",
1180350825580810241,1180350825580810241,1570252541000,2019-10-05,08:15:41,MSK,139085448,gooner4glory,shashi kiran,,#SaveAarey vote 4 fadvanis and ensure Maharastra tree free & oxygen free canadian citizen @akshaykumar happy to have mumbai metro but sad for amazon forest fire pic.twitter.com/MTQ5uZCMAI,['akshaykumar'],[],"['https://pbs.twimg.com/media/EGFyyd_U4AAMLux.png', 'https://pbs.twimg.com/media/EGFyyekU4AEuINx.png', 'https://pbs.twimg.com/media/EGFyyeAU4AA75Ho.png', 'https://pbs.twimg.com/media/EGFyyeAUwAE7j_h.png']",0,1,0,['#saveaarey'],[],https://twitter.com/gooner4glory/status/1180350825580810241,False,,0,,,,,,,"[{'user_id': '139085448', 'username': 'gooner4glory'}, {'user_id': '31348594', 'username': 'akshaykumar'}]",
1180221019245731840,1180196342657732608,1570221593000,2019-10-04,23:39:53,MSK,1583435396,royarnab2005,array_1974,,Ever been to array? Do u know what is it or what it looks like? And then u guys write articles about Amazon forest fire. Lol....get ur facts correct and even wear the right glasses.,['abhijitmajumder'],[],[],0,0,1,[],[],https://twitter.com/royarnab2005/status/1180221019245731840,False,,0,,,,,,,"[{'user_id': '1583435396', 'username': 'royarnab2005'}, {'user_id': '56039856', 'username': 'abhijitmajumder'}]",
1180216762509463552,1180216237013504002,1570220578000,2019-10-04,23:22:58,MSK,1056337939398094848,weirdoauthor,your neighbor kat,,The Amazon rainforest has a very bad forest fire and nobody is donating much. But the chapel in France got lots of money :((,['foxxeymits'],[],[],1,1,1,[],[],https://twitter.com/WeirdoAuthor/status/1180216762509463552,False,,0,,,,,,,"[{'user_id': '1056337939398094848', 'username': 'WeirdoAuthor'}, {'user_id': '791661313458073601', 'username': 'foxxeymits'}]",
1180214563582689281,1180166964003704832,1570220053000,2019-10-04,23:14:13,MSK,1055528343058157568,textpostg,Textpost-Generator ☭,,"This is just a dumb argument beginning to end. Corporations have the technology to make zero emissions cars, boats, planes, etc. but they don’t because they want to make more money. They also choked funding to fighting the amazon forest fire, why? I’ll let you guess","['erikterwan1', 'mattielisbon', 'adampeters', 'gretathunberg']",[],[],1,0,0,[],[],https://twitter.com/TextpostG/status/1180214563582689281,False,,0,,,,,,,"[{'user_id': '1055528343058157568', 'username': 'TextpostG'}, {'user_id': '939878053483827205', 'username': 'ErikTerwan1'}, {'user_id': '427097606', 'username': 'Mattielisbon'}, {'user_id': '16875220', 'username': 'AdamPeters'}, {'user_id': '1006419421244678144', 'username': 'GretaThunberg'}]",
1180176080734306304,1180176080734306304,1570210878000,2019-10-04,20:41:18,MSK,1165206919927123968,lannistermango,JhootBoleKauwaKaate,,This is no less criminal than the man-made Amazon forest fire. And also against any democratic and moral ethics. @LeoDiCaprio @narendramodi @PMOIndia @AUThackeray #AareyForest #AareyColony #BJPGovtInComa https://twitter.com/TOIMumbai/status/1180139624586342400?s=20 …,"['leodicaprio', 'narendramodi', 'pmoindia', 'authackeray']",['https://twitter.com/TOIMumbai/status/1180139624586342400?s=20'],[],0,1,0,"['#aareyforest', '#aareycolony', '#bjpgovtincoma']",[],https://twitter.com/LannisterMango/status/1180176080734306304,False,https://twitter.com/TOIMumbai/status/1180139624586342400,0,,,,,,,"[{'user_id': '1165206919927123968', 'username': 'LannisterMango'}, {'user_id': '133880286', 'username': 'LeoDiCaprio'}, {'user_id': '18839785', 'username': 'narendramodi'}, {'user_id': '471741741', 'username': 'PMOIndia'}, {'user_id': '1606048885', 'username': 'AUThackeray'}]",
1180114725679460352,1180113547562553346,1570196250000,2019-10-04,16:37:30,MSK,3310457576,mistytvscreen,mariane•punky| asia tour ⎊✪,,"me: mom dad i made a big mistake 😭
mom & dad: WHAT HAPPEND?
me: i make the forest fire in the amazon 😭🔥",['616rj'],[],[],1,1,2,[],[],https://twitter.com/Mistytvscreen/status/1180114725679460352,False,,0,,,,,,,"[{'user_id': '3310457576', 'username': 'Mistytvscreen'}, {'user_id': '1158439806378156033', 'username': '616RJ'}]",
1180080399843762176,1179776314770939904,1570188066000,2019-10-04,14:21:06,MSK,137658580,meninboxes,Harry Squirtbrush #CONGRATULATIONSBORIS,,"""Fragile egos"" FFS Lammy, the girl is autistic and a puppet for someone. Dereliction of duty by her parents. If I were you, I'd be screaming for her protection. Shes out of her depth. Also, Amazon rain forest fire is worse than anything BUT the planet will recover. FACTS!",['davidlammy'],[],[],0,0,1,[],[],https://twitter.com/MenInBoxes/status/1180080399843762176,False,,0,,,,,,,"[{'user_id': '137658580', 'username': 'MenInBoxes'}, {'user_id': '18020612', 'username': 'DavidLammy'}]",
1180064610860163072,1180037185178722305,1570184302000,2019-10-04,13:18:22,MSK,374432467,sincerelydivs_,Divina Arguelles,,I think he was referring to the Amazon Forest Fire incident?,['imjaytrabuco'],[],[],0,0,1,[],[],https://twitter.com/sincerelydivs_/status/1180064610860163072,False,,0,,,,,,,"[{'user_id': '374432467', 'username': 'sincerelydivs_'}, {'user_id': '275449828', 'username': 'imjaytrabuco'}]",
1179997058758922244,1179997058758922244,1570168196000,2019-10-04,08:49:56,MSK,20886086,flipout,Flipeezy,,"nobody can chop like the 2019 @QtipTheAbstract none of these new arrogant idiots that's for sure. this danny brown album is climate change amazon rain forest fire. ""Best Life""???? geeeeeeeeeeeeez",['qtiptheabstract'],[],[],1,0,6,[],[],https://twitter.com/Flipout/status/1179997058758922244,False,,0,,,,,,,"[{'user_id': '20886086', 'username': 'Flipout'}, {'user_id': '8320242', 'username': 'QtipTheAbstract'}]",
1179915900595499008,1179915900595499008,1570148847000,2019-10-04,03:27:27,MSK,541992362,myluso,MyLuso,,‘War for survival’: Brazil’s Amazon tribes despair as land raids surge under Bolsonaro | World news | The Guardian – https://myluso.com/war-for-survival-brazils-amazon-tribes-despair-as-land-raids-surge-under-bolsonaro-world-news-the-guardian/ … #Brazil #Amazon #World #News #Forest #Fire pic.twitter.com/0UwUc6yWaZ,[],['https://myluso.com/war-for-survival-brazils-amazon-tribes-despair-as-land-raids-surge-under-bolsonaro-world-news-the-guardian/'],['https://pbs.twimg.com/media/EF_nQd_U4AAKLe4.jpg'],0,0,0,"['#brazil', '#amazon', '#world', '#news', '#forest', '#fire']",[],https://twitter.com/MyLuso/status/1179915900595499008,False,,0,,,,,,,"[{'user_id': '541992362', 'username': 'MyLuso'}]",
1179816439135506433,1179816439135506433,1570125133000,2019-10-03,20:52:13,MSK,1138246024420614145,fatemaainayat,Fatema Inayat,,the way these celebrities get immediate news coverage about their breakup or relationship is actually disgusting. it took networking companies less than 24hrs to broadcast kylies breakup but 3 weeks for the amazon forest fire to hit global news. smh,[],[],[],0,5,25,[],[],https://twitter.com/fatemaainayat/status/1179816439135506433,False,,0,,,,,,,"[{'user_id': '1138246024420614145', 'username': 'fatemaainayat'}]",
1179807983150043136,1179807983150043136,1570123117000,2019-10-03,20:18:37,MSK,1176860690864209921,sureshparawaa,WONT_ @ _CWEP,,"The Indonesian government said that strict action will be taken against the negligent people, while the Brazilian environment minister due to Amazon forest fire Had to face opposition in Britain.",[],[],[],0,0,0,[],[],https://twitter.com/SureshParawaa/status/1179807983150043136,False,,0,,,,,,,"[{'user_id': '1176860690864209921', 'username': 'SureshParawaa'}]",
1179796908547682305,1179796908547682305,1570120477000,2019-10-03,19:34:37,MSK,32953862,fuerzacicada,Jay,,I remember doing a project (a collage lol) on the Amazon in elementary school and saw a picture in a magazine of a baby monkey crying for it’s dead mom in the middle of a forest fire and it’s been tattooed on my brain ever since,[],[],[],1,0,0,[],[],https://twitter.com/FuerzaCicada/status/1179796908547682305,False,,0,,,,,,,"[{'user_id': '32953862', 'username': 'FuerzaCicada'}]",
1179758925106728960,1179758925106728960,1570111421000,2019-10-03,17:03:41,MSK,3190402016,rawndowlpuh_,ᵇⁱˡᵒᵍ,,"Burning of Amazon caused by forest fire which is a natural phenomenon (sabi nila), and burning of Star City and LRT catenary line caused not by a natural phenomenon this might caused by a electrical malfunction and such. 'Di natin kasalanan yan, it's the management 's fault -_- https://twitter.com/MarkZamby/status/1179610989915856896 …",[],['https://twitter.com/MarkZamby/status/1179610989915856896'],[],0,0,1,[],[],https://twitter.com/rawndowlpuh_/status/1179758925106728960,False,https://twitter.com/MarkZamby/status/1179610989915856896,0,,,,,,,"[{'user_id': '3190402016', 'username': 'rawndowlpuh_'}]",
1179747091196702720,1179618617211719680,1570108599000,2019-10-03,16:16:39,MSK,1161790053829398528,pyschosucks,Conservative Bear,,"Well Bette your just Dumming Down Americans
Your Crazy the Amazon forest is burning down
Is an example of your idiotic Craziness
Should have done your homework cause
It was even below average forest fire season there Brazil 😂🤣😂😅
Just Hollywood ruining the world 😜with Crap😬 pic.twitter.com/IRMBSSvRot",['bettemidler'],[],[],0,0,0,[],[],https://twitter.com/pyschosucks/status/1179747091196702720,False,,1,,,,,,,"[{'user_id': '1161790053829398528', 'username': 'pyschosucks'}, {'user_id': '139823781', 'username': 'BetteMidler'}]",
1179407667690905600,1179392124535689216,1570027674000,2019-10-02,17:47:54,MSK,976584787551977472,valeriedelucca,Valerie Delucca,,DiCaprio donates millions to the forest fire in the Amazon.. but yeah it’s a fallacy,['fdv_99'],[],[],2,0,0,[],[],https://twitter.com/valeriedelucca/status/1179407667690905600,False,,0,,,,,,,"[{'user_id': '976584787551977472', 'username': 'valeriedelucca'}, {'user_id': '2157268781', 'username': 'FDV_99'}]",
1179397748174524416,1179397748174524416,1570025309000,2019-10-02,17:08:29,MSK,1006140743101005826,juna_dizon,𝙟𝙪𝙣𝙖 𝙙𝙖 𝙫𝙞𝙣𝙘𝙞,,"50% done.
Philippine Contemporary Arts
(PT- artwork)
Medium used: soy sauce (with black paint)
Message: Environmental Awareness (Amazon forest fire) pic.twitter.com/E6V6TRtaRC",[],[],"['https://pbs.twimg.com/media/EF4P8lhWwAEtbgg.jpg', 'https://pbs.twimg.com/media/EF4P9rKWsAIxZcr.jpg', 'https://pbs.twimg.com/media/EF4P_NpXYAYKnVl.jpg']",0,0,10,[],[],https://twitter.com/juna_dizon/status/1179397748174524416,False,,0,,,,,,,"[{'user_id': '1006140743101005826', 'username': 'juna_dizon'}]",
1179174616893251585,1179174616893251585,1569972111000,2019-10-02,02:21:51,MSK,1050307914471157760,ellyyybee,rahnella,,"The world is changing so rapidly that before everyone had a chance to see beauty, it's already gone.
Merlion getting demolished
Parts of starcity burning down
The Amazon forest fire
..and the rest of the world's unforgettable disasters & manmade destructions
NP: Mad World 🎶",[],[],[],0,0,2,[],[],https://twitter.com/ellyyybee/status/1179174616893251585,False,,0,,,,,,,"[{'user_id': '1050307914471157760', 'username': 'ellyyybee'}]",
1179108387969208325,1179107441302212608,1569956321000,2019-10-01,21:58:41,MSK,909585954683449344,thattraponline,Your Internet Trap,,We've found the true source of the Amazon forest fire.,['piemations'],[],[],0,0,3,[],[],https://twitter.com/ThatTrapOnline/status/1179108387969208325,False,,0,,,,,,,"[{'user_id': '909585954683449344', 'username': 'ThatTrapOnline'}, {'user_id': '1268579101', 'username': 'Piemations'}]",
1178980788890521601,1178977895542411265,1569925899000,2019-10-01,13:31:39,MSK,3480690440,fionabergin1,fiona bergin ,,"The American political campaign finance model is insane. Think of how this money could feed, shelter, provide medical care for needy people; fight forest fire in the Amazon; promoting non fossil fuel energy alternatives etc etc etc",['nytimes'],[],[],1,0,0,[],[],https://twitter.com/fionabergin1/status/1178980788890521601,False,,0,,,,,,,"[{'user_id': '3480690440', 'username': 'fionabergin1'}, {'user_id': '807095', 'username': 'nytimes'}]",
1178897065025261568,1178897065025261568,1569905937000,2019-10-01,07:58:57,MSK,824167535650242564,abhishe17920091,Abhishek Kumar,,"@ecolov2
Respected Sir I have made a project by which we can extinguish amazon forest fire. This project is based on waste material. By utilizing that material we can fight with fire. I am sending some picture of my project. pic.twitter.com/OwyOIyCeil",['ecolov2'],[],"['https://pbs.twimg.com/media/EFxInnJUEAApQ4v.jpg', 'https://pbs.twimg.com/media/EFxInnKUEAAd-ix.jpg']",0,1,2,[],[],https://twitter.com/Abhishe17920091/status/1178897065025261568,False,,0,,,,,,,"[{'user_id': '824167535650242564', 'username': 'Abhishe17920091'}, {'user_id': '1096123388295241728', 'username': 'ecolov2'}]",
1178896438693990401,1178896438693990401,1569905788000,2019-10-01,07:56:28,MSK,824167535650242564,abhishe17920091,Abhishek Kumar,,"@UN
Respected Sir I have made a project by which we can extinguish amazon forest fire. This project is based on waste material. By utilizing that material we can fight with fire. I am sending some picture of my project.",['un'],[],[],1,0,0,[],[],https://twitter.com/Abhishe17920091/status/1178896438693990401,False,,0,,,,,,,"[{'user_id': '824167535650242564', 'username': 'Abhishe17920091'}, {'user_id': '14159148', 'username': 'UN'}]",
1178895102258712579,1178895102258712579,1569905469000,2019-10-01,07:51:09,MSK,824167535650242564,abhishe17920091,Abhishek Kumar,,"@UNDPClimate
Respected Sir I have made a project by which we can extinguish amazon forest fire. This project is based on waste material. By utilizing that material we can figjt woth fire.I am sending some picture of my project. pic.twitter.com/EHbtSGTgp7",['undpclimate'],[],['https://pbs.twimg.com/media/EFxG1WhU4AApwVr.jpg'],1,0,1,[],[],https://twitter.com/Abhishe17920091/status/1178895102258712579,False,,0,,,,,,,"[{'user_id': '824167535650242564', 'username': 'Abhishe17920091'}, {'user_id': '791812078730223616', 'username': 'UNDPClimate'}]",
1178894787392327680,1178894784577990656,1569905394000,2019-10-01,07:49:54,MSK,824167535650242564,abhishe17920091,Abhishek Kumar,,Respected Sir I have made a project by which we can extinguish amazon forest fire. This project is based on waste material. By utilizing that material we can figjt woth fire.I am sending some picture of my project.,[],[],[],1,0,0,[],[],https://twitter.com/Abhishe17920091/status/1178894787392327680,False,,0,,,,,,,"[{'user_id': '824167535650242564', 'username': 'Abhishe17920091'}]",
1178840844369043457,1178840844369043457,1569892533000,2019-10-01,04:15:33,MSK,3297894102,inhabor_941,ĮNHVBOR,,Joker boutta be Amazon Rain Forest fire 🔥,[],[],[],0,0,0,[],[],https://twitter.com/inhabor_941/status/1178840844369043457,False,,0,,,,,,,"[{'user_id': '3297894102', 'username': 'inhabor_941'}]",
1178801472613564423,1178801472613564423,1569883146000,2019-10-01,01:39:06,MSK,3991268291,kimberlybosch_,KMoney,,Why they actin like the Amazon was a natural forest fire lollll https://twitter.com/billieeilish/status/1177947778615365632 …,[],['https://twitter.com/billieeilish/status/1177947778615365632'],[],0,0,4,[],[],https://twitter.com/kimberlybosch_/status/1178801472613564423,False,https://twitter.com/billieeilish/status/1177947778615365632,0,,,,,,,"[{'user_id': '3991268291', 'username': 'kimberlybosch_'}]",
1178798581991518214,1178681046738571265,1569882457000,2019-10-01,01:27:37,MSK,1167184242276745216,emilyiskawaii15,❄️emilyiskawaii❄️,,dude what about the amazon forest fire dont you care about that?,['govbr'],[],[],0,0,1,[],[],https://twitter.com/emilyiskawaii15/status/1178798581991518214,False,,0,,,,,,,"[{'user_id': '1167184242276745216', 'username': 'emilyiskawaii15'}, {'user_id': '861707648584085504', 'username': 'govbr'}]",
1178740752538624000,1178446179320942593,1569868670000,2019-09-30,21:37:50,MSK,869323850659627014,hells4thegop,Instant Karma,,"Oh they're doing something or you wouldn't be tweeting like an incoherent ass!!
Get lost in the damn Amazon & start raking. Its only YOU who can prevent a Forest Fire. 🍁🍁🍁🍁🍁🍁🍁🍁🍁🍁
🖕",['realdonaldtrump'],[],[],0,0,1,[],[],https://twitter.com/Hells4TheGop/status/1178740752538624000,False,,0,,,,,,,"[{'user_id': '869323850659627014', 'username': 'Hells4TheGop'}, {'user_id': '25073877', 'username': 'realDonaldTrump'}]",
1178669520854106112,1178669520854106112,1569851687000,2019-09-30,16:54:47,MSK,1090835430264762368,dodgyidealist,The Dodgy Idealist,,This is how the Amazon forest fire started... Just sayin'. https://twitter.com/BullieSmith86/status/1178563616318148608 …,[],['https://twitter.com/BullieSmith86/status/1178563616318148608'],[],0,0,4,[],[],https://twitter.com/DodgyIdealist/status/1178669520854106112,False,https://twitter.com/BullieSmith86/status/1178563616318148608,0,,,,,,,"[{'user_id': '1090835430264762368', 'username': 'DodgyIdealist'}]",
1178618433237159937,1178618433237159937,1569839506000,2019-09-30,13:31:46,MSK,1033972812799590400,katyawisnewskig,Katya Wisnewski-Garcia,,Greenpeace activists protesting in front of the House of Economy in Germany to draw attention to the Amazon forest fire #ClimateCrisis #ClimateEmergency #ClimateChange @Greenpeace @GreenpeaceNZ @WombleKiwi @ExtinctionNZ @RealLucyLawless @ExtinctionR https://twitter.com/greenpeace_de/status/1178591377946533888 …,"['greenpeace', 'greenpeacenz', 'womblekiwi', 'extinctionnz', 'reallucylawless', 'extinctionr']",['https://twitter.com/greenpeace_de/status/1178591377946533888'],[],0,0,1,"['#climatecrisis', '#climateemergency', '#climatechange']",[],https://twitter.com/katyawisnewskiG/status/1178618433237159937,False,https://twitter.com/greenpeace_de/status/1178591377946533888,0,,,,,,,"[{'user_id': '1033972812799590400', 'username': 'katyawisnewskiG'}, {'user_id': '3459051', 'username': 'Greenpeace'}, {'user_id': '4077671', 'username': 'GreenpeaceNZ'}, {'user_id': '881200310538170369', 'username': 'WombleKiwi'}, {'user_id': '1074207042284380161', 'username': 'ExtinctionNZ'}, {'user_id': '487412249', 'username': 'RealLucyLawless'}, {'user_id': '1019974187975430144', 'username': 'ExtinctionR'}]",
1178617599791206400,1178617599791206400,1569839308000,2019-09-30,13:28:28,MSK,1077861650802270208,tintanjay_,khyrsten,,amazon forest fire topic ko sa article hmm i'll work hard for it,[],[],[],1,0,0,[],[],https://twitter.com/tintanjay_/status/1178617599791206400,False,,0,,,,,,,"[{'user_id': '1077861650802270208', 'username': 'tintanjay_'}]",
1178510264586719237,1178509695801274370,1569813717000,2019-09-30,06:21:57,MSK,22106353,bro6000,Jeff Baseball,,"We need to protect natural resources on a national/global level, for Christ’s sake the Amazon is on fire. Putting up another birdhouse is like spitting on a forest fire.","['nytopinion', 'margaretrenkl']",[],[],0,0,0,[],[],https://twitter.com/Bro6000/status/1178510264586719237,False,,0,,,,,,,"[{'user_id': '22106353', 'username': 'Bro6000'}, {'user_id': '16686144', 'username': 'nytopinion'}, {'user_id': '885761066', 'username': 'MargaretRenkl'}]",
1178459356934725632,1177646881243123715,1569801580000,2019-09-30,02:59:40,MSK,800853949473357824,lunarh12,Agathe Lickt,,How so? Can you elaborate? I can elaborate on my response: because vegans care about animals and our planet. Eating meat is animal abuse and is one of the main reasons for climate change and the Amazon rain forest fire. Now your turn.,"['clapsho2', 'joshuagib_son', 'peta', 'hugavegan']",[],[],2,0,0,[],[],https://twitter.com/lunarh12/status/1178459356934725632,False,,0,,,,,,,"[{'user_id': '800853949473357824', 'username': 'lunarh12'}, {'user_id': '1163521591915028480', 'username': 'clapsho2'}, {'user_id': '1160994354451931136', 'username': 'JoshuaGib_son'}, {'user_id': '9890492', 'username': 'peta'}, {'user_id': '1463163494', 'username': 'HugAVegan'}]",
1178459084267253760,1178459084267253760,1569801515000,2019-09-30,02:58:35,MSK,2961411470,dianasmango,d i a n a,,"Hey all y’all tweeting about the amazon forest fire, where ya tweets at? fire still goin’ lol",[],[],[],0,0,5,[],[],https://twitter.com/dianasmango/status/1178459084267253760,False,,0,,,,,,,"[{'user_id': '2961411470', 'username': 'dianasmango'}]",
1178445696812208134,1178445696812208134,1569798323000,2019-09-30,02:05:23,MSK,1166606326694326273,ronaldshin9,Ronald Shin,,"As we keep moving forward, the Amazon Forest Fire is still an issue, Hong Kong Protest takes a deadlier turn, Trump Impeachments, and so many more. So many events are happening and yet we all know that the spotlight on them will dissapear. And then another will come. #cppCOM1101 pic.twitter.com/IuYNiUPc67",[],[],"['https://pbs.twimg.com/media/EFquHP1U8AA5i9_.png', 'https://pbs.twimg.com/media/EFquHP0UwAAo37c.png', 'https://pbs.twimg.com/media/EFquHPzU4AAwOtw.jpg']",0,0,1,['#cppcom1101'],[],https://twitter.com/RonaldShin9/status/1178445696812208134,False,,0,,,,,,,"[{'user_id': '1166606326694326273', 'username': 'RonaldShin9'}]",
1178420561992486912,1178420561992486912,1569792330000,2019-09-30,00:25:30,MSK,1076287432851480576,smyler994,smyler,,Adn well u see what happen the amazon forest fire destroy over 1/4 of earths oxygen all because of the eating meat industry knocking all the trees down please no more it stop now or it keep going pic.twitter.com/6yFF8rpzU6,[],[],['https://pbs.twimg.com/media/EFqXQNWUUAA5ehT.jpg'],0,0,1,[],[],https://twitter.com/smyler994/status/1178420561992486912,False,,0,,,,,,,"[{'user_id': '1076287432851480576', 'username': 'smyler994'}]",
1178375812594176000,1178375812594176000,1569781661000,2019-09-29,21:27:41,MSK,722610398554415104,1garmaqaate,Atoore,,New theory I heard is the gorgor attacks in SL cuz of migration from the Amazon due the forest fire. I don’t know about that one ....#lrt,[],[],[],1,0,3,['#lrt'],[],https://twitter.com/1garmaqaate/status/1178375812594176000,False,,0,,,,,,,"[{'user_id': '722610398554415104', 'username': '1garmaqaate'}]",
1178243841805017089,1178243841805017089,1569750197000,2019-09-29,12:43:17,MSK,810119615070146560,_aruchi,Blue (I'm selling stickors!!!),,"What if mag design ako ng Kaijus na nagrrepresent sa global warming and climate change or sa mga large tragic incidents like yung Amazon forest fire something like dat,
Just like how Godzilla symbolizes the nuclear bombing at Hiroshima and Nagasaki back in 1940s(?)",[],[],[],1,0,0,[],[],https://twitter.com/_AruChi/status/1178243841805017089,False,,0,,,,,,,"[{'user_id': '810119615070146560', 'username': '_AruChi'}]",
1178199440752070656,1178199440752070656,1569739611000,2019-09-29,09:46:51,MSK,115583092,inspired_bymany,🥴,,Why the amazon forest fire not trending 🧐,[],[],[],0,0,0,[],[],https://twitter.com/Inspired_ByMany/status/1178199440752070656,False,,0,,,,,,,"[{'user_id': '115583092', 'username': 'Inspired_ByMany'}]",
1178190285421105152,1178190285421105152,1569737428000,2019-09-29,09:10:28,MSK,2450322937,shbillcarroll,Shbill Carroll,,"This Amazon Forest Fire may be an EVIL PLOT by Bolsonaro to perpetrate GENOCIDE against the AMAZON INDIAN Nations & Tribes!
Stalin had an evil adage to casually explain his murder: ""no person - no problem"". Bolsonaro seems to be doing this against the Indians!
#PrayForTheAmazon",[],[],[],0,1,1,['#prayfortheamazon'],[],https://twitter.com/ShbillCarroll/status/1178190285421105152,False,,0,,,,,,,"[{'user_id': '2450322937', 'username': 'ShbillCarroll'}]",
1178157393722691584,1178157393722691584,1569729586000,2019-09-29,06:59:46,MSK,708296576,dee_leeyer,D-Nice 🎱,,"Of course he does, it’s called Racial Showcasing. If he gets hurt today or tomorrow they’ll forget about him quicker than they did Amazon forest fire https://twitter.com/BleacherReport/status/1178095811642580992 …",[],['https://twitter.com/BleacherReport/status/1178095811642580992'],[],1,0,0,[],[],https://twitter.com/Dee_Leeyer/status/1178157393722691584,False,https://twitter.com/BleacherReport/status/1178095811642580992,0,,,,,,,"[{'user_id': '708296576', 'username': 'Dee_Leeyer'}]",
1178046639623290880,1178046639623290880,1569703180000,2019-09-28,23:39:40,MSK,234385402,cockingsawmills,English Woodlands,,"Great listening. The world forest story... @BBCRadio4 The Inquiry - How can we save our forests https://www.bbc.co.uk/programmes/m0008x9z …
mass deforestation, woodland creation, China, the Amazon, Borneo, global forestry targets, forest fire & building resilience... #Forestry #forestersuk #trees",['bbcradio4'],['https://www.bbc.co.uk/programmes/m0008x9z'],[],0,1,1,"['#forestry', '#forestersuk', '#trees']",[],https://twitter.com/cockingsawmills/status/1178046639623290880,False,,0,,,,,,,"[{'user_id': '234385402', 'username': 'cockingsawmills'}, {'user_id': '23937508', 'username': 'BBCRadio4'}]",
1178030894302392320,1178030894302392320,1569699426000,2019-09-28,22:37:06,MSK,154772427,dallielou,Justice Beaver,,Any updates on the amazon rain forest fire or did y’all only care about that when Leonardo DiCaprio told you to,[],[],[],0,0,15,[],[],https://twitter.com/DallieLou/status/1178030894302392320,False,,0,,,,,,,"[{'user_id': '154772427', 'username': 'DallieLou'}]",
1178030264544616448,1178030264544616448,1569699276000,2019-09-28,22:34:36,MSK,27275184,deechanelle,Dominique Chanelle,,"Let's plant trees together! 🌲🌳
_____
The global climate crisis and the devastation of the Amazon in the recent forest fire has left me feeling overwhelmed & frankly a lot of animosity towards the lack of disregard… https://www.instagram.com/p/B293_drH0Qa/?igshid=5zoekot9xbvj …",[],['https://www.instagram.com/p/B293_drH0Qa/?igshid=5zoekot9xbvj'],[],0,0,0,[],[],https://twitter.com/deechanelle/status/1178030264544616448,False,,0,,,,,,,"[{'user_id': '27275184', 'username': 'deechanelle'}]",
1177995840872271872,1177995840872271872,1569691069000,2019-09-28,20:17:49,MSK,1139977255533207553,fyjs12,fyjs,,fyjs: Amazon forest fire inspired the use of blockchain ... https://fyjsaddress.blogspot.com/2019/09/amazon-forest-fire-inspired-use-of.html?spref=tw …,[],['https://fyjsaddress.blogspot.com/2019/09/amazon-forest-fire-inspired-use-of.html?spref=tw'],[],0,0,0,[],[],https://twitter.com/fyjs12/status/1177995840872271872,False,,0,,,,,,,"[{'user_id': '1139977255533207553', 'username': 'fyjs12'}]",
1177943165153640448,1177943165153640448,1569678510000,2019-09-28,16:48:30,MSK,1133260495492829185,wakeup19914758,Wake Up,,"Amazon Forest Fire is Causing Cough for Everyone Now. Babies, Kids and Adults. Stop Abusing Our Mother Earth People. #wakeupunitednation #wakeupuniverse #WakeUpWorld",[],[],[],0,1,0,"['#wakeupunitednation', '#wakeupuniverse', '#wakeupworld']",[],https://twitter.com/WakeUp19914758/status/1177943165153640448,False,,0,,,,,,,"[{'user_id': '1133260495492829185', 'username': 'WakeUp19914758'}]",
1177898687097233408,1177898687097233408,1569667905000,2019-09-28,13:51:45,MSK,1219375218,nacsue,Handsome squidward,,"Something seems fishy about the spiderman issue and the Amazon forest fire....
It’s like sum1’s tryna cover things up...
Idk but, ??? 🙁",[],[],[],0,0,0,[],[],https://twitter.com/nacsue/status/1177898687097233408,False,,0,,,,,,,"[{'user_id': '1219375218', 'username': 'nacsue'}]",
1177873198098079744,1177873198098079744,1569661828000,2019-09-28,12:10:28,MSK,2214215757,prajapatlokeshh,Lokesh Prajapat NKK,,"@GretaThunberg It was really Awesome. Specially _ ""How Dare You""
@FinMinIndia
@narendramodi @PMOIndia
@MoHFW_INDIA
Pls if Companies not doing CSR volunteerly then make it mandatory.
Bcz After ""Amazon Forest Fire"" becomes very necessary to develop green fields in our country. https://twitter.com/TIME/status/1176216246943125505 …","['gretathunberg', 'finminindia', 'narendramodi', 'pmoindia', 'mohfw_india']",['https://twitter.com/TIME/status/1176216246943125505'],[],0,0,0,[],[],https://twitter.com/prajapatlokeshh/status/1177873198098079744,False,https://twitter.com/TIME/status/1176216246943125505,0,,,,,,,"[{'user_id': '2214215757', 'username': 'prajapatlokeshh'}, {'user_id': '1006419421244678144', 'username': 'GretaThunberg'}, {'user_id': '2613904818', 'username': 'FinMinIndia'}, {'user_id': '18839785', 'username': 'narendramodi'}, {'user_id': '471741741', 'username': 'PMOIndia'}, {'user_id': '2596143056', 'username': 'MoHFW_INDIA'}]",
1177831923806113792,1177831923806113792,1569651988000,2019-09-28,09:26:28,MSK,3180703524,galaxysilver_,🌸i Sho,,"Sorry for being super angry and emotional in general this week, there are way too much problems my country has. Also international problem like Amazon forest fire and climate change too... It's overwhelming. But nowadays we have to keep more than one problem in mind.",[],[],[],1,0,0,[],[],https://twitter.com/galaxysilver_/status/1177831923806113792,False,,0,,,,,,,"[{'user_id': '3180703524', 'username': 'galaxysilver_'}]",
1177656157697011713,1177655018524033024,1569610082000,2019-09-27,21:48:02,MSK,1133647603529265152,bobogameruwu,Confused Private 🐧,,"Amazon (Man made) forest Fire
https://twitter.com/SaranGaymer/status/1164868509605564416 …",[],['https://twitter.com/SaranGaymer/status/1164868509605564416'],[],0,0,0,[],[],https://twitter.com/BoBoGamerUwU/status/1177656157697011713,False,https://twitter.com/BoBoGamerUwU/status/1164868509605564416,0,,,,,,,"[{'user_id': '1133647603529265152', 'username': 'BoBoGamerUwU'}]",
1177617237634686981,1177616167151767552,1569600803000,2019-09-27,19:13:23,MSK,323375506,chrisgoudge1,Chris Goudge,,"And in other news, I pissed on the Amazon Forest fire hoping it would make a difference....",['pirie'],[],[],0,0,0,[],[],https://twitter.com/ChrisGoudge1/status/1177617237634686981,False,,0,,,,,,,"[{'user_id': '323375506', 'username': 'ChrisGoudge1'}, {'user_id': '12200872', 'username': 'pirie'}]",
1177594802361135106,1098130383638544384,1569595454000,2019-09-27,17:44:14,MSK,2576477898,anusri24,Anu Priya Shrivastava,,"Woah. In whole of world, she got Modi only. Why not Brazilian govt.which should be responsible for failure to stop Amazon forest fire. But,she has to gain attention & become 2nd useless @Malala. People in our country are far aware than this half knowledge brat.","['brutindia', 'malala']",[],[],0,0,0,[],[],https://twitter.com/Anusri24/status/1177594802361135106,False,,0,,,,,,,"[{'user_id': '2576477898', 'username': 'Anusri24'}, {'user_id': '912618938672013312', 'username': 'BrutIndia'}, {'user_id': '937499232', 'username': 'Malala'}]",
1177439429922717697,1177439429922717697,1569558410000,2019-09-27,07:26:50,MSK,992514145135161344,adonivan2,Adonivan,,#Yiayoct Who caused the Amazon Forest Fire? pic.twitter.com/0qficUo4VO,[],[],['https://pbs.twimg.com/media/EFca6JCU0AIS9q2.jpg'],0,1,4,['#yiayoct'],[],https://twitter.com/Adonivan2/status/1177439429922717697,False,,0,,,,,,,"[{'user_id': '992514145135161344', 'username': 'Adonivan2'}]",
1177262039527411712,1177230719426469889,1569516117000,2019-09-26,19:41:57,MSK,635153150,prashuspeaks,Prashant राजस्थानी,,"Amazon Forest Fire se baad me Nipte duniya, Pehle Delhi ko Stubble Fire se bachao..🙄🙄
Gadkari was saying that they are working on technology to make Bio fuel from this stubble, and govt will purchase this from Farmers.
Any steps taken in this direction?","['roflgandhi_', 'dhruv_rathee']",[],[],1,0,0,[],[],https://twitter.com/PrashuSpeaks/status/1177262039527411712,False,,0,,,,,,,"[{'user_id': '635153150', 'username': 'PrashuSpeaks'}, {'user_id': '115887279', 'username': 'RoflGandhi_'}, {'user_id': '730520573701443584', 'username': 'dhruv_rathee'}]",
1177215848387416064,1177215848387416064,1569505104000,2019-09-26,16:38:24,MSK,382568070,brcamachogu,Bertha Camacho,,The other Amazon forest fire - that no one is talking about https://youtu.be/AR6SOTOMwfg via @YouTube #sosbolivia #soschiquitania,['youtube'],['https://youtu.be/AR6SOTOMwfg'],[],0,0,2,"['#sosbolivia', '#soschiquitania']",[],https://twitter.com/brcamachogu/status/1177215848387416064,False,,0,,,,,,,"[{'user_id': '382568070', 'username': 'brcamachogu'}, {'user_id': '10228272', 'username': 'YouTube'}]",
1177156623556648960,1176964757326315520,1569490984000,2019-09-26,12:43:04,MSK,2874222874,jaxthomaz,Jackie Thomas,,Why a beautiful isolated place? Why not a forest fire in Ca or Amazon?,"['marciaslosson', 'brycetache']",[],[],0,0,0,[],[],https://twitter.com/jaxthomaz/status/1177156623556648960,False,,0,,,,,,,"[{'user_id': '2874222874', 'username': 'jaxthomaz'}, {'user_id': '1048615344414195712', 'username': 'MarciaSlosson'}, {'user_id': '785209740', 'username': 'brycetache'}]",
1177005159043522560,1177005159043522560,1569454872000,2019-09-26,02:41:12,MSK,409080625,live2f,Do Brother Media Group,,Amazon Forest Fire: Brazilian Troops Deployed For Firefighting https://dicigo.com/amazon-forest-fire-brazilian-troops-deployed-for-firefighting/ … pic.twitter.com/nUdo7APvnX,[],['https://dicigo.com/amazon-forest-fire-brazilian-troops-deployed-for-firefighting/'],['https://pbs.twimg.com/media/EFWP9GDWsAAczYN.jpg'],0,0,0,[],[],https://twitter.com/Live2F/status/1177005159043522560,False,,0,,,,,,,"[{'user_id': '409080625', 'username': 'Live2F'}]",
1176899726085644288,1176873049112678400,1569429735000,2019-09-25,19:42:15,MSK,2817835077,blacknyellow962,Anime Titties,,Remember when everyone panicked about the Amazon forest fire? And then immediately forgot a week later,['kalebprime'],[],[],0,1,2,[],[],https://twitter.com/blacknyellow962/status/1176899726085644288,False,,0,,,,,,,"[{'user_id': '2817835077', 'username': 'blacknyellow962'}, {'user_id': '70295497', 'username': 'KalebPrime'}]",
1176883453112926210,1176883453112926210,1569425855000,2019-09-25,18:37:35,MSK,442644523,funnymanamit,Amit Sharma,,"Indians are more concerned about the Amazon sale than Amazon forest fire, haan pretend karnaa alag cheez hai",[],[],[],1,0,7,[],[],https://twitter.com/funnymanamit/status/1176883453112926210,False,,0,,,,,,,"[{'user_id': '442644523', 'username': 'funnymanamit'}]",
1176841899849633793,1176841899849633793,1569415948000,2019-09-25,15:52:28,MSK,919815610132979712,ditttoo_,dittzy,,"not just Amazon, Southeast Asia also have been struggling against forest fire for years. read this thread. a week ago, there are at least 290 suspects and 14 cooperation that had been causing the fire. not to mention how dry the soil is in most of the area because of (cont) https://twitter.com/eldenzachery/status/1175861380953473024 …",[],['https://twitter.com/eldenzachery/status/1175861380953473024'],[],1,1,1,[],[],https://twitter.com/ditttoo_/status/1176841899849633793,False,https://twitter.com/eldenzachery/status/1175861380953473024,0,,,,,,,"[{'user_id': '919815610132979712', 'username': 'ditttoo_'}]",
1176790066854866944,1176649708615475201,1569403590000,2019-09-25,12:26:30,MSK,969668520505217024,archersmane,Arch,,Fumigation of a realm is just the sad sideffect of the amazon forest fire,['raptors__'],[],[],0,0,1,[],[],https://twitter.com/Archersmane/status/1176790066854866944,False,,0,,,,,,,"[{'user_id': '969668520505217024', 'username': 'Archersmane'}, {'user_id': '4916424466', 'username': 'Raptors__'}]",
1176779464468045824,1176779464468045824,1569401062000,2019-09-25,11:44:22,MSK,1324397611,archime2000,nikola tesla,,"# The moment the tiger is rescued in the Amazon forest fire from the Brazilian army ..
A moment of weakness and refraction after strength and might ..! 💔 pic.twitter.com/DEiRwDnbDI",[],[],['https://pbs.twimg.com/media/EFTCriOWkAE86pS.jpg'],0,0,0,[],[],https://twitter.com/archime2000/status/1176779464468045824,False,,0,,,,,,,"[{'user_id': '1324397611', 'username': 'archime2000'}]",
1176755560869326855,1176755560869326855,1569395363000,2019-09-25,10:09:23,MSK,1080971156209860610,markehful,markiih,,"About 46% of the trees have been deforested since human started cutting down trees. There are not enough trees left oxygenate and counter these emissions. And mind you, there was a grave forest fire recently in the Amazon forest and now in Indonesia. 🙃 https://twitter.com/jic447/status/1176483028299845638 …",[],['https://twitter.com/jic447/status/1176483028299845638'],[],3,0,1,[],[],https://twitter.com/markehful/status/1176755560869326855,False,https://twitter.com/jic447/status/1176483028299845638,0,,,,,,,"[{'user_id': '1080971156209860610', 'username': 'markehful'}]",
1176742833308536837,1176073768340480002,1569392328000,2019-09-25,09:18:48,MSK,1162015542007361536,pandabbb2,pandabbb,,You cant stop the amazon forest fire. But u can stop china.,['time'],[],[],0,0,0,[],[],https://twitter.com/pandabbb2/status/1176742833308536837,False,,0,,,,,,,"[{'user_id': '1162015542007361536', 'username': 'pandabbb2'}, {'user_id': '14293310', 'username': 'TIME'}]",
1176741715153174529,1176741715153174529,1569392062000,2019-09-25,09:14:22,MSK,925303264291295232,hungarianplanet,Hungarian Planet,,"Fight climate change, forest fire climate protest T-Shirt Meme tshirt https://www.amazon.com/dp/B07YBF3BT3/ref=cm_sw_r_tw_dp_U_x_wqWIDb1PRFAMR … via @amazon",['amazon'],['https://www.amazon.com/dp/B07YBF3BT3/ref=cm_sw_r_tw_dp_U_x_wqWIDb1PRFAMR'],[],1,1,0,[],[],https://twitter.com/HungarianPlanet/status/1176741715153174529,False,,0,,,,,,,"[{'user_id': '925303264291295232', 'username': 'HungarianPlanet'}, {'user_id': '20793816', 'username': 'amazon'}]",
1176718643108859905,1176718643108859905,1569386561000,2019-09-25,07:42:41,MSK,976860886290673664,ishancool48,Ishan Bandara,,"This was a campaign of replanting on the top of ella rock where was burned at the same time of Amazon forest fire.
We replanted over 1000 plants to heal the ella . pic.twitter.com/P2BzHPWqRg",[],[],['https://pbs.twimg.com/media/EFSLVxoVAAArbWz.jpg'],0,1,2,[],[],https://twitter.com/Ishancool48/status/1176718643108859905,False,,0,,,,,,,"[{'user_id': '976860886290673664', 'username': 'Ishancool48'}]",
1176556948776468480,1176556948776468480,1569348010000,2019-09-24,21:00:10,MSK,1022333197059809283,_xsleh,AKA Leo 🌐,,"Where are all those ""no one is talking about amazon forest fire excet for me"" now that medias shut it about it? https://9gag.com/gag/aV0DLMd?ref=t … via @9GAG",['9gag'],['https://9gag.com/gag/aV0DLMd?ref=t'],[],0,0,0,[],[],https://twitter.com/_xsleh/status/1176556948776468480,False,,0,,,,,,,"[{'user_id': '1022333197059809283', 'username': '_xsleh'}, {'user_id': '16548023', 'username': '9GAG'}]",
1176521659957727233,1176521659957727233,1569339597000,2019-09-24,18:39:57,MSK,26969833,reigngwapito,ⓡⓔⓘⓖⓝ•ⓖⓦⓐⓟⓘⓣⓞ™,,"Did massive forest fire in Sumatra and Amazon mentioned during the UN Climate Summit?
#UNClimateSummit
#ClimateSummit2019",[],[],[],0,0,0,"['#unclimatesummit', '#climatesummit2019']",[],https://twitter.com/ReignGwapito/status/1176521659957727233,False,,0,,,,,,,"[{'user_id': '26969833', 'username': 'ReignGwapito'}]",
1176515105338449920,1176515105338449920,1569338034000,2019-09-24,18:13:54,MSK,240529692,pizzzachan,Ariel 애령,,"Gosh... first the amazon forest fire, then the Sumatra forest fire. The sky looked like inferno. I’m already suffering asthma attacks. How are the kids over there? 😢 #ClimateChange https://mobile.reuters.com/?videoId=604246146 …",[],['https://mobile.reuters.com/?videoId=604246146'],[],0,0,0,['#climatechange'],[],https://twitter.com/pizzzachan/status/1176515105338449920,False,,0,,,,,,,"[{'user_id': '240529692', 'username': 'pizzzachan'}]",
1176494760850145280,1176339522113679360,1569333183000,2019-09-24,16:53:03,MSK,234824415,dandelionangora,lee,,"By the time she is in her 30ish, you will be death and long gone. It's her future, her children and grand children that she is worry about. http://Look.at the world around you
The forest fire in Amazon, the changing of weather patterns, the solid ice breaking",['realdonaldtrump'],['http://Look.at'],[],0,0,0,[],[],https://twitter.com/dandelionangora/status/1176494760850145280,False,,0,,,,,,,"[{'user_id': '234824415', 'username': 'dandelionangora'}, {'user_id': '25073877', 'username': 'realDonaldTrump'}]",
1176493227526033408,1176493227526033408,1569332818000,2019-09-24,16:46:58,MSK,1003067425,sondralaporte,Sondra Laporte,,The other Amazon forest fire - that no one is talking about https://youtu.be/AR6SOTOMwfg via @YouTube,['youtube'],['https://youtu.be/AR6SOTOMwfg'],[],0,0,2,[],[],https://twitter.com/SondraLaporte/status/1176493227526033408,False,,0,,,,,,,"[{'user_id': '1003067425', 'username': 'SondraLaporte'}, {'user_id': '10228272', 'username': 'YouTube'}]",
1176488419524038656,1176488419524038656,1569331671000,2019-09-24,16:27:51,MSK,1082733243164708865,welovetheearth1,WeLoveTheEarth.com,,Amazon Forest Fire | What Can You Do To Help! https://welovetheearth.com/amazon-forest-fire-what-can-you-do-to-help/ …,[],['https://welovetheearth.com/amazon-forest-fire-what-can-you-do-to-help/'],[],0,0,0,[],[],https://twitter.com/WeLoveTheEarth1/status/1176488419524038656,False,,0,,,,,,,"[{'user_id': '1082733243164708865', 'username': 'WeLoveTheEarth1'}]",
1176465479050743809,1176465479050743809,1569326202000,2019-09-24,14:56:42,MSK,2196846674,ajesco30,[A] jik 🦛,,How was the Amazon rainforest fire be blowing up in all my social medias in less than a week but not the India forest fire. https://twitter.com/FUCCl/status/1175813722641707013 …,[],['https://twitter.com/FUCCl/status/1175813722641707013'],[],0,0,3,[],[],https://twitter.com/Ajesco30/status/1176465479050743809,False,https://twitter.com/FUCCl/status/1175813722641707013,0,,,,,,,"[{'user_id': '2196846674', 'username': 'Ajesco30'}]",
1176418378984169472,1176407168968347648,1569314973000,2019-09-24,11:49:33,MSK,1141113063447453696,gwejetg,GwejeTG,,"This should form focal point of dicussion at the ongoing 74th session of United Nation General Assembly UNGA 2019. The amazons are burning, forest fire aggravating, hurrican on the rise, deforestation etc.",['wfp'],[],[],0,0,1,[],[],https://twitter.com/GwejeTg/status/1176418378984169472,False,,0,,,,,,,"[{'user_id': '1141113063447453696', 'username': 'GwejeTg'}, {'user_id': '27830610', 'username': 'WFP'}]",
1176403770160209921,1176403770160209921,1569311489000,2019-09-24,10:51:29,MSK,4856315735,gin_tropical,Jewell Gypsy(Never To Be The Same),,"I betcha that amazon forest fire has caused this,but let me say this,it is a relgious cult saga..now what would the Nobel Peace prize be recognized for?! https://twitter.com/scentials/status/1176393896873480192 …",[],['https://twitter.com/scentials/status/1176393896873480192'],[],0,0,0,[],[],https://twitter.com/GIN_TROPICAL/status/1176403770160209921,False,https://twitter.com/scentials/status/1176393896873480192,0,,,,,,,"[{'user_id': '4856315735', 'username': 'GIN_TROPICAL'}]",
1176393048374333440,1176393048374333440,1569308933000,2019-09-24,10:08:53,MSK,407677589,piscanology,Jape,,"so everyone’s acting all surprised about Indonesia’s forest fire being manmade. Just a month after their supposed outrage over the Amazon’s natural wildfire. You really wanna help? Here are companies who still extract palm oil from Indonesia:
Nestle
Nutella
Kellogs
L’Oreal",[],[],[],0,0,0,[],[],https://twitter.com/Piscanology/status/1176393048374333440,False,,0,,,,,,,"[{'user_id': '407677589', 'username': 'Piscanology'}]",
1176344049806012421,1176339522113679360,1569297251000,2019-09-24,06:54:11,MSK,38605953,h_maniac_h,H Maniac @ 🇭🇰,,"Well, she better make a visit to President Xi in China ASAP ... since China is the biggest contributor to this mess .... (Left is the CO emission from China, right is from Amazon forest fire) pic.twitter.com/zjcC2fCLPa",['realdonaldtrump'],[],['https://pbs.twimg.com/media/EFM2rOgU8AUZ6jz.jpg'],0,0,0,[],[],https://twitter.com/h_maniac_h/status/1176344049806012421,False,,0,,,,,,,"[{'user_id': '38605953', 'username': 'h_maniac_h'}, {'user_id': '25073877', 'username': 'realDonaldTrump'}]",
1176329711783309312,1175791895269634051,1569293833000,2019-09-24,05:57:13,MSK,308617300,lurkvato,𝕔𝕒𝕪𝕖 🌻,,funny how the one's who were quick to trend save amazon forest tweet aren't talking ab this forest fire in indonesia T ︵T,['iheartyouperrry'],[],[],0,0,0,[],[],https://twitter.com/lurkvato/status/1176329711783309312,False,,0,,,,,,,"[{'user_id': '308617300', 'username': 'lurkvato'}, {'user_id': '1175117590890307584', 'username': 'iheartyouperrry'}]",
1176323060493774850,1176323060493774850,1569292247000,2019-09-24,05:30:47,MSK,132749771,lolomoungas,Lapakels,,"First, the Amazon forest fire. Now, the Indonesian forest fire. I don't even know if i want to have kids anymore. Damn, i don't even know if i'll be able to grow old.",[],[],[],0,0,0,[],[],https://twitter.com/lolomoungas/status/1176323060493774850,False,,0,,,,,,,"[{'user_id': '132749771', 'username': 'lolomoungas'}]",
1176313735624871937,1176313735624871937,1569290024000,2019-09-24,04:53:44,MSK,1169921532316905472,joani_23,Joanne Pabis,,"This can be true, with the added impact of the several forest fires that just happened i.e. Amazon forest fire
#ENRM252-1-2019 https://twitter.com/environment/status/1175922996499951616 …",[],['https://twitter.com/environment/status/1175922996499951616'],[],0,0,0,['#enrm252'],[],https://twitter.com/Joani_23/status/1176313735624871937,False,https://twitter.com/environment/status/1175922996499951616,0,,,,,,,"[{'user_id': '1169921532316905472', 'username': 'Joani_23'}]",
1176305284303605760,1176305284303605760,1569288009000,2019-09-24,04:20:09,MSK,790867771303133184,balde_knows,Blank,,"Even the Amazon Forest Fire is man made.
Idiot.
Why do you think the Brazilian Government didn't act immediately about the fire? https://twitter.com/chescapersia/status/1176007560240844801 …",[],['https://twitter.com/chescapersia/status/1176007560240844801'],[],0,0,0,[],[],https://twitter.com/balde_knows/status/1176305284303605760,False,https://twitter.com/chescapersia/status/1176007560240844801,0,,,,,,,"[{'user_id': '790867771303133184', 'username': 'balde_knows'}]",
1176265179606200321,1176265179606200321,1569278447000,2019-09-24,01:40:47,MSK,1583806628,amanda_diane27,Amanda D Copeland,,"Is this, like, 'annual forest fire month' or something? Amazon, Africa, Indonesia, California... I'm sure I am missing others.. https://www.vice.com/en_asia/article/wjwgpy/indonesia-rainforests-burning-important-amazon?utm_source=viceasiafb&utm_campaign=global …",[],['https://www.vice.com/en_asia/article/wjwgpy/indonesia-rainforests-burning-important-amazon?utm_source=viceasiafb&utm_campaign=global'],[],0,0,1,[],[],https://twitter.com/Amanda_Diane27/status/1176265179606200321,False,,0,,,,,,,"[{'user_id': '1583806628', 'username': 'Amanda_Diane27'}]",
1176255528118423554,1163963158333050880,1569276146000,2019-09-24,01:02:26,MSK,50499823,leandronardini,Leandro P G Nardini,,"It’s not true. Im a Brazilian man and there is a huge propaganda anti government. The Amazon fire its in the average number of forest fire focus since 2005. You see countries that barely took care of their environments, accusing brazil. It’s non sense.",['s0s2'],[],[],0,0,0,[],[],https://twitter.com/leandronardini/status/1176255528118423554,False,,0,,,,,,,"[{'user_id': '50499823', 'username': 'leandronardini'}, {'user_id': '36968078', 'username': 's0s2'}]",
1176245443455586305,1176226348672724993,1569273741000,2019-09-24,00:22:21,MSK,1154418062206128128,cohltardus,Cohltardus,,Where’s the shave your dick option? Ik that shit be looking like the Amazon after the forest fire,['scuuzzy'],[],[],1,0,1,[],[],https://twitter.com/cohltardus/status/1176245443455586305,False,,0,,,,,,,"[{'user_id': '1154418062206128128', 'username': 'cohltardus'}, {'user_id': '2740601837', 'username': 'scuuzzy'}]",
1176227455755010049,1176227136455303169,1569269453000,2019-09-23,23:10:53,MSK,2817835077,blacknyellow962,Anime Titties,,"Damn bro same, and I can’t believe everyone forgot about the Amazon forest fire in less then a week pic.twitter.com/ax9pgdYasG","['thundergroyp', 'djgroyper']",[],[],0,0,3,[],[],https://twitter.com/blacknyellow962/status/1176227455755010049,False,,1,,,,,,,"[{'user_id': '2817835077', 'username': 'blacknyellow962'}, {'user_id': '1009077836685217792', 'username': 'thundergroyp'}, {'user_id': '1079760964168298497', 'username': 'DJGroyper'}]",
1176213024509714437,1176210838023065600,1569266012000,2019-09-23,22:13:32,MSK,1120423052603478016,lysergide420,max 'science is fake' silver,,like those goobers who believed in that fake forest fire in the amazon,['420crazyfrog'],[],[],2,0,0,[],[],https://twitter.com/Lysergide420/status/1176213024509714437,False,,0,,,,,,,"[{'user_id': '1120423052603478016', 'username': 'Lysergide420'}, {'user_id': '1299574362', 'username': '420crazyfrog'}]",
1176194177408749568,1176194177408749568,1569261519000,2019-09-23,20:58:39,MSK,739990400849477632,modisarkar2023,Modi Sarkar 2023,,#AskTheSG The level of oxygen is decreased after the Amazon forest fire outbreak. Deforestation for shifting cultivation is harming the Climate. So better assist the rural farmers to plant gooseberry which does not require for deforestation. Global market should buy gooseberry😊,[],[],[],0,0,0,['#askthesg'],[],https://twitter.com/ModiSarkar2023/status/1176194177408749568,False,,0,,,,,,,"[{'user_id': '739990400849477632', 'username': 'ModiSarkar2023'}]",
1176120391368151040,1175766532590145536,1569243927000,2019-09-23,16:05:27,MSK,4655182578,barocaslawrence,Lawrence Barocas,,"You have the business saavy of a polar bear living in the Brazil Amazon that is setting a forest fire. If you’re father hadn’t been born before you, you’d be nothing!",['realdonaldtrump'],[],[],0,0,0,[],[],https://twitter.com/BarocasLawrence/status/1176120391368151040,False,,0,,,,,,,"[{'user_id': '4655182578', 'username': 'BarocasLawrence'}, {'user_id': '25073877', 'username': 'realDonaldTrump'}]",
1176081944741912578,1176081944741912578,1569234760000,2019-09-23,13:32:40,MSK,356019465,janellilolu,janelli,,"gurl this is man-made forest fire, and its not only affecting areas around it but also malaysia and singapore, just like what happened in amazon gesudhwscefhweohf when u gonna start making actions? https://twitter.com/yoojeongie_/status/1175390088554930176 …",[],['https://twitter.com/yoojeongie_/status/1175390088554930176'],[],0,1,1,[],[],https://twitter.com/janellilolu/status/1176081944741912578,False,https://twitter.com/yoojeongie_/status/1175390088554930176,0,,,,,,,"[{'user_id': '356019465', 'username': 'janellilolu'}]",
1176076466854883328,1176073768340480002,1569233454000,2019-09-23,13:10:54,MSK,1163726600363319296,joeyung111,Joe Yung 😷,,"Carbon Monoxide Concentration in China vs Amazon Forest Fire
#ClimateChange pic.twitter.com/VhAE6Nhnm3",['time'],[],['https://pbs.twimg.com/media/EFJDTnfUYAA4B9Y.jpg'],1,21,43,['#climatechange'],[],https://twitter.com/JoeYung111/status/1176076466854883328,False,,0,,,,,,,"[{'user_id': '1163726600363319296', 'username': 'JoeYung111'}, {'user_id': '14293310', 'username': 'TIME'}]",
1176022410690056193,1176022410690056193,1569220566000,2019-09-23,09:36:06,MSK,820940217192480769,ragavangreen,Barathi Jaze,,Please don't forget Amazon rain forest fire pic.twitter.com/OOqnK4VVWI,[],[],[],0,2,3,[],[],https://twitter.com/RagavanGreen/status/1176022410690056193,False,,1,,,,,,,"[{'user_id': '820940217192480769', 'username': 'RagavanGreen'}]",
1176016668239257600,1176016668239257600,1569219197000,2019-09-23,09:13:17,MSK,2912905110,stmavericks,N. E. G. U. S 🤴🏿👨🏿💻(COPACETIC)👌🏿,,What are we supposed to do? Trek down from here with gallons of water on our heads to the Amazon to put out the forest fire? Y'all really know how to guilt trip somebody.,[],[],[],0,0,0,[],[],https://twitter.com/StMavericks/status/1176016668239257600,False,,0,,,,,,,"[{'user_id': '2912905110', 'username': 'StMavericks'}]",
1176009936595124226,1176009936595124226,1569217592000,2019-09-23,08:46:32,MSK,1088638389199372288,itsjimalayy,𝚓 𝚒 𝚖,,"After Amazon forest fire here comes another Indonesia Forest fire.
ctto. pic.twitter.com/sUE5qYtdN2",[],[],"['https://pbs.twimg.com/media/EFIGvwoVAAAtAva.jpg', 'https://pbs.twimg.com/media/EFIGyH_UwAEL7bw.jpg', 'https://pbs.twimg.com/media/EFIGyuWU4AAblWl.jpg']",0,1,2,[],[],https://twitter.com/itsjimalayy/status/1176009936595124226,False,,0,,,,,,,"[{'user_id': '1088638389199372288', 'username': 'itsjimalayy'}]",
1176001061603033088,1176001061603033088,1569215476000,2019-09-23,08:11:16,MSK,879220739252953088,dineshguhan0704,Dinesh Guhan,,This Picture speaks volumes #Amazon #Forest #Fire #Disaster pic.twitter.com/3vGwBikOeI,[],[],['https://pbs.twimg.com/media/EFH-to6VAAENPzD.jpg'],0,0,0,"['#amazon', '#forest', '#fire', '#disaster']",[],https://twitter.com/dineshguhan0704/status/1176001061603033088,False,,0,,,,,,,"[{'user_id': '879220739252953088', 'username': 'dineshguhan0704'}]",
1175991640332259328,1175991640332259328,1569213230000,2019-09-23,07:33:50,MSK,923149382374924289,kevnshi,𝐤𝐞𝐯,,bruh what if ang people behind amazon forest fires same sa inani na forest fire 💀 tapos aliens sila trying to destroy our planet https://twitter.com/eldenzachery/status/1175857321257291776 …,[],['https://twitter.com/eldenzachery/status/1175857321257291776'],[],0,0,3,[],[],https://twitter.com/kevnshi/status/1175991640332259328,False,https://twitter.com/eldenzachery/status/1175857321257291776,0,,,,,,,"[{'user_id': '923149382374924289', 'username': 'kevnshi'}]",
1175977151725789185,1175977151725789185,1569209776000,2019-09-23,06:36:16,MSK,1171871807663747078,babybot21243477,working baby bot,,Baby forest fire prevention specialist attempts to kill boss at Amazon Headquarters in retaliation over teething,[],[],[],0,0,0,[],[],https://twitter.com/babybot21243477/status/1175977151725789185,False,,0,,,,,,,"[{'user_id': '1171871807663747078', 'username': 'babybot21243477'}]",
1175976043699744768,1175976043699744768,1569209512000,2019-09-23,06:31:52,MSK,1166410430064906240,ni387821639,Ni3,,"So Sir Akshay, are you gonna travel daily or was contract for 1 video only? You were worried about Amazon Forest fire but not for scrapping forest in your own city.. Mundan hai Nacho, Shaadi hai nacho, baccha ro raha hai nacho.. Mumbai ke lungs Jaa rahe hai nacho. https://twitter.com/akshaykumar/status/1174324891698507776 …",[],['https://twitter.com/akshaykumar/status/1174324891698507776'],[],0,0,0,[],[],https://twitter.com/Ni387821639/status/1175976043699744768,False,https://twitter.com/akshaykumar/status/1174324891698507776,0,,,,,,,"[{'user_id': '1166410430064906240', 'username': 'Ni387821639'}]",
1175889078991998976,1175889078991998976,1569188778000,2019-09-23,00:46:18,MSK,824195869050343425,captainjenlisa,Anne ☔,,Praying for my Indonesian loves. Indonesia is experiencing forest fire just like the Amazon rainforest had recently. 😭 I hope everyone is safe from the harm brought by haze. :(( #prayforindonesia,[],[],[],0,9,10,['#prayforindonesia'],[],https://twitter.com/captainjenlisa/status/1175889078991998976,False,,0,,,,,,,"[{'user_id': '824195869050343425', 'username': 'captainjenlisa'}]",
1175817873526333440,1175817873526333440,1569171801000,2019-09-22,20:03:21,MSK,2608344686,obillie59,Billy Joe,,The Amazon burns. But another part of Brazil is being destroyed faster - CNN #plants #AmazonRainforest #brazil #ecosystem #forest #fire #ClimateChange https://apple.news/A1AADA0QsSpuD36lUCMHIEQ …,[],['https://apple.news/A1AADA0QsSpuD36lUCMHIEQ'],[],0,0,0,"['#plants', '#amazonrainforest', '#brazil', '#ecosystem', '#forest', '#fire', '#climatechange']",[],https://twitter.com/obillie59/status/1175817873526333440,False,,0,,,,,,,"[{'user_id': '2608344686', 'username': 'obillie59'}]",
1175816688534720512,1175816688534720512,1569171518000,2019-09-22,19:58:38,MSK,1028058958047666177,not_an_official,Kake-n-Bake 🏳️🌈,,"""Only YOU can stop the Amazon Forest Fire (tm)""
Ah yes, me, 4 months out of college, 80k in debt, one month into my 40k/yr job, no car, no license-
""You are the answer. YOU! not the corporations that did this.""
*pulling up a charity page* Ah yes, me,",[],[],[],0,0,0,[],[],https://twitter.com/Not_An_Official/status/1175816688534720512,False,,0,,,,,,,"[{'user_id': '1028058958047666177', 'username': 'Not_An_Official'}]",
1175779306712260608,1175779306712260608,1569162606000,2019-09-22,17:30:06,MSK,795108489098039297,billmurraypub,The Bill Murray,,"TONIGHT @ Angel Comedy
4:30PM Amazon Forest Fire Comedy Fundraiser
7:00PM Stewart Lee
🎟️ http://www.angelcomedy.co.uk/whats-on 🎟️ pic.twitter.com/2wkHAUVukV",[],['http://www.angelcomedy.co.uk/whats-on'],['https://pbs.twimg.com/media/EFE1DF2W4AglQj0.jpg'],0,0,1,[],[],https://twitter.com/billmurraypub/status/1175779306712260608,False,,0,,,,,,,"[{'user_id': '795108489098039297', 'username': 'billmurraypub'}]",
1175779306158678016,1175779306158678016,1569162606000,2019-09-22,17:30:06,MSK,342394680,angelcomedy,Angel Comedy,,"TONIGHT @ Angel Comedy
4:30PM Amazon Forest Fire Comedy Fundraiser
7:00PM Stewart Lee
🎟️ http://www.angelcomedy.co.uk/whats-on 🎟️ pic.twitter.com/n0GOEst5kQ",[],['http://www.angelcomedy.co.uk/whats-on'],['https://pbs.twimg.com/media/EFE1DD4XkAMMVXM.jpg'],0,0,0,[],[],https://twitter.com/angelcomedy/status/1175779306158678016,False,,0,,,,,,,"[{'user_id': '342394680', 'username': 'angelcomedy'}]",
1175761857929306113,1175761857929306113,1569158446000,2019-09-22,16:20:46,MSK,978626887973941248,villanuevapao13,𝙥𝙖𝙤,,amazon forest fire 2019 (pixelated) pic.twitter.com/hCBQJrXWkl,[],[],['https://pbs.twimg.com/media/EFElK5VU4AEKrJF.jpg'],0,0,6,[],[],https://twitter.com/villanuevapao13/status/1175761857929306113,False,,0,,,,,,,"[{'user_id': '978626887973941248', 'username': 'villanuevapao13'}]",
1175728368924295171,1175726794894266368,1569150461000,2019-09-22,14:07:41,MSK,21624997,adamminter,Adam Minter,,"This is a regional problem that should be viewed as a global problem. So far, that's not happening, I think, b/c the Amazon has swallowed up many media org's tolerance for forest fire news.",[],[],[],1,4,1,[],[],https://twitter.com/AdamMinter/status/1175728368924295171,False,,0,,,,,,,"[{'user_id': '21624997', 'username': 'AdamMinter'}]",
1175605523313381377,1175605523313381377,1569121173000,2019-09-22,05:59:33,MSK,1175604577921486848,vvng0cwbpp4olu3,༺₦Ї₦ℑ₳༻,,Amazon Forest Fire Explained | Tamil https://youtu.be/JNHyWag2rUI via @YouTube,['youtube'],['https://youtu.be/JNHyWag2rUI'],[],0,0,0,[],[],https://twitter.com/VVNG0cWBPP4oLu3/status/1175605523313381377,False,,0,,,,,,,"[{'user_id': '1175604577921486848', 'username': 'VVNG0cWBPP4oLu3'}, {'user_id': '10228272', 'username': 'YouTube'}]",
1175585555779862535,1175162094569656320,1569116412000,2019-09-22,04:40:12,MSK,410877972,lynnethomas7,lynn e thomas,,I think it helped put out The Amazon Forest Fire we were hearing about a month ago,['paulhic1'],[],[],0,0,0,[],[],https://twitter.com/lynnethomas7/status/1175585555779862535,False,,0,,,,,,,"[{'user_id': '410877972', 'username': 'lynnethomas7'}, {'user_id': '712044665562927104', 'username': 'PaulHic1'}]",
1175553023222960130,1175553023222960130,1569108656000,2019-09-22,02:30:56,MSK,273074756,ffbang,francisco baena,,The OTHER Amazon forest fire - that no one is talking about https://www.youtube.com/watch?v=AR6SOTOMwfg&fbclid=IwAR3gBzOsFlErzBaUN_sTWICoMsP2U2mGWiXdwREEBt8lyZojMWd4FrDYFFs …,[],['https://www.youtube.com/watch?v=AR6SOTOMwfg&fbclid=IwAR3gBzOsFlErzBaUN_sTWICoMsP2U2mGWiXdwREEBt8lyZojMWd4FrDYFFs'],[],0,0,0,[],[],https://twitter.com/ffbang/status/1175553023222960130,False,,0,,,,,,,"[{'user_id': '273074756', 'username': 'ffbang'}]",
1175536795653591040,1175536795653591040,1569104787000,2019-09-22,01:26:27,MSK,814084295623118848,amanana2437,Aman anand,,"With the burning flames in Amazon forest fire, high rising hurricanes in Atlantic and numerous floodings in Japan, Reverse counting started and the doomsday is not so far away now...
http://Amanreign.wordpress.com
Scroll down for BURNING HOPE BURNING HUMANITY...",[],['http://Amanreign.wordpress.com'],[],0,0,4,[],[],https://twitter.com/Amanana2437/status/1175536795653591040,False,,0,,,,,,,"[{'user_id': '814084295623118848', 'username': 'Amanana2437'}]",
1175533884651556865,1175381971863777280,1569104093000,2019-09-22,01:14:53,MSK,83089097,mikegood5,Mike Goodfellow,,Before they go to MacDonalds for Amazon Forest Fire Burgers!,['paulembery'],[],[],0,0,1,[],[],https://twitter.com/mikegood5/status/1175533884651556865,False,,0,,,,,,,"[{'user_id': '83089097', 'username': 'mikegood5'}, {'user_id': '350782341', 'username': 'PaulEmbery'}]",
1175528846554279938,1175334823579312128,1569102891000,2019-09-22,00:54:51,MSK,83089097,mikegood5,Mike Goodfellow,,Scary! Maybe white kids in MacDonalds having Amazon Forest Fire Burgers?,['mdpepperart'],[],[],0,0,0,[],[],https://twitter.com/mikegood5/status/1175528846554279938,False,,0,,,,,,,"[{'user_id': '83089097', 'username': 'mikegood5'}, {'user_id': '882979087714844675', 'username': 'mdpepperart'}]",
1175498497400832000,1174584575856500736,1569095656000,2019-09-21,22:54:16,MSK,733137785322774529,baslerbran,Bran Basler,,"Just have to start a forest fire, comes with free 2-day shipping with a subscription to amazon prime.",['dcb1199'],[],[],0,0,0,[],[],https://twitter.com/BaslerBran/status/1175498497400832000,False,,0,,,,,,,"[{'user_id': '733137785322774529', 'username': 'BaslerBran'}, {'user_id': '1052406636084649988', 'username': 'dcb1199'}]",
1175485942611660800,1175485942611660800,1569092662000,2019-09-21,22:04:22,MSK,43314059,vishalgala,Vishal Gala,,"After Amazon Forest Fire, Indonesia Is the next target for Nature Scare....? This needs to be highlighted and acted upon soon @LeoDiCaprio #ClimateStrikes #forestfires #IndonesiaForestFireCrisis https://twitter.com/penyanyitoilet/status/1175445259129516033 …",['leodicaprio'],['https://twitter.com/penyanyitoilet/status/1175445259129516033'],[],0,0,2,"['#climatestrikes', '#forestfires', '#indonesiaforestfirecrisis']",[],https://twitter.com/VishalGala/status/1175485942611660800,False,https://twitter.com/penyanyitoilet/status/1175445259129516033,0,,,,,,,"[{'user_id': '43314059', 'username': 'VishalGala'}, {'user_id': '133880286', 'username': 'LeoDiCaprio'}]",
1175431707492663297,1175431707492663297,1569079732000,2019-09-21,18:28:52,MSK,1035406451479470080,true0self,🌟🔟🌟,,N you think chakki the chamar tweeted about amazon forest fire out of love 😳 then you are certified chutiya 😹 He is connected to dark money mafia global daddies 🙏,[],[],[],0,0,0,[],[],https://twitter.com/true0self/status/1175431707492663297,False,,0,,,,,,,"[{'user_id': '1035406451479470080', 'username': 'true0self'}]",
1175396553504149505,1175396553504149505,1569071350000,2019-09-21,16:09:10,MSK,757578922800259072,jrlfm,Lev ( LFM )✨🦅,,"Amazon’s forest fire, then this... 😭 https://twitter.com/AJEnglish/status/1175228257245061122 …",[],['https://twitter.com/AJEnglish/status/1175228257245061122'],[],0,0,0,[],[],https://twitter.com/jrlfm/status/1175396553504149505,False,https://twitter.com/AJEnglish/status/1175228257245061122,0,,,,,,,"[{'user_id': '757578922800259072', 'username': 'jrlfm'}]",
1175369990540644352,1175369990540644352,1569065017000,2019-09-21,14:23:37,MSK,969470660312317952,parithabangal_,Parithabangal,,"Amazon Forest Fire - Seivinai | Full Video on Youtube
▶️ http://bit.ly/Amazon_Forest_Fire_Seivinai …
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
#SaveAmazon #AmazonFire #Deforestation #Seivinai
⠀⠀⠀⠀⠀⠀⠀⠀ pic.twitter.com/hXlvBt3Pjq",[],['http://bit.ly/Amazon_Forest_Fire_Seivinai'],[],0,7,19,"['#saveamazon', '#amazonfire', '#deforestation', '#seivinai']",[],https://twitter.com/Parithabangal_/status/1175369990540644352,False,,1,,,,,,,"[{'user_id': '969470660312317952', 'username': 'Parithabangal_'}]",
1175350249780461570,1175350249780461570,1569060311000,2019-09-21,13:05:11,MSK,465227285,mkp_tv,Casey (MKP Studios),,What ever happened to the Amazon Forest Fire lol Remember that?,[],[],[],1,1,9,[],[],https://twitter.com/MKP_TV/status/1175350249780461570,False,,0,,,,,,,"[{'user_id': '465227285', 'username': 'MKP_TV'}]",
1175308573871497217,1175308573871497217,1569050374000,2019-09-21,10:19:34,MSK,1135776812666015744,welovetheearth_,Earthly,,"Amazon fire, now Indonesia forest fire. We need to change.
#IndonesiaForestFireCrisis #SaveMotherEarth
© pic.twitter.com/D1juMrU6Ls",[],[],"['https://pbs.twimg.com/media/EE-I2VdUwAIQByX.png', 'https://pbs.twimg.com/media/EE-I2VxU8AcPcJk.jpg', 'https://pbs.twimg.com/media/EE-I2VvUUAAD0E6.jpg']",0,20,29,"['#indonesiaforestfirecrisis', '#savemotherearth']",[],https://twitter.com/WeLoveTheEarth_/status/1175308573871497217,False,,0,,,,,,,"[{'user_id': '1135776812666015744', 'username': 'WeLoveTheEarth_'}]",
1175282130676436992,1175282130676436992,1569044070000,2019-09-21,08:34:30,MSK,1654752487,space_timehomes,Space & Time Homes,,hamster in amazon forest fire #hamster#explore#forestfire##forestfire https://youtu.be/uM15uFJQkCU via @YouTube,['youtube'],['https://youtu.be/uM15uFJQkCU'],[],0,0,0,['#forestfire'],[],https://twitter.com/space_timehomes/status/1175282130676436992,False,,0,,,,,,,"[{'user_id': '1654752487', 'username': 'space_timehomes'}, {'user_id': '10228272', 'username': 'YouTube'}]",
1175280552410107904,1175280552410107904,1569043694000,2019-09-21,08:28:14,MSK,164989641,s00bbin,ia 4 finals,,"even if they dont ask, army are doing it! k-armys + ph armys did a tree planting project for namjoon’s birthday + armys did a project for the amazon forest fire. nobody doin it like the armys are. https://twitter.com/BRIGHTPRIMATE/status/1155911007119826944 …",[],['https://twitter.com/BRIGHTPRIMATE/status/1155911007119826944'],[],0,3,10,[],[],https://twitter.com/S00BBIN/status/1175280552410107904,False,https://twitter.com/BRIGHTPRIMATE/status/1155911007119826944,0,,,,,,,"[{'user_id': '164989641', 'username': 'S00BBIN'}]",
1175229396854005760,1175087210967621632,1569031497000,2019-09-21,05:04:57,MSK,24355762,manswerz,Drunkenfury,,That’s what happens when no one puts out the Amazon rain forest fire 🔥,['41strange'],[],[],0,0,0,[],[],https://twitter.com/MANswerz/status/1175229396854005760,False,,0,,,,,,,"[{'user_id': '24355762', 'username': 'MANswerz'}, {'user_id': '2355808260', 'username': '41Strange'}]",
1175212202346741761,1175027369909899266,1569027398000,2019-09-21,03:56:38,MSK,787954545976446977,drbvbaby4,Dr. B V. Baby,,"Real estates Mafia of Brazil is the Criminals behind the Amazon Forest fire, whom the Govt reluctant to take actions
Shame to Brazilian Govt.","['kippenbergj', 'hrw']",[],[],0,0,0,[],[],https://twitter.com/DrBVBaby4/status/1175212202346741761,False,,0,,,,,,,"[{'user_id': '787954545976446977', 'username': 'DrBVBaby4'}, {'user_id': '1705490533', 'username': 'KippenbergJ'}, {'user_id': '14700316', 'username': 'hrw'}]",
1175198788417413120,1175198788417413120,1569024199000,2019-09-21,03:03:19,MSK,1290003444,stewart_koko,my profile name,,@UberFacts this is how the amazon forest fire started pic.twitter.com/vbeKh6qOS1,['uberfacts'],[],['https://pbs.twimg.com/media/EE8lETiX4AA6wpO.jpg'],0,0,0,[],[],https://twitter.com/stewart_koko/status/1175198788417413120,False,,0,,,,,,,"[{'user_id': '1290003444', 'username': 'stewart_koko'}, {'user_id': '95023423', 'username': 'UberFacts'}]",
1175159854480146434,1175155923930800128,1569014917000,2019-09-21,00:28:37,MSK,1130850600,_timetraveler33,Watch Dominion on YouTube,,"@JeffBezos Amazon forest fire update: it's still burning, and not just Brazil but Bolivia as well.
https://www.youtube.com/watch?v=AR6SOTOMwfg …","['nowthisnews', 'jeffbezos']",['https://www.youtube.com/watch?v=AR6SOTOMwfg'],[],0,0,0,[],[],https://twitter.com/_TimeTraveler33/status/1175159854480146434,False,,0,,,,,,,"[{'user_id': '1130850600', 'username': '_TimeTraveler33'}, {'user_id': '701725963', 'username': 'nowthisnews'}, {'user_id': '15506669', 'username': 'JeffBezos'}]",
1175134124744437760,1175134124744437760,1569008782000,2019-09-20,22:46:22,MSK,251472575,alizaalbornoz,Aliza Albornoz,,Amazon Forest Fire: A Nightmare https://www.scribbledbook.com/2019/09/amazon-forest-fire-a-nightmare/ …,[],['https://www.scribbledbook.com/2019/09/amazon-forest-fire-a-nightmare/'],[],0,0,0,[],[],https://twitter.com/alizaalbornoz/status/1175134124744437760,False,,0,,,,,,,"[{'user_id': '251472575', 'username': 'alizaalbornoz'}]",
1175126437822644224,1175126437822644224,1569006950000,2019-09-20,22:15:50,MSK,758699572055203841,cephas_blak,Cephas,,"Judge:anything else you wish to say
Nobody:
.
.
.
.
.
#6ix9ine :i can tell y'all who started the amazon forest fire",[],[],[],0,0,0,['#6ix9ine'],[],https://twitter.com/cephas_blak/status/1175126437822644224,False,,0,,,,,,,"[{'user_id': '758699572055203841', 'username': 'cephas_blak'}]",
1175104215842263046,1175104215842263046,1569001652000,2019-09-20,20:47:32,MSK,3624073395,gamingvoided,Lizibeth Veir (DatKawaiiNerd/Dawn),,"@TeamExelika is currently doing a 34 hour stream for raising money for the whole Amazon rain forest-fire thats going on.
please, check them out and help us help them however we can.
https://www.twitch.tv/teamexelika ",['teamexelika'],['https://www.twitch.tv/teamexelika'],[],0,0,0,[],[],https://twitter.com/GamingVoided/status/1175104215842263046,False,,0,,,,,,,"[{'user_id': '3624073395', 'username': 'GamingVoided'}, {'user_id': '879757081787629568', 'username': 'TeamExelika'}]",
1175048482861854720,1174500745841917953,1568988364000,2019-09-20,17:06:04,MSK,760526938498670592,lukebartnick,Luke Bartnick,,"Logan buddy, still can’t believe you stopped that Amazon forest fire all by yourself, you’re a hero man","['shayalhassam', 'li0nick', 'deadpoolrl4', 'the_kodiak45', 'khgray10', 'robynchloea', 'summerrr_lynnn', 'stieronfire', 'espah26', 'lesbianterror', 'brainwxrms', 'haley_ferris', 'popeyeschicken']",[],[],0,0,2,[],[],https://twitter.com/LukeBartnick/status/1175048482861854720,False,,0,,,,,,,"[{'user_id': '760526938498670592', 'username': 'LukeBartnick'}, {'user_id': '357572653', 'username': 'ShayalHassam'}, {'user_id': '1035767363998834689', 'username': 'Li0nick'}, {'user_id': '2893944939', 'username': 'deadpoolrl4'}, {'user_id': '118113779', 'username': 'The_Kodiak45'}, {'user_id': '3012598442', 'username': 'khgray10'}, {'user_id': '85409060', 'username': 'robynchloea'}, {'user_id': '820672647822540801', 'username': 'summerrr_lynnn'}, {'user_id': '629042795', 'username': 'StierOnFire'}, {'user_id': '53812840', 'username': 'espah26'}, {'user_id': '953103878215667712', 'username': 'lesbianterror'}, {'user_id': '366815312', 'username': 'brainwxrms'}, {'user_id': '337532202', 'username': 'Haley_Ferris'}, {'user_id': '14757934', 'username': 'PopeyesChicken'}]",
1175026395900043264,1175026395900043264,1568983098000,2019-09-20,15:38:18,MSK,969470660312317952,parithabangal_,Parithabangal,,"Amazon Forest Fire - Seivinai | Full Video on Youtube
▶️ http://bit.ly/Amazon_Forest_Fire_Seivinai …
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
#SaveAmazon #AmazonFire #Deforestation #Seivinai
⠀⠀⠀⠀⠀⠀⠀⠀
✍🏻 : @mohan_pvr
🎥 : @Prakash_gvraj
✂️ : @subash_editor
👫 : @mohan_pvr @balubose @dravid_selvam pic.twitter.com/TuLQlsuZcl","['mohan_pvr', 'balubose', 'dravid_selvam']",['http://bit.ly/Amazon_Forest_Fire_Seivinai'],['https://pbs.twimg.com/media/EE6IRVcVUAA92Es.jpg'],1,4,29,"['#saveamazon', '#amazonfire', '#deforestation', '#seivinai']",[],https://twitter.com/Parithabangal_/status/1175026395900043264,False,,0,,,,,,,"[{'user_id': '969470660312317952', 'username': 'Parithabangal_'}, {'user_id': '1035041814368018434', 'username': 'mohan_pvr'}, {'user_id': '2658716348', 'username': 'BaluBose'}, {'user_id': '2917860445', 'username': 'Dravid_Selvam'}]",
1175001842352177152,1175001842352177152,1568977244000,2019-09-20,14:00:44,MSK,1155795634395308033,miku60337340,miku🌍,,The other Amazon forest fire - that no one is talking about https://youtu.be/AR6SOTOMwfg via @YouTube,['youtube'],['https://youtu.be/AR6SOTOMwfg'],[],0,0,0,[],[],https://twitter.com/miku60337340/status/1175001842352177152,False,,0,,,,,,,"[{'user_id': '1155795634395308033', 'username': 'miku60337340'}, {'user_id': '10228272', 'username': 'YouTube'}]",
1174969454096080896,1174969454096080896,1568969522000,2019-09-20,11:52:02,MSK,586313043,minozvenezuelaf,MinozVenezuelaFC,,"🌱 Minoz Raise for Amazonia 🌱
We will collect donations ($) for ""Amazonia""
As most know, a large-scale forest fire broke out in the ""Amazon Rainforest or Amazon"" (South America) for several weeks. pic.twitter.com/ihRNX8TjSx",[],[],['https://pbs.twimg.com/media/EE5Ub67VUAIb_z2.jpg'],1,2,2,[],[],https://twitter.com/MinozVenezuelaF/status/1174969454096080896,False,,0,,,,,,,"[{'user_id': '586313043', 'username': 'MinozVenezuelaF'}]",
1174947039026675714,1174947039026675714,1568964178000,2019-09-20,10:22:58,MSK,2714398122,meyilliate,sreekumaran m nair,,"@mathrubhumi @PMOIndia @ANI @asianetnewstv Marad flat demolition issue shd be taken seriously. SC's wisdom shd be honoured. Environment shd be protected. Law breakers shd be punished. Shd not go in the way of Adarsh building, Amazon Fire, Intonation forest fire etc. all are same! pic.twitter.com/wr65lJx78H","['mathrubhumi', 'pmoindia', 'ani', 'asianetnewstv']",[],['https://pbs.twimg.com/media/EE5AFREVAAEZoZ7.jpg'],0,0,0,[],[],https://twitter.com/meyilliate/status/1174947039026675714,False,,0,,,,,,,"[{'user_id': '2714398122', 'username': 'meyilliate'}, {'user_id': '19584103', 'username': 'mathrubhumi'}, {'user_id': '471741741', 'username': 'PMOIndia'}, {'user_id': '355989081', 'username': 'ANI'}, {'user_id': '277386148', 'username': 'asianetnewstv'}]",
1174942507240583169,1174918880751312896,1568963097000,2019-09-20,10:04:57,MSK,1001522822345261056,freethinkertree,Talking tree,,"just consider how similar the situations here are. Amazon rain forest fire, is really detrimental for the world.. Aarey 2700 trees, they going to plant 3 times the numbers. Much more deforestation was done in other projects in the country",['amit_gujju'],[],[],0,0,0,[],[],https://twitter.com/FreethinkerTree/status/1174942507240583169,False,,0,,,,,,,"[{'user_id': '1001522822345261056', 'username': 'FreethinkerTree'}, {'user_id': '1673006288', 'username': 'AMIT_GUJJU'}]",
1174864493567889408,1174864493567889408,1568944497000,2019-09-20,04:54:57,MSK,948452623484575744,dirty_world985,⚜️CrownMeKing⚜️,,It’s funny that we don’t hear nothin about the Amazon Forest Fire anymore,[],[],[],0,0,0,[],[],https://twitter.com/Dirty_World985/status/1174864493567889408,False,,0,,,,,,,"[{'user_id': '948452623484575744', 'username': 'Dirty_World985'}]",
1174857098825322496,1174857098825322496,1568942734000,2019-09-20,04:25:34,MSK,1138270325097918465,ocean_light6,Ocean Light,,"Hello! Does anyone know where we can donate to the forest fire happening in Kalimantan? As much as we want to donate to Amazon Forest, it has come to our attention that little organizations are donating to Kalimantan. Thus, we will be making it our first priority. Contact us!",[],[],[],1,2,0,[],[],https://twitter.com/ocean_light6/status/1174857098825322496,False,,0,,,,,,,"[{'user_id': '1138270325097918465', 'username': 'ocean_light6'}]",
1174777502423818240,1174777502423818240,1568923757000,2019-09-19,23:09:17,MSK,2277874345,djinnta,Djinntan,,The other Amazon forest fire - that no one is talking about https://youtu.be/AR6SOTOMwfg via @YouTube,['youtube'],['https://youtu.be/AR6SOTOMwfg'],[],0,0,0,[],[],https://twitter.com/Djinnta/status/1174777502423818240,False,,0,,,,,,,"[{'user_id': '2277874345', 'username': 'Djinnta'}, {'user_id': '10228272', 'username': 'YouTube'}]",
1174745565487198208,1174745565487198208,1568916143000,2019-09-19,21:02:23,MSK,260204867,farooqrenzushah,Farooq Renzu Shah,,"Bird deaths catastrophe in Cashmir, more environmental disaster than Amazon forest fire. No one bothers to sprinkle just drop of tear for them.",[],[],[],0,0,1,[],[],https://twitter.com/Farooqrenzushah/status/1174745565487198208,False,,0,,,,,,,"[{'user_id': '260204867', 'username': 'Farooqrenzushah'}]",
1174729887669555201,1174729887669555201,1568912405000,2019-09-19,20:00:05,MSK,2556707426,itsclrkhns,clarky,,"i dont think the news coverage about the haze & forest fire in south east asia appears much on major news cable like cnn, sorry we’re not amazon but our rainforest is precious too",[],[],[],0,0,7,[],[],https://twitter.com/itsclrkhns/status/1174729887669555201,False,,0,,,,,,,"[{'user_id': '2556707426', 'username': 'itsclrkhns'}]",
1174703158905491456,1174703158905491456,1568906032000,2019-09-19,18:13:52,MSK,951100086418894848,crunchwrapbod,Proud JV Sports Dad,,memba when everyone was outraged by the Amazon forest fire? yea that shits still on fire.,[],[],[],0,0,0,[],[],https://twitter.com/crunchwrapbod/status/1174703158905491456,False,,0,,,,,,,"[{'user_id': '951100086418894848', 'username': 'crunchwrapbod'}]",
1174690104583098368,1174690104583098368,1568902920000,2019-09-19,17:22:00,MSK,260204867,farooqrenzushah,Farooq Renzu Shah,,"Cashmir Bird deaths ;
Like Amazon Forest Fire, itz death of pigeons and small birds out of starvation in cashmir extending rapidly. Please save Forests save pigeons save birds. Join pigeons protection campaign",[],[],[],0,0,0,[],[],https://twitter.com/Farooqrenzushah/status/1174690104583098368,False,,0,,,,,,,"[{'user_id': '260204867', 'username': 'Farooqrenzushah'}]",
1174689915277389830,1174689915277389830,1568902875000,2019-09-19,17:21:15,MSK,260204867,farooqrenzushah,Farooq Renzu Shah,,"Like Amazon Forest Fire, itz death of pigeons and small birds out of starvation in cashmir extending rapidly. Please save Forests save pigeons save birds. Join pigeons protection campaign",[],[],[],0,0,0,[],[],https://twitter.com/Farooqrenzushah/status/1174689915277389830,False,,0,,,,,,,"[{'user_id': '260204867', 'username': 'Farooqrenzushah'}]",
1174678369843273729,1174678369843273729,1568900122000,2019-09-19,16:35:22,MSK,1174671106667687936,paigiewagie_,Paige,,"the worlds richest countries came up with $22 million to put out the amazon forest fire..... the budget for the emoji movie was $50 million.....
i-",[],[],[],0,0,1,[],[],https://twitter.com/paigiewagie_/status/1174678369843273729,False,,0,,,,,,,"[{'user_id': '1174671106667687936', 'username': 'paigiewagie_'}]",
1174676108215648256,1174676108215648256,1568899583000,2019-09-19,16:26:23,MSK,974582275508649984,jbelino12,AgIK 😁😎,,"PreciousPao Amazon Powder Tint!
🍂 10% of the proceeds will be donated to animal shelters
🍂 Inspired from the Amazon Forest Fire
🍂 No harmful chemicals
🍂 Made with natural ingredients
🍂 Safe to use by pregnant and lactating moms
🍂 Pigmented
🍂 Easy to blend pic.twitter.com/V6cbJfUGke",[],[],"['https://pbs.twimg.com/media/EE1JqmWUYAYHibs.jpg', 'https://pbs.twimg.com/media/EE1Jq92UYAAE0UE.jpg', 'https://pbs.twimg.com/media/EE1JrT2UwAA_MnT.jpg', 'https://pbs.twimg.com/media/EE1JsITU0AEtG3c.jpg']",1,19,29,[],[],https://twitter.com/jbelino12/status/1174676108215648256,False,,0,,,,,,,"[{'user_id': '974582275508649984', 'username': 'jbelino12'}]",
1174656491929919489,1174656491929919489,1568894906000,2019-09-19,15:08:26,MSK,2407734266,magiocasto,Probably Gio?,,Where tf the amazon forest fire go?,[],[],[],2,0,4,[],[],https://twitter.com/magiocasto/status/1174656491929919489,False,,0,,,,,,,"[{'user_id': '2407734266', 'username': 'magiocasto'}]",
1174620653804113921,1174620653804113921,1568886361000,2019-09-19,12:46:01,MSK,854274673,skunot,Steven Kunoth,,The other Amazon forest fire - that no one is tal…: https://youtu.be/AR6SOTOMwfg ,[],['https://youtu.be/AR6SOTOMwfg'],[],0,0,0,[],[],https://twitter.com/skunot/status/1174620653804113921,False,,0,,,,,,,"[{'user_id': '854274673', 'username': 'skunot'}]",
1174610842983288833,1174610842983288833,1568884022000,2019-09-19,12:07:02,MSK,351719431,laolao_1,LAOLAO,,The other Amazon forest fire - that no one is talking about https://youtu.be/AR6SOTOMwfg via @YouTube,['youtube'],['https://youtu.be/AR6SOTOMwfg'],[],0,0,0,[],[],https://twitter.com/LAOLAO_1/status/1174610842983288833,False,,0,,,,,,,"[{'user_id': '351719431', 'username': 'LAOLAO_1'}, {'user_id': '10228272', 'username': 'YouTube'}]",
1174610312257048577,1174610312257048577,1568883896000,2019-09-19,12:04:56,MSK,7383212,berzins,Doktor Catu,,Another forest fire - this time it is not the amazon. https://twitter.com/recordtvminas/status/1174438604191477760 …,[],['https://twitter.com/recordtvminas/status/1174438604191477760'],[],0,0,0,[],[],https://twitter.com/berzins/status/1174610312257048577,False,https://twitter.com/recordtvminas/status/1174438604191477760,0,,,,,,,"[{'user_id': '7383212', 'username': 'berzins'}]",
1174588547455684608,1174588547455684608,1568878707000,2019-09-19,10:38:27,MSK,3851478676,arbolivia1,ArBolivia,,The other Amazon forest fire that no-one is talking about https://www.channel4.com/news/the-other-amazon-forest-fire-that-no-one-is-talking-about … via @GuillermoGaldos,['guillermogaldos'],['https://www.channel4.com/news/the-other-amazon-forest-fire-that-no-one-is-talking-about'],[],0,0,1,[],[],https://twitter.com/ArBolivia1/status/1174588547455684608,False,,0,,,,,,,"[{'user_id': '3851478676', 'username': 'ArBolivia1'}, {'user_id': '2423981779', 'username': 'GuillermoGaldos'}]",
1174569356988178432,1174566287718014977,1568874131000,2019-09-19,09:22:11,MSK,1102756347324628992,elmagoldwyn,Grouchy Maxx,,"Akshay’s next picture/ documentarywill be based on the Amazon Forest fire.
Desi Leonardo Dicaprio to the rescue!","['retheeshraj10', 'advaidism', 'akshaykumar']",[],[],0,0,1,[],[],https://twitter.com/ElmaGoldwyn/status/1174569356988178432,False,,0,,,,,,,"[{'user_id': '1102756347324628992', 'username': 'ElmaGoldwyn'}, {'user_id': '1523867352', 'username': 'retheeshraj10'}, {'user_id': '77490131', 'username': 'Advaidism'}, {'user_id': '31348594', 'username': 'akshaykumar'}]",
1174563551282810880,1174324891698507776,1568872747000,2019-09-19,08:59:07,MSK,92505930,vinihooked,Vinayak,,"Hello Mr Canada, you feel deeply disturbed by Amazon Forest Fire & now supporting cutting trees in Aarey....Hypocrite.","['akshaykumar', 'mummetro']",[],[],0,1,0,[],[],https://twitter.com/vinihooked/status/1174563551282810880,False,,0,,,,,,,"[{'user_id': '92505930', 'username': 'vinihooked'}, {'user_id': '31348594', 'username': 'akshaykumar'}, {'user_id': '2373688789', 'username': 'MumMetro'}]",
1174556925666779136,1174556925666779136,1568871167000,2019-09-19,08:32:47,MSK,128015229,naturabolivia,Natura Bolivia,,The OTHER Amazon forest fire - that no one is talking about https://www.youtube.com/watch?v=AR6SOTOMwfg …,[],['https://www.youtube.com/watch?v=AR6SOTOMwfg'],[],0,0,0,[],[],https://twitter.com/naturabolivia/status/1174556925666779136,False,,0,,,,,,,"[{'user_id': '128015229', 'username': 'naturabolivia'}]",
1174549439459078144,1174549439459078144,1568869383000,2019-09-19,08:03:03,MSK,90573519,lau_du,Lauren Duran,,The OTHER Amazon forest fire - that no one is talking about https://youtu.be/AR6SOTOMwfg ,[],['https://youtu.be/AR6SOTOMwfg'],[],0,0,0,[],[],https://twitter.com/Lau_Du/status/1174549439459078144,False,,0,,,,,,,"[{'user_id': '90573519', 'username': 'Lau_Du'}]",
1174526369545502720,1174526369545502720,1568863882000,2019-09-19,06:31:22,MSK,607779650,lauramarteagasa,LAURAMARTEAGASALINAS,,The OTHER Amazon forest fire - that no one is talking about https://youtu.be/AR6SOTOMwfg ,[],['https://youtu.be/AR6SOTOMwfg'],[],0,0,0,[],[],https://twitter.com/LAURAMARTEAGASA/status/1174526369545502720,False,,0,,,,,,,"[{'user_id': '607779650', 'username': 'LAURAMARTEAGASA'}]",
1174518781739261953,1174496340770021377,1568862073000,2019-09-19,06:01:13,MSK,238180797,dougmellencamp,Dan Meyer,,"Love this! Almost as good as your Amazon Forest Fire coverage, and way cooler than your boring Dow-Dupont stories!",['npr'],[],[],0,0,0,[],[],https://twitter.com/DougMellencamp/status/1174518781739261953,False,,0,,,,,,,"[{'user_id': '238180797', 'username': 'DougMellencamp'}, {'user_id': '5392522', 'username': 'NPR'}]",
1174510987220701184,1174510987220701184,1568860215000,2019-09-19,05:30:15,MSK,565809727,breatherslog,田中君 星火法援 64616642,,The other Amazon forest fire - that no one is talking about https://youtu.be/AR6SOTOMwfg via @YouTube,['youtube'],['https://youtu.be/AR6SOTOMwfg'],[],0,0,0,[],[],https://twitter.com/breatherslog/status/1174510987220701184,False,,0,,,,,,,"[{'user_id': '565809727', 'username': 'breatherslog'}, {'user_id': '10228272', 'username': 'YouTube'}]",
1174508921240920064,1174508921240920064,1568859722000,2019-09-19,05:22:02,MSK,362720271,bugalubaby2011,EL CID,,"#SOCIALIST SECRETIVE #BOLIVIA ""The other Amazon forest fire-that no one is talking about""YouT- https://youtu.be/AR6SOTOMwfg #MAGA @POTUS #democrat #Student #College #University #Military #left #Independent #Liberal #Republican #Black #Latino #2A #GOP #LGBT #Christian #ccot",['potus'],['https://youtu.be/AR6SOTOMwfg'],[],0,0,0,"['#socialist', '#bolivia', '#maga', '#democrat', '#student', '#college', '#university', '#military', '#left', '#independent', '#liberal', '#republican', '#black', '#latino', '#2a', '#gop', '#lgbt', '#christian', '#ccot']",[],https://twitter.com/bugalubaby2011/status/1174508921240920064,False,,0,,,,,,,"[{'user_id': '362720271', 'username': 'bugalubaby2011'}, {'user_id': '822215679726100480', 'username': 'POTUS'}]",
1174443717849047040,1174443717849047040,1568844177000,2019-09-19,01:02:57,MSK,1242317940,nathanwu84,Nathan Wu,,"Even if it is real & if it is alien, it's not attacking ppl it's not more important then human Amazon forest fire & economic woes those things kills. Those things can doom a race, so lets worry about grounded things then Big Foot like Mermaids.",[],[],[],0,0,0,[],[],https://twitter.com/NathanWu84/status/1174443717849047040,False,,0,,,,,,,"[{'user_id': '1242317940', 'username': 'NathanWu84'}]",
1174421969300799489,1174421969300799489,1568838991000,2019-09-18,23:36:31,MSK,404421890,amyxwang,Amy X. Wang,,Google's SEO team awarding dozen of slots to the Amazon Fire before a single mention of the ongoing Amazon forest fire is.............. illuminating pic.twitter.com/FQCFHdSbvi,[],[],"['https://pbs.twimg.com/media/EExijdqWsAAxaVA.jpg', 'https://pbs.twimg.com/media/EExijd0XkAAWZTU.jpg']",0,6,11,[],[],https://twitter.com/amyxwang/status/1174421969300799489,False,,0,,,,,,,"[{'user_id': '404421890', 'username': 'amyxwang'}]",
1174414209146187776,1174324891698507776,1568837141000,2019-09-18,23:05:41,MSK,1107435520550825984,redranger2103,Rio,,"This guy's heart was coming out during Amazon forest fire. Now when it comes to save our own #AAREY he is praising metro.
Ye sale nachaniya logo k bat ka koi value nhi hai. Bloody hypocrites","['akshaykumar', 'mummetro']",[],[],1,0,12,['#aarey'],[],https://twitter.com/RedRanger2103/status/1174414209146187776,False,,0,,,,,,,"[{'user_id': '1107435520550825984', 'username': 'RedRanger2103'}, {'user_id': '31348594', 'username': 'akshaykumar'}, {'user_id': '2373688789', 'username': 'MumMetro'}]",
1174412843413921792,1174412843413921792,1568836816000,2019-09-18,23:00:16,MSK,1112076988540506112,ecowelsh,Eco News And Views 🌎,,WWF Indonesia: Forest Fire Cause Same as in Amazon - engteco_science_technology http://Tempo.co https://en.tempo.co/read/1249266/wwf-indonesia-forest-fire-cause-same-as-in-amazon?Engteco_science_technologyUtama&campaign=Engteco_science_technologyUtama_Click_1 …,[],"['http://Tempo.co', 'https://en.tempo.co/read/1249266/wwf-indonesia-forest-fire-cause-same-as-in-amazon?Engteco_science_technologyUtama&campaign=Engteco_science_technologyUtama_Click_1']",[],0,1,0,[],[],https://twitter.com/EcoWelsh/status/1174412843413921792,False,,0,,,,,,,"[{'user_id': '1112076988540506112', 'username': 'EcoWelsh'}]",
1174410252747493376,1174410252747493376,1568836198000,2019-09-18,22:49:58,MSK,410255812,harding_keith,Keith Harding,,The other Amazon forest fire that no-one is talking about https://www.channel4.com/news/the-other-amazon-forest-fire-that-no-one-is-talking-about … via @GuillermoGaldos,['guillermogaldos'],['https://www.channel4.com/news/the-other-amazon-forest-fire-that-no-one-is-talking-about'],[],0,0,0,[],[],https://twitter.com/harding_keith/status/1174410252747493376,False,,0,,,,,,,"[{'user_id': '410255812', 'username': 'harding_keith'}, {'user_id': '2423981779', 'username': 'GuillermoGaldos'}]",
1174403801836597250,1174403801836597250,1568834660000,2019-09-18,22:24:20,MSK,2874182121,douwanttea,Bernieoc,,Studio discussion. ‘Let them eat cake’ The other Amazon forest fire that no-one is talking about https://www.channel4.com/news/the-other-amazon-forest-fire-that-no-one-is-talking-about … via @GuillermoGaldos,['guillermogaldos'],['https://www.channel4.com/news/the-other-amazon-forest-fire-that-no-one-is-talking-about'],[],0,0,0,[],[],https://twitter.com/douwanttea/status/1174403801836597250,False,,0,,,,,,,"[{'user_id': '2874182121', 'username': 'douwanttea'}, {'user_id': '2423981779', 'username': 'GuillermoGaldos'}]",
1174397076915945472,1174396454518976513,1568833057000,2019-09-18,21:57:37,MSK,42365215,abhic4ever,Abhijeet,,"Is this good acting or his concern for Amazon forest fire, that was good acting?",['appadappajappa'],[],[],1,0,0,[],[],https://twitter.com/abhic4ever/status/1174397076915945472,False,,0,,,,,,,"[{'user_id': '42365215', 'username': 'abhic4ever'}, {'user_id': '68097618', 'username': 'appadappajappa'}]",
1174386507400060928,1174386507400060928,1568830537000,2019-09-18,21:15:37,MSK,87313398,stevenbrunton,𝗦𝘁𝗲𝘃𝗲,,"Try googling “#AmazonFire” on google, all my results are tablets!
It would restore my faith in humanity if @Amazon offered aid to save the REAL Amazon!
“The other Amazon forest fire - that no one is talking about” https://youtu.be/AR6SOTOMwfg
@Channel4 @h3h3productions @PhillyD","['amazon', 'channel4', 'h3h3productions', 'phillyd']",['https://youtu.be/AR6SOTOMwfg'],[],0,0,0,['#amazonfire'],[],https://twitter.com/StevenBrunton/status/1174386507400060928,False,,0,,,,,,,"[{'user_id': '87313398', 'username': 'StevenBrunton'}, {'user_id': '20793816', 'username': 'amazon'}, {'user_id': '183585551', 'username': 'Channel4'}, {'user_id': '1187330941', 'username': 'h3h3productions'}, {'user_id': '6351572', 'username': 'PhillyD'}]",
1174368777821130753,1174368777821130753,1568826310000,2019-09-18,20:05:10,MSK,40533363,panteraonca07,Renée,,The other Amazon forest fire - that no one is talking about https://youtu.be/AR6SOTOMwfg via @YouTube,['youtube'],['https://youtu.be/AR6SOTOMwfg'],[],0,0,0,[],[],https://twitter.com/panteraonca07/status/1174368777821130753,False,,0,,,,,,,"[{'user_id': '40533363', 'username': 'panteraonca07'}, {'user_id': '10228272', 'username': 'YouTube'}]",
1174349416477667328,1174349416477667328,1568821693000,2019-09-18,18:48:13,MSK,1072180336061308928,gagutheaven,Obi Uchenna Laing,,The OTHER Amazon forest fire - that no one is talking about https://www.youtube.com/watch?v=AR6SOTOMwfg&feature=share …,[],['https://www.youtube.com/watch?v=AR6SOTOMwfg&feature=share'],[],0,0,0,[],[],https://twitter.com/GagutHeaven/status/1174349416477667328,False,,0,,,,,,,"[{'user_id': '1072180336061308928', 'username': 'GagutHeaven'}]",
1174349313243324417,1174349313243324417,1568821669000,2019-09-18,18:47:49,MSK,1072180336061308928,gagutheaven,Obi Uchenna Laing,,The other Amazon forest fire - that no one is talking about https://youtu.be/AR6SOTOMwfg via @YouTube,['youtube'],['https://youtu.be/AR6SOTOMwfg'],[],0,0,0,[],[],https://twitter.com/GagutHeaven/status/1174349313243324417,False,,0,,,,,,,"[{'user_id': '1072180336061308928', 'username': 'GagutHeaven'}, {'user_id': '10228272', 'username': 'YouTube'}]",
1174347175234625536,1174347175234625536,1568821159000,2019-09-18,18:39:19,MSK,22069309,dori_talknation,Dori Smith,,"""10 Things You Need to Know About the Fires in the Amazon. A member of the IBAMA forest fire brigade fights fires set in the Amazon rainforest in Novo Progresso, Brazil."" 9/15/19 https://truthout.org/articles/10-things-you-need-to-know-about-the-fires-in-the-amazon/ …",[],['https://truthout.org/articles/10-things-you-need-to-know-about-the-fires-in-the-amazon/'],[],0,0,0,[],[],https://twitter.com/Dori_TalkNation/status/1174347175234625536,False,,0,,,,,,,"[{'user_id': '22069309', 'username': 'Dori_TalkNation'}]",
1174332540603326471,1174331811381616640,1568817670000,2019-09-18,17:41:10,MSK,2563442006,gakurusonia,Sonia,,Amazon forest fire.,['missantre'],[],[],1,0,1,[],[],https://twitter.com/gakurusonia/status/1174332540603326471,False,,0,,,,,,,"[{'user_id': '2563442006', 'username': 'gakurusonia'}, {'user_id': '1370664463', 'username': 'MissAntre'}]",
1174327994980155392,1174327994980155392,1568816586000,2019-09-18,17:23:06,MSK,25081451,saleemulhuq,Saleemul Huq,,The other Amazon forest fire that no-one is talking about. Well done @clareshakya @IIED https://www.channel4.com/news/the-other-amazon-forest-fire-that-no-one-is-talking-about … via @GuillermoGaldos,"['clareshakya', 'iied', 'guillermogaldos']",['https://www.channel4.com/news/the-other-amazon-forest-fire-that-no-one-is-talking-about'],[],0,3,4,[],[],https://twitter.com/SaleemulHuq/status/1174327994980155392,False,,0,,,,,,,"[{'user_id': '25081451', 'username': 'SaleemulHuq'}, {'user_id': '41401476', 'username': 'clareshakya'}, {'user_id': '39719681', 'username': 'IIED'}, {'user_id': '2423981779', 'username': 'GuillermoGaldos'}]",
1174316494055829507,1174316494055829507,1568813844000,2019-09-18,16:37:24,MSK,1149173893157888000,tbsnewsdotnet,The Business Standard,,It's not just the #Amazon: #Indonesia urged to stop deadly fires.. #forest #fire https://tbsnews.net/environment/its-not-just-amazon-indonesia-urged-stop-deadly-fires#.XYIzBOd4h9c.twitter …,[],['https://tbsnews.net/environment/its-not-just-amazon-indonesia-urged-stop-deadly-fires#.XYIzBOd4h9c.twitter'],[],0,0,0,"['#amazon', '#indonesia', '#forest', '#fire']",[],https://twitter.com/tbsnewsdotnet/status/1174316494055829507,False,,0,,,,,,,"[{'user_id': '1149173893157888000', 'username': 'tbsnewsdotnet'}]",
1174312829429669890,1174312829429669890,1568812970000,2019-09-18,16:22:50,MSK,992503812,tkajumba,Tracy C. Kajumba,,The other Amazon forest fire that no-one is talking about. Thanks @clareshakya for your insights. @IIED https://www.channel4.com/news/the-other-amazon-forest-fire-that-no-one-is-talking-about … via @GuillermoGaldos,"['clareshakya', 'iied', 'guillermogaldos']",['https://www.channel4.com/news/the-other-amazon-forest-fire-that-no-one-is-talking-about'],[],0,4,5,[],[],https://twitter.com/TKajumba/status/1174312829429669890,False,,0,,,,,,,"[{'user_id': '992503812', 'username': 'TKajumba'}, {'user_id': '41401476', 'username': 'clareshakya'}, {'user_id': '39719681', 'username': 'IIED'}, {'user_id': '2423981779', 'username': 'GuillermoGaldos'}]",
1174289710841311239,1174289710841311239,1568807458000,2019-09-18,14:50:58,MSK,1125747630,nikitajosephin1,nikita josephine,,The other Amazon forest fire - that no one is talking about https://youtu.be/AR6SOTOMwfg via @YouTube,['youtube'],['https://youtu.be/AR6SOTOMwfg'],[],0,0,0,[],[],https://twitter.com/nikitajosephin1/status/1174289710841311239,False,,0,,,,,,,"[{'user_id': '1125747630', 'username': 'nikitajosephin1'}, {'user_id': '10228272', 'username': 'YouTube'}]",
1174261118782586882,1174261118782586882,1568800642000,2019-09-18,12:57:22,MSK,1180619276,diegomartsch,Diego Martinez-Schütt,,"Last night Channel 4 showed a short documentary and interviewed one of our colleagues about the fires in the Chiquitania #Bolivia. Worth watching: ""The other Amazon forest fire that no-one is talking about"" #SOSChiquitania https://www.channel4.com/news/the-other-amazon-forest-fire-that-no-one-is-talking-about … via @GuillermoGaldos",['guillermogaldos'],['https://www.channel4.com/news/the-other-amazon-forest-fire-that-no-one-is-talking-about'],[],0,0,1,"['#bolivia', '#soschiquitania']",[],https://twitter.com/diegomartsch/status/1174261118782586882,False,,0,,,,,,,"[{'user_id': '1180619276', 'username': 'diegomartsch'}, {'user_id': '2423981779', 'username': 'GuillermoGaldos'}]",
1174245113477894144,1173953358266130433,1568796826000,2019-09-18,11:53:46,MSK,1163044547640741888,lycanroc0192,Lycanroc,,But what I’m saying is that isn’t this controversy getting more and more annoying now a days and is a little outdated? I mean hell there are other things to focus on too like the amazon forest fire but instead people are too ignorant to move on and continue being fucktards.,['suroguner'],[],[],1,0,0,[],[],https://twitter.com/Lycanroc0192/status/1174245113477894144,False,,0,,,,,,,"[{'user_id': '1163044547640741888', 'username': 'Lycanroc0192'}, {'user_id': '902551055283703809', 'username': 'suroguner'}]",
1174217066095763458,1174217066095763458,1568790139000,2019-09-18,10:02:19,MSK,1892551159,beritaapdet,BeritaApdet,,WWF Indonesia: Forest Fire Cause Same as in Amazon https://engteco_science_technology.tempo.co/read/1249266/wwf-indonesia-forest-fire-cause-same-as-in-amazon …,[],['https://engteco_science_technology.tempo.co/read/1249266/wwf-indonesia-forest-fire-cause-same-as-in-amazon'],[],0,0,0,[],[],https://twitter.com/BeritaApdet/status/1174217066095763458,False,,0,,,,,,,"[{'user_id': '1892551159', 'username': 'BeritaApdet'}]",
1174200775758753792,1174200775758753792,1568786255000,2019-09-18,08:57:35,MSK,412819445,tempo_english,Tempo English,,WWF Indonesia: Forest Fire Cause Same as in Amazon http://dlvr.it/RDKrXq pic.twitter.com/NeM8CYy32x,[],['http://dlvr.it/RDKrXq'],['https://pbs.twimg.com/media/EEuZYdsX4AIZpN1.jpg'],0,0,2,[],[],https://twitter.com/tempo_english/status/1174200775758753792,False,,0,,,,,,,"[{'user_id': '412819445', 'username': 'tempo_english'}]",
1174186156709285888,1174186156709285888,1568782769000,2019-09-18,07:59:29,MSK,42343890,pablinaso,Pablo Rivera Zapata,,The OTHER Amazon forest fire - that no one is talking about https://www.youtube.com/watch?v=AR6SOTOMwfg …,[],['https://www.youtube.com/watch?v=AR6SOTOMwfg'],[],0,0,0,[],[],https://twitter.com/pablinaso/status/1174186156709285888,False,,0,,,,,,,"[{'user_id': '42343890', 'username': 'pablinaso'}]",
1174181161897213952,1174181161897213952,1568781578000,2019-09-18,07:39:38,MSK,607779650,lauramarteagasa,LAURAMARTEAGASALINAS,,The OTHER Amazon forest fire - that no one is talking about https://www.youtube.com/watch?v=AR6SOTOMwfg …,[],['https://www.youtube.com/watch?v=AR6SOTOMwfg'],[],0,0,0,[],[],https://twitter.com/LAURAMARTEAGASA/status/1174181161897213952,False,,0,,,,,,,"[{'user_id': '607779650', 'username': 'LAURAMARTEAGASA'}]",
1174180919621705728,1174180919621705728,1568781521000,2019-09-18,07:38:41,MSK,59373997,rahmatrashid,Every Billionare Is A Policy Failure,,The other Amazon forest fire - that no one is talking about https://youtu.be/AR6SOTOMwfg via @YouTube,['youtube'],['https://youtu.be/AR6SOTOMwfg'],[],0,0,0,[],[],https://twitter.com/rahmatrashid/status/1174180919621705728,False,,0,,,,,,,"[{'user_id': '59373997', 'username': 'rahmatrashid'}, {'user_id': '10228272', 'username': 'YouTube'}]",
1174139190075961344,1174139190075961344,1568771572000,2019-09-18,04:52:52,MSK,150403470,amirushe,Amira,,The other Amazon forest fire - that no one is talking about https://youtu.be/AR6SOTOMwfg via @YouTube,['youtube'],['https://youtu.be/AR6SOTOMwfg'],[],0,0,0,[],[],https://twitter.com/amirushe/status/1174139190075961344,False,,0,,,,,,,"[{'user_id': '150403470', 'username': 'amirushe'}, {'user_id': '10228272', 'username': 'YouTube'}]",
1174134001801584647,1174134001801584647,1568770335000,2019-09-18,04:32:15,MSK,944535108,ernsto_87,NETO,,The OTHER Amazon forest fire - that no one is talking about https://www.youtube.com/watch?v=AR6SOTOMwfg …,[],['https://www.youtube.com/watch?v=AR6SOTOMwfg'],[],0,0,0,[],[],https://twitter.com/ernsto_87/status/1174134001801584647,False,,0,,,,,,,"[{'user_id': '944535108', 'username': 'ernsto_87'}]",
1174131980935553024,1174131980935553024,1568769853000,2019-09-18,04:24:13,MSK,74831215,snkscoyote,Cain S. LaTrans,,The other Amazon forest fire - that no one is talking about https://youtu.be/AR6SOTOMwfg via @YouTube,['youtube'],['https://youtu.be/AR6SOTOMwfg'],[],0,0,0,[],[],https://twitter.com/snkscoyote/status/1174131980935553024,False,,0,,,,,,,"[{'user_id': '74831215', 'username': 'snkscoyote'}, {'user_id': '10228272', 'username': 'YouTube'}]",
1174111029250408448,1174111029250408448,1568764857000,2019-09-18,03:00:57,MSK,239456498,sp0rtista,Claudia Gregory 🇧🇴,,Why aren’t you covering this? @CNN @BBCWorld @ABCWorldNews @NBCNightlyNews @EFEnoticias @AP The other #Amazon forest fire - that no one is talking about in #Bolivia & president @evoespueblo continues to refuse to call for National Disaster. #SOSBolivia https://youtu.be/AR6SOTOMwfg ,"['cnn', 'bbcworld', 'abcworldnews', 'nbcnightlynews', 'efenoticias', 'ap', 'evoespueblo']",['https://youtu.be/AR6SOTOMwfg'],[],0,0,0,"['#amazon', '#bolivia', '#sosbolivia']",[],https://twitter.com/Sp0rTista/status/1174111029250408448,False,,0,,,,,,,"[{'user_id': '239456498', 'username': 'Sp0rTista'}, {'user_id': '759251', 'username': 'CNN'}, {'user_id': '742143', 'username': 'BBCWorld'}, {'user_id': '86141342', 'username': 'ABCWorldNews'}, {'user_id': '8839632', 'username': 'NBCNightlyNews'}, {'user_id': '105082141', 'username': 'EFEnoticias'}, {'user_id': '51241574', 'username': 'AP'}, {'user_id': '720786569792253952', 'username': 'evoespueblo'}]",
1174102017784066048,1174102017784066048,1568762709000,2019-09-18,02:25:09,MSK,931944243131711489,polocearnaigh,Paul Nathan Kearney,,Can't believe Emer caused the Amazon forest fire #SheDidIt,[],[],[],0,0,1,['#shedidit'],[],https://twitter.com/PolOCearnaigh/status/1174102017784066048,False,,0,,,,,,,"[{'user_id': '931944243131711489', 'username': 'PolOCearnaigh'}]",
1174098912992530433,1174098912992530433,1568761969000,2019-09-18,02:12:49,MSK,2684590960,saganscience,damien beatty,,The other Amazon forest fire - that no one is talking about https://youtu.be/AR6SOTOMwfg via @YouTube,['youtube'],['https://youtu.be/AR6SOTOMwfg'],[],0,0,0,[],[],https://twitter.com/Saganscience/status/1174098912992530433,False,,0,,,,,,,"[{'user_id': '2684590960', 'username': 'Saganscience'}, {'user_id': '10228272', 'username': 'YouTube'}]",
1174098547718918144,1174097529031577601,1568761882000,2019-09-18,02:11:22,MSK,295151070,panthijeeban,Jeeban💧,,Looks like smoke from amazon forest fire 😂😂,['billpatenauderi'],[],[],0,0,0,[],[],https://twitter.com/panthijeeban/status/1174098547718918144,False,,0,,,,,,,"[{'user_id': '295151070', 'username': 'panthijeeban'}, {'user_id': '2572133359', 'username': 'BillPatenaudeRI'}]",
1174095192057495553,1174095192057495553,1568761082000,2019-09-18,01:58:02,MSK,11765832,revdonna,revdonna,,The other Amazon forest fire - that no one is talking about https://youtu.be/AR6SOTOMwfg via @YouTube,['youtube'],['https://youtu.be/AR6SOTOMwfg'],[],0,0,0,[],[],https://twitter.com/revdonna/status/1174095192057495553,False,,0,,,,,,,"[{'user_id': '11765832', 'username': 'revdonna'}, {'user_id': '10228272', 'username': 'YouTube'}]",
1174071054278565890,1174068860632346624,1568755327000,2019-09-18,00:22:07,MSK,26420516,act4palglobal,#EndSiegeonGaza #israhelp,,"Be nice to get a government, perhaps, again but yup! Even someone I was giving a shout to yesterday, Evo Morales, been caught napping here: ""The other Amazon forest fire that no-one is talking about: - https://www.channel4.com/news/the-other-amazon-forest-fire-that-no-one-is-talking-about …",['junagarhmedia'],['https://www.channel4.com/news/the-other-amazon-forest-fire-that-no-one-is-talking-about'],[],0,0,1,[],[],https://twitter.com/Act4PalGlobal/status/1174071054278565890,False,,0,,,,,,,"[{'user_id': '26420516', 'username': 'Act4PalGlobal'}, {'user_id': '996423161053876224', 'username': 'JunagarhMedia'}]",
1174050444991184896,1174050444991184896,1568750413000,2019-09-17,23:00:13,MSK,14569869,channel4news,Channel 4 News,,The OTHER Amazon forest fire - that no one is talking about. @GuillermoGaldos reports from Bolivia https://www.youtube.com/watch?v=AR6SOTOMwfg …,['guillermogaldos'],['https://www.youtube.com/watch?v=AR6SOTOMwfg'],[],5,35,26,[],[],https://twitter.com/Channel4News/status/1174050444991184896,False,,0,,,,,,,"[{'user_id': '14569869', 'username': 'Channel4News'}, {'user_id': '2423981779', 'username': 'GuillermoGaldos'}]",
1174046971348365316,1174046971348365316,1568749585000,2019-09-17,22:46:25,MSK,1169901198180139008,scientistsx,ScientistsForXR,,The other Amazon forest fire - that no one is talking about https://youtu.be/AR6SOTOMwfg ,[],['https://youtu.be/AR6SOTOMwfg'],[],0,6,6,[],[],https://twitter.com/ScientistsX/status/1174046971348365316,False,,0,,,,,,,"[{'user_id': '1169901198180139008', 'username': 'ScientistsX'}]",
1174034386888593409,1174034386888593409,1568746584000,2019-09-17,21:56:24,MSK,928321219,djjademan,DJ Jademan,,New video by Channel 4 News: The OTHER Amazon forest fire - that no one is talking about https://youtu.be/AR6SOTOMwfg ,[],['https://youtu.be/AR6SOTOMwfg'],[],0,0,0,[],[],https://twitter.com/DJJademan/status/1174034386888593409,False,,0,,,,,,,"[{'user_id': '928321219', 'username': 'DJJademan'}]",
1174021541010558979,1174021541010558979,1568743522000,2019-09-17,21:05:22,MSK,1707233839,kpi6com,KPI6,,#BigData #UseCases: Integrated #Analytics and the Amazon Forest Fire - DZone Big Data https://hubs.ly/H0kPLPK0 ,[],['https://hubs.ly/H0kPLPK0'],[],0,1,3,"['#bigdata', '#usecases', '#analytics']",[],https://twitter.com/kpi6com/status/1174021541010558979,False,,0,,,,,,,"[{'user_id': '1707233839', 'username': 'kpi6com'}]",
1174007307325173760,1174007307325173760,1568740128000,2019-09-17,20:08:48,MSK,4025297419,dhruw_shesh,shesh dhruw,,"#AmazonRainforest Amazon Forest Fire:Even A Month Later Amazon Forest Is Smouldering, And There Is No End At Sight https://www.indiatimes.com/news/world/amazon-forest-has-been-burning-for-more-than-a-month-now-and-there-is-no-end-at-sight-375863.html …",[],['https://www.indiatimes.com/news/world/amazon-forest-has-been-burning-for-more-than-a-month-now-and-there-is-no-end-at-sight-375863.html'],[],1,0,0,['#amazonrainforest'],[],https://twitter.com/dhruw_shesh/status/1174007307325173760,False,,0,,,,,,,"[{'user_id': '4025297419', 'username': 'dhruw_shesh'}]",
1173976002923335681,1173976002923335681,1568732665000,2019-09-17,18:04:25,MSK,3013562257,wydmoza,Moza🍒,,"I need this huge Indonesian forest fire to be as widely covered in the news and on social media as the Amazon fire, thanks https://twitter.com/demianchael2/status/1172382013854076928 …",[],['https://twitter.com/demianchael2/status/1172382013854076928'],[],3,17,26,[],[],https://twitter.com/wydmoza/status/1173976002923335681,False,https://twitter.com/demianchael2/status/1172382013854076928,0,,,,,,,"[{'user_id': '3013562257', 'username': 'wydmoza'}]",
1173973287774195712,1173973287774195712,1568732017000,2019-09-17,17:53:37,MSK,287138372,septianatri3,SAF_hairdryer,,"It hurts a lot seeing Amazon rainforest was on fire, because all the living things there suffered, animals especially. Now in Kalimantan, it's happening. Oh God. If it's some cruel people behind the forest fire, they deserve to in jail for the rest of their life #SaveOurForest",[],[],[],0,0,0,['#saveourforest'],[],https://twitter.com/SeptianaTri3/status/1173973287774195712,False,,0,,,,,,,"[{'user_id': '287138372', 'username': 'SeptianaTri3'}]",
1173961491847868416,1173961491847868416,1568729205000,2019-09-17,17:06:45,MSK,824250907541913600,rojdaclag,Roj Daclag,,"Few weeks ago Amazon Rainforest on Fire 🔥
Now, Indonesia Forest Fire
Effects? Haze naabot nas Pilipinas specially sa Mindanao.",[],[],[],0,0,0,[],[],https://twitter.com/RojDaclag/status/1173961491847868416,False,,0,,,,,,,"[{'user_id': '824250907541913600', 'username': 'RojDaclag'}]",
1173906132353478657,1173906132353478657,1568716006000,2019-09-17,13:26:46,MSK,976850133840097280,bridgie__,Bridgette Dani,,"Whoever’s responsible for the forest fire in Kalimantan, Indonesia don’t, maybe CAN’T learn that climate change is real and that it’s happening this very moment. I mean the Amazon fire should’ve been a wake up call since Borneo is one of the largest rainforests in the world.",[],[],[],0,0,0,[],[],https://twitter.com/bridgie__/status/1173906132353478657,False,,0,,,,,,,"[{'user_id': '976850133840097280', 'username': 'bridgie__'}]",
1173861872858058752,1173861872858058752,1568705454000,2019-09-17,10:30:54,MSK,1058684595858636800,plusve_prn,lomotil,,Guys what are the updates on amazon forest fire?? There are no updates whatsoever on mainstream media or news outlet and I don’t find any new sources about it,[],[],[],0,0,0,[],[],https://twitter.com/plusve_prn/status/1173861872858058752,False,,0,,,,,,,"[{'user_id': '1058684595858636800', 'username': 'plusve_prn'}]",
1173847731762155520,1173363228228743169,1568702082000,2019-09-17,09:34:42,MSK,1014137780274790401,dl65927067,DL,,"exactly why i said monitoring isn't the answer. masalah regulasi gw jg blm mendalami. The main problem is the mindset. People have to open their eyes, our environment is in a critical situation. I hope forest-fire stops this year. From Amazon Forest to ours :(",['iam_mrfrog'],[],[],0,0,1,[],[],https://twitter.com/DL65927067/status/1173847731762155520,False,,0,,,,,,,"[{'user_id': '1014137780274790401', 'username': 'DL65927067'}, {'user_id': '1146557719811256321', 'username': 'iam_mrfrog'}]",
1173773047297216512,1173773047297216512,1568684276000,2019-09-17,04:37:56,MSK,1159820460504178689,ayuthetigress,Ayu🧬💖 || 🎆 B'DAY IN 18 DAYS 🎆,,"Hey guys. Last month we were able to spread awareness regarding the large forest fire that occurred at the Amazon rainforest. Unfortunately, very little attention is being given to two huge forest fires occurring right now at the rainforests of Sumatra and Borneo. pic.twitter.com/GswA1hCiRw",[],[],"['https://pbs.twimg.com/media/EEoUVtNU4AArT5R.jpg', 'https://pbs.twimg.com/media/EEoUVtNU4AEDSJ9.jpg', 'https://pbs.twimg.com/media/EEoUVtPVAAA0lEh.jpg', 'https://pbs.twimg.com/media/EEoUVtPU4AAfQt2.jpg']",1,20,25,[],[],https://twitter.com/AyuTheTigress/status/1173773047297216512,False,,0,,,,,,,"[{'user_id': '1159820460504178689', 'username': 'AyuTheTigress'}]",
1173738661445287936,1173738661445287936,1568676078000,2019-09-17,02:21:18,MSK,966039281046380544,espnwavy,Espn 🏄🏾♂️,,What happened too that amazon forest fire did it stop burning or y’all just found a new trend to hop on 😂??,[],[],[],1,3,2,[],[],https://twitter.com/espnwavy/status/1173738661445287936,False,,0,,,,,,,"[{'user_id': '966039281046380544', 'username': 'espnwavy'}]",
1173714009838837760,1173714009838837760,1568670201000,2019-09-17,00:43:21,MSK,1154518784230735872,rocketthrower,Madison Haley,,New theory: the amazon rain forest fire came straight from hell itself,[],[],[],1,0,1,[],[],https://twitter.com/rocketthrower/status/1173714009838837760,False,,0,,,,,,,"[{'user_id': '1154518784230735872', 'username': 'rocketthrower'}]",
1173705417404252160,1173705417404252160,1568668152000,2019-09-17,00:09:12,MSK,3240063012,lourysela,Lourysela,,So whatever happened to the Amazon forest fire after fashion week ?,[],[],[],1,1,4,[],[],https://twitter.com/lourysela/status/1173705417404252160,False,,0,,,,,,,"[{'user_id': '3240063012', 'username': 'lourysela'}]",
1173673217891782658,1173673217891782658,1568660475000,2019-09-16,22:01:15,MSK,836762874,sxuuuuuu,aretha franklin,,"Amazon Forest Fire:Even A Month Later Amazon Forest Is Smouldering, And There Is No End At Sight https://www.indiatimes.com/news/world/amazon-forest-has-been-burning-for-more-than-a-month-now-and-there-is-no-end-at-sight-375863.html …",[],['https://www.indiatimes.com/news/world/amazon-forest-has-been-burning-for-more-than-a-month-now-and-there-is-no-end-at-sight-375863.html'],[],0,0,0,[],[],https://twitter.com/sxuuuuuu/status/1173673217891782658,False,,0,,,,,,,"[{'user_id': '836762874', 'username': 'sxuuuuuu'}]",
1173662744337207298,1173662744337207298,1568657978000,2019-09-16,21:19:38,MSK,24983937,alexkaseberg,Alex Kaseberg,,"A second accusor has come forward to charge Antonio Brown with sexual misconduct.
You know how they say when there is smoke there is fire? Right now AB has more smoke around him than the Amazon forest fire.",[],[],[],0,0,0,[],[],https://twitter.com/AlexKaseberg/status/1173662744337207298,False,,0,,,,,,,"[{'user_id': '24983937', 'username': 'AlexKaseberg'}]",
1173652445207191556,1173650803481034754,1568655523000,2019-09-16,20:38:43,MSK,236112453,dirtypreachaaa,Sir Daniel William Paul,,Funny how this was reported faster than the Amazon forest fire...,['skynews'],[],[],0,0,2,[],[],https://twitter.com/dirtypreachaaa/status/1173652445207191556,False,,0,,,,,,,"[{'user_id': '236112453', 'username': 'dirtypreachaaa'}, {'user_id': '7587032', 'username': 'SkyNews'}]",
1173616548298272769,1173616548298272769,1568646964000,2019-09-16,18:16:04,MSK,1120495307463086081,2guys1mike,2 Guys 1 Mike Podcast,,#ItWouldBeNiceIf we stopped the amazon rain forest fire... pic.twitter.com/Xl5LYzDEpm,[],[],[],0,0,1,['#itwouldbeniceif'],[],https://twitter.com/2guys1mike/status/1173616548298272769,False,,1,,,,,,,"[{'user_id': '1120495307463086081', 'username': '2guys1mike'}]",
1173580865953259521,1172160669204041728,1568638457000,2019-09-16,15:54:17,MSK,931276119675879424,ghostmagneto,ً,,"Can confirm! He burns down villages, woodland mansions, & forests. Smh my head. I blame him, because he started the Amazon forest fire, smh my head.","['colton_914', 'azererie']",[],[],1,0,2,[],[],https://twitter.com/GhostMagneto/status/1173580865953259521,False,,0,,,,,,,"[{'user_id': '931276119675879424', 'username': 'GhostMagneto'}, {'user_id': '1087364142233800704', 'username': 'Colton_914'}, {'user_id': '811780473236180993', 'username': 'Azererie'}]",
1173573172211245057,1173573172211245057,1568636622000,2019-09-16,15:23:42,MSK,1083705156972077058,faidedddddd,Faidedddddd The Snow,,Amazon Forest Fire Explained! | Peekaboo Shorts | Best Learning Videos F... https://youtu.be/KrkUjc_CGMY via @YouTube SAVE OUR PLANET! PLEASE WATCH U IM WATCHING U,['youtube'],['https://youtu.be/KrkUjc_CGMY'],[],0,0,0,[],[],https://twitter.com/faidedddddd/status/1173573172211245057,False,,0,,,,,,,"[{'user_id': '1083705156972077058', 'username': 'faidedddddd'}, {'user_id': '10228272', 'username': 'YouTube'}]",
1173523311310934016,1173491812738248704,1568624735000,2019-09-16,12:05:35,MSK,4292123654,subrotabose,Subrota Bose,,"There is a sinister plan by humans to finish off this Earth. Pollution of air, water, sea. Deforestation, Amazon burning, forest fire in Australia, earth's temperature going up, bees' death. Imran threatening nuclear war. Holocaust. God save the Earth.
Jai Hind
Jai Shri krishna","['eriksolheim', 'rameshvaghani']",[],[],0,0,0,[],[],https://twitter.com/subrotabose/status/1173523311310934016,False,,0,,,,,,,"[{'user_id': '4292123654', 'username': 'subrotabose'}, {'user_id': '48702842', 'username': 'ErikSolheim'}, {'user_id': '427224282', 'username': 'RameshVaghani'}]",
1173479612271202307,1173460709570748417,1568614316000,2019-09-16,09:11:56,MSK,1123927877865676800,nothorny69,not horny,,Her forehead lose more more cubic miles than the Amazon rain forest fire did,['softwilly'],[],[],1,0,7,[],[],https://twitter.com/nothorny69/status/1173479612271202307,False,,0,,,,,,,"[{'user_id': '1123927877865676800', 'username': 'nothorny69'}, {'user_id': '1101316527784165383', 'username': 'softwilly'}]",
1173411626315341824,1173411227529359361,1568598107000,2019-09-16,04:41:47,MSK,996201604356419584,trt_kenny,TRT_KENNY,,Your streams started the Amazon rain forest fire,['xmxtro_'],[],[],0,0,1,[],[],https://twitter.com/TRT_KENNY/status/1173411626315341824,False,,0,,,,,,,"[{'user_id': '996201604356419584', 'username': 'TRT_KENNY'}, {'user_id': '791724635247304705', 'username': 'xMxtro_'}]",
1173388084081152000,1173388084081152000,1568592494000,2019-09-16,03:08:14,MSK,1055549673925038080,tearatuhura,Te Ara Tūhura,,"My speech week 7 https://pvsmanaakif.blogspot.com/2019/09/my-speech-week-7.html … This week we have been doing a speech about your topic. my topic is the Amazon rain forest fire, The amazon rain forest fire: The Amazon rain forest. The Amazon rain forest is getting burned down b...",[],['https://pvsmanaakif.blogspot.com/2019/09/my-speech-week-7.html'],[],0,0,0,[],[],https://twitter.com/TeAraTuhura/status/1173388084081152000,False,,0,,,,,,,"[{'user_id': '1055549673925038080', 'username': 'TeAraTuhura'}]",
1173376655965818880,1173376655965818880,1568589769000,2019-09-16,02:22:49,MSK,813786146,itsnikkiibaby,nicole🥰,,So what happened with the Amazon forest fire bc I feel like no one talking about it anymore,[],[],[],0,0,0,[],[],https://twitter.com/itsnikkiibaby/status/1173376655965818880,False,,0,,,,,,,"[{'user_id': '813786146', 'username': 'itsnikkiibaby'}]",
1173376429872074758,1173376429872074758,1568589715000,2019-09-16,02:21:55,MSK,1059847330172682240,wantmorenour,Nouriega,,So I just learned today that the Amazon forest fire isn't natural and was caused in order to allow more space for industries.,[],[],[],1,0,1,[],[],https://twitter.com/WantMoreNour/status/1173376429872074758,False,,0,,,,,,,"[{'user_id': '1059847330172682240', 'username': 'WantMoreNour'}]",
1173254488792035328,1173075424282210304,1568560642000,2019-09-15,18:17:22,MSK,3045508825,gupta_prateek43,prometheus4598,,"Thats a weird argument from ur side.
You cant counter certain issue, by saying that other issues exist. Thats like saying ""Why dont you focus on other forests being destroyed"" to people who focus on amazon forest fire.","['zzmav3rickzz', 'daprechatwitch']",[],[],1,0,0,[],[],https://twitter.com/gupta_prateek43/status/1173254488792035328,False,,0,,,,,,,"[{'user_id': '3045508825', 'username': 'gupta_prateek43'}, {'user_id': '4750570992', 'username': 'zZMaV3RiCkZz'}, {'user_id': '3760824255', 'username': 'DaprechaTwitch'}]",
1173247541611237376,1173247541611237376,1568558986000,2019-09-15,17:49:46,MSK,889455080,doctor_hannah,Doctor Hannah,,"I finally got to play ""Just One"" last night. My word was fire. One of the clues was Amazon, they were referring to the fire stick, but I thought of the forest fire. The fire stick didn't even register in my head. I think one of the other clues was combustion?",[],[],[],0,0,0,[],[],https://twitter.com/Doctor_Hannah/status/1173247541611237376,False,,0,,,,,,,"[{'user_id': '889455080', 'username': 'Doctor_Hannah'}]",
1173240867223531520,1172852227800752128,1568557395000,2019-09-15,17:23:15,MSK,852610761079705600,ashishs89292466,Ashish,,It's not call Nuclear bum's Asshole's Porkis r having Hydrogeneic they were the only reason for Amazon Forest Fire 😂😂😂😂 pic.twitter.com/LIdfJwd8p1,['thezaiduleaks'],[],['https://pbs.twimg.com/media/EEgwWT8UwAA_5L6.jpg'],0,0,0,[],[],https://twitter.com/Ashishs89292466/status/1173240867223531520,False,,0,,,,,,,"[{'user_id': '852610761079705600', 'username': 'Ashishs89292466'}, {'user_id': '120451801', 'username': 'TheZaiduLeaks'}]",
1173237584434216960,1173237584434216960,1568556612000,2019-09-15,17:10:12,MSK,871349466,tlamatini_b,Habibi,,I wonder what eventually happened with the Amazon forest fire,[],[],[],1,0,0,[],[],https://twitter.com/tlamatini_B/status/1173237584434216960,False,,0,,,,,,,"[{'user_id': '871349466', 'username': 'tlamatini_B'}]",
1173231859024551936,1173231859024551936,1568555247000,2019-09-15,16:47:27,MSK,1172186160862416896,beardedniga2,Beardedniga2,,"Foreign Journalist : what are your views on Amazon forest fire
Modiji : me bachpan me bohat gareeb tha
Journalist : Arre Yaar , koi reality show pe bhejo re isko",[],[],[],0,8,20,[],[],https://twitter.com/beardedniga2/status/1173231859024551936,False,,0,,,,,,,"[{'user_id': '1172186160862416896', 'username': 'beardedniga2'}]",
1173211653581627392,1172517925439209472,1568550430000,2019-09-15,15:27:10,MSK,779744427984031744,shivajimi,ASP,,"Haha again, comparing orange vs apples. Here we r talking abt Carshed in Aarey, n u r sharing some irrelevant article of Kolhapur!
Good u didnt share article abt amazon forest fire! 😂","['tapasya_natekar', 'chaudharianuja', 'ashwinibhide', 'mumbaimetro3']",[],[],1,0,0,[],[],https://twitter.com/ShivajiMi/status/1173211653581627392,False,,0,,,,,,,"[{'user_id': '779744427984031744', 'username': 'ShivajiMi'}, {'user_id': '786588259669319680', 'username': 'tapasya_natekar'}, {'user_id': '766616293029969920', 'username': 'chaudharianuja'}, {'user_id': '902506685327187968', 'username': 'AshwiniBhide'}, {'user_id': '3285407630', 'username': 'MumbaiMetro3'}]",
1173204361796710400,1173204361796710400,1568548691000,2019-09-15,14:58:11,MSK,479638465,iitasyamunii,TASYA,,"#SaveKalimantan
please spread this forest fire as much as you did for the Amazon😭",[],[],[],0,0,1,['#savekalimantan'],[],https://twitter.com/IITasyamunII/status/1173204361796710400,False,,0,,,,,,,"[{'user_id': '479638465', 'username': 'IITasyamunII'}]",
1173127102909964289,1173127102909964289,1568530271000,2019-09-15,09:51:11,MSK,1166047468582100992,thesecretjourn7,The secret journey of my hamster,,Hamster in Amazon Forest#amazon rainforest fire animals#save amazon forest#fire in amazon forest https://www.youtube.com/watch?v=jEJE83fqc98 …,[],['https://www.youtube.com/watch?v=jEJE83fqc98'],[],0,2,2,[],[],https://twitter.com/Thesecretjourn7/status/1173127102909964289,False,,0,,,,,,,"[{'user_id': '1166047468582100992', 'username': 'Thesecretjourn7'}]",
1173102939096997889,1173102939096997889,1568524510000,2019-09-15,08:15:10,MSK,181238434,abbyhamsome,Ham,,Amazon rainforest fire whole world condemn Brazil. Indonesian forest fire we make memes.,[],[],[],0,0,0,[],[],https://twitter.com/abbyhamsome/status/1173102939096997889,False,,0,,,,,,,"[{'user_id': '181238434', 'username': 'abbyhamsome'}]",
1173081790325710848,1173081790325710848,1568519468000,2019-09-15,06:51:08,MSK,3246621015,juergenkob,Jürgen Kob,,Big Data Use Cases: Integrated Analytics and the Amazon Forest Fire #BigData https://dzone.com/articles/amazon-forest-fire-role-of-big-data-amp-integrated?utm_campaign=EngageSocial&utm_source=Twitter&utm_medium=Twitter_7446&utm_content=CB_Big_Data …,[],['https://dzone.com/articles/amazon-forest-fire-role-of-big-data-amp-integrated?utm_campaign=EngageSocial&utm_source=Twitter&utm_medium=Twitter_7446&utm_content=CB_Big_Data'],[],0,1,1,['#bigdata'],[],https://twitter.com/JuergenKob/status/1173081790325710848,False,,0,,,,,,,"[{'user_id': '3246621015', 'username': 'JuergenKob'}]",
1173051814289108992,1173051814289108992,1568512321000,2019-09-15,04:52:01,MSK,966521663339679744,nitinra85848489,virat kholi,,Amazon forest fire increase at time https://youtu.be/aeNuKnWcOog via @YouTube,['youtube'],['https://youtu.be/aeNuKnWcOog'],[],0,0,0,[],[],https://twitter.com/Nitinra85848489/status/1173051814289108992,False,,0,,,,,,,"[{'user_id': '966521663339679744', 'username': 'Nitinra85848489'}, {'user_id': '10228272', 'username': 'YouTube'}]",
1173012195736793088,1173012195736793088,1568502875000,2019-09-15,02:14:35,MSK,1156381661044465665,gongxindong,共新黨,,"Global government please actively consider large-scale tree planting program, Russia, amazon, Queensland forest fire, the earth oxygen production capacity has been greatly reduced, do not save, the earth under the human activities of 8 billion people, will soon appear hypoxia. pic.twitter.com/sWOk0cemNs",[],[],['https://pbs.twimg.com/media/EEdgVqpXsAAeYyq.jpg'],0,0,0,[],[],https://twitter.com/gongxindong/status/1173012195736793088,False,,0,,,,,,,"[{'user_id': '1156381661044465665', 'username': 'gongxindong'}]",
1172982378853261313,1172982378853261313,1568495766000,2019-09-15,00:16:06,MSK,1079252198939348993,softieshs,𝘈𝘭𝘵𝘩𝘦𝘢 🦋,,"me and my sister will be donating to niall’s fundraiser, she’ll be donating to the amazon forest fire and i’ll be donating to the hurricane dorian one.",[],[],[],0,0,0,[],[],https://twitter.com/softieshs/status/1172982378853261313,False,,0,,,,,,,"[{'user_id': '1079252198939348993', 'username': 'softieshs'}]",
1172950837150306306,1172891735833370630,1568488246000,2019-09-14,22:10:46,MSK,1083383069988540416,mexican_carguy,That Motivator.,,"Im not crying, Its just all the heat from the amazon forest fire makes my eyes dry.",['diana_prince_'],[],[],0,0,0,[],[],https://twitter.com/Mexican_carguy/status/1172950837150306306,False,,0,,,,,,,"[{'user_id': '1083383069988540416', 'username': 'Mexican_carguy'}, {'user_id': '817797539764137984', 'username': 'Diana_Prince_'}]",
1172942591895072768,1172942591895072768,1568486280000,2019-09-14,21:38:00,MSK,1077230058807480320,akash12829796,Akash,,Amazon forest fire is spreading rapidly do something to save environment.,[],[],[],2,0,0,[],[],https://twitter.com/Akash12829796/status/1172942591895072768,False,,0,,,,,,,"[{'user_id': '1077230058807480320', 'username': 'Akash12829796'}]",
1172915453485862913,1172915453485862913,1568479810000,2019-09-14,19:50:10,MSK,949282694957092869,bmughal007,Bilal_mughal007,,"@jairbolsonaro I can help you to control on Amazon forest fire without using a lot thing. I have a plain that we can control at fire easily. And. You can repeat this process in future., in case it's will need.",['jairbolsonaro'],[],[],0,0,0,[],[],https://twitter.com/BMughal007/status/1172915453485862913,False,,0,,,,,,,"[{'user_id': '949282694957092869', 'username': 'BMughal007'}, {'user_id': '128372940', 'username': 'jairbolsonaro'}]",
1172909990140510214,1172909990140510214,1568478507000,2019-09-14,19:28:27,MSK,1088982898751897600,tdtx27izxogxxtp,吉都紀武,,"this truth seriously concerns to the deforestation and forest fire in amazon.
#globalwarming #ClimateStrike #ClimateEmergency #zerowaste https://www.collective-evolution.com/2018/05/10/scientists-discover-that-trees-have-a-heartbeat-too/ …",[],['https://www.collective-evolution.com/2018/05/10/scientists-discover-that-trees-have-a-heartbeat-too/'],[],1,0,0,"['#globalwarming', '#climatestrike', '#climateemergency', '#zerowaste']",[],https://twitter.com/tdtx27IzxogxXtp/status/1172909990140510214,False,,0,,,,,,,"[{'user_id': '1088982898751897600', 'username': 'tdtx27IzxogxXtp'}]",
1172903008293703681,1172903008293703681,1568476843000,2019-09-14,19:00:43,MSK,878820871971889153,pennewstweet,PenNews,,"Heat is great like ‘gates of hell’, journalist covering Amazon forest fire
#AmazonFires #AmazonFire #AmazonRainforest #Amazon #AmazonForest #Amazonia #Amazonas #forest #fire #ChristopherBucktin #Brazil #firefighters #ErnestoAraujo #RosenbergBarbosh https://bit.ly/2mhF1O5 ",[],['https://bit.ly/2mhF1O5'],[],1,0,1,"['#amazonfires', '#amazonfire', '#amazonrainforest', '#amazon', '#amazonforest', '#amazonia', '#amazonas', '#forest', '#fire', '#christopherbucktin', '#brazil', '#firefighters', '#ernestoaraujo', '#rosenbergbarbosh']",[],https://twitter.com/pennewstweet/status/1172903008293703681,False,,0,,,,,,,"[{'user_id': '878820871971889153', 'username': 'pennewstweet'}]",
1172873141254672384,1172866132157419520,1568469722000,2019-09-14,17:02:02,MSK,942287584037703680,_ankahi,🇮🇳🚩Geetanjali 🇮🇳🚩,,"Excellent reading!! 👍🏼
It is indeed problematic when we start taking excessively from Mother Nature!
To pin the responsibility of Amazon forest fire on *excessive beef exports from around the area*, may sound unreasonable to some, but not to the one versed in Vedic wisdom!",['vandanajayrajan'],[],[],0,1,2,[],[],https://twitter.com/_ankahi/status/1172873141254672384,False,,0,,,,,,,"[{'user_id': '942287584037703680', 'username': '_ankahi'}, {'user_id': '3193533494', 'username': 'VandanaJayrajan'}]",
1172867662277488640,1172867662277488640,1568468416000,2019-09-14,16:40:16,MSK,1061234479371636736,kaflesemina,Semina Kafle,,"Institutional robustness and policies in place to deal with urgencies, lessons we should learn from Amazon Forest Fire @dixit_ajaya https://www.nepalitimes.com/opinion/its-a-jungle-out-there-2/ …",['dixit_ajaya'],['https://www.nepalitimes.com/opinion/its-a-jungle-out-there-2/'],[],0,0,2,[],[],https://twitter.com/KafleSemina/status/1172867662277488640,False,,0,,,,,,,"[{'user_id': '1061234479371636736', 'username': 'KafleSemina'}, {'user_id': '4155908838', 'username': 'dixit_ajaya'}]",
1172838678479212544,1172838678479212544,1568461505000,2019-09-14,14:45:05,MSK,1056353090801188865,owningheadlines,Owning Headlines,,"The world couldn't do much when Amazon was turning to ashes and the world is silent again as the forest fire in the South East Asian island of Sumatra has caused another man-made disaster leading to the loss of enormous biodiversity.
#AmazonFire #Sumatra #ClimateChange #Indonesia pic.twitter.com/niGIi5SuJl",[],[],['https://pbs.twimg.com/media/EEbCj_cXUAAYfB6.jpg'],0,0,0,"['#amazonfire', '#sumatra', '#climatechange', '#indonesia']",[],https://twitter.com/OwningHeadlines/status/1172838678479212544,False,,0,,,,,,,"[{'user_id': '1056353090801188865', 'username': 'OwningHeadlines'}]",
1172827031102341130,1172825820110475264,1568458728000,2019-09-14,13:58:48,MSK,284915357,evorely,和风,,Looks like the Amazon forest fire is not enough for these guys.,['mashable'],[],[],0,0,8,[],[],https://twitter.com/evorely/status/1172827031102341130,False,,0,,,,,,,"[{'user_id': '284915357', 'username': 'evorely'}, {'user_id': '972651', 'username': 'mashable'}]",
1172797184053407746,1172797184053407746,1568451612000,2019-09-14,12:00:12,MSK,1306855352,spiffy646,Bob Green,,"Members of the IBAMA forest fire brigade, called Prevfogo, fight burning in the Amazon - https://go.shr.lc/31oVQ9i via @commondreams - it's a token effort. Brazil's President connived with Trump to encourage illegal miners & foresters to set the fires - & they continue to oblige!!",['commondreams'],['https://go.shr.lc/31oVQ9i'],[],0,0,0,[],[],https://twitter.com/Spiffy646/status/1172797184053407746,False,,0,,,,,,,"[{'user_id': '1306855352', 'username': 'Spiffy646'}, {'user_id': '14296273', 'username': 'commondreams'}]",
1172691655951994880,1172691655951994880,1568426452000,2019-09-14,05:00:52,MSK,2279890410,pangkheng,pk,,Amazon forest fire: What it tells us about deforestation https://youtu.be/B5gv4bka5Qg via @YouTube,['youtube'],['https://youtu.be/B5gv4bka5Qg'],[],0,0,1,[],[],https://twitter.com/pangkheng/status/1172691655951994880,False,,0,,,,,,,"[{'user_id': '2279890410', 'username': 'pangkheng'}, {'user_id': '10228272', 'username': 'YouTube'}]",
1172661868558602240,1172661868558602240,1568419351000,2019-09-14,03:02:31,MSK,1082072652368338944,carolynch0,★ carolyn cho ★,, https://justgiving.niallsbirthday.com/ please go support @NiallOfficial he is donating his money to these two meaningful causes: hurricane dorian in the bahamas and the amazon forest fire. he is willing to help our environment and create a better future. ur my inspiration and i love you🥳❤️,['niallofficial'],['https://justgiving.niallsbirthday.com/'],[],0,0,0,[],[],https://twitter.com/carolynch0/status/1172661868558602240,False,,0,,,,,,,"[{'user_id': '1082072652368338944', 'username': 'carolynch0'}, {'user_id': '105119490', 'username': 'NiallOfficial'}]",
1172624028437073920,1172624028437073920,1568410329000,2019-09-14,00:32:09,MSK,218581378,spydatek,known but unknown 🤷🏾♂️,,Anybody know what happened with the amazon forest fire?,[],[],[],1,2,7,[],[],https://twitter.com/SpydaTEK/status/1172624028437073920,False,,0,,,,,,,"[{'user_id': '218581378', 'username': 'SpydaTEK'}]",
1172569513935720449,1172569513935720449,1568397332000,2019-09-13,20:55:32,MSK,2747313316,flickerbyniall,NH2,,"Any amount of donation for Hurricane Dorian & the Amazon Forest fire matters. Please support these two causes that are in need of our help. And if you can't donate then please keep spreading the word on other platforms!
Go to http://justgiving.niallsbirthday.com to donate 💟",[],['http://justgiving.niallsbirthday.com'],[],0,0,1,[],[],https://twitter.com/FlickerbyNiall/status/1172569513935720449,False,,0,,,,,,,"[{'user_id': '2747313316', 'username': 'FlickerbyNiall'}]",
1172536704974151681,1172536704974151681,1568389509000,2019-09-13,18:45:09,MSK,876864066190536705,brazilianreport,The Brazilian Report,,"In a meeting with investors in Washington today, Foreign Min. Ernesto Araújo said that satellites can't differ between a campfire and a forest fire, @folha reports. He claimed that fires in the Amazon are leveling out to the average level from the past 15 years. #BrazilianReport pic.twitter.com/3xvLhSWa30",['folha'],[],['https://pbs.twimg.com/media/EEWv6ykWkAAfjQw.jpg'],1,1,5,['#brazilianreport'],[],https://twitter.com/BrazilianReport/status/1172536704974151681,False,,0,,,,,,,"[{'user_id': '876864066190536705', 'username': 'BrazilianReport'}, {'user_id': '14594813', 'username': 'folha'}]",
1172515554067984385,1172515554067984385,1568384467000,2019-09-13,17:21:07,MSK,1151625942827225088,morsevibes,Morse,,"UPDATE: ReMorse Mode
Enable ReMorse Mode in the settings. It adds surveys to the global room which donates 30 cents to Amazon Forest Fire restoration. We have 700 downloads! Hopefully this brings more people to the global room. If everyone did this once, we'd have $210! #morse pic.twitter.com/fYuEH6AfG0",[],[],['https://pbs.twimg.com/media/EEWcrixWwAEerzj.jpg'],0,0,0,['#morse'],[],https://twitter.com/MorseVibes/status/1172515554067984385,False,,0,,,,,,,"[{'user_id': '1151625942827225088', 'username': 'MorseVibes'}]",
1172513269833240578,1172513269833240578,1568383922000,2019-09-13,17:12:02,MSK,107726222,hironamekawa,Hirochika Namekawa,,"🇯🇵#Japan has decided to provide emergency assistance (tents, sleeping pads, etc.) through JICA, in response to a request from 🇧🇷#Brazil concerning forest fire in the #Amazon rainforest.
https://www.mofa.go.jp/press/release/press4e_002622.html …
#AmazonFires",[],['https://www.mofa.go.jp/press/release/press4e_002622.html'],[],0,0,0,"['#japan', '#brazil', '#amazon', '#amazonfires']",[],https://twitter.com/HiroNamekawa/status/1172513269833240578,False,,0,,,,,,,"[{'user_id': '107726222', 'username': 'HiroNamekawa'}]",
1172508955324702720,1172508955324702720,1568382893000,2019-09-13,16:54:53,MSK,3023191076,leonidaslemonis,Another snarky smartass,,"Is the amazon forest fire even over yet? Did anybody else notice that everyone gave a shit for like 3 minutes and then forgot about it? Goddamn it, I hate the internet.",[],[],[],1,1,3,[],[],https://twitter.com/LeonidasLemonis/status/1172508955324702720,False,,0,,,,,,,"[{'user_id': '3023191076', 'username': 'LeonidasLemonis'}]",
1172490968345403392,1172490968345403392,1568378605000,2019-09-13,15:43:25,MSK,836236663701413888,rasunartii,R.A. Sunarti🔯🕉️☪️✝️⚛️👍,,"#SaveNallamallaForest
Save tree
👇
Save life
👇
Save forest
👇
Forest is the Part of life,
Nobody forgot the recent incident of Amazon forest fire 🔥🔥.
@NallamallaF
@WRITER_SAINIK pic.twitter.com/8N69bt58U4","['nallamallaf', 'writer_sainik']",[],['https://pbs.twimg.com/media/EEWGUfIUwAEm36Y.jpg'],0,6,5,['#savenallamallaforest'],[],https://twitter.com/RASunartii/status/1172490968345403392,False,,0,,,,,,,"[{'user_id': '836236663701413888', 'username': 'RASunartii'}, {'user_id': '1169207751253217280', 'username': 'NallamallaF'}, {'user_id': '372180741', 'username': 'WRITER_SAINIK'}]",
1172483103098585088,1172483103098585088,1568376730000,2019-09-13,15:12:10,MSK,987795615747858433,strstrckphoto,Casey B.,,"Happy 26th Birthday @NiallOfficial!! Hope it's a fantastic year!
Join Niall for his birthday in supporting two very important causes: Hurricane Dorian Relief in the Bahamas and the Amazon Forest Fire Assistance. http://justgiving.niallsbirthday.com #HappyBirthdayNiall pic.twitter.com/eHl8WcHmI7",['niallofficial'],['http://justgiving.niallsbirthday.com'],"['https://pbs.twimg.com/media/EEV_Kc2XoAEiLQT.jpg', 'https://pbs.twimg.com/media/EEV_Kc-WwAECxHr.jpg']",0,0,0,['#happybirthdayniall'],[],https://twitter.com/StrStrckPhoto/status/1172483103098585088,False,,0,,,,,,,"[{'user_id': '987795615747858433', 'username': 'StrStrckPhoto'}, {'user_id': '105119490', 'username': 'NiallOfficial'}]",
1172481370976919552,1172481370976919552,1568376317000,2019-09-13,15:05:17,MSK,1163783773621587968,florencep08,The Savvy Freelance Mom,,"Global News: Amazon forest fire: What it tells us about deforestation
#Amazon #AmazonFires #AmazonRainforest http://ow.ly/LK5W50vYh2x ",[],['http://ow.ly/LK5W50vYh2x'],[],1,0,1,"['#amazon', '#amazonfires', '#amazonrainforest']",[],https://twitter.com/FlorenceP08/status/1172481370976919552,False,,0,,,,,,,"[{'user_id': '1163783773621587968', 'username': 'FlorenceP08'}]",
1172477738470367232,1172477738470367232,1568375451000,2019-09-13,14:50:51,MSK,418414390,dianaprkr,Diana,,"Report by @MAAProject using @UMD_GLAD data finds most Brazilian Amazon fires aren’t in standing forests but areas cleared earlier this year. Fire is used to remove debris after clearing, which causes intense smoke, similar to a forest fire. https://news.mongabay.com/2019/09/brazilian-amazon-fires-scientifically-linked-to-2019-deforestation-report/ …","['maaproject', 'umd_glad']",['https://news.mongabay.com/2019/09/brazilian-amazon-fires-scientifically-linked-to-2019-deforestation-report/'],[],0,0,0,[],[],https://twitter.com/dianaprkr/status/1172477738470367232,False,,0,,,,,,,"[{'user_id': '418414390', 'username': 'dianaprkr'}, {'user_id': '3092570578', 'username': 'MAAProject'}, {'user_id': '3515415867', 'username': 'UMD_GLAD'}]",
1172474788415062016,1172474788415062016,1568374747000,2019-09-13,14:39:07,MSK,4844527927,ivnrdq_,ً,,"""you're defending gay rights, so you're gay."" what, so you defending the amazon forest fire doesn't make you a tree, does it?",[],[],[],1,11,26,[],[],https://twitter.com/ivnrdq_/status/1172474788415062016,False,,0,,,,,,,"[{'user_id': '4844527927', 'username': 'ivnrdq_'}]",
1172468222580289538,1172468222580289538,1568373182000,2019-09-13,14:13:02,MSK,538203265,munna1620,Domecrtic Comrade,,@urstrulyMahesh Amazon forest fire gurinchi avedhana untundi... but Mana #State lo #nallamala Forest gurinchi no tweet no responsibility. Do you really think it's against #TRS or #KTR. I really like the way you help society for some reasons but I really don't like u 4 sm reasns,['urstrulymahesh'],[],[],0,1,1,"['#state', '#nallamala', '#trs', '#ktr']",[],https://twitter.com/munna1620/status/1172468222580289538,False,,0,,,,,,,"[{'user_id': '538203265', 'username': 'munna1620'}, {'user_id': '129786468', 'username': 'urstrulyMahesh'}]",
1172441674825388033,673802009842200576,1568366852000,2019-09-13,12:27:32,MSK,173384793,johna_f_m,JohnFM,,"That’s not what the science says John. Quite a lot of data analysis going on with US hurricane data and, of course, Amazon forest fire data. None has a AGW signal in the data.","['johndoole', 'martindaubney', 'jamesdelingpole']",[],[],0,0,3,[],[],https://twitter.com/JohnA_F_M/status/1172441674825388033,False,,0,,,,,,,"[{'user_id': '173384793', 'username': 'JohnA_F_M'}, {'user_id': '19344684', 'username': 'JohnDoole'}, {'user_id': '568143078', 'username': 'MartinDaubney'}, {'user_id': '15798091', 'username': 'JamesDelingpole'}]",
1172424680486998016,1172424680486998016,1568362801000,2019-09-13,11:20:01,MSK,1062108319,gmail_08,Angenius,,"Copied
The amazon rain forest fire is heart breaking.. just a reminder that it is 100% man made for the meat industry.",[],[],[],0,0,0,[],[],https://twitter.com/gmail_08/status/1172424680486998016,False,,0,,,,,,,"[{'user_id': '1062108319', 'username': 'gmail_08'}]",
1172406259850473473,1172402373643272192,1568358409000,2019-09-13,10:06:49,MSK,51981914,paledian,Paledi Mothapo,,Much more like the Amazon Fire tablets didn’t allow us to google search the real Amazon forest fire... pic.twitter.com/jdrTGaeSBp,"['leftylee_', 'realblackcoffee']",[],['https://pbs.twimg.com/media/EEU5RWAU8AgO1DV.jpg'],1,1,1,[],[],https://twitter.com/Paledian/status/1172406259850473473,False,,0,,,,,,,"[{'user_id': '51981914', 'username': 'Paledian'}, {'user_id': '859336650454970368', 'username': 'LeftyLee_'}, {'user_id': '42458882', 'username': 'RealBlackCoffee'}]",
1172367385388445698,1172367385388445698,1568349140000,2019-09-13,07:32:20,MSK,842778577955426304,kondalrao8888,kr888,,"#savenallamalla
@anandmahindra
@alluarjun @ncbn @AadhiHyper @IamSaiDharamTej
When We give deep condolences to the amazon forest fire..Then why can't we extend our support for the near by #Nallamallaforest in AP & TELANGANA
#stopuraniummining pic.twitter.com/XKQQKDdS90","['anandmahindra', 'alluarjun', 'ncbn', 'aadhihyper', 'iamsaidharamtej']",[],['https://pbs.twimg.com/media/EEUV6xtU4AI8BFW.jpg'],0,0,0,"['#savenallamalla', '#nallamallaforest', '#stopuraniummining']",[],https://twitter.com/Kondalrao8888/status/1172367385388445698,False,,0,,,,,,,"[{'user_id': '842778577955426304', 'username': 'Kondalrao8888'}, {'user_id': '34197952', 'username': 'anandmahindra'}, {'user_id': '3138637447', 'username': 'alluarjun'}, {'user_id': '85221650', 'username': 'ncbn'}, {'user_id': '939717849232240640', 'username': 'AadhiHyper'}, {'user_id': '3324117014', 'username': 'IamSaiDharamTej'}]",
1172343678322364416,1172330356487286784,1568343488000,2019-09-13,05:58:08,MSK,135029737,sasharenee23,Sasha Renee,,Smh the mods need to ask better climate questions rather than abt the individual imperative to be vegan. No one is going to take your burgers. Burning down the Amazon for farms is a real issue as there’s still a massive forest fire!,['theijr'],[],[],0,0,0,[],[],https://twitter.com/Sasharenee23/status/1172343678322364416,False,,0,,,,,,,"[{'user_id': '135029737', 'username': 'Sasharenee23'}, {'user_id': '474464413', 'username': 'TheIJR'}]",
1172327974256832513,1172327974256832513,1568339744000,2019-09-13,04:55:44,MSK,1084955266339258368,katyflicker,Put a little love on Katy,,"NIALL’S BIRTHDAY WISH IS THAT WE WILL SUPPORT TWO CAUSES, THE HURRICANE DORIAN IN THE BAHAMAS AND FOREST FIRE IN THE AMAZON, HE REQUESTED THAT WE DONATE WHAT WE COULD AND THAT HE WOULD ALSO DO IT, NALL IS AN ANGEL WE DONT DESERVE HIM.",[],[],[],0,0,3,[],[],https://twitter.com/katyflicker/status/1172327974256832513,False,,0,,,,,,,"[{'user_id': '1084955266339258368', 'username': 'katyflicker'}]",
1172324339045294080,1172324339045294080,1568338877000,2019-09-13,04:41:17,MSK,1029340995350085632,popalertmedia,Pop Alerts Media,,"Selena Gomez shares @NiallOfficial’s birthday post about donating to important causes on his birthday:
• The Amazon forest fire
• Hurricane Dorian pic.twitter.com/cEGFE9BdjF",['niallofficial'],[],"['https://pbs.twimg.com/media/EETuxMVU0AAzksB.jpg', 'https://pbs.twimg.com/media/EETuxMTU0AAnrVU.jpg']",0,12,36,[],[],https://twitter.com/PopAlertMedia/status/1172324339045294080,False,,0,,,,,,,"[{'user_id': '1029340995350085632', 'username': 'PopAlertMedia'}, {'user_id': '105119490', 'username': 'NiallOfficial'}]",
1172232358663049216,1172232358663049216,1568316947000,2019-09-12,22:35:47,MSK,232215164,doubleouhseven,Gatis Kandis,,Permaisuri agong deleting twitter sparks a huge outrage. Wished it was the same for the amazon forest fire brah,[],[],[],0,0,5,[],[],https://twitter.com/DoubleOuhSeven/status/1172232358663049216,False,,0,,,,,,,"[{'user_id': '232215164', 'username': 'DoubleOuhSeven'}]",
1172222618448977920,1172222618448977920,1568314625000,2019-09-12,21:57:05,MSK,1169283255624822784,darienbui224,Anh Bui,,"Amazon forest fire has been a breaking news for the last few weeks. It is of great concern for all of us because of its significance in maintaining the environment. Here's an article about its origin.
https://globalnews.ca/news/5794191/amazon-rainforest-fire-explained/ …
#3articlesassignment
#ajrCOMM2099",[],['https://globalnews.ca/news/5794191/amazon-rainforest-fire-explained/'],[],0,1,1,"['#3articlesassignment', '#ajrcomm2099']",[],https://twitter.com/DarienBui224/status/1172222618448977920,False,,0,,,,,,,"[{'user_id': '1169283255624822784', 'username': 'DarienBui224'}]",
1172204758419025920,1172204758419025920,1568310367000,2019-09-12,20:46:07,MSK,2492739572,24funme,24fun,,I think there are more memes on Amazon forest fire than articles covering it By… https://www.24fun.me/i-think-there-are-more-memes-on-amazon-forest-fire-than-articles-covering-itby/ …,[],['https://www.24fun.me/i-think-there-are-more-memes-on-amazon-forest-fire-than-articles-covering-itby/'],[],0,0,0,[],[],https://twitter.com/24funme/status/1172204758419025920,False,,0,,,,,,,"[{'user_id': '2492739572', 'username': '24funme'}]",
1172158908821057536,1172158908821057536,1568299436000,2019-09-12,17:43:56,MSK,85789823,ferrarixx,Aqeel Shahzad,,"If You think the Amazon Forest Fire was bad, imagine being late to a team gathering paid for by the boss because you had to do overtime that day.",[],[],[],1,0,3,[],[],https://twitter.com/Ferrarixx/status/1172158908821057536,False,,0,,,,,,,"[{'user_id': '85789823', 'username': 'Ferrarixx'}]",
1172140839809585157,1172137932859351040,1568295128000,2019-09-12,16:32:08,MSK,4830796004,mauroyamaguchi,Mauro,,I thought it was only in the Brazil's Amazon that there was a forest fire.,['bbcworld'],[],[],0,0,1,[],[],https://twitter.com/mauroyamaguchi/status/1172140839809585157,False,,0,,,,,,,"[{'user_id': '4830796004', 'username': 'mauroyamaguchi'}, {'user_id': '742143', 'username': 'BBCWorld'}]",
1172042181135126528,1172042181135126528,1568271606000,2019-09-12,10:00:06,MSK,2843396336,pprabhu18,Prabhakar P,,Is Blackstone behind Amazon rain forest fire ?,[],[],[],0,0,0,[],[],https://twitter.com/PPrabhu18/status/1172042181135126528,False,,0,,,,,,,"[{'user_id': '2843396336', 'username': 'PPrabhu18'}]",
1172031167547215873,1172031167547215873,1568268980000,2019-09-12,09:16:20,MSK,1447038529,nurphoto,NurPhoto,,"""Amazon Forest Fire"" https://www.nurphoto.com/en/gallery/233798 … pic.twitter.com/fzHuwv8Ycx",[],['https://www.nurphoto.com/en/gallery/233798'],['https://pbs.twimg.com/media/EEPkIsZW4AAKwY_.jpg'],0,0,2,[],[],https://twitter.com/NurPhoto/status/1172031167547215873,False,,0,,,,,,,"[{'user_id': '1447038529', 'username': 'NurPhoto'}]",
1171986641705029632,1171823379780964352,1568258364000,2019-09-12,06:19:24,MSK,815779579,rahangdaler,Rahul Rahangdale,,"Also in the case of Amazon Forest fire, Brazil has done exceptionally well in recent years. Forest fires are common in Amazon Rainforest. Ask those developed nations to cut their emissions first. Then catch Brazil.","['iknowiamwrongbt', 'amnesty', 'un_hrc']",[],[],0,0,0,[],[],https://twitter.com/rahangdaler/status/1171986641705029632,False,,0,,,,,,,"[{'user_id': '815779579', 'username': 'rahangdaler'}, {'user_id': '946041004347613184', 'username': 'IknowIamwrongbt'}, {'user_id': '18213483', 'username': 'amnesty'}, {'user_id': '70985635', 'username': 'UN_HRC'}]",
1171970290353618945,1171966810037600257,1568254466000,2019-09-12,05:14:26,MSK,756093306644246528,memedez_,Memedez 🅙,,Those are not clouds. That is smoke from the Amazon Forest Fire. We have to do something Nathan 😭,['wariorfankd35'],[],[],0,0,3,[],[],https://twitter.com/Memedez_/status/1171970290353618945,False,,0,,,,,,,"[{'user_id': '756093306644246528', 'username': 'Memedez_'}, {'user_id': '867473510205181953', 'username': 'WariorfanKd35'}]",
1171952074940022790,1171952074940022790,1568250123000,2019-09-12,04:02:03,MSK,77613034,perudaily,Peru Daily News 🇵🇪,,"Amazon forest fire: Peru, Colombia propose emergency summit to protect world’s largest rainforest - The Financial Express http://dlvr.it/RCwlqq pic.twitter.com/QJ2sDSEcGw",[],['http://dlvr.it/RCwlqq'],['https://pbs.twimg.com/media/EEOcM3_UcAIq2NE.jpg'],0,0,1,[],[],https://twitter.com/PeruDaily/status/1171952074940022790,False,,0,,,,,,,"[{'user_id': '77613034', 'username': 'PeruDaily'}]",
1171868853137268737,1171868853137268737,1568230281000,2019-09-11,22:31:21,MSK,213667930,ssnonii,Kim,,#NeverForget the amazon Forest Fire #NeverForget the poor and homeless people #NeverForget all the victims of the mass shooting,[],[],[],0,0,0,"['#neverforget', '#neverforget', '#neverforget']",[],https://twitter.com/SSNoNii/status/1171868853137268737,False,,0,,,,,,,"[{'user_id': '213667930', 'username': 'SSNoNii'}]",
1171856910225555456,1171856910225555456,1568227434000,2019-09-11,21:43:54,MSK,313862119,ravindrasoni1,Ravindra Soni,,Siddha Group Organised Tree Plantation Drive To Raise Awareness over Amazon Forest Fire Outbreak http://businessfortnight.com/siddha-group-organised-tree-plantation-drive-to-raise-awareness-over-amazon-forest-fire-outbreak/ … pic.twitter.com/HPk0px0gFN,[],['http://businessfortnight.com/siddha-group-organised-tree-plantation-drive-to-raise-awareness-over-amazon-forest-fire-outbreak/'],['https://pbs.twimg.com/media/EENFpkyUYAARY9p.jpg'],0,0,0,[],[],https://twitter.com/RavindraSoni1/status/1171856910225555456,False,,0,,,,,,,"[{'user_id': '313862119', 'username': 'RavindraSoni1'}]",
1171837041874653184,1171837041874653184,1568222697000,2019-09-11,20:24:57,MSK,65292002,bruce3porter,Bruce E. Porter,,Ever had a forest fire in your state Peter? Democratic congressman DeFazio presented a bill in the U.S. House on 8/10 to ban the import of some Brazilian products in response to the increase in forest fires in the Amazon.,[],[],[],0,0,0,[],[],https://twitter.com/bruce3porter/status/1171837041874653184,False,,0,,,,,,,"[{'user_id': '65292002', 'username': 'bruce3porter'}]",
1171833381975408640,1171833381975408640,1568221824000,2019-09-11,20:10:24,MSK,1177077830,abraham7mendoza,Papa Abe 😈 (82%),,"People are talking about the new iPhone.. I’m still talking about the financial bubble our country is on (and ready to pop) along with the fact that America hasn’t even tried helping with the Amazon forest fire. Everyone is sleeping at the wheel, y’all will crash and burn soon 🤷🏻♂️",[],[],[],0,0,0,[],[],https://twitter.com/Abraham7Mendoza/status/1171833381975408640,False,,0,,,,,,,"[{'user_id': '1177077830', 'username': 'Abraham7Mendoza'}]",
1171792516292710400,1171792516292710400,1568212081000,2019-09-11,17:28:01,MSK,64993215,upmglobal,UPM,,"While UPM does not source wood from or have any forestry operations in the Amazon region, lessons can be learned from our forest fire prevention measures in Finland and Uruguay. #forestfireprevention #forestfires #sustainableforestry https://bit.ly/2ZUN0Ts ",[],['https://bit.ly/2ZUN0Ts'],[],0,1,7,"['#forestfireprevention', '#forestfires', '#sustainableforestry']",[],https://twitter.com/UPMGlobal/status/1171792516292710400,False,,0,,,,,,,"[{'user_id': '64993215', 'username': 'UPMGlobal'}]",
1171791481318903808,1171791481318903808,1568211834000,2019-09-11,17:23:54,MSK,44313316,green_heart,Erik van Lennep,,Not just the Amazon- Hundreds of schools shut as forest-fire haze blankets SE Asia https://phys.org/news/2019-09-hundreds-schools-forest-fire-haze-blankets.html … via @physorg_com,['physorg_com'],['https://phys.org/news/2019-09-hundreds-schools-forest-fire-haze-blankets.html'],[],0,0,0,[],[],https://twitter.com/Green_Heart/status/1171791481318903808,False,,0,,,,,,,"[{'user_id': '44313316', 'username': 'Green_Heart'}, {'user_id': '17248121', 'username': 'physorg_com'}]",
1171778201955078144,1171778201955078144,1568208668000,2019-09-11,16:31:08,MSK,1033771356473634816,justlearning_in,JustLearning,,"We all have witnessed how horrific forest fire can be with the recent Amazon fire that happened in Brazil. Himangi and Sendra made an effective model save our forests from dying. Watch now!
#forest #nature #trees #mountain #fire #amazon #justlearning pic.twitter.com/nKC6r5DlhY",[],[],[],0,0,0,"['#forest', '#nature', '#trees', '#mountain', '#fire', '#amazon', '#justlearning']",[],https://twitter.com/justlearning_in/status/1171778201955078144,False,,1,,,,,,,"[{'user_id': '1033771356473634816', 'username': 'justlearning_in'}]",
1171774425227653120,1171773755628015616,1568207768000,2019-09-11,16:16:08,MSK,59974031,bella_dora,.,,"I’m sad that no one talk about the forest fire as much as amazon, i know the scale is smaller but have you seen the small farmer doing their best to make the fire goes? This is them trying to fight the fire 😭 pic.twitter.com/gNILPKnA5a",[],[],['https://pbs.twimg.com/media/EEL6n3iUUAAqPQs.jpg'],0,1,3,[],[],https://twitter.com/Bella_Dora/status/1171774425227653120,False,,0,,,,,,,"[{'user_id': '59974031', 'username': 'Bella_Dora'}]",
1171773755628015616,1171773755628015616,1568207608000,2019-09-11,16:13:28,MSK,59974031,bella_dora,.,,"Guys on the behalf of Indonesia i’m so sorry for the haze, our govt are too busy with their fucking plan to move capital city and to criminalise rape victims. Please do know that this haze is the result of forest fire. Just like amazon, our forest is also on fire.",[],[],[],2,1,4,[],[],https://twitter.com/Bella_Dora/status/1171773755628015616,False,,0,,,,,,,"[{'user_id': '59974031', 'username': 'Bella_Dora'}]",