-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbrazil amazon.csv
We can't make this file beautiful and searchable because it's too large.
2177 lines (1966 loc) · 860 KB
/
brazil amazon.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
1205557529910087681,1205556730366746624,1576262287000,2019-12-13,21:38:07,MSK,1126906365207879680,niggarmy,diego PREY FOR GOTHAM,,the streams don’t count but for example if i buy an album from amazon US and ship it to Brazil doesn’t it help on bb200?,['relofhope'],[],[],1,0,0,[],[],https://twitter.com/niggarmy/status/1205557529910087681,False,,0,,,,,,,"[{'user_id': '1126906365207879680', 'username': 'niggarmy'}, {'user_id': '919413370050285568', 'username': 'RElOFHOPE'}]",
1205557275181682689,1205508490887868416,1576262227000,2019-12-13,21:37:07,MSK,1172373961390166016,jeromeleveque01,Jerome Leveque - Zeus🌩,,"I was suppose to blow her mind....
Justice League the Amazon......
Brazil rejected fundings
I am Mauritius (Moris) Born, British- American
Bo Selecta...","['seismicuprising', 'thenation']",[],[],0,0,0,[],[],https://twitter.com/JeromeLeveque01/status/1205557275181682689,False,,0,,,,,,,"[{'user_id': '1172373961390166016', 'username': 'JeromeLeveque01'}, {'user_id': '1201884346912657408', 'username': 'SeismicUprising'}, {'user_id': '1947301', 'username': 'thenation'}]",
1205556066693443584,1205556065670008832,1576261939000,2019-12-13,21:32:19,MSK,1586388810,dnepstad1,Dan Nepstad,,"Brazil has demonstrated that nature-based solutions can be huge, avoiding emissions of 7 billion tCO2 by slowing loss of Amazon and Cerrado forests. And Brazil demonstrates why we need more finance: only 3% of these 7GtCO2 avoided emissions have been compensated. 2/",[],[],[],1,0,0,[],[],https://twitter.com/dnepstad1/status/1205556066693443584,False,,0,,,,,,,"[{'user_id': '1586388810', 'username': 'dnepstad1'}]",
1205555522340040704,1205220013034094592,1576261809000,2019-12-13,21:30:09,MSK,1089532729161641984,almir25480967,Almir,,"you from the old continent destroyed your forests and natural wealth, so forget about the Amazon and Brazil.",['gretathunberg'],[],[],0,0,0,[],[],https://twitter.com/Almir25480967/status/1205555522340040704,False,,0,,,,,,,"[{'user_id': '1089532729161641984', 'username': 'Almir25480967'}, {'user_id': '1006419421244678144', 'username': 'GretaThunberg'}]",
1205555478488592390,1205500771715952640,1576261798000,2019-12-13,21:29:58,MSK,1089532729161641984,almir25480967,Almir,,"you from the old continent destroyed your forests and natural wealth, so forget about the Amazon and Brazil.",['gretathunberg'],[],[],0,0,0,[],[],https://twitter.com/Almir25480967/status/1205555478488592390,False,,0,,,,,,,"[{'user_id': '1089532729161641984', 'username': 'Almir25480967'}, {'user_id': '1006419421244678144', 'username': 'GretaThunberg'}]",
1205552595223355392,1205552296161095682,1576261111000,2019-12-13,21:18:31,MSK,401639900,mwdyslive,sabr!na,,@LanaParrilla Did you go to visit the Amazon rainforest?🌳 🇧🇷 #Brazil,['lanaparrilla'],[],[],0,0,0,['#brazil'],[],https://twitter.com/mwdyslive/status/1205552595223355392,False,,0,,,,,,,"[{'user_id': '401639900', 'username': 'mwdyslive'}, {'user_id': '129400817', 'username': 'LanaParrilla'}]",
1205551751446745094,1205551751446745094,1576260910000,2019-12-13,21:15:10,MSK,1158682640,enclave_la,EnClave.LA,,Amazon indigenous leaders killed in Brazil drive-by shooting https://www.theguardian.com/world/2019/dec/08/amazon-indigenous-leaders-killed-in-brazil-drive-by-shooting?CMP=share_btn_tw …,[],['https://www.theguardian.com/world/2019/dec/08/amazon-indigenous-leaders-killed-in-brazil-drive-by-shooting?CMP=share_btn_tw'],[],0,0,0,[],[],https://twitter.com/EnClave_LA/status/1205551751446745094,False,,0,,,,,,,"[{'user_id': '1158682640', 'username': 'EnClave_LA'}]",
1205548095641182209,1205548095641182209,1576260038000,2019-12-13,21:00:38,MSK,2189900911,gibstockex,GSX Limited,,Brazil are hoping that the demand for green debt will raise funds for the $3.1 billion Amazon crossing railway. http://ow.ly/d8JS50xzak3 ,[],['http://ow.ly/d8JS50xzak3'],[],0,0,0,[],[],https://twitter.com/GibStockEx/status/1205548095641182209,False,,0,,,,,,,"[{'user_id': '2189900911', 'username': 'GibStockEx'}]",
1205547935213084673,1205547935213084673,1576260000000,2019-12-13,21:00:00,MSK,196965482,brecordernews,Business Recorder,,"The move comes almost a year after the US e-commerce giant launched its first in-house fulfillment and delivery network in Brazil.
#UnitedStates #Brazil #Amazon #Ecommerce
https://www.brecorder.com/2019/12/13/552691/amazon-com-to-open-distribution-center-in-northeastern-brazil-in-2020/ … pic.twitter.com/C5sP1fJWuX",[],['https://www.brecorder.com/2019/12/13/552691/amazon-com-to-open-distribution-center-in-northeastern-brazil-in-2020/'],['https://pbs.twimg.com/media/ELqeBVXWkAE-7OT.jpg'],0,0,0,"['#unitedstates', '#brazil', '#amazon', '#ecommerce']",[],https://twitter.com/brecordernews/status/1205547935213084673,False,,0,,,,,,,"[{'user_id': '196965482', 'username': 'brecordernews'}]",
1205543562785542144,1205543562785542144,1576258957000,2019-12-13,20:42:37,MSK,2517152450,impalaprints,ImpalaPrints,,Excited to share the latest addition to my #etsy shop: On the Banks of the Amazon From its Sources to the sea illustrated Vintage 1914 Antique Travel Brazil Book Hardback British https://etsy.me/36ys702 #booksandzines #book #vintage #vintagebook #giftbook #victory #vin pic.twitter.com/Wy31GOmVNj,[],['https://etsy.me/36ys702'],['https://pbs.twimg.com/media/ELrzev4W4AA-Wgd.jpg'],0,0,0,"['#etsy', '#booksandzines', '#book', '#vintage', '#vintagebook', '#giftbook', '#victory', '#vin']",[],https://twitter.com/ImpalaPrints/status/1205543562785542144,False,,0,,,,,,,"[{'user_id': '2517152450', 'username': 'ImpalaPrints'}]",
1205543469751648262,1205531115689254913,1576258935000,2019-12-13,20:42:15,MSK,176441481,sko0lyard,Lansquenet Proud,,Stanley Johnson this morning was the most telling. Waffling about the environment and trade before suddenly getting keen on the Amazon and Brazil. Who's the president of Brazil again? It's quite clear which governments we'll be fleeing to and making the EU the enemy,"['jones_itfc', 'bbc5live']",[],[],0,0,1,[],[],https://twitter.com/Sko0lyard/status/1205543469751648262,False,,0,,,,,,,"[{'user_id': '176441481', 'username': 'Sko0lyard'}, {'user_id': '374158349', 'username': 'jones_itfc'}, {'user_id': '7589572', 'username': 'bbc5live'}]",
1205542501744103425,1205538444581253120,1576258704000,2019-12-13,20:38:24,MSK,884102092700430336,haroldslaundry,Harold's Laundry,,"while i go through these three, let me just say i'm so pissed... i still can't buy or pre-order ANY physical copy of fine line in brazil. AMAZON BR, WHY DO YOU HATE ME SO MUCH? pic.twitter.com/mo0MyUXBmd",[],[],[],1,0,0,[],[],https://twitter.com/haroldslaundry/status/1205542501744103425,False,,1,,,,,,,"[{'user_id': '884102092700430336', 'username': 'haroldslaundry'}]",
1205539872901156865,1205539872901156865,1576258078000,2019-12-13,20:27:58,MSK,422355017,collinrees,Collin Rees,,"Powerful moment:
Today at #COP25, Brazil received @CANIntl’s “Colossal Fossil of the Year” award for killing its people, the Amazon & the climate.
These incredible, brave resistors are making sure that’s not the final chapter of the story. The people of the world stand w/ them! pic.twitter.com/ne2JF7SBtB",['canintl'],[],[],0,6,15,['#cop25'],[],https://twitter.com/collinrees/status/1205539872901156865,False,,1,,,,,,,"[{'user_id': '422355017', 'username': 'collinrees'}, {'user_id': '76849994', 'username': 'CANIntl'}]",
1205538977194881024,1205538977194881024,1576257864000,2019-12-13,20:24:24,MSK,188847758,priceofoil,Oil Change International,,"Today at #COP25, Brazil is awarded the “Colossal Fossil of the Year” for its continued horrifying conduct in violation of Indigenous rights, human rights, & climate justice.
Destroying the Amazon & murdering environmental defenders is dispicable. #FossiloftheDay #COP25Madrid pic.twitter.com/98WvBi8Isw",[],[],['https://pbs.twimg.com/media/ELrvTlkWkAUxmaR.jpg'],0,3,7,"['#cop25', '#fossiloftheday', '#cop25madrid']",[],https://twitter.com/PriceofOil/status/1205538977194881024,False,,0,,,,,,,"[{'user_id': '188847758', 'username': 'PriceofOil'}]",
1205538961466281984,1205538961466281984,1576257860000,2019-12-13,20:24:20,MSK,605590686,fabiolaortizrio,Fabíola Ortiz,,"""The Amazon stands because we resist"" Brazil wins the #Colossalfossilfuel prize @ #COP25 #Madrid #COP25Madrid @StanleyConnect @LatinClima @PxP_LAC @CentroCCyTD pic.twitter.com/diuxryvsHu","['stanleyconnect', 'latinclima', 'pxp_lac', 'centroccytd']",[],['https://pbs.twimg.com/media/ELrvSYUW4AEpSno.jpg'],0,0,3,"['#colossalfossilfuel', '#cop25', '#madrid', '#cop25madrid']",[],https://twitter.com/FabiolaOrtizRio/status/1205538961466281984,False,,0,,,,,,,"[{'user_id': '605590686', 'username': 'FabiolaOrtizRio'}, {'user_id': '65644550', 'username': 'StanleyConnect'}, {'user_id': '3153278972', 'username': 'LatinClima'}, {'user_id': '906989328622071809', 'username': 'PxP_LAC'}, {'user_id': '3340170124', 'username': 'CentroCCYTD'}]",
1205538897943572480,1205538897943572480,1576257845000,2019-12-13,20:24:05,MSK,883072129490669568,coryerlananh,Lananh Coryer,,"Yes, they did they already singed contract last year , that's why Brazil President allowed for developers burn down the AMAZON FOREST ..! https://twitter.com/Wudang96/status/1205523272391102464 …",[],['https://twitter.com/Wudang96/status/1205523272391102464'],[],0,0,0,[],[],https://twitter.com/CoryerLananh/status/1205538897943572480,False,https://twitter.com/Wudang96/status/1205523272391102464,0,,,,,,,"[{'user_id': '883072129490669568', 'username': 'CoryerLananh'}]",
1205537657973100544,1205537657973100544,1576257550000,2019-12-13,20:19:10,MSK,1072444228704370690,franziwehinger,Franzi_wehinger,,"Fossil of the year at #cop25, last day of the conference with @fes_mena @FESonline @CANARABWORLD and @FESnewsbrief is: BRAZIL! Highest amazon deforestation in one year. Three environmentalists killed in only this week. pic.twitter.com/oaSWiEpd5Z","['fes_mena', 'fesonline', 'canarabworld', 'fesnewsbrief']",[],[],0,0,2,['#cop25'],[],https://twitter.com/FranziWehinger/status/1205537657973100544,False,,1,,,,,,,"[{'user_id': '1072444228704370690', 'username': 'FranziWehinger'}, {'user_id': '979078141854539776', 'username': 'fes_mena'}, {'user_id': '144862179', 'username': 'FESonline'}, {'user_id': '1167431894348238849', 'username': 'CANARABWORLD'}, {'user_id': '789038665984991232', 'username': 'FESnewsbrief'}]",
1205536119376494595,1205536119376494595,1576257183000,2019-12-13,20:13:03,MSK,34005611,wwwgalelaurecom,"Gale Laure, Author",,EVOLUTION OF A SAD WOMAN #book worldwide #shopping @ bottom of page: #Amazon #USA #Japan #India #Australia #Brazil #Germany #France #UK #Canada #Mexico #Italy #Spain for #Christmas #shopping #FridayThoughts. http://www.tinyurl.com/y9716zr GL,[],['http://www.tinyurl.com/y9716zr'],[],0,0,0,"['#book', '#shopping', '#amazon', '#usa', '#japan', '#india', '#australia', '#brazil', '#germany', '#france', '#uk', '#canada', '#mexico', '#italy', '#spain', '#christmas', '#shopping', '#fridaythoughts']",[],https://twitter.com/wwwgalelaurecom/status/1205536119376494595,False,,0,,,,,,,"[{'user_id': '34005611', 'username': 'wwwgalelaurecom'}]",
1205535732363939840,1205535732363939840,1576257091000,2019-12-13,20:11:31,MSK,1089916526625505280,jpaccountantsuk,J&P Accountants,,"Logistics News
Amazon is set to open its second fulfilment centre in Brazil
Amazon will open a fulfilment centre in Northern Brazil to reduce its delivery time and logistics infrastructure in Latin America's biggest economy. This will be Amazon's 2nd fulfilment centre in Brazil pic.twitter.com/zQ8aTKYSgC",[],[],['https://pbs.twimg.com/media/ELrsW3xX0AABlJl.jpg'],0,0,0,[],[],https://twitter.com/jpaccountantsuk/status/1205535732363939840,False,,0,,,,,,,"[{'user_id': '1089916526625505280', 'username': 'jpaccountantsuk'}]",
1205533937826709504,1205533937826709504,1576256663000,2019-12-13,20:04:23,MSK,22466318,kartik1973,Kartik Ramakrishnan,,Amazon Boosts Presence in Brazil With E-commerce Intiatives - Yahoo Finance https://ift.tt/2ROb5Xu ,[],['https://ift.tt/2ROb5Xu'],[],0,0,0,[],[],https://twitter.com/kartik1973/status/1205533937826709504,False,,0,,,,,,,"[{'user_id': '22466318', 'username': 'kartik1973'}]",
1205531970777833472,1205531970777833472,1576256194000,2019-12-13,19:56:34,MSK,2354291468,bad_writer0111,Mourning my Son,,"#Bolsonaro Must Go! He has allowed & encouraged the murder of Natives & burning of the #Amazon.
When @GretaThunberg called him out on it, he verbally attacked her, just as #Trump did!
#Brazil, please save #LulaDaSilva from Bolsonaro's #Corrupt Senate, & re-elect him https://twitter.com/GottaBernNow/status/1205358487582101504 …",['gretathunberg'],['https://twitter.com/GottaBernNow/status/1205358487582101504'],[],0,0,0,"['#bolsonaro', '#amazon', '#trump', '#brazil', '#luladasilva', '#corrupt']",[],https://twitter.com/Bad_Writer0111/status/1205531970777833472,False,https://twitter.com/GottaBernNow/status/1205358487582101504,0,,,,,,,"[{'user_id': '2354291468', 'username': 'Bad_Writer0111'}, {'user_id': '1006419421244678144', 'username': 'GretaThunberg'}]",
1205529882052251648,1205522192546578433,1576255696000,2019-12-13,19:48:16,MSK,1142171096965361665,humanoidlord,humanoidlord,,"sorry greg, it was just that it wasn't avaliable in amazon here in brazil :p",[],[],[],0,0,1,[],[],https://twitter.com/humanoidlord/status/1205529882052251648,False,,0,,,,,,,"[{'user_id': '1142171096965361665', 'username': 'humanoidlord'}]",
1205528590726631427,1205508757486231552,1576255388000,2019-12-13,19:43:08,MSK,1097821909243310080,dani71533521,Dani Tedesco 🇧🇷,,"Environment activists make noise
against Brazil over Amazon, CO2, indians...
Facts are:
Amazon is not lungs of the world.
Many cientists are skeptical about CO2 causing global warming
Indians' lands are way too large, compared to Brazilian population and territory",['rainews'],[],[],0,0,0,[],[],https://twitter.com/Dani71533521/status/1205528590726631427,False,,0,,,,,,,"[{'user_id': '1097821909243310080', 'username': 'Dani71533521'}, {'user_id': '14060262', 'username': 'RaiNews'}]",
1205528410275102720,1205528410275102720,1576255345000,2019-12-13,19:42:25,MSK,66127320,masfranca,Marco A. Franca,,Preservation or Development? Brazil’s Amazon at a Crossroads https://nyti.ms/38w1Q4f ,[],['https://nyti.ms/38w1Q4f'],[],0,0,0,[],[],https://twitter.com/masfranca/status/1205528410275102720,False,,0,,,,,,,"[{'user_id': '66127320', 'username': 'masfranca'}]",
1205525826126712833,1205525826126712833,1576254729000,2019-12-13,19:32:09,MSK,1038062277180751872,peterrula,Peter Lauterbach,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon http://amwt.ch/4561 ,[],['http://amwt.ch/4561'],[],0,0,0,[],[],https://twitter.com/PeterRuLa/status/1205525826126712833,False,,0,,,,,,,"[{'user_id': '1038062277180751872', 'username': 'PeterRuLa'}]",
1205519658192920577,1205494032274771973,1576253258000,2019-12-13,19:07:38,MSK,34585261,on_drayy_uhh,ⓥ 𝕕𝕣𝕖 ♡,,The majority of beef in the US comes from Brazil where they’re burning down the Amazon to make room for more cattle. Transporting produce is easier than rotting flesh lol,"['joserosado', 'joeldeteves', 'steakfueled']",[],[],0,0,0,[],[],https://twitter.com/on_drayy_uhh/status/1205519658192920577,False,,0,,,,,,,"[{'user_id': '34585261', 'username': 'on_drayy_uhh'}, {'user_id': '17730766', 'username': 'joserosado'}, {'user_id': '912754590411403265', 'username': 'JoelDeteves'}, {'user_id': '827246199216353280', 'username': 'SteakFueled'}]",
1205519437958385664,1205519437958385664,1576253206000,2019-12-13,19:06:46,MSK,3972856043,beautyrecap,#BeautyRecap,,Body Shop Owner Urges Brazil to Protect Amazon After Fires Hit Suppliers #beautyrecap https://www.businessoffashion.com/articles/news-analysis/natura-urges-brazil-to-protect-amazon-after-fires-hit-suppliers …,[],['https://www.businessoffashion.com/articles/news-analysis/natura-urges-brazil-to-protect-amazon-after-fires-hit-suppliers'],[],0,0,0,['#beautyrecap'],[],https://twitter.com/BeautyRecap/status/1205519437958385664,False,,0,,,,,,,"[{'user_id': '3972856043', 'username': 'BeautyRecap'}]",
1205519437413138433,1205519437413138433,1576253206000,2019-12-13,19:06:46,MSK,480885032,kindofstephen,Stephen,,Body Shop Owner Urges Brazil to Protect Amazon After Fires Hit Suppliers #beautyrecap https://www.businessoffashion.com/articles/news-analysis/natura-urges-brazil-to-protect-amazon-after-fires-hit-suppliers …,[],['https://www.businessoffashion.com/articles/news-analysis/natura-urges-brazil-to-protect-amazon-after-fires-hit-suppliers'],[],0,0,0,['#beautyrecap'],[],https://twitter.com/KindofStephen/status/1205519437413138433,False,,0,,,,,,,"[{'user_id': '480885032', 'username': 'KindofStephen'}]",
1205517042889166850,1205517042889166850,1576252635000,2019-12-13,18:57:15,MSK,414765108,rhondababy1953,rhonda mandato,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,0,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/rhondababy1953/status/1205517042889166850,False,,0,,,,,,,"[{'user_id': '414765108', 'username': 'rhondababy1953'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205507329648660485,1205507329648660485,1576250319000,2019-12-13,18:18:39,MSK,784164359736000513,gdovalepereira,Gabriella Pereira,,"What if the Lion King happened in the Amazon rainforest?
The Brazilian version of ""The Lion King"". This is so beautiful! Well done @vilmarrossijunior (Instagram)
https://g1.globo.com/natureza/noticia/2019/08/10/animais-da-amazonia-sao-protagonistas-em-versao-brasileira-de-o-rei-leao.ghtml …
#amazon #brazil #rainforest",[],['https://g1.globo.com/natureza/noticia/2019/08/10/animais-da-amazonia-sao-protagonistas-em-versao-brasileira-de-o-rei-leao.ghtml'],[],0,0,1,"['#amazon', '#brazil', '#rainforest']",[],https://twitter.com/Gdovalepereira/status/1205507329648660485,False,,0,,,,,,,"[{'user_id': '784164359736000513', 'username': 'Gdovalepereira'}]",
1205506607892746242,1205498102272208898,1576250147000,2019-12-13,18:15:47,MSK,16475731,hellonfriscobay,Brian Darr,,Awful. I’m curious about the article’s comment about Netflix and Amazon swooping in to make original content in Brazil. Is that something they didn’t do until the political landscape changed?,['filipefurtado'],[],[],2,0,0,[],[],https://twitter.com/HellOnFriscoBay/status/1205506607892746242,False,,0,,,,,,,"[{'user_id': '16475731', 'username': 'HellOnFriscoBay'}, {'user_id': '33835881', 'username': 'filipefurtado'}]",
1205505924754001925,1205505924754001925,1576249984000,2019-12-13,18:13:04,MSK,4054925549,tiggggie,Elizacat,,Preservation or development? Brazil’s Amazon at a crossroads (from @AP) https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81 …,['ap'],['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81'],[],0,0,0,[],[],https://twitter.com/Tiggggie/status/1205505924754001925,False,,0,,,,,,,"[{'user_id': '4054925549', 'username': 'Tiggggie'}, {'user_id': '51241574', 'username': 'AP'}]",
1205503736845611009,1205160304902053889,1576249462000,2019-12-13,18:04:22,MSK,1158479328,tlshelton1,tl shelton,,Paris climate agreement is a joke. Co2 is higher now then before the agreement. No ones following it and yea Brazil who burning down the amazon is also in the agreement with India and China who have higher numbers now,['replindasanchez'],[],[],0,0,0,[],[],https://twitter.com/tlshelton1/status/1205503736845611009,False,,0,,,,,,,"[{'user_id': '1158479328', 'username': 'tlshelton1'}, {'user_id': '312134473', 'username': 'RepLindaSanchez'}]",
1205503037717893121,1205503037717893121,1576249296000,2019-12-13,18:01:36,MSK,97470066,shorenewsnj,ShoreNewsNJ,,AP: 1970’s footage of Brazil’s development of the Amazon region http://shorenewsnetwork.com/?p=114910 ,[],['http://shorenewsnetwork.com/?p=114910'],[],0,0,0,[],[],https://twitter.com/ShoreNewsNJ/status/1205503037717893121,False,,0,,,,,,,"[{'user_id': '97470066', 'username': 'ShoreNewsNJ'}]",
1205502431100055554,1205502431100055554,1576249151000,2019-12-13,17:59:11,MSK,1552093537,liannemilton,Lianne Milton,,"Preservation or development? Brazil’s Amazon at a crossroads
Important story by @DLBiller and great photos by @Leo_Correa https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81 …","['dlbiller', 'leo_correa']",['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81'],[],0,0,2,[],[],https://twitter.com/LianneMilton/status/1205502431100055554,False,,0,,,,,,,"[{'user_id': '1552093537', 'username': 'LianneMilton'}, {'user_id': '98726426', 'username': 'DLBiller'}, {'user_id': '27376074', 'username': 'Leo_Correa'}]",
1205500666099179520,1205500666099179520,1576248730000,2019-12-13,17:52:10,MSK,98726426,dlbiller,David Biller,,"Cool interactive piece by
@voxdotcom on 3 supertrees around the world-- in Brazil, Indonesia and Congo. Starts w/ the Amazon's Brazil nut tree, a.k.a. ""the queen of the forest"" https://www.vox.com/a/supertrees ",['voxdotcom'],['https://www.vox.com/a/supertrees'],[],0,6,19,[],[],https://twitter.com/DLBiller/status/1205500666099179520,False,,0,,,,,,,"[{'user_id': '98726426', 'username': 'DLBiller'}, {'user_id': '2347049341', 'username': 'voxdotcom'}]",
1205500650919825408,1205500650919825408,1576248726000,2019-12-13,17:52:06,MSK,948461445796175872,asoiideas,ASOII,,Amazon Boosts Presence in Brazil With E-commerce Intiatives http://dlvr.it/RLCzm6 pic.twitter.com/ad4NfgKBTV,[],['http://dlvr.it/RLCzm6'],['https://pbs.twimg.com/media/ELrMdA2UUAAa4Bk.jpg'],0,0,0,[],[],https://twitter.com/ASOIideas/status/1205500650919825408,False,,0,,,,,,,"[{'user_id': '948461445796175872', 'username': 'ASOIideas'}]",
1205500247453130754,1205500247453130754,1576248630000,2019-12-13,17:50:30,MSK,353156874,aretail,América Retail,,USA: Amazon announces new distribution center in Brazil https://www.america-retail.com/usa/usa-amazon-announces-new-distribution-center-in-brazil/ … pic.twitter.com/81jnwv4zyU,[],['https://www.america-retail.com/usa/usa-amazon-announces-new-distribution-center-in-brazil/'],['https://pbs.twimg.com/media/ELrMFikX0AUHe1P.jpg'],0,0,0,[],[],https://twitter.com/ARetail/status/1205500247453130754,False,,0,,,,,,,"[{'user_id': '353156874', 'username': 'ARetail'}]",
1205499504910372865,1205499496613982213,1576248453000,2019-12-13,17:47:33,MSK,14786217,rnfrstalliance,Rainforest Alliance,,"This photo, taken by @victormoriyama, shows a large fire in Candeiras do Jamari, Brazil. It’s just one of the
estimated 19,925 #ForestFires recorded in the Brazilian Amazon in September. Without swift government action to end #deforestation, the worst may be yet to come. pic.twitter.com/OxVReap915",['victormoriyama'],[],['https://pbs.twimg.com/media/ELrLaCtXYAAhILc.jpg'],1,0,1,"['#forestfires', '#deforestation']",[],https://twitter.com/RnfrstAlliance/status/1205499504910372865,False,,0,,,,,,,"[{'user_id': '14786217', 'username': 'RnfrstAlliance'}, {'user_id': '1082334210801700866', 'username': 'victormoriyama'}]",
1205495266960453632,1205495266960453632,1576247443000,2019-12-13,17:30:43,MSK,97509929,buildersintl,Builders International,,"When teams members travel to Brazil to build hope along the Amazon River not only do they meet the local people in the community, but also the local animals.
Sloths, monkeys, snakes, and crocodiles! What animal would you prefer to meet?
#WeBuildHope #AnimalsOfTheAmazon pic.twitter.com/79hrz0KpX1",[],[],['https://pbs.twimg.com/media/ELrHjliWoAAB7Gl.jpg'],0,0,0,"['#webuildhope', '#animalsoftheamazon']",[],https://twitter.com/buildersintl/status/1205495266960453632,False,,0,,,,,,,"[{'user_id': '97509929', 'username': 'buildersintl'}]",
1205494469048569858,1205494469048569858,1576247253000,2019-12-13,17:27:33,MSK,16501227,gebgdc,fiona bowie,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,1,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/gebgdc/status/1205494469048569858,False,,0,,,,,,,"[{'user_id': '16501227', 'username': 'gebgdc'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205493413036134400,1205493413036134400,1576247001000,2019-12-13,17:23:21,MSK,2500825304,incrediblereads,#FridayThe13th,,"#RT Brazil: Insights https://www.amazon.com/dp/1514187469/ref=cm_sw_r_tw_dp_U_x_J658DbCQGBM6B … via @amazon
#fridayfeeling #trave #travelfriday #fridaytravel #mustreads",['amazon'],['https://www.amazon.com/dp/1514187469/ref=cm_sw_r_tw_dp_U_x_J658DbCQGBM6B'],[],0,0,0,"['#rt', '#fridayfeeling', '#trave', '#travelfriday', '#fridaytravel', '#mustreads']",[],https://twitter.com/incrediblereads/status/1205493413036134400,False,,0,,,,,,,"[{'user_id': '2500825304', 'username': 'incrediblereads'}, {'user_id': '20793816', 'username': 'amazon'}]",
1205492593536188416,1205492593536188416,1576246805000,2019-12-13,17:20:05,MSK,21268553,stanleysuen,Stanley Suen,,"Amazon Boosts Presence in Brazil With E-commerce Intiatives
http://stock-market-newsfeed.blogspot.com/2019/12/amazon-boosts-presence-in-brazil-with-e.html …",[],['http://stock-market-newsfeed.blogspot.com/2019/12/amazon-boosts-presence-in-brazil-with-e.html'],[],0,0,0,[],[],https://twitter.com/stanleysuen/status/1205492593536188416,False,,0,,,,,,,"[{'user_id': '21268553', 'username': 'stanleysuen'}]",
1205492119705673728,1205492119705673728,1576246692000,2019-12-13,17:18:12,MSK,947448037311365121,enbusinesstimes,Business Times,,"Brazil's Amazon Region, Norway Hold Talks For $500 Million Rainforest Funding https://www.btimesonline.com/articles/123377/20191213/amazon-brazilian-amazon-amazon-rainforest-brazil-norway-amazon-deforestation.htm …",[],['https://www.btimesonline.com/articles/123377/20191213/amazon-brazilian-amazon-amazon-rainforest-brazil-norway-amazon-deforestation.htm'],[],0,1,2,[],[],https://twitter.com/enbusinesstimes/status/1205492119705673728,False,,0,,,,,,,"[{'user_id': '947448037311365121', 'username': 'enbusinesstimes'}]",
1205491566271320065,1205491566271320065,1576246561000,2019-12-13,17:16:01,MSK,27129267,jenniferlaing,jennifer laing,,Preservation or development? Brazil’s Amazon at a crossroads (from @AP) https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81 …,['ap'],['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81'],[],0,0,0,[],[],https://twitter.com/jenniferlaing/status/1205491566271320065,False,,0,,,,,,,"[{'user_id': '27129267', 'username': 'jenniferlaing'}, {'user_id': '51241574', 'username': 'AP'}]",
1205487723995451394,1205487723995451394,1576245644000,2019-12-13,17:00:44,MSK,126424795,staradvertiser,Star-Advertiser,,Deforestation or development? Brazil’s Amazon at a crossroad - http://bit.ly/2LPjs1c pic.twitter.com/cknNvPhTFM,[],['http://bit.ly/2LPjs1c'],['https://pbs.twimg.com/media/ELrAseOWsAAm1o9.jpg'],0,0,2,[],[],https://twitter.com/StarAdvertiser/status/1205487723995451394,False,,0,,,,,,,"[{'user_id': '126424795', 'username': 'StarAdvertiser'}]",
1205484049764159493,1205484049764159493,1576244768000,2019-12-13,16:46:08,MSK,16580349,lise_alves,Lise Alves,,Amazon is announcing second distribution center in #Brazil. This time in the Northeast- state of Pernambuco. Will be ready in mid2020. The first center is ready to be opened in January 2020 in São Paulo Metropolitan area.,[],[],[],0,0,0,['#brazil'],[],https://twitter.com/Lise_Alves/status/1205484049764159493,False,,0,,,,,,,"[{'user_id': '16580349', 'username': 'Lise_Alves'}]",
1205484033519603713,1205484033519603713,1576244765000,2019-12-13,16:46:05,MSK,21539598,dacollins,Dave Collins,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,1,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/dacollins/status/1205484033519603713,False,,0,,,,,,,"[{'user_id': '21539598', 'username': 'dacollins'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205483916884205569,1205483916884205569,1576244737000,2019-12-13,16:45:37,MSK,305803687,markjhowarth,Press Management,,Brazil's Amazon rainforest and development at a crossroads Post https://azcyberpro.com/mobile.html ,[],['https://azcyberpro.com/mobile.html'],[],0,0,0,[],[],https://twitter.com/MarkJHowarth/status/1205483916884205569,False,,0,,,,,,,"[{'user_id': '305803687', 'username': 'MarkJHowarth'}]",
1205480493057052675,1205480493057052675,1576243920000,2019-12-13,16:32:00,MSK,35203319,evankirstel,Evan Kirstel,,Brazil's Amazon rainforest and development at a crossroads https://phys.org/news/2019-12-brazil-amazon-rainforest-crossroads.html …,[],['https://phys.org/news/2019-12-brazil-amazon-rainforest-crossroads.html'],[],1,8,1,[],[],https://twitter.com/evankirstel/status/1205480493057052675,False,,0,,,,,,,"[{'user_id': '35203319', 'username': 'evankirstel'}]",
1205480178245361664,1205262151830659072,1576243845000,2019-12-13,16:30:45,MSK,1195780861,angry_enby,Mx. River G,,"Also how can you say Bolsonaro is ""fixing"" Brazil when, just that I'm aware of, he let the Amazon burn for weeks and turned down assistance, and indigenous people's lives are measurably worse?","['pshinnok', 'poopoopeepee25', 'kylekallgren']",[],[],1,0,0,[],[],https://twitter.com/angry_enby/status/1205480178245361664,False,,0,,,,,,,"[{'user_id': '1195780861', 'username': 'angry_enby'}, {'user_id': '1128810909659467776', 'username': 'PShinnok'}, {'user_id': '973721906426806272', 'username': 'poopoopeepee25'}, {'user_id': '18559368', 'username': 'KyleKallgren'}]",
1205476500142776321,1205476500142776321,1576242968000,2019-12-13,16:16:08,MSK,955110279007866882,eeriegnuveneer,Lady Gwenhwyfar 🕊 [she/her],,Amazon indigenous leaders killed in Brazil drive-by shooting https://www.theguardian.com/world/2019/dec/08/amazon-indigenous-leaders-killed-in-brazil-drive-by-shooting?CMP=share_btn_tw …,[],['https://www.theguardian.com/world/2019/dec/08/amazon-indigenous-leaders-killed-in-brazil-drive-by-shooting?CMP=share_btn_tw'],[],0,0,0,[],[],https://twitter.com/EerieGnuVeneer/status/1205476500142776321,False,,0,,,,,,,"[{'user_id': '955110279007866882', 'username': 'EerieGnuVeneer'}]",
1205474023326601216,1205474021258792960,1576242378000,2019-12-13,16:06:18,MSK,147670689,louramd,Luis R Mönch O,,Just look serious in front your words about saying the truth over climate change. Take a look a the contaminated congressional district of @AOC ... also look at President @jairbolsonaro who did the right thing by catching the people responsible for the burning of Brazil Amazon.,"['aoc', 'jairbolsonaro']",[],[],1,0,0,[],[],https://twitter.com/louramd/status/1205474023326601216,False,,0,,,,,,,"[{'user_id': '147670689', 'username': 'louramd'}, {'user_id': '138203134', 'username': 'AOC'}, {'user_id': '128372940', 'username': 'jairbolsonaro'}]",
1205472524831776768,1205472524831776768,1576242021000,2019-12-13,16:00:21,MSK,34885053,spamdog,spamdog,,"📷 dailyoverview: The Juruá River is a southern tributary of the Amazon River, flowing approximately 1,500 miles (2,400 km) through Brazil and Peru. For most of its length, the river winds through the Amazon basin and is generally curvy and... https://tmblr.co/ZvHnXy2mdkI0K ",[],['https://tmblr.co/ZvHnXy2mdkI0K'],[],0,0,0,[],[],https://twitter.com/spamdog/status/1205472524831776768,False,,0,,,,,,,"[{'user_id': '34885053', 'username': 'spamdog'}]",
1205471529863188481,1205471529863188481,1576241783000,2019-12-13,15:56:23,MSK,2810138524,louiseleelee,Louise Lee #LabourActivist,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,0,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/louiseleelee/status/1205471529863188481,False,,0,,,,,,,"[{'user_id': '2810138524', 'username': 'louiseleelee'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205471351080964096,1205471351080964096,1576241741000,2019-12-13,15:55:41,MSK,19625943,ddoorn,Don Doornbos,,Supertrees: The Amazon’s Brazil nut tree creates its own rainfall — and it’s in danger - Vox https://www.vox.com/2019/12/12/20991590/amazon-rainforest-deforestation-climate-change-trees-rain-brazil-nut …,[],['https://www.vox.com/2019/12/12/20991590/amazon-rainforest-deforestation-climate-change-trees-rain-brazil-nut'],[],0,1,0,[],[],https://twitter.com/ddoorn/status/1205471351080964096,False,,0,,,,,,,"[{'user_id': '19625943', 'username': 'ddoorn'}]",
1205471101259780096,1205471101259780096,1576241681000,2019-12-13,15:54:41,MSK,721568500599373824,downtownrob88,Robert Lee,,"More Amazon. It should buy Brazil and ship the Amazon River to parched California -- two-day shipping.
OT: why is Amazon's @wapo one of the thickest newspaper pay walls on the Internet? https://twitter.com/AmazonGameTech/status/1192946210862174208 …",['wapo'],['https://twitter.com/AmazonGameTech/status/1192946210862174208'],[],1,0,1,[],[],https://twitter.com/downtownrob88/status/1205471101259780096,False,https://twitter.com/AmazonGameTech/status/1192946210862174208,0,,,,,,,"[{'user_id': '721568500599373824', 'username': 'downtownrob88'}, {'user_id': '913062595216728064', 'username': 'wapo'}]",
1205467405557936128,1205467405557936128,1576240800000,2019-12-13,15:40:00,MSK,33474655,cambridge_uni,Cambridge University,,"The tallest known tree in the #Amazon towers above the canopy at a whopping 88.5 metres. Toby Jackson, plant scientist @cambridge_uccri, goes on an expedition to find and measure this giant in a remote corner of Brazil. https://bit.ly/36xGCRO #SustainableEarth",['cambridge_uccri'],['https://bit.ly/36xGCRO'],[],0,9,32,"['#amazon', '#sustainableearth']",[],https://twitter.com/Cambridge_Uni/status/1205467405557936128,False,,0,,,,,,,"[{'user_id': '33474655', 'username': 'Cambridge_Uni'}, {'user_id': '2208790814', 'username': 'cambridge_uccri'}]",
1205459796478087168,1205459796478087168,1576238986000,2019-12-13,15:09:46,MSK,3147864185,diana_trifu,Diana Trifu,,#Amazon #indigenous leaders #killed in #Brazil drive-by shooting https://www.theguardian.com/world/2019/dec/08/amazon-indigenous-leaders-killed-in-brazil-drive-by-shooting?CMP=share_btn_tw …,[],['https://www.theguardian.com/world/2019/dec/08/amazon-indigenous-leaders-killed-in-brazil-drive-by-shooting?CMP=share_btn_tw'],[],0,0,0,"['#amazon', '#indigenous', '#killed', '#brazil']",[],https://twitter.com/diana_trifu/status/1205459796478087168,False,,0,,,,,,,"[{'user_id': '3147864185', 'username': 'diana_trifu'}]",
1205459308902801409,1205459308902801409,1576238870000,2019-12-13,15:07:50,MSK,900053891269767168,gylauer,GI - FLAT EARTH,,The majestic confluence of the Amazon River with the southern Atlantic Ocean of #Brazil (November 2019) pic.twitter.com/gNtEoRux1Q,[],[],[],4,36,97,['#brazil'],[],https://twitter.com/Gylauer/status/1205459308902801409,False,,1,,,,,,,"[{'user_id': '900053891269767168', 'username': 'Gylauer'}]",
1205458873714380800,1205458873714380800,1576238766000,2019-12-13,15:06:06,MSK,38579146,saomiguelito,MIGUEL,,"Wish I could say come live in Brazil with me if it all goes to shit in the UK, guys, but for one our president thinks his son is too ""well educated"" to date black women and that Leo DiCaprio is setting the Amazon alight (he actually believes that). So, I feel you. I feel you. 😐",[],[],[],1,0,5,[],[],https://twitter.com/SaoMiguelito/status/1205458873714380800,False,,0,,,,,,,"[{'user_id': '38579146', 'username': 'SaoMiguelito'}]",
1205458846052966402,1205458846052966402,1576238759000,2019-12-13,15:05:59,MSK,900709872798486530,joanna_portugal,Joana Portugal,,#Brazil's state governments of legal #Amazon and #France signed an agreement to support conservation actions to tackle illegal #Deforestation: https://bit.ly/34k6Vcm #Amazonia #Rainforest #SDG #ClimateChange #TimeForAction #TimeForChange #COP25Madrid #Cop25Madrid2019,[],['https://bit.ly/34k6Vcm'],[],0,0,1,"['#brazil', '#amazon', '#france', '#deforestation', '#amazonia', '#rainforest', '#sdg', '#climatechange', '#timeforaction', '#timeforchange', '#cop25madrid', '#cop25madrid2019']",[],https://twitter.com/joanna_portugal/status/1205458846052966402,False,,0,,,,,,,"[{'user_id': '900709872798486530', 'username': 'joanna_portugal'}]",
1205452067919151104,1205452067919151104,1576237143000,2019-12-13,14:39:03,MSK,1079911297,ecointernetdrgb,EcoInternet,,"How Brazil's Weak Currency Further Threatens the Amazon #Rainforest : World: Latin Post https://www.latinpost.com/articles/142920/20191211/brazils-weak-currency-further-threatens-the-amazon-rainforest.htm … #environment
MORE w/ EcoSearch - news: https://search.ecointernet.org/search/results?q=rainforest%20amazon%20brazil%20weak%20currency%20threatens%20world&w=relevance … web: https://search.ecointernet.org/search/results?q=rainforest%20amazon%20brazil%20weak%20currency%20threatens%20world&s=web …",[],"['https://www.latinpost.com/articles/142920/20191211/brazils-weak-currency-further-threatens-the-amazon-rainforest.htm', 'https://search.ecointernet.org/search/results?q=rainforest%20amazon%20brazil%20weak%20currency%20threatens%20world&w=relevance', 'https://search.ecointernet.org/search/results?q=rainforest%20amazon%20brazil%20weak%20currency%20threatens%20world&s=web']",[],0,0,1,"['#rainforest', '#environment']",[],https://twitter.com/EcoInternetDrGB/status/1205452067919151104,False,,0,,,,,,,"[{'user_id': '1079911297', 'username': 'EcoInternetDrGB'}]",
1205448295155412993,1191432109837053953,1576236244000,2019-12-13,14:24:04,MSK,1192404530660597762,hanspetersnow,Hans Petersen,,Is this the same Brazil that is burning the Amazon?,['govbr'],[],[],0,0,0,[],[],https://twitter.com/HansPeterSnow/status/1205448295155412993,False,,0,,,,,,,"[{'user_id': '1192404530660597762', 'username': 'HansPeterSnow'}, {'user_id': '861707648584085504', 'username': 'govbr'}]",
1205448170626592768,1205276627179130881,1576236214000,2019-12-13,14:23:34,MSK,1194742916054495232,paulinhogsss,BolsoMorominion🇧🇷,,"You don't know what you say, Bolsonaro preserves the Amazon and protects Brazil from dirty international interests. The Amazon is from Brazil and not from the world.","['fastanf', 'basedpoland', 'saoblacknews']",[],[],1,0,1,[],[],https://twitter.com/Paulinhogsss/status/1205448170626592768,False,,0,,,,,,,"[{'user_id': '1194742916054495232', 'username': 'Paulinhogsss'}, {'user_id': '2850298188', 'username': 'FaSTAnf'}, {'user_id': '753974664041533440', 'username': 'BasedPoland'}, {'user_id': '115172540', 'username': 'SaoBlackNews'}]",
1205442135643885569,1205442135643885569,1576234775000,2019-12-13,13:59:35,MSK,1055846340465512448,incomindiosuk,Incomindios UK,,Amazon indigenous leaders killed in Brazil drive-by shooting https://www.theguardian.com/world/2019/dec/08/amazon-indigenous-leaders-killed-in-brazil-drive-by-shooting?CMP=share_btn_tw …,[],['https://www.theguardian.com/world/2019/dec/08/amazon-indigenous-leaders-killed-in-brazil-drive-by-shooting?CMP=share_btn_tw'],[],0,0,0,[],[],https://twitter.com/IncomindiosUK/status/1205442135643885569,False,,0,,,,,,,"[{'user_id': '1055846340465512448', 'username': 'IncomindiosUK'}]",
1205440232348377088,1205440232348377088,1576234322000,2019-12-13,13:52:02,MSK,33959876,renatarubim,Renata Rubim,,Amazon indigenous leaders killed in Brazil drive-by shooting https://www.theguardian.com/world/2019/dec/08/amazon-indigenous-leaders-killed-in-brazil-drive-by-shooting …,[],['https://www.theguardian.com/world/2019/dec/08/amazon-indigenous-leaders-killed-in-brazil-drive-by-shooting'],[],0,0,0,[],[],https://twitter.com/renatarubim/status/1205440232348377088,False,,0,,,,,,,"[{'user_id': '33959876', 'username': 'renatarubim'}]",
1205437464158113792,1205437464158113792,1576233662000,2019-12-13,13:41:02,MSK,763038369064574976,briancrice2,brian rice,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,0,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/briancrice2/status/1205437464158113792,False,,0,,,,,,,"[{'user_id': '763038369064574976', 'username': 'briancrice2'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205434847424131073,1205434847424131073,1576233038000,2019-12-13,13:30:38,MSK,2615778732,maramluz2,Mara Luz,,"#Amazon: important alert here, shame that some INGOs are not keen on this... https://amp.theguardian.com/commentisfree/2019/dec/12/amazon-matter-of-life-and-death-for-all-of-us-we-must-fight-for-it?__twitter_impression=true …
@CAid_Brazil @proindio @ans @AmazonMiller","['caid_brazil', 'proindio', 'ans', 'amazonmiller']",['https://amp.theguardian.com/commentisfree/2019/dec/12/amazon-matter-of-life-and-death-for-all-of-us-we-must-fight-for-it?__twitter_impression=true'],[],0,0,2,['#amazon'],[],https://twitter.com/Maramluz2/status/1205434847424131073,False,,0,,,,,,,"[{'user_id': '2615778732', 'username': 'Maramluz2'}, {'user_id': '771377036791320576', 'username': 'CAid_Brazil'}, {'user_id': '138492825', 'username': 'proindio'}, {'user_id': '131515746', 'username': 'ans'}, {'user_id': '1531461980', 'username': 'AmazonMiller'}]",
1205432183936212993,1205432183936212993,1576232403000,2019-12-13,13:20:03,MSK,153406327,retailgazette,Retail Gazette,,".@amazon to open new Brazil distribution centre as it step up its delivery time and logistics infrastructure.
#SupplyChain #ecommerce #distribution #delivery https://www.chargedretail.co.uk/2019/12/13/amazon-to-open-new-brazil-distribution-centre/ …",['amazon'],['https://www.chargedretail.co.uk/2019/12/13/amazon-to-open-new-brazil-distribution-centre/'],[],0,2,1,"['#supplychain', '#ecommerce', '#distribution', '#delivery']",[],https://twitter.com/retailgazette/status/1205432183936212993,False,,0,,,,,,,"[{'user_id': '153406327', 'username': 'retailgazette'}, {'user_id': '20793816', 'username': 'amazon'}]",
1205432174184468481,1205432174184468481,1576232400000,2019-12-13,13:20:00,MSK,1088832114945077251,chargedretail,Charged Retail,,". @amazon to open new Brazil distribution centre as it step up its delivery time and logistics infrastructure.
#SupplyChain #ecommerce #distribution #delivery
https://buff.ly/36xlIlO ",['amazon'],['https://buff.ly/36xlIlO'],[],0,0,0,"['#supplychain', '#ecommerce', '#distribution', '#delivery']",[],https://twitter.com/ChargedRetail/status/1205432174184468481,False,,0,,,,,,,"[{'user_id': '1088832114945077251', 'username': 'ChargedRetail'}, {'user_id': '20793816', 'username': 'amazon'}]",
1205431032775884800,1205431032775884800,1576232128000,2019-12-13,13:15:28,MSK,2586582265,nogmosverified,NoGMOsVerified,,"France to Partner With Brazil States on Amazon, Bypassing Bolsonaro https://www.organicconsumers.org/node/1069336 #NOGMOsVerified #GMOs #OrganicConsumer pic.twitter.com/2MMHvcnmDW",[],['https://www.organicconsumers.org/node/1069336'],['https://pbs.twimg.com/media/ELqNIt4X0AAwSeo.jpg'],0,0,1,"['#nogmosverified', '#gmos', '#organicconsumer']",[],https://twitter.com/NoGMOsVerified/status/1205431032775884800,False,,0,,,,,,,"[{'user_id': '2586582265', 'username': 'NoGMOsVerified'}]",
1205428951092477955,1205428951092477955,1576231632000,2019-12-13,13:07:12,MSK,703090157063254022,cardcounterswin,J. McLaughlin,,"Deforestation or development? Brazil’s Amazon at a crossroad via @staradvertiser https://www.staradvertiser.com/2019/12/12/breaking-news/deforestation-or-development-brazils-amazon-at-a-crossroad/ … Night falls in Brazil’s Amazon and two logging trucks without license plates emerge from the jungle. They rumble over dirt roads that lead away from a national forest,",['staradvertiser'],['https://www.staradvertiser.com/2019/12/12/breaking-news/deforestation-or-development-brazils-amazon-at-a-crossroad/'],[],1,0,0,[],[],https://twitter.com/cardcounterswin/status/1205428951092477955,False,,0,,,,,,,"[{'user_id': '703090157063254022', 'username': 'cardcounterswin'}, {'user_id': '126424795', 'username': 'StarAdvertiser'}]",
1205428583046373376,1205428583046373376,1576231544000,2019-12-13,13:05:44,MSK,74121455,sea_globe,Southeast Asia Globe,,"While the world looks on in horror at fires destroying Brazil’s Amazon rainforest, in Indonesia man-made fires rage, destroying almost 2,000 km2 more forest than in Brazil and emitting twice the CO2. #Indonesia #fires #Amazon #Brazil pic.twitter.com/g0QcCPPEC6",[],[],['https://pbs.twimg.com/media/ELqK5hSU4AARKOl.jpg'],0,2,5,"['#indonesia', '#fires', '#amazon', '#brazil']",[],https://twitter.com/SEA_GLOBE/status/1205428583046373376,False,,0,,,,,,,"[{'user_id': '74121455', 'username': 'SEA_GLOBE'}]",
1205425245835841536,1205425218254065664,1576230748000,2019-12-13,12:52:28,MSK,275417504,thomasaspencer,Thomas Spencer,,"8/n
Should Russia or Saudi be exonerated from the production emissions associated with their fuel exports? Should Brazil be exonerated from Amazon fires driven by agriculture exports? Absolutely not. So why apply a double standard to other net exports from developing countries?",[],[],[],1,0,1,[],[],https://twitter.com/ThomasASpencer/status/1205425245835841536,False,,0,,,,,,,"[{'user_id': '275417504', 'username': 'ThomasASpencer'}]",
1205424636281966594,1205101121104039936,1576230603000,2019-12-13,12:50:03,MSK,575642427,drakin4you,akin odubitan,,"All those trees even if he planted 100 million more, as long as people like Bolsanaro of Brazil continue to sacrifice the Amazon forests for money and Trump withdraws the biggest economy (& polluters) from the Paris Accord, we're still in serious climate change trouble!","['staranirudh', 'spectatorindex']",[],[],1,0,0,[],[],https://twitter.com/drAkin4You/status/1205424636281966594,False,,0,,,,,,,"[{'user_id': '575642427', 'username': 'drAkin4You'}, {'user_id': '245397526', 'username': 'staranirudh'}, {'user_id': '1626294277', 'username': 'spectatorindex'}]",
1205413578897055745,1205413578897055745,1576227967000,2019-12-13,12:06:07,MSK,1159421365147115520,hannah15117006,HAN,,"The biggest Dutch banks ING, ABN AMRO and Rabobank jointly invest billions in soy cultivation and, contribute to the deforestation of the Amazon. Thats why we need #systemchange !
#COP25Madrid #Amazon #Amazonas #AmazonFires #Brazil #ClimateEmergency https://twitter.com/zembla/status/1205227322024120321 …",[],['https://twitter.com/zembla/status/1205227322024120321'],[],0,0,1,"['#systemchange', '#cop25madrid', '#amazon', '#amazonas', '#amazonfires', '#brazil', '#climateemergency']",[],https://twitter.com/HANnah15117006/status/1205413578897055745,False,https://twitter.com/ZEMBLA/status/1205227322024120321,0,,,,,,,"[{'user_id': '1159421365147115520', 'username': 'HANnah15117006'}]",
1205412558267703296,1205412558267703296,1576227724000,2019-12-13,12:02:04,MSK,1159421365147115520,hannah15117006,HAN,,"The American grain company #Bunge is said to be involved in illegal deforestation in the #Amazone. Through a BV in the Netherlands, the company transfers their profits to the tax haven of Bermuda.
#Amazon #Amazonas #AmazonFires #Brazil #ClimateEmergency #COP25Madrid https://twitter.com/zembla/status/1205228580193488896 …",[],['https://twitter.com/zembla/status/1205228580193488896'],[],0,0,0,"['#bunge', '#amazone', '#amazon', '#amazonas', '#amazonfires', '#brazil', '#climateemergency', '#cop25madrid']",[],https://twitter.com/HANnah15117006/status/1205412558267703296,False,https://twitter.com/ZEMBLA/status/1205228580193488896,0,,,,,,,"[{'user_id': '1159421365147115520', 'username': 'HANnah15117006'}]",
1205411598241878016,1205411598241878016,1576227495000,2019-12-13,11:58:15,MSK,115728578,texanaquaponics,TexanAquaponics,,"This is what blue butterflies in the Amazon rainforest in Brazil look like.
pic.twitter.com/BN9h38V71B #MarkRobbinsNetwork #PremiumSocialMediaManagementService
https://twitter.com/MarkRobbinsNet We Follow Back!",[],['https://twitter.com/MarkRobbinsNet'],['https://pbs.twimg.com/media/Buxs2HEIMAAAF4d.jpg'],0,0,0,"['#markrobbinsnetwork', '#premiumsocialmediamanagementservice']",[],https://twitter.com/TexanAquaponics/status/1205411598241878016,False,,0,,,,,,,"[{'user_id': '115728578', 'username': 'TexanAquaponics'}]",
1205410644884893696,1205410644884893696,1576227267000,2019-12-13,11:54:27,MSK,112466913,mickeydangerez,Mickey Dangerez,,Brazil's Amazon rainforest and development at a crossroads https://ift.tt/2PeDMem #PhysOrg,[],['https://ift.tt/2PeDMem'],[],0,0,0,['#physorg'],[],https://twitter.com/MickeyDangerez/status/1205410644884893696,False,,0,,,,,,,"[{'user_id': '112466913', 'username': 'MickeyDangerez'}]",
1205409172033953792,1205409172033953792,1576226916000,2019-12-13,11:48:36,MSK,1500091382,best2uinhealth,Jason,,"France to Partner With Brazil States on Amazon, Bypassing Bolsonaro http://dlvr.it/RLBxlM pic.twitter.com/9uf65vLkTv",[],['http://dlvr.it/RLBxlM'],['https://pbs.twimg.com/media/ELp5QM5UUAA2KBE.jpg'],0,0,0,[],[],https://twitter.com/Best2uinhealth/status/1205409172033953792,False,,0,,,,,,,"[{'user_id': '1500091382', 'username': 'Best2uinhealth'}]",
1205402837267734529,1205402837267734529,1576225406000,2019-12-13,11:23:26,MSK,1050250760,blossomdai,Blossom Dailey,,"""Preservation or Development? Brazil’s Amazon at a Crossroads"" by The Associated Press via NYT https://ift.tt/349ZOmU ",[],['https://ift.tt/349ZOmU'],[],0,0,0,[],[],https://twitter.com/blossomdai/status/1205402837267734529,False,,0,,,,,,,"[{'user_id': '1050250760', 'username': 'blossomdai'}]",
1205402517959577600,1205402517959577600,1576225330000,2019-12-13,11:22:10,MSK,18554720,laprogressive,LA Progressive,,#RT @theintercept: Dorothy Stang died defending a sustainable development model for the Amazon. Can her legacy survive in Bolsonaro’s Brazil? https://interc.pt/34dFh0W ,['theintercept'],['https://interc.pt/34dFh0W'],[],0,1,0,['#rt'],[],https://twitter.com/LAProgressive/status/1205402517959577600,False,,0,,,,,,,"[{'user_id': '18554720', 'username': 'LAProgressive'}, {'user_id': '2329066872', 'username': 'theintercept'}]",
1205397346999242752,1205397346999242752,1576224097000,2019-12-13,11:01:37,MSK,468406936,lepusconsulting,Lepus Consulting,,Stanley Johnson sounded very good on R4 this morning. I liked his suggestion that Brazil is the first country UK should talk to re trade because of the Amazon forest destruction. We need to pay Brazil not to cut down any more trees and protect the earth’s lungs.,[],[],[],0,0,1,[],[],https://twitter.com/LepusConsulting/status/1205397346999242752,False,,0,,,,,,,"[{'user_id': '468406936', 'username': 'LepusConsulting'}]",
1205397269433978880,1205397269433978880,1576224078000,2019-12-13,11:01:18,MSK,6530192,bootkidz,bootkidz,,Brazil's Amazon at a Crossroads https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81 …,[],['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81'],[],0,0,0,[],[],https://twitter.com/bootkidz/status/1205397269433978880,False,,0,,,,,,,"[{'user_id': '6530192', 'username': 'bootkidz'}]",
1205392775786549250,1205392775786549250,1576223007000,2019-12-13,10:43:27,MSK,1164108069569253376,boo70338778,Boo,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,0,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/Boo70338778/status/1205392775786549250,False,,0,,,,,,,"[{'user_id': '1164108069569253376', 'username': 'Boo70338778'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205388344559058944,1205388344559058944,1576221951000,2019-12-13,10:25:51,MSK,3028299515,karinwins1,Karin Winterscheidt,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,0,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/karinwins1/status/1205388344559058944,False,,0,,,,,,,"[{'user_id': '3028299515', 'username': 'karinwins1'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205382354757464066,1205382354757464066,1576220522000,2019-12-13,10:02:02,MSK,75684101,perunews,Perú News 🇵🇪,,@AmazonWatch / Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon http://perunews.info http://dld.bz/hTczU ,['amazonwatch'],"['http://perunews.info', 'http://dld.bz/hTczU']",[],0,0,0,[],[],https://twitter.com/PeruNews/status/1205382354757464066,False,,0,,,,,,,"[{'user_id': '75684101', 'username': 'PeruNews'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205371163377119232,1205371163377119232,1576217854000,2019-12-13,09:17:34,MSK,84100924,benjgarside,Ben Garside,,"This gives an indication of how little the financial sector currently factors in #climate risk...
#Brazil boom due as agribusiness rubs hands while #Amazon clearances accelerate (and gets absolutely zero mention by anyone in this piece) https://twitter.com/ReutersJamie/status/1205155128677933061 …",[],['https://twitter.com/ReutersJamie/status/1205155128677933061'],[],1,3,7,"['#climate', '#brazil', '#amazon']",[],https://twitter.com/BenJGarside/status/1205371163377119232,False,https://twitter.com/ReutersJamie/status/1205155128677933061,0,,,,,,,"[{'user_id': '84100924', 'username': 'BenJGarside'}]",
1205370568435851265,1205225120626814996,1576217712000,2019-12-13,09:15:12,MSK,1165831350659637249,quriousin,QuriousKiwiInAus🐻,,"And what if, just like the Amazon in Brazil, all these fires were lit by climate change zealots/ activists? What if this is a manufactured crisis just like the Amazon? What then? Will the climate religion take some responsibility, or just sweep it under the carpet?","['triplejay58', 'pcribbett']",[],[],0,0,1,[],[],https://twitter.com/QuriousIn/status/1205370568435851265,False,,0,,,,,,,"[{'user_id': '1165831350659637249', 'username': 'QuriousIn'}, {'user_id': '198296897', 'username': 'Triplejay58'}, {'user_id': '1054717594429665280', 'username': 'PCribbett'}]",
1205366786956263424,1205366786956263424,1576216811000,2019-12-13,09:00:11,MSK,1149173893157888000,tbsnewsdotnet,The Business Standard,,#Deforestation or #development? #Brazil's #Amazon at a #crossroad https://tbsnews.net/environment/deforestation-or-development-brazils-amazon-crossroad#.XfMo1nvXFv8.twitter …,[],['https://tbsnews.net/environment/deforestation-or-development-brazils-amazon-crossroad#.XfMo1nvXFv8.twitter'],[],0,0,0,"['#deforestation', '#development', '#brazil', '#amazon', '#crossroad']",[],https://twitter.com/tbsnewsdotnet/status/1205366786956263424,False,,0,,,,,,,"[{'user_id': '1149173893157888000', 'username': 'tbsnewsdotnet'}]",
1205366497880793088,1205366497880793088,1576216742000,2019-12-13,08:59:02,MSK,724338655788163073,profe9350,David,,"Someone shared a Top article with you.
""Preservation or development? Brazil’s Amazon at a crossroads""
https://my.earthlink.net/article/top?guid=20191212/0925345e-ffe3-4376-94dc-b7ec70d59f02 …",[],['https://my.earthlink.net/article/top?guid=20191212/0925345e-ffe3-4376-94dc-b7ec70d59f02'],[],0,0,0,[],[],https://twitter.com/profe9350/status/1205366497880793088,False,,0,,,,,,,"[{'user_id': '724338655788163073', 'username': 'profe9350'}]",
1205364023170076672,1205364023170076672,1576216152000,2019-12-13,08:49:12,MSK,988712327133450241,michlehaudebou1,Michèle Haudebourg,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon #Resista #DefendEarthDefenders #StopBolsonaro http://amwt.ch/4561 via @AmazonWatch,['amazonwatch'],['http://amwt.ch/4561'],[],0,0,0,"['#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/MichleHaudebou1/status/1205364023170076672,False,,0,,,,,,,"[{'user_id': '988712327133450241', 'username': 'MichleHaudebou1'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205362528269864960,1205362528269864960,1576215795000,2019-12-13,08:43:15,MSK,401639900,mwdyslive,sabr!na,,@LanaParrilla Did you go to visit the Amazon rainforest?🌳 🇧🇷 #Brazil,['lanaparrilla'],[],[],0,0,0,['#brazil'],[],https://twitter.com/mwdyslive/status/1205362528269864960,False,,0,,,,,,,"[{'user_id': '401639900', 'username': 'mwdyslive'}, {'user_id': '129400817', 'username': 'LanaParrilla'}]",
1205355442353905664,1205355442353905664,1576214106000,2019-12-13,08:15:06,MSK,3243296091,samrbiz,South American Business News,,Preservation or development? Brazil’s Amazon at a crossroads http://www.business-support-network.org/SAbiz/2019/12/13/preservation-or-development-brazils-amazon-at-a-crossroads/ … #Business #SAbiz,[],['http://www.business-support-network.org/SAbiz/2019/12/13/preservation-or-development-brazils-amazon-at-a-crossroads/'],[],0,0,0,"['#business', '#sabiz']",[],https://twitter.com/SAmrBiz/status/1205355442353905664,False,,0,,,,,,,"[{'user_id': '3243296091', 'username': 'SAmrBiz'}]",
1205348120143552513,1205348120143552513,1576212360000,2019-12-13,07:46:00,MSK,2926746832,_vrmachado,Vinícius Machado,,"hi @PLAYERUNKNOWN ty so much for saving my country and the amazon forest, we know you care about brazil since you lived here!!! 😍 pic.twitter.com/T79KJhi3Lg",['playerunknown'],[],['https://pbs.twimg.com/media/ELpBuLHXYAIx1Eb.jpg'],0,1,7,[],[],https://twitter.com/_vrmachado/status/1205348120143552513,False,,0,,,,,,,"[{'user_id': '2926746832', 'username': '_vrmachado'}, {'user_id': '1880574811', 'username': 'PLAYERUNKNOWN'}]",
1205347897291599872,1205347897291599872,1576212307000,2019-12-13,07:45:07,MSK,1899275323,luzanob,Galileo B. Luzano,,"Brazil paves highway to soy, sparking worries about Amazon https://news.mb.com.ph/2019/12/13/brazil-paves-highway-to-soy-sparking-worries-about-amazon/ … via @Crowdynews",['crowdynews'],['https://news.mb.com.ph/2019/12/13/brazil-paves-highway-to-soy-sparking-worries-about-amazon/'],[],0,0,0,[],[],https://twitter.com/LuzanoB/status/1205347897291599872,False,,0,,,,,,,"[{'user_id': '1899275323', 'username': 'LuzanoB'}, {'user_id': '202072895', 'username': 'Crowdynews'}]",
1205341866478260225,1205295036201623552,1576210869000,2019-12-13,07:21:09,MSK,153621977,jc_cali,Swizzy Colón,,"Ooh whoops no, I meant too far right in the USA context, sorry for the confusion.
But to keep being global, Bolsonaro in Brazil is literally permitting the burning of the Amazon, massacre of indigenous & LGBTQ folk, etc.","['confusedmathem1', 'natesilver538']",[],[],1,0,0,[],[],https://twitter.com/JC_Cali/status/1205341866478260225,False,,0,,,,,,,"[{'user_id': '153621977', 'username': 'JC_Cali'}, {'user_id': '1027415368468332545', 'username': 'ConfusedMathem1'}, {'user_id': '16017475', 'username': 'NateSilver538'}]",
1205337392808439810,1205337392808439810,1576209803000,2019-12-13,07:03:23,MSK,26584031,flightwoman,Jennifer Baratta,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,0,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/Flightwoman/status/1205337392808439810,False,,0,,,,,,,"[{'user_id': '26584031', 'username': 'Flightwoman'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205336745744699392,1205336745744699392,1576209648000,2019-12-13,07:00:48,MSK,314474124,einbrazilbiz,EIN Brazil Business,,Preservation or development? Brazil’s Amazon at a crossroads http://s.einnews.com/JMnoHZQFM5 ,[],['http://s.einnews.com/JMnoHZQFM5'],[],0,0,1,[],[],https://twitter.com/EINBrazilBiz/status/1205336745744699392,False,,0,,,,,,,"[{'user_id': '314474124', 'username': 'EINBrazilBiz'}]",
1205336611074068480,1205336611074068480,1576209616000,2019-12-13,07:00:16,MSK,166556095,einagrinews,EIN Agriculture News,,Preservation or development? Brazil’s Amazon at a crossroads http://s.einnews.com/JMnoHZQFM5 ,[],['http://s.einnews.com/JMnoHZQFM5'],[],0,0,0,[],[],https://twitter.com/EINAgriNews/status/1205336611074068480,False,,0,,,,,,,"[{'user_id': '166556095', 'username': 'EINAgriNews'}]",
1205336555998584835,1205336555998584835,1576209603000,2019-12-13,07:00:03,MSK,1393148048,pcomentar,Para Comentar,,"Top story: Brazil’s Amazon at a Crossroads https://www.latinorebels.com/2019/12/12/amazonatacrossroads/ …, see more http://tweetedtimes.com/PComentar?s=tnp ",[],"['https://www.latinorebels.com/2019/12/12/amazonatacrossroads/', 'http://tweetedtimes.com/PComentar?s=tnp']",[],0,0,0,[],[],https://twitter.com/PComentar/status/1205336555998584835,False,,0,,,,,,,"[{'user_id': '1393148048', 'username': 'PComentar'}]",
1205336342659567618,1205336342659567618,1576209552000,2019-12-13,06:59:12,MSK,2975647924,csimmons903,Craig Simmons,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,0,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/csimmons903/status/1205336342659567618,False,,0,,,,,,,"[{'user_id': '2975647924', 'username': 'csimmons903'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205335923031822338,1205335923031822338,1576209452000,2019-12-13,06:57:32,MSK,1133477020317315072,fiveminnews,FIVE MINUTE NEWS,,1970’s footage of Brazil’s development of the Amazon region http://dlvr.it/RLBNXp ,[],['http://dlvr.it/RLBNXp'],[],0,0,0,[],[],https://twitter.com/FiveMinNews/status/1205335923031822338,False,,0,,,,,,,"[{'user_id': '1133477020317315072', 'username': 'FiveMinNews'}]",
1205330040608702465,1205329437090287620,1576208050000,2019-12-13,06:34:10,MSK,2872589854,photonicdog,freya 2020 account of the decade edition,,a few better places you can put your money if you wanna help the amazon along with the indigenous people of brazil https://nyanguard-party.tumblr.com/post/187169560172/articulation-of-brazils-indigenous-peoples …,[],['https://nyanguard-party.tumblr.com/post/187169560172/articulation-of-brazils-indigenous-peoples'],[],0,2,1,[],[],https://twitter.com/photonicDog/status/1205330040608702465,False,,0,,,,,,,"[{'user_id': '2872589854', 'username': 'photonicDog'}]",
1205329662387183616,1205329662387183616,1576207960000,2019-12-13,06:32:40,MSK,1079811088072335360,sherishibuya,Sheri Shibuya,,Preservation or development? Brazil’s Amazon at a crossroads (from @AP) https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81 …,['ap'],['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81'],[],0,0,0,[],[],https://twitter.com/SheriShibuya/status/1205329662387183616,False,,0,,,,,,,"[{'user_id': '1079811088072335360', 'username': 'SheriShibuya'}, {'user_id': '51241574', 'username': 'AP'}]",
1205323131143016448,1205323131143016448,1576206402000,2019-12-13,06:06:42,MSK,11859152,jfcarpio,JFC,,Mystery surrounds humpback whale found dead in depths of Brazil’s Amazon jungle | The Independent https://www.independent.co.uk/news/world/americas/humpback-whale-dead-amazon-jungle-brazil-rainforest-marajo-island-a8796016.html …,[],['https://www.independent.co.uk/news/world/americas/humpback-whale-dead-amazon-jungle-brazil-rainforest-marajo-island-a8796016.html'],[],2,1,3,[],[],https://twitter.com/jfcarpio/status/1205323131143016448,False,,0,,,,,,,"[{'user_id': '11859152', 'username': 'jfcarpio'}]",
1205321092492976128,1205321092492976128,1576205916000,2019-12-13,05:58:36,MSK,366374544,reevynap,Reevyn Aronson,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon #Resista #DefendEarthDefenders #StopBolsonaro http://amwt.ch/4561 via @AmazonWatch,['amazonwatch'],['http://amwt.ch/4561'],[],0,0,0,"['#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/reevynap/status/1205321092492976128,False,,0,,,,,,,"[{'user_id': '366374544', 'username': 'reevynap'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205319827600138241,1205319827600138241,1576205615000,2019-12-13,05:53:35,MSK,20566926,brazil201,Alex,,#legacies Santa is the original amazon,[],[],[],0,0,1,['#legacies'],[],https://twitter.com/Brazil201/status/1205319827600138241,False,,0,,,,,,,"[{'user_id': '20566926', 'username': 'Brazil201'}]",
1205558504402169859,1205558504402169859,1576262520000,2019-12-13,21:42:00,MSK,727524717121409024,thisisplace,place,,"France and a group of Brazilian states plan to announce a partnership to preserve the Amazon rainforest, bypassing Brazil's federal government | #landrights #propertyrights https://bit.ly/2s8TT4d ",[],['https://bit.ly/2s8TT4d'],[],0,1,1,"['#landrights', '#propertyrights']",[],https://twitter.com/thisisplace/status/1205558504402169859,False,,0,,,,,,,"[{'user_id': '727524717121409024', 'username': 'thisisplace'}]",
1205557529910087681,1205556730366746624,1576262287000,2019-12-13,21:38:07,MSK,1126906365207879680,niggarmy,diego PREY FOR GOTHAM,,the streams don’t count but for example if i buy an album from amazon US and ship it to Brazil doesn’t it help on bb200?,['relofhope'],[],[],1,0,0,[],[],https://twitter.com/niggarmy/status/1205557529910087681,False,,0,,,,,,,"[{'user_id': '1126906365207879680', 'username': 'niggarmy'}, {'user_id': '919413370050285568', 'username': 'RElOFHOPE'}]",
1205557275181682689,1205508490887868416,1576262227000,2019-12-13,21:37:07,MSK,1172373961390166016,jeromeleveque01,Jerome Leveque - Zeus🌩,,"I was suppose to blow her mind....
Justice League the Amazon......
Brazil rejected fundings
I am Mauritius (Moris) Born, British- American
Bo Selecta...","['seismicuprising', 'thenation']",[],[],0,1,1,[],[],https://twitter.com/JeromeLeveque01/status/1205557275181682689,False,,0,,,,,,,"[{'user_id': '1172373961390166016', 'username': 'JeromeLeveque01'}, {'user_id': '1201884346912657408', 'username': 'SeismicUprising'}, {'user_id': '1947301', 'username': 'thenation'}]",
1205556066693443584,1205556065670008832,1576261939000,2019-12-13,21:32:19,MSK,1586388810,dnepstad1,Dan Nepstad,,"Brazil has demonstrated that nature-based solutions can be huge, avoiding emissions of 7 billion tCO2 by slowing loss of Amazon and Cerrado forests. And Brazil demonstrates why we need more finance: only 3% of these 7GtCO2 avoided emissions have been compensated. 2/",[],[],[],1,0,0,[],[],https://twitter.com/dnepstad1/status/1205556066693443584,False,,0,,,,,,,"[{'user_id': '1586388810', 'username': 'dnepstad1'}]",
1205555522340040704,1205220013034094592,1576261809000,2019-12-13,21:30:09,MSK,1089532729161641984,almir25480967,Almir,,"you from the old continent destroyed your forests and natural wealth, so forget about the Amazon and Brazil.",['gretathunberg'],[],[],0,0,0,[],[],https://twitter.com/Almir25480967/status/1205555522340040704,False,,0,,,,,,,"[{'user_id': '1089532729161641984', 'username': 'Almir25480967'}, {'user_id': '1006419421244678144', 'username': 'GretaThunberg'}]",
1205555478488592390,1205500771715952640,1576261798000,2019-12-13,21:29:58,MSK,1089532729161641984,almir25480967,Almir,,"you from the old continent destroyed your forests and natural wealth, so forget about the Amazon and Brazil.",['gretathunberg'],[],[],0,0,0,[],[],https://twitter.com/Almir25480967/status/1205555478488592390,False,,0,,,,,,,"[{'user_id': '1089532729161641984', 'username': 'Almir25480967'}, {'user_id': '1006419421244678144', 'username': 'GretaThunberg'}]",
1205552595223355392,1205552296161095682,1576261111000,2019-12-13,21:18:31,MSK,401639900,mwdyslive,sabr!na,,@LanaParrilla Did you go to visit the Amazon rainforest?🌳 🇧🇷 #Brazil,['lanaparrilla'],[],[],0,0,0,['#brazil'],[],https://twitter.com/mwdyslive/status/1205552595223355392,False,,0,,,,,,,"[{'user_id': '401639900', 'username': 'mwdyslive'}, {'user_id': '129400817', 'username': 'LanaParrilla'}]",
1205551751446745094,1205551751446745094,1576260910000,2019-12-13,21:15:10,MSK,1158682640,enclave_la,EnClave.LA,,Amazon indigenous leaders killed in Brazil drive-by shooting https://www.theguardian.com/world/2019/dec/08/amazon-indigenous-leaders-killed-in-brazil-drive-by-shooting?CMP=share_btn_tw …,[],['https://www.theguardian.com/world/2019/dec/08/amazon-indigenous-leaders-killed-in-brazil-drive-by-shooting?CMP=share_btn_tw'],[],0,0,0,[],[],https://twitter.com/EnClave_LA/status/1205551751446745094,False,,0,,,,,,,"[{'user_id': '1158682640', 'username': 'EnClave_LA'}]",
1205548095641182209,1205548095641182209,1576260038000,2019-12-13,21:00:38,MSK,2189900911,gibstockex,GSX Limited,,Brazil are hoping that the demand for green debt will raise funds for the $3.1 billion Amazon crossing railway. http://ow.ly/d8JS50xzak3 ,[],['http://ow.ly/d8JS50xzak3'],[],0,0,0,[],[],https://twitter.com/GibStockEx/status/1205548095641182209,False,,0,,,,,,,"[{'user_id': '2189900911', 'username': 'GibStockEx'}]",
1205547935213084673,1205547935213084673,1576260000000,2019-12-13,21:00:00,MSK,196965482,brecordernews,Business Recorder,,"The move comes almost a year after the US e-commerce giant launched its first in-house fulfillment and delivery network in Brazil.
#UnitedStates #Brazil #Amazon #Ecommerce
https://www.brecorder.com/2019/12/13/552691/amazon-com-to-open-distribution-center-in-northeastern-brazil-in-2020/ … pic.twitter.com/C5sP1fJWuX",[],['https://www.brecorder.com/2019/12/13/552691/amazon-com-to-open-distribution-center-in-northeastern-brazil-in-2020/'],['https://pbs.twimg.com/media/ELqeBVXWkAE-7OT.jpg'],0,0,0,"['#unitedstates', '#brazil', '#amazon', '#ecommerce']",[],https://twitter.com/brecordernews/status/1205547935213084673,False,,0,,,,,,,"[{'user_id': '196965482', 'username': 'brecordernews'}]",
1205543562785542144,1205543562785542144,1576258957000,2019-12-13,20:42:37,MSK,2517152450,impalaprints,ImpalaPrints,,Excited to share the latest addition to my #etsy shop: On the Banks of the Amazon From its Sources to the sea illustrated Vintage 1914 Antique Travel Brazil Book Hardback British https://etsy.me/36ys702 #booksandzines #book #vintage #vintagebook #giftbook #victory #vin pic.twitter.com/Wy31GOmVNj,[],['https://etsy.me/36ys702'],['https://pbs.twimg.com/media/ELrzev4W4AA-Wgd.jpg'],0,0,0,"['#etsy', '#booksandzines', '#book', '#vintage', '#vintagebook', '#giftbook', '#victory', '#vin']",[],https://twitter.com/ImpalaPrints/status/1205543562785542144,False,,0,,,,,,,"[{'user_id': '2517152450', 'username': 'ImpalaPrints'}]",
1205543469751648262,1205531115689254913,1576258935000,2019-12-13,20:42:15,MSK,176441481,sko0lyard,Lansquenet Proud,,Stanley Johnson this morning was the most telling. Waffling about the environment and trade before suddenly getting keen on the Amazon and Brazil. Who's the president of Brazil again? It's quite clear which governments we'll be fleeing to and making the EU the enemy,"['jones_itfc', 'bbc5live']",[],[],0,0,1,[],[],https://twitter.com/Sko0lyard/status/1205543469751648262,False,,0,,,,,,,"[{'user_id': '176441481', 'username': 'Sko0lyard'}, {'user_id': '374158349', 'username': 'jones_itfc'}, {'user_id': '7589572', 'username': 'bbc5live'}]",
1205542501744103425,1205538444581253120,1576258704000,2019-12-13,20:38:24,MSK,884102092700430336,haroldslaundry,Harold's Laundry,,"while i go through these three, let me just say i'm so pissed... i still can't buy or pre-order ANY physical copy of fine line in brazil. AMAZON BR, WHY DO YOU HATE ME SO MUCH? pic.twitter.com/mo0MyUXBmd",[],[],[],1,0,0,[],[],https://twitter.com/haroldslaundry/status/1205542501744103425,False,,1,,,,,,,"[{'user_id': '884102092700430336', 'username': 'haroldslaundry'}]",
1205539872901156865,1205539872901156865,1576258078000,2019-12-13,20:27:58,MSK,422355017,collinrees,Collin Rees,,"Powerful moment:
Today at #COP25, Brazil received @CANIntl’s “Colossal Fossil of the Year” award for killing its people, the Amazon & the climate.
These incredible, brave resistors are making sure that’s not the final chapter of the story. The people of the world stand w/ them! pic.twitter.com/ne2JF7SBtB",['canintl'],[],[],0,6,16,['#cop25'],[],https://twitter.com/collinrees/status/1205539872901156865,False,,1,,,,,,,"[{'user_id': '422355017', 'username': 'collinrees'}, {'user_id': '76849994', 'username': 'CANIntl'}]",
1205538977194881024,1205538977194881024,1576257864000,2019-12-13,20:24:24,MSK,188847758,priceofoil,Oil Change International,,"Today at #COP25, Brazil is awarded the “Colossal Fossil of the Year” for its continued horrifying conduct in violation of Indigenous rights, human rights, & climate justice.
Destroying the Amazon & murdering environmental defenders is dispicable. #FossiloftheDay #COP25Madrid pic.twitter.com/98WvBi8Isw",[],[],['https://pbs.twimg.com/media/ELrvTlkWkAUxmaR.jpg'],0,3,7,"['#cop25', '#fossiloftheday', '#cop25madrid']",[],https://twitter.com/PriceofOil/status/1205538977194881024,False,,0,,,,,,,"[{'user_id': '188847758', 'username': 'PriceofOil'}]",
1205538961466281984,1205538961466281984,1576257860000,2019-12-13,20:24:20,MSK,605590686,fabiolaortizrio,Fabíola Ortiz,,"""The Amazon stands because we resist"" Brazil wins the #Colossalfossilfuel prize @ #COP25 #Madrid #COP25Madrid @StanleyConnect @LatinClima @PxP_LAC @CentroCCyTD pic.twitter.com/diuxryvsHu","['stanleyconnect', 'latinclima', 'pxp_lac', 'centroccytd']",[],['https://pbs.twimg.com/media/ELrvSYUW4AEpSno.jpg'],0,0,3,"['#colossalfossilfuel', '#cop25', '#madrid', '#cop25madrid']",[],https://twitter.com/FabiolaOrtizRio/status/1205538961466281984,False,,0,,,,,,,"[{'user_id': '605590686', 'username': 'FabiolaOrtizRio'}, {'user_id': '65644550', 'username': 'StanleyConnect'}, {'user_id': '3153278972', 'username': 'LatinClima'}, {'user_id': '906989328622071809', 'username': 'PxP_LAC'}, {'user_id': '3340170124', 'username': 'CentroCCYTD'}]",
1205538897943572480,1205538897943572480,1576257845000,2019-12-13,20:24:05,MSK,883072129490669568,coryerlananh,Lananh Coryer,,"Yes, they did they already singed contract last year , that's why Brazil President allowed for developers burn down the AMAZON FOREST ..! https://twitter.com/Wudang96/status/1205523272391102464 …",[],['https://twitter.com/Wudang96/status/1205523272391102464'],[],0,0,0,[],[],https://twitter.com/CoryerLananh/status/1205538897943572480,False,https://twitter.com/Wudang96/status/1205523272391102464,0,,,,,,,"[{'user_id': '883072129490669568', 'username': 'CoryerLananh'}]",
1205537657973100544,1205537657973100544,1576257550000,2019-12-13,20:19:10,MSK,1072444228704370690,franziwehinger,Franzi_wehinger,,"Fossil of the year at #cop25, last day of the conference with @fes_mena @FESonline @CANARABWORLD and @FESnewsbrief is: BRAZIL! Highest amazon deforestation in one year. Three environmentalists killed in only this week. pic.twitter.com/oaSWiEpd5Z","['fes_mena', 'fesonline', 'canarabworld', 'fesnewsbrief']",[],[],0,0,2,['#cop25'],[],https://twitter.com/FranziWehinger/status/1205537657973100544,False,,1,,,,,,,"[{'user_id': '1072444228704370690', 'username': 'FranziWehinger'}, {'user_id': '979078141854539776', 'username': 'fes_mena'}, {'user_id': '144862179', 'username': 'FESonline'}, {'user_id': '1167431894348238849', 'username': 'CANARABWORLD'}, {'user_id': '789038665984991232', 'username': 'FESnewsbrief'}]",
1205536119376494595,1205536119376494595,1576257183000,2019-12-13,20:13:03,MSK,34005611,wwwgalelaurecom,"Gale Laure, Author",,EVOLUTION OF A SAD WOMAN #book worldwide #shopping @ bottom of page: #Amazon #USA #Japan #India #Australia #Brazil #Germany #France #UK #Canada #Mexico #Italy #Spain for #Christmas #shopping #FridayThoughts. http://www.tinyurl.com/y9716zr GL,[],['http://www.tinyurl.com/y9716zr'],[],0,0,0,"['#book', '#shopping', '#amazon', '#usa', '#japan', '#india', '#australia', '#brazil', '#germany', '#france', '#uk', '#canada', '#mexico', '#italy', '#spain', '#christmas', '#shopping', '#fridaythoughts']",[],https://twitter.com/wwwgalelaurecom/status/1205536119376494595,False,,0,,,,,,,"[{'user_id': '34005611', 'username': 'wwwgalelaurecom'}]",
1205535732363939840,1205535732363939840,1576257091000,2019-12-13,20:11:31,MSK,1089916526625505280,jpaccountantsuk,J&P Accountants,,"Logistics News
Amazon is set to open its second fulfilment centre in Brazil
Amazon will open a fulfilment centre in Northern Brazil to reduce its delivery time and logistics infrastructure in Latin America's biggest economy. This will be Amazon's 2nd fulfilment centre in Brazil pic.twitter.com/zQ8aTKYSgC",[],[],['https://pbs.twimg.com/media/ELrsW3xX0AABlJl.jpg'],0,0,0,[],[],https://twitter.com/jpaccountantsuk/status/1205535732363939840,False,,0,,,,,,,"[{'user_id': '1089916526625505280', 'username': 'jpaccountantsuk'}]",
1205533937826709504,1205533937826709504,1576256663000,2019-12-13,20:04:23,MSK,22466318,kartik1973,Kartik Ramakrishnan,,Amazon Boosts Presence in Brazil With E-commerce Intiatives - Yahoo Finance https://ift.tt/2ROb5Xu ,[],['https://ift.tt/2ROb5Xu'],[],0,0,0,[],[],https://twitter.com/kartik1973/status/1205533937826709504,False,,0,,,,,,,"[{'user_id': '22466318', 'username': 'kartik1973'}]",
1205531970777833472,1205531970777833472,1576256194000,2019-12-13,19:56:34,MSK,2354291468,bad_writer0111,Mourning my Son,,"#Bolsonaro Must Go! He has allowed & encouraged the murder of Natives & burning of the #Amazon.
When @GretaThunberg called him out on it, he verbally attacked her, just as #Trump did!
#Brazil, please save #LulaDaSilva from Bolsonaro's #Corrupt Senate, & re-elect him https://twitter.com/GottaBernNow/status/1205358487582101504 …",['gretathunberg'],['https://twitter.com/GottaBernNow/status/1205358487582101504'],[],0,0,0,"['#bolsonaro', '#amazon', '#trump', '#brazil', '#luladasilva', '#corrupt']",[],https://twitter.com/Bad_Writer0111/status/1205531970777833472,False,https://twitter.com/GottaBernNow/status/1205358487582101504,0,,,,,,,"[{'user_id': '2354291468', 'username': 'Bad_Writer0111'}, {'user_id': '1006419421244678144', 'username': 'GretaThunberg'}]",
1205529882052251648,1205522192546578433,1576255696000,2019-12-13,19:48:16,MSK,1142171096965361665,humanoidlord,humanoidlord,,"sorry greg, it was just that it wasn't avaliable in amazon here in brazil :p",[],[],[],0,0,1,[],[],https://twitter.com/humanoidlord/status/1205529882052251648,False,,0,,,,,,,"[{'user_id': '1142171096965361665', 'username': 'humanoidlord'}]",
1205528590726631427,1205508757486231552,1576255388000,2019-12-13,19:43:08,MSK,1097821909243310080,dani71533521,Dani Tedesco 🇧🇷,,"Environment activists make noise
against Brazil over Amazon, CO2, indians...
Facts are:
Amazon is not lungs of the world.
Many cientists are skeptical about CO2 causing global warming
Indians' lands are way too large, compared to Brazilian population and territory",['rainews'],[],[],0,0,0,[],[],https://twitter.com/Dani71533521/status/1205528590726631427,False,,0,,,,,,,"[{'user_id': '1097821909243310080', 'username': 'Dani71533521'}, {'user_id': '14060262', 'username': 'RaiNews'}]",
1205528410275102720,1205528410275102720,1576255345000,2019-12-13,19:42:25,MSK,66127320,masfranca,Marco A. Franca,,Preservation or Development? Brazil’s Amazon at a Crossroads https://nyti.ms/38w1Q4f ,[],['https://nyti.ms/38w1Q4f'],[],0,0,0,[],[],https://twitter.com/masfranca/status/1205528410275102720,False,,0,,,,,,,"[{'user_id': '66127320', 'username': 'masfranca'}]",
1205525826126712833,1205525826126712833,1576254729000,2019-12-13,19:32:09,MSK,1038062277180751872,peterrula,Peter Lauterbach,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon http://amwt.ch/4561 ,[],['http://amwt.ch/4561'],[],0,0,0,[],[],https://twitter.com/PeterRuLa/status/1205525826126712833,False,,0,,,,,,,"[{'user_id': '1038062277180751872', 'username': 'PeterRuLa'}]",
1205519658192920577,1205494032274771973,1576253258000,2019-12-13,19:07:38,MSK,34585261,on_drayy_uhh,ⓥ 𝕕𝕣𝕖 ♡,,The majority of beef in the US comes from Brazil where they’re burning down the Amazon to make room for more cattle. Transporting produce is easier than rotting flesh lol,"['joserosado', 'joeldeteves', 'steakfueled']",[],[],0,0,0,[],[],https://twitter.com/on_drayy_uhh/status/1205519658192920577,False,,0,,,,,,,"[{'user_id': '34585261', 'username': 'on_drayy_uhh'}, {'user_id': '17730766', 'username': 'joserosado'}, {'user_id': '912754590411403265', 'username': 'JoelDeteves'}, {'user_id': '827246199216353280', 'username': 'SteakFueled'}]",
1205519437958385664,1205519437958385664,1576253206000,2019-12-13,19:06:46,MSK,3972856043,beautyrecap,#BeautyRecap,,Body Shop Owner Urges Brazil to Protect Amazon After Fires Hit Suppliers #beautyrecap https://www.businessoffashion.com/articles/news-analysis/natura-urges-brazil-to-protect-amazon-after-fires-hit-suppliers …,[],['https://www.businessoffashion.com/articles/news-analysis/natura-urges-brazil-to-protect-amazon-after-fires-hit-suppliers'],[],0,0,0,['#beautyrecap'],[],https://twitter.com/BeautyRecap/status/1205519437958385664,False,,0,,,,,,,"[{'user_id': '3972856043', 'username': 'BeautyRecap'}]",
1205519437413138433,1205519437413138433,1576253206000,2019-12-13,19:06:46,MSK,480885032,kindofstephen,Stephen,,Body Shop Owner Urges Brazil to Protect Amazon After Fires Hit Suppliers #beautyrecap https://www.businessoffashion.com/articles/news-analysis/natura-urges-brazil-to-protect-amazon-after-fires-hit-suppliers …,[],['https://www.businessoffashion.com/articles/news-analysis/natura-urges-brazil-to-protect-amazon-after-fires-hit-suppliers'],[],0,0,0,['#beautyrecap'],[],https://twitter.com/KindofStephen/status/1205519437413138433,False,,0,,,,,,,"[{'user_id': '480885032', 'username': 'KindofStephen'}]",
1205517042889166850,1205517042889166850,1576252635000,2019-12-13,18:57:15,MSK,414765108,rhondababy1953,rhonda mandato,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,0,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/rhondababy1953/status/1205517042889166850,False,,0,,,,,,,"[{'user_id': '414765108', 'username': 'rhondababy1953'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205507329648660485,1205507329648660485,1576250319000,2019-12-13,18:18:39,MSK,784164359736000513,gdovalepereira,Gabriella Pereira,,"What if the Lion King happened in the Amazon rainforest?
The Brazilian version of ""The Lion King"". This is so beautiful! Well done @vilmarrossijunior (Instagram)
https://g1.globo.com/natureza/noticia/2019/08/10/animais-da-amazonia-sao-protagonistas-em-versao-brasileira-de-o-rei-leao.ghtml …
#amazon #brazil #rainforest",[],['https://g1.globo.com/natureza/noticia/2019/08/10/animais-da-amazonia-sao-protagonistas-em-versao-brasileira-de-o-rei-leao.ghtml'],[],0,0,1,"['#amazon', '#brazil', '#rainforest']",[],https://twitter.com/Gdovalepereira/status/1205507329648660485,False,,0,,,,,,,"[{'user_id': '784164359736000513', 'username': 'Gdovalepereira'}]",
1205506607892746242,1205498102272208898,1576250147000,2019-12-13,18:15:47,MSK,16475731,hellonfriscobay,Brian Darr,,Awful. I’m curious about the article’s comment about Netflix and Amazon swooping in to make original content in Brazil. Is that something they didn’t do until the political landscape changed?,['filipefurtado'],[],[],2,0,0,[],[],https://twitter.com/HellOnFriscoBay/status/1205506607892746242,False,,0,,,,,,,"[{'user_id': '16475731', 'username': 'HellOnFriscoBay'}, {'user_id': '33835881', 'username': 'filipefurtado'}]",
1205505924754001925,1205505924754001925,1576249984000,2019-12-13,18:13:04,MSK,4054925549,tiggggie,Elizacat,,Preservation or development? Brazil’s Amazon at a crossroads (from @AP) https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81 …,['ap'],['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81'],[],0,0,0,[],[],https://twitter.com/Tiggggie/status/1205505924754001925,False,,0,,,,,,,"[{'user_id': '4054925549', 'username': 'Tiggggie'}, {'user_id': '51241574', 'username': 'AP'}]",
1205503736845611009,1205160304902053889,1576249462000,2019-12-13,18:04:22,MSK,1158479328,tlshelton1,tl shelton,,Paris climate agreement is a joke. Co2 is higher now then before the agreement. No ones following it and yea Brazil who burning down the amazon is also in the agreement with India and China who have higher numbers now,['replindasanchez'],[],[],0,0,0,[],[],https://twitter.com/tlshelton1/status/1205503736845611009,False,,0,,,,,,,"[{'user_id': '1158479328', 'username': 'tlshelton1'}, {'user_id': '312134473', 'username': 'RepLindaSanchez'}]",
1205503037717893121,1205503037717893121,1576249296000,2019-12-13,18:01:36,MSK,97470066,shorenewsnj,ShoreNewsNJ,,AP: 1970’s footage of Brazil’s development of the Amazon region http://shorenewsnetwork.com/?p=114910 ,[],['http://shorenewsnetwork.com/?p=114910'],[],0,0,0,[],[],https://twitter.com/ShoreNewsNJ/status/1205503037717893121,False,,0,,,,,,,"[{'user_id': '97470066', 'username': 'ShoreNewsNJ'}]",
1205502431100055554,1205502431100055554,1576249151000,2019-12-13,17:59:11,MSK,1552093537,liannemilton,Lianne Milton,,"Preservation or development? Brazil’s Amazon at a crossroads
Important story by @DLBiller and great photos by @Leo_Correa https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81 …","['dlbiller', 'leo_correa']",['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81'],[],0,0,2,[],[],https://twitter.com/LianneMilton/status/1205502431100055554,False,,0,,,,,,,"[{'user_id': '1552093537', 'username': 'LianneMilton'}, {'user_id': '98726426', 'username': 'DLBiller'}, {'user_id': '27376074', 'username': 'Leo_Correa'}]",
1205500666099179520,1205500666099179520,1576248730000,2019-12-13,17:52:10,MSK,98726426,dlbiller,David Biller,,"Cool interactive piece by
@voxdotcom on 3 supertrees around the world-- in Brazil, Indonesia and Congo. Starts w/ the Amazon's Brazil nut tree, a.k.a. ""the queen of the forest"" https://www.vox.com/a/supertrees ",['voxdotcom'],['https://www.vox.com/a/supertrees'],[],0,6,19,[],[],https://twitter.com/DLBiller/status/1205500666099179520,False,,0,,,,,,,"[{'user_id': '98726426', 'username': 'DLBiller'}, {'user_id': '2347049341', 'username': 'voxdotcom'}]",
1205500650919825408,1205500650919825408,1576248726000,2019-12-13,17:52:06,MSK,948461445796175872,asoiideas,ASOII,,Amazon Boosts Presence in Brazil With E-commerce Intiatives http://dlvr.it/RLCzm6 pic.twitter.com/ad4NfgKBTV,[],['http://dlvr.it/RLCzm6'],['https://pbs.twimg.com/media/ELrMdA2UUAAa4Bk.jpg'],0,0,0,[],[],https://twitter.com/ASOIideas/status/1205500650919825408,False,,0,,,,,,,"[{'user_id': '948461445796175872', 'username': 'ASOIideas'}]",
1205500247453130754,1205500247453130754,1576248630000,2019-12-13,17:50:30,MSK,353156874,aretail,América Retail,,USA: Amazon announces new distribution center in Brazil https://www.america-retail.com/usa/usa-amazon-announces-new-distribution-center-in-brazil/ … pic.twitter.com/81jnwv4zyU,[],['https://www.america-retail.com/usa/usa-amazon-announces-new-distribution-center-in-brazil/'],['https://pbs.twimg.com/media/ELrMFikX0AUHe1P.jpg'],0,0,0,[],[],https://twitter.com/ARetail/status/1205500247453130754,False,,0,,,,,,,"[{'user_id': '353156874', 'username': 'ARetail'}]",
1205499504910372865,1205499496613982213,1576248453000,2019-12-13,17:47:33,MSK,14786217,rnfrstalliance,Rainforest Alliance,,"This photo, taken by @victormoriyama, shows a large fire in Candeiras do Jamari, Brazil. It’s just one of the
estimated 19,925 #ForestFires recorded in the Brazilian Amazon in September. Without swift government action to end #deforestation, the worst may be yet to come. pic.twitter.com/OxVReap915",['victormoriyama'],[],['https://pbs.twimg.com/media/ELrLaCtXYAAhILc.jpg'],1,0,1,"['#forestfires', '#deforestation']",[],https://twitter.com/RnfrstAlliance/status/1205499504910372865,False,,0,,,,,,,"[{'user_id': '14786217', 'username': 'RnfrstAlliance'}, {'user_id': '1082334210801700866', 'username': 'victormoriyama'}]",
1205495266960453632,1205495266960453632,1576247443000,2019-12-13,17:30:43,MSK,97509929,buildersintl,Builders International,,"When teams members travel to Brazil to build hope along the Amazon River not only do they meet the local people in the community, but also the local animals.
Sloths, monkeys, snakes, and crocodiles! What animal would you prefer to meet?
#WeBuildHope #AnimalsOfTheAmazon pic.twitter.com/79hrz0KpX1",[],[],['https://pbs.twimg.com/media/ELrHjliWoAAB7Gl.jpg'],0,0,0,"['#webuildhope', '#animalsoftheamazon']",[],https://twitter.com/buildersintl/status/1205495266960453632,False,,0,,,,,,,"[{'user_id': '97509929', 'username': 'buildersintl'}]",
1205494469048569858,1205494469048569858,1576247253000,2019-12-13,17:27:33,MSK,16501227,gebgdc,fiona bowie,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,1,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/gebgdc/status/1205494469048569858,False,,0,,,,,,,"[{'user_id': '16501227', 'username': 'gebgdc'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205493413036134400,1205493413036134400,1576247001000,2019-12-13,17:23:21,MSK,2500825304,incrediblereads,#FridayThe13th,,"#RT Brazil: Insights https://www.amazon.com/dp/1514187469/ref=cm_sw_r_tw_dp_U_x_J658DbCQGBM6B … via @amazon
#fridayfeeling #trave #travelfriday #fridaytravel #mustreads",['amazon'],['https://www.amazon.com/dp/1514187469/ref=cm_sw_r_tw_dp_U_x_J658DbCQGBM6B'],[],0,0,0,"['#rt', '#fridayfeeling', '#trave', '#travelfriday', '#fridaytravel', '#mustreads']",[],https://twitter.com/incrediblereads/status/1205493413036134400,False,,0,,,,,,,"[{'user_id': '2500825304', 'username': 'incrediblereads'}, {'user_id': '20793816', 'username': 'amazon'}]",
1205492593536188416,1205492593536188416,1576246805000,2019-12-13,17:20:05,MSK,21268553,stanleysuen,Stanley Suen,,"Amazon Boosts Presence in Brazil With E-commerce Intiatives
http://stock-market-newsfeed.blogspot.com/2019/12/amazon-boosts-presence-in-brazil-with-e.html …",[],['http://stock-market-newsfeed.blogspot.com/2019/12/amazon-boosts-presence-in-brazil-with-e.html'],[],0,0,0,[],[],https://twitter.com/stanleysuen/status/1205492593536188416,False,,0,,,,,,,"[{'user_id': '21268553', 'username': 'stanleysuen'}]",
1205492119705673728,1205492119705673728,1576246692000,2019-12-13,17:18:12,MSK,947448037311365121,enbusinesstimes,Business Times,,"Brazil's Amazon Region, Norway Hold Talks For $500 Million Rainforest Funding https://www.btimesonline.com/articles/123377/20191213/amazon-brazilian-amazon-amazon-rainforest-brazil-norway-amazon-deforestation.htm …",[],['https://www.btimesonline.com/articles/123377/20191213/amazon-brazilian-amazon-amazon-rainforest-brazil-norway-amazon-deforestation.htm'],[],0,1,2,[],[],https://twitter.com/enbusinesstimes/status/1205492119705673728,False,,0,,,,,,,"[{'user_id': '947448037311365121', 'username': 'enbusinesstimes'}]",
1205491566271320065,1205491566271320065,1576246561000,2019-12-13,17:16:01,MSK,27129267,jenniferlaing,jennifer laing,,Preservation or development? Brazil’s Amazon at a crossroads (from @AP) https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81 …,['ap'],['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81'],[],0,0,0,[],[],https://twitter.com/jenniferlaing/status/1205491566271320065,False,,0,,,,,,,"[{'user_id': '27129267', 'username': 'jenniferlaing'}, {'user_id': '51241574', 'username': 'AP'}]",
1205487723995451394,1205487723995451394,1576245644000,2019-12-13,17:00:44,MSK,126424795,staradvertiser,Star-Advertiser,,Deforestation or development? Brazil’s Amazon at a crossroad - http://bit.ly/2LPjs1c pic.twitter.com/cknNvPhTFM,[],['http://bit.ly/2LPjs1c'],['https://pbs.twimg.com/media/ELrAseOWsAAm1o9.jpg'],0,0,2,[],[],https://twitter.com/StarAdvertiser/status/1205487723995451394,False,,0,,,,,,,"[{'user_id': '126424795', 'username': 'StarAdvertiser'}]",
1205484049764159493,1205484049764159493,1576244768000,2019-12-13,16:46:08,MSK,16580349,lise_alves,Lise Alves,,Amazon is announcing second distribution center in #Brazil. This time in the Northeast- state of Pernambuco. Will be ready in mid2020. The first center is ready to be opened in January 2020 in São Paulo Metropolitan area.,[],[],[],0,0,0,['#brazil'],[],https://twitter.com/Lise_Alves/status/1205484049764159493,False,,0,,,,,,,"[{'user_id': '16580349', 'username': 'Lise_Alves'}]",
1205484033519603713,1205484033519603713,1576244765000,2019-12-13,16:46:05,MSK,21539598,dacollins,Dave Collins,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,1,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/dacollins/status/1205484033519603713,False,,0,,,,,,,"[{'user_id': '21539598', 'username': 'dacollins'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205483916884205569,1205483916884205569,1576244737000,2019-12-13,16:45:37,MSK,305803687,markjhowarth,Press Management,,Brazil's Amazon rainforest and development at a crossroads Post https://azcyberpro.com/mobile.html ,[],['https://azcyberpro.com/mobile.html'],[],0,0,0,[],[],https://twitter.com/MarkJHowarth/status/1205483916884205569,False,,0,,,,,,,"[{'user_id': '305803687', 'username': 'MarkJHowarth'}]",
1205480493057052675,1205480493057052675,1576243920000,2019-12-13,16:32:00,MSK,35203319,evankirstel,Evan Kirstel,,Brazil's Amazon rainforest and development at a crossroads https://phys.org/news/2019-12-brazil-amazon-rainforest-crossroads.html …,[],['https://phys.org/news/2019-12-brazil-amazon-rainforest-crossroads.html'],[],1,8,1,[],[],https://twitter.com/evankirstel/status/1205480493057052675,False,,0,,,,,,,"[{'user_id': '35203319', 'username': 'evankirstel'}]",
1205480178245361664,1205262151830659072,1576243845000,2019-12-13,16:30:45,MSK,1195780861,angry_enby,Mx. River G,,"Also how can you say Bolsonaro is ""fixing"" Brazil when, just that I'm aware of, he let the Amazon burn for weeks and turned down assistance, and indigenous people's lives are measurably worse?","['pshinnok', 'poopoopeepee25', 'kylekallgren']",[],[],1,0,0,[],[],https://twitter.com/angry_enby/status/1205480178245361664,False,,0,,,,,,,"[{'user_id': '1195780861', 'username': 'angry_enby'}, {'user_id': '1128810909659467776', 'username': 'PShinnok'}, {'user_id': '973721906426806272', 'username': 'poopoopeepee25'}, {'user_id': '18559368', 'username': 'KyleKallgren'}]",
1205476500142776321,1205476500142776321,1576242968000,2019-12-13,16:16:08,MSK,955110279007866882,eeriegnuveneer,Lady Gwenhwyfar 🕊 [she/her],,Amazon indigenous leaders killed in Brazil drive-by shooting https://www.theguardian.com/world/2019/dec/08/amazon-indigenous-leaders-killed-in-brazil-drive-by-shooting?CMP=share_btn_tw …,[],['https://www.theguardian.com/world/2019/dec/08/amazon-indigenous-leaders-killed-in-brazil-drive-by-shooting?CMP=share_btn_tw'],[],0,0,0,[],[],https://twitter.com/EerieGnuVeneer/status/1205476500142776321,False,,0,,,,,,,"[{'user_id': '955110279007866882', 'username': 'EerieGnuVeneer'}]",
1205474023326601216,1205474021258792960,1576242378000,2019-12-13,16:06:18,MSK,147670689,louramd,Luis R Mönch O,,Just look serious in front your words about saying the truth over climate change. Take a look a the contaminated congressional district of @AOC ... also look at President @jairbolsonaro who did the right thing by catching the people responsible for the burning of Brazil Amazon.,"['aoc', 'jairbolsonaro']",[],[],1,0,0,[],[],https://twitter.com/louramd/status/1205474023326601216,False,,0,,,,,,,"[{'user_id': '147670689', 'username': 'louramd'}, {'user_id': '138203134', 'username': 'AOC'}, {'user_id': '128372940', 'username': 'jairbolsonaro'}]",
1205472524831776768,1205472524831776768,1576242021000,2019-12-13,16:00:21,MSK,34885053,spamdog,spamdog,,"📷 dailyoverview: The Juruá River is a southern tributary of the Amazon River, flowing approximately 1,500 miles (2,400 km) through Brazil and Peru. For most of its length, the river winds through the Amazon basin and is generally curvy and... https://tmblr.co/ZvHnXy2mdkI0K ",[],['https://tmblr.co/ZvHnXy2mdkI0K'],[],0,0,0,[],[],https://twitter.com/spamdog/status/1205472524831776768,False,,0,,,,,,,"[{'user_id': '34885053', 'username': 'spamdog'}]",
1205471529863188481,1205471529863188481,1576241783000,2019-12-13,15:56:23,MSK,2810138524,louiseleelee,Louise Lee #LabourActivist,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,0,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/louiseleelee/status/1205471529863188481,False,,0,,,,,,,"[{'user_id': '2810138524', 'username': 'louiseleelee'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205471351080964096,1205471351080964096,1576241741000,2019-12-13,15:55:41,MSK,19625943,ddoorn,Don Doornbos,,Supertrees: The Amazon’s Brazil nut tree creates its own rainfall — and it’s in danger - Vox https://www.vox.com/2019/12/12/20991590/amazon-rainforest-deforestation-climate-change-trees-rain-brazil-nut …,[],['https://www.vox.com/2019/12/12/20991590/amazon-rainforest-deforestation-climate-change-trees-rain-brazil-nut'],[],0,1,0,[],[],https://twitter.com/ddoorn/status/1205471351080964096,False,,0,,,,,,,"[{'user_id': '19625943', 'username': 'ddoorn'}]",
1205471101259780096,1205471101259780096,1576241681000,2019-12-13,15:54:41,MSK,721568500599373824,downtownrob88,Robert Lee,,"More Amazon. It should buy Brazil and ship the Amazon River to parched California -- two-day shipping.
OT: why is Amazon's @wapo one of the thickest newspaper pay walls on the Internet? https://twitter.com/AmazonGameTech/status/1192946210862174208 …",['wapo'],['https://twitter.com/AmazonGameTech/status/1192946210862174208'],[],1,0,1,[],[],https://twitter.com/downtownrob88/status/1205471101259780096,False,https://twitter.com/AmazonGameTech/status/1192946210862174208,0,,,,,,,"[{'user_id': '721568500599373824', 'username': 'downtownrob88'}, {'user_id': '913062595216728064', 'username': 'wapo'}]",
1205467405557936128,1205467405557936128,1576240800000,2019-12-13,15:40:00,MSK,33474655,cambridge_uni,Cambridge University,,"The tallest known tree in the #Amazon towers above the canopy at a whopping 88.5 metres. Toby Jackson, plant scientist @cambridge_uccri, goes on an expedition to find and measure this giant in a remote corner of Brazil. https://bit.ly/36xGCRO #SustainableEarth",['cambridge_uccri'],['https://bit.ly/36xGCRO'],[],0,9,32,"['#amazon', '#sustainableearth']",[],https://twitter.com/Cambridge_Uni/status/1205467405557936128,False,,0,,,,,,,"[{'user_id': '33474655', 'username': 'Cambridge_Uni'}, {'user_id': '2208790814', 'username': 'cambridge_uccri'}]",
1205459796478087168,1205459796478087168,1576238986000,2019-12-13,15:09:46,MSK,3147864185,diana_trifu,Diana Trifu,,#Amazon #indigenous leaders #killed in #Brazil drive-by shooting https://www.theguardian.com/world/2019/dec/08/amazon-indigenous-leaders-killed-in-brazil-drive-by-shooting?CMP=share_btn_tw …,[],['https://www.theguardian.com/world/2019/dec/08/amazon-indigenous-leaders-killed-in-brazil-drive-by-shooting?CMP=share_btn_tw'],[],0,0,0,"['#amazon', '#indigenous', '#killed', '#brazil']",[],https://twitter.com/diana_trifu/status/1205459796478087168,False,,0,,,,,,,"[{'user_id': '3147864185', 'username': 'diana_trifu'}]",
1205459308902801409,1205459308902801409,1576238870000,2019-12-13,15:07:50,MSK,900053891269767168,gylauer,GI - FLAT EARTH,,The majestic confluence of the Amazon River with the southern Atlantic Ocean of #Brazil (November 2019) pic.twitter.com/gNtEoRux1Q,[],[],[],4,36,97,['#brazil'],[],https://twitter.com/Gylauer/status/1205459308902801409,False,,1,,,,,,,"[{'user_id': '900053891269767168', 'username': 'Gylauer'}]",
1205458873714380800,1205458873714380800,1576238766000,2019-12-13,15:06:06,MSK,38579146,saomiguelito,MIGUEL,,"Wish I could say come live in Brazil with me if it all goes to shit in the UK, guys, but for one our president thinks his son is too ""well educated"" to date black women and that Leo DiCaprio is setting the Amazon alight (he actually believes that). So, I feel you. I feel you. 😐",[],[],[],1,0,5,[],[],https://twitter.com/SaoMiguelito/status/1205458873714380800,False,,0,,,,,,,"[{'user_id': '38579146', 'username': 'SaoMiguelito'}]",
1205458846052966402,1205458846052966402,1576238759000,2019-12-13,15:05:59,MSK,900709872798486530,joanna_portugal,Joana Portugal,,#Brazil's state governments of legal #Amazon and #France signed an agreement to support conservation actions to tackle illegal #Deforestation: https://bit.ly/34k6Vcm #Amazonia #Rainforest #SDG #ClimateChange #TimeForAction #TimeForChange #COP25Madrid #Cop25Madrid2019,[],['https://bit.ly/34k6Vcm'],[],0,0,1,"['#brazil', '#amazon', '#france', '#deforestation', '#amazonia', '#rainforest', '#sdg', '#climatechange', '#timeforaction', '#timeforchange', '#cop25madrid', '#cop25madrid2019']",[],https://twitter.com/joanna_portugal/status/1205458846052966402,False,,0,,,,,,,"[{'user_id': '900709872798486530', 'username': 'joanna_portugal'}]",
1205452067919151104,1205452067919151104,1576237143000,2019-12-13,14:39:03,MSK,1079911297,ecointernetdrgb,EcoInternet,,"How Brazil's Weak Currency Further Threatens the Amazon #Rainforest : World: Latin Post https://www.latinpost.com/articles/142920/20191211/brazils-weak-currency-further-threatens-the-amazon-rainforest.htm … #environment
MORE w/ EcoSearch - news: https://search.ecointernet.org/search/results?q=rainforest%20amazon%20brazil%20weak%20currency%20threatens%20world&w=relevance … web: https://search.ecointernet.org/search/results?q=rainforest%20amazon%20brazil%20weak%20currency%20threatens%20world&s=web …",[],"['https://www.latinpost.com/articles/142920/20191211/brazils-weak-currency-further-threatens-the-amazon-rainforest.htm', 'https://search.ecointernet.org/search/results?q=rainforest%20amazon%20brazil%20weak%20currency%20threatens%20world&w=relevance', 'https://search.ecointernet.org/search/results?q=rainforest%20amazon%20brazil%20weak%20currency%20threatens%20world&s=web']",[],0,0,1,"['#rainforest', '#environment']",[],https://twitter.com/EcoInternetDrGB/status/1205452067919151104,False,,0,,,,,,,"[{'user_id': '1079911297', 'username': 'EcoInternetDrGB'}]",
1205448295155412993,1191432109837053953,1576236244000,2019-12-13,14:24:04,MSK,1192404530660597762,hanspetersnow,Hans Petersen,,Is this the same Brazil that is burning the Amazon?,['govbr'],[],[],0,0,0,[],[],https://twitter.com/HansPeterSnow/status/1205448295155412993,False,,0,,,,,,,"[{'user_id': '1192404530660597762', 'username': 'HansPeterSnow'}, {'user_id': '861707648584085504', 'username': 'govbr'}]",
1205448170626592768,1205276627179130881,1576236214000,2019-12-13,14:23:34,MSK,1194742916054495232,paulinhogsss,BolsoMorominion🇧🇷,,"You don't know what you say, Bolsonaro preserves the Amazon and protects Brazil from dirty international interests. The Amazon is from Brazil and not from the world.","['fastanf', 'basedpoland', 'saoblacknews']",[],[],1,0,1,[],[],https://twitter.com/Paulinhogsss/status/1205448170626592768,False,,0,,,,,,,"[{'user_id': '1194742916054495232', 'username': 'Paulinhogsss'}, {'user_id': '2850298188', 'username': 'FaSTAnf'}, {'user_id': '753974664041533440', 'username': 'BasedPoland'}, {'user_id': '115172540', 'username': 'SaoBlackNews'}]",
1205442135643885569,1205442135643885569,1576234775000,2019-12-13,13:59:35,MSK,1055846340465512448,incomindiosuk,Incomindios UK,,Amazon indigenous leaders killed in Brazil drive-by shooting https://www.theguardian.com/world/2019/dec/08/amazon-indigenous-leaders-killed-in-brazil-drive-by-shooting?CMP=share_btn_tw …,[],['https://www.theguardian.com/world/2019/dec/08/amazon-indigenous-leaders-killed-in-brazil-drive-by-shooting?CMP=share_btn_tw'],[],0,0,0,[],[],https://twitter.com/IncomindiosUK/status/1205442135643885569,False,,0,,,,,,,"[{'user_id': '1055846340465512448', 'username': 'IncomindiosUK'}]",
1205440232348377088,1205440232348377088,1576234322000,2019-12-13,13:52:02,MSK,33959876,renatarubim,Renata Rubim,,Amazon indigenous leaders killed in Brazil drive-by shooting https://www.theguardian.com/world/2019/dec/08/amazon-indigenous-leaders-killed-in-brazil-drive-by-shooting …,[],['https://www.theguardian.com/world/2019/dec/08/amazon-indigenous-leaders-killed-in-brazil-drive-by-shooting'],[],0,0,0,[],[],https://twitter.com/renatarubim/status/1205440232348377088,False,,0,,,,,,,"[{'user_id': '33959876', 'username': 'renatarubim'}]",
1205437464158113792,1205437464158113792,1576233662000,2019-12-13,13:41:02,MSK,763038369064574976,briancrice2,brian rice,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,0,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/briancrice2/status/1205437464158113792,False,,0,,,,,,,"[{'user_id': '763038369064574976', 'username': 'briancrice2'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205434847424131073,1205434847424131073,1576233038000,2019-12-13,13:30:38,MSK,2615778732,maramluz2,Mara Luz,,"#Amazon: important alert here, shame that some INGOs are not keen on this... https://amp.theguardian.com/commentisfree/2019/dec/12/amazon-matter-of-life-and-death-for-all-of-us-we-must-fight-for-it?__twitter_impression=true …
@CAid_Brazil @proindio @ans @AmazonMiller","['caid_brazil', 'proindio', 'ans', 'amazonmiller']",['https://amp.theguardian.com/commentisfree/2019/dec/12/amazon-matter-of-life-and-death-for-all-of-us-we-must-fight-for-it?__twitter_impression=true'],[],0,0,2,['#amazon'],[],https://twitter.com/Maramluz2/status/1205434847424131073,False,,0,,,,,,,"[{'user_id': '2615778732', 'username': 'Maramluz2'}, {'user_id': '771377036791320576', 'username': 'CAid_Brazil'}, {'user_id': '138492825', 'username': 'proindio'}, {'user_id': '131515746', 'username': 'ans'}, {'user_id': '1531461980', 'username': 'AmazonMiller'}]",
1205432183936212993,1205432183936212993,1576232403000,2019-12-13,13:20:03,MSK,153406327,retailgazette,Retail Gazette,,".@amazon to open new Brazil distribution centre as it step up its delivery time and logistics infrastructure.
#SupplyChain #ecommerce #distribution #delivery https://www.chargedretail.co.uk/2019/12/13/amazon-to-open-new-brazil-distribution-centre/ …",['amazon'],['https://www.chargedretail.co.uk/2019/12/13/amazon-to-open-new-brazil-distribution-centre/'],[],0,2,1,"['#supplychain', '#ecommerce', '#distribution', '#delivery']",[],https://twitter.com/retailgazette/status/1205432183936212993,False,,0,,,,,,,"[{'user_id': '153406327', 'username': 'retailgazette'}, {'user_id': '20793816', 'username': 'amazon'}]",
1205432174184468481,1205432174184468481,1576232400000,2019-12-13,13:20:00,MSK,1088832114945077251,chargedretail,Charged Retail,,". @amazon to open new Brazil distribution centre as it step up its delivery time and logistics infrastructure.
#SupplyChain #ecommerce #distribution #delivery
https://buff.ly/36xlIlO ",['amazon'],['https://buff.ly/36xlIlO'],[],0,0,0,"['#supplychain', '#ecommerce', '#distribution', '#delivery']",[],https://twitter.com/ChargedRetail/status/1205432174184468481,False,,0,,,,,,,"[{'user_id': '1088832114945077251', 'username': 'ChargedRetail'}, {'user_id': '20793816', 'username': 'amazon'}]",
1205431032775884800,1205431032775884800,1576232128000,2019-12-13,13:15:28,MSK,2586582265,nogmosverified,NoGMOsVerified,,"France to Partner With Brazil States on Amazon, Bypassing Bolsonaro https://www.organicconsumers.org/node/1069336 #NOGMOsVerified #GMOs #OrganicConsumer pic.twitter.com/2MMHvcnmDW",[],['https://www.organicconsumers.org/node/1069336'],['https://pbs.twimg.com/media/ELqNIt4X0AAwSeo.jpg'],0,0,1,"['#nogmosverified', '#gmos', '#organicconsumer']",[],https://twitter.com/NoGMOsVerified/status/1205431032775884800,False,,0,,,,,,,"[{'user_id': '2586582265', 'username': 'NoGMOsVerified'}]",
1205428951092477955,1205428951092477955,1576231632000,2019-12-13,13:07:12,MSK,703090157063254022,cardcounterswin,J. McLaughlin,,"Deforestation or development? Brazil’s Amazon at a crossroad via @staradvertiser https://www.staradvertiser.com/2019/12/12/breaking-news/deforestation-or-development-brazils-amazon-at-a-crossroad/ … Night falls in Brazil’s Amazon and two logging trucks without license plates emerge from the jungle. They rumble over dirt roads that lead away from a national forest,",['staradvertiser'],['https://www.staradvertiser.com/2019/12/12/breaking-news/deforestation-or-development-brazils-amazon-at-a-crossroad/'],[],1,0,0,[],[],https://twitter.com/cardcounterswin/status/1205428951092477955,False,,0,,,,,,,"[{'user_id': '703090157063254022', 'username': 'cardcounterswin'}, {'user_id': '126424795', 'username': 'StarAdvertiser'}]",
1205428583046373376,1205428583046373376,1576231544000,2019-12-13,13:05:44,MSK,74121455,sea_globe,Southeast Asia Globe,,"While the world looks on in horror at fires destroying Brazil’s Amazon rainforest, in Indonesia man-made fires rage, destroying almost 2,000 km2 more forest than in Brazil and emitting twice the CO2. #Indonesia #fires #Amazon #Brazil pic.twitter.com/g0QcCPPEC6",[],[],['https://pbs.twimg.com/media/ELqK5hSU4AARKOl.jpg'],0,2,5,"['#indonesia', '#fires', '#amazon', '#brazil']",[],https://twitter.com/SEA_GLOBE/status/1205428583046373376,False,,0,,,,,,,"[{'user_id': '74121455', 'username': 'SEA_GLOBE'}]",
1205425245835841536,1205425218254065664,1576230748000,2019-12-13,12:52:28,MSK,275417504,thomasaspencer,Thomas Spencer,,"8/n
Should Russia or Saudi be exonerated from the production emissions associated with their fuel exports? Should Brazil be exonerated from Amazon fires driven by agriculture exports? Absolutely not. So why apply a double standard to other net exports from developing countries?",[],[],[],1,0,1,[],[],https://twitter.com/ThomasASpencer/status/1205425245835841536,False,,0,,,,,,,"[{'user_id': '275417504', 'username': 'ThomasASpencer'}]",
1205424636281966594,1205101121104039936,1576230603000,2019-12-13,12:50:03,MSK,575642427,drakin4you,akin odubitan,,"All those trees even if he planted 100 million more, as long as people like Bolsanaro of Brazil continue to sacrifice the Amazon forests for money and Trump withdraws the biggest economy (& polluters) from the Paris Accord, we're still in serious climate change trouble!","['staranirudh', 'spectatorindex']",[],[],1,0,0,[],[],https://twitter.com/drAkin4You/status/1205424636281966594,False,,0,,,,,,,"[{'user_id': '575642427', 'username': 'drAkin4You'}, {'user_id': '245397526', 'username': 'staranirudh'}, {'user_id': '1626294277', 'username': 'spectatorindex'}]",
1205413578897055745,1205413578897055745,1576227967000,2019-12-13,12:06:07,MSK,1159421365147115520,hannah15117006,HAN,,"The biggest Dutch banks ING, ABN AMRO and Rabobank jointly invest billions in soy cultivation and, contribute to the deforestation of the Amazon. Thats why we need #systemchange !
#COP25Madrid #Amazon #Amazonas #AmazonFires #Brazil #ClimateEmergency https://twitter.com/zembla/status/1205227322024120321 …",[],['https://twitter.com/zembla/status/1205227322024120321'],[],0,0,1,"['#systemchange', '#cop25madrid', '#amazon', '#amazonas', '#amazonfires', '#brazil', '#climateemergency']",[],https://twitter.com/HANnah15117006/status/1205413578897055745,False,https://twitter.com/ZEMBLA/status/1205227322024120321,0,,,,,,,"[{'user_id': '1159421365147115520', 'username': 'HANnah15117006'}]",
1205412558267703296,1205412558267703296,1576227724000,2019-12-13,12:02:04,MSK,1159421365147115520,hannah15117006,HAN,,"The American grain company #Bunge is said to be involved in illegal deforestation in the #Amazone. Through a BV in the Netherlands, the company transfers their profits to the tax haven of Bermuda.
#Amazon #Amazonas #AmazonFires #Brazil #ClimateEmergency #COP25Madrid https://twitter.com/zembla/status/1205228580193488896 …",[],['https://twitter.com/zembla/status/1205228580193488896'],[],0,0,0,"['#bunge', '#amazone', '#amazon', '#amazonas', '#amazonfires', '#brazil', '#climateemergency', '#cop25madrid']",[],https://twitter.com/HANnah15117006/status/1205412558267703296,False,https://twitter.com/ZEMBLA/status/1205228580193488896,0,,,,,,,"[{'user_id': '1159421365147115520', 'username': 'HANnah15117006'}]",
1205411598241878016,1205411598241878016,1576227495000,2019-12-13,11:58:15,MSK,115728578,texanaquaponics,TexanAquaponics,,"This is what blue butterflies in the Amazon rainforest in Brazil look like.
pic.twitter.com/BN9h38V71B #MarkRobbinsNetwork #PremiumSocialMediaManagementService
https://twitter.com/MarkRobbinsNet We Follow Back!",[],['https://twitter.com/MarkRobbinsNet'],['https://pbs.twimg.com/media/Buxs2HEIMAAAF4d.jpg'],0,0,0,"['#markrobbinsnetwork', '#premiumsocialmediamanagementservice']",[],https://twitter.com/TexanAquaponics/status/1205411598241878016,False,,0,,,,,,,"[{'user_id': '115728578', 'username': 'TexanAquaponics'}]",
1205410644884893696,1205410644884893696,1576227267000,2019-12-13,11:54:27,MSK,112466913,mickeydangerez,Mickey Dangerez,,Brazil's Amazon rainforest and development at a crossroads https://ift.tt/2PeDMem #PhysOrg,[],['https://ift.tt/2PeDMem'],[],0,0,0,['#physorg'],[],https://twitter.com/MickeyDangerez/status/1205410644884893696,False,,0,,,,,,,"[{'user_id': '112466913', 'username': 'MickeyDangerez'}]",
1205409172033953792,1205409172033953792,1576226916000,2019-12-13,11:48:36,MSK,1500091382,best2uinhealth,Jason,,"France to Partner With Brazil States on Amazon, Bypassing Bolsonaro http://dlvr.it/RLBxlM pic.twitter.com/9uf65vLkTv",[],['http://dlvr.it/RLBxlM'],['https://pbs.twimg.com/media/ELp5QM5UUAA2KBE.jpg'],0,0,0,[],[],https://twitter.com/Best2uinhealth/status/1205409172033953792,False,,0,,,,,,,"[{'user_id': '1500091382', 'username': 'Best2uinhealth'}]",
1205402837267734529,1205402837267734529,1576225406000,2019-12-13,11:23:26,MSK,1050250760,blossomdai,Blossom Dailey,,"""Preservation or Development? Brazil’s Amazon at a Crossroads"" by The Associated Press via NYT https://ift.tt/349ZOmU ",[],['https://ift.tt/349ZOmU'],[],0,0,0,[],[],https://twitter.com/blossomdai/status/1205402837267734529,False,,0,,,,,,,"[{'user_id': '1050250760', 'username': 'blossomdai'}]",
1205402517959577600,1205402517959577600,1576225330000,2019-12-13,11:22:10,MSK,18554720,laprogressive,LA Progressive,,#RT @theintercept: Dorothy Stang died defending a sustainable development model for the Amazon. Can her legacy survive in Bolsonaro’s Brazil? https://interc.pt/34dFh0W ,['theintercept'],['https://interc.pt/34dFh0W'],[],0,1,0,['#rt'],[],https://twitter.com/LAProgressive/status/1205402517959577600,False,,0,,,,,,,"[{'user_id': '18554720', 'username': 'LAProgressive'}, {'user_id': '2329066872', 'username': 'theintercept'}]",
1205397346999242752,1205397346999242752,1576224097000,2019-12-13,11:01:37,MSK,468406936,lepusconsulting,Lepus Consulting,,Stanley Johnson sounded very good on R4 this morning. I liked his suggestion that Brazil is the first country UK should talk to re trade because of the Amazon forest destruction. We need to pay Brazil not to cut down any more trees and protect the earth’s lungs.,[],[],[],0,0,1,[],[],https://twitter.com/LepusConsulting/status/1205397346999242752,False,,0,,,,,,,"[{'user_id': '468406936', 'username': 'LepusConsulting'}]",
1205397269433978880,1205397269433978880,1576224078000,2019-12-13,11:01:18,MSK,6530192,bootkidz,bootkidz,,Brazil's Amazon at a Crossroads https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81 …,[],['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81'],[],0,0,0,[],[],https://twitter.com/bootkidz/status/1205397269433978880,False,,0,,,,,,,"[{'user_id': '6530192', 'username': 'bootkidz'}]",
1205392775786549250,1205392775786549250,1576223007000,2019-12-13,10:43:27,MSK,1164108069569253376,boo70338778,Boo,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,0,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/Boo70338778/status/1205392775786549250,False,,0,,,,,,,"[{'user_id': '1164108069569253376', 'username': 'Boo70338778'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205388344559058944,1205388344559058944,1576221951000,2019-12-13,10:25:51,MSK,3028299515,karinwins1,Karin Winterscheidt,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,0,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/karinwins1/status/1205388344559058944,False,,0,,,,,,,"[{'user_id': '3028299515', 'username': 'karinwins1'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205382354757464066,1205382354757464066,1576220522000,2019-12-13,10:02:02,MSK,75684101,perunews,Perú News 🇵🇪,,@AmazonWatch / Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon http://perunews.info http://dld.bz/hTczU ,['amazonwatch'],"['http://perunews.info', 'http://dld.bz/hTczU']",[],0,0,0,[],[],https://twitter.com/PeruNews/status/1205382354757464066,False,,0,,,,,,,"[{'user_id': '75684101', 'username': 'PeruNews'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205371163377119232,1205371163377119232,1576217854000,2019-12-13,09:17:34,MSK,84100924,benjgarside,Ben Garside,,"This gives an indication of how little the financial sector currently factors in #climate risk...
#Brazil boom due as agribusiness rubs hands while #Amazon clearances accelerate (and gets absolutely zero mention by anyone in this piece) https://twitter.com/ReutersJamie/status/1205155128677933061 …",[],['https://twitter.com/ReutersJamie/status/1205155128677933061'],[],1,3,7,"['#climate', '#brazil', '#amazon']",[],https://twitter.com/BenJGarside/status/1205371163377119232,False,https://twitter.com/ReutersJamie/status/1205155128677933061,0,,,,,,,"[{'user_id': '84100924', 'username': 'BenJGarside'}]",
1205370568435851265,1205225120626814996,1576217712000,2019-12-13,09:15:12,MSK,1165831350659637249,quriousin,QuriousKiwiInAus🐻,,"And what if, just like the Amazon in Brazil, all these fires were lit by climate change zealots/ activists? What if this is a manufactured crisis just like the Amazon? What then? Will the climate religion take some responsibility, or just sweep it under the carpet?","['triplejay58', 'pcribbett']",[],[],0,0,1,[],[],https://twitter.com/QuriousIn/status/1205370568435851265,False,,0,,,,,,,"[{'user_id': '1165831350659637249', 'username': 'QuriousIn'}, {'user_id': '198296897', 'username': 'Triplejay58'}, {'user_id': '1054717594429665280', 'username': 'PCribbett'}]",
1205366786956263424,1205366786956263424,1576216811000,2019-12-13,09:00:11,MSK,1149173893157888000,tbsnewsdotnet,The Business Standard,,#Deforestation or #development? #Brazil's #Amazon at a #crossroad https://tbsnews.net/environment/deforestation-or-development-brazils-amazon-crossroad#.XfMo1nvXFv8.twitter …,[],['https://tbsnews.net/environment/deforestation-or-development-brazils-amazon-crossroad#.XfMo1nvXFv8.twitter'],[],0,0,0,"['#deforestation', '#development', '#brazil', '#amazon', '#crossroad']",[],https://twitter.com/tbsnewsdotnet/status/1205366786956263424,False,,0,,,,,,,"[{'user_id': '1149173893157888000', 'username': 'tbsnewsdotnet'}]",
1205366497880793088,1205366497880793088,1576216742000,2019-12-13,08:59:02,MSK,724338655788163073,profe9350,David,,"Someone shared a Top article with you.
""Preservation or development? Brazil’s Amazon at a crossroads""
https://my.earthlink.net/article/top?guid=20191212/0925345e-ffe3-4376-94dc-b7ec70d59f02 …",[],['https://my.earthlink.net/article/top?guid=20191212/0925345e-ffe3-4376-94dc-b7ec70d59f02'],[],0,0,0,[],[],https://twitter.com/profe9350/status/1205366497880793088,False,,0,,,,,,,"[{'user_id': '724338655788163073', 'username': 'profe9350'}]",
1205364023170076672,1205364023170076672,1576216152000,2019-12-13,08:49:12,MSK,988712327133450241,michlehaudebou1,Michèle Haudebourg,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon #Resista #DefendEarthDefenders #StopBolsonaro http://amwt.ch/4561 via @AmazonWatch,['amazonwatch'],['http://amwt.ch/4561'],[],0,0,0,"['#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/MichleHaudebou1/status/1205364023170076672,False,,0,,,,,,,"[{'user_id': '988712327133450241', 'username': 'MichleHaudebou1'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205362528269864960,1205362528269864960,1576215795000,2019-12-13,08:43:15,MSK,401639900,mwdyslive,sabr!na,,@LanaParrilla Did you go to visit the Amazon rainforest?🌳 🇧🇷 #Brazil,['lanaparrilla'],[],[],0,0,0,['#brazil'],[],https://twitter.com/mwdyslive/status/1205362528269864960,False,,0,,,,,,,"[{'user_id': '401639900', 'username': 'mwdyslive'}, {'user_id': '129400817', 'username': 'LanaParrilla'}]",
1205355442353905664,1205355442353905664,1576214106000,2019-12-13,08:15:06,MSK,3243296091,samrbiz,South American Business News,,Preservation or development? Brazil’s Amazon at a crossroads http://www.business-support-network.org/SAbiz/2019/12/13/preservation-or-development-brazils-amazon-at-a-crossroads/ … #Business #SAbiz,[],['http://www.business-support-network.org/SAbiz/2019/12/13/preservation-or-development-brazils-amazon-at-a-crossroads/'],[],0,0,0,"['#business', '#sabiz']",[],https://twitter.com/SAmrBiz/status/1205355442353905664,False,,0,,,,,,,"[{'user_id': '3243296091', 'username': 'SAmrBiz'}]",
1205348120143552513,1205348120143552513,1576212360000,2019-12-13,07:46:00,MSK,2926746832,_vrmachado,Vinícius Machado,,"hi @PLAYERUNKNOWN ty so much for saving my country and the amazon forest, we know you care about brazil since you lived here!!! 😍 pic.twitter.com/T79KJhi3Lg",['playerunknown'],[],['https://pbs.twimg.com/media/ELpBuLHXYAIx1Eb.jpg'],0,1,7,[],[],https://twitter.com/_vrmachado/status/1205348120143552513,False,,0,,,,,,,"[{'user_id': '2926746832', 'username': '_vrmachado'}, {'user_id': '1880574811', 'username': 'PLAYERUNKNOWN'}]",
1205347897291599872,1205347897291599872,1576212307000,2019-12-13,07:45:07,MSK,1899275323,luzanob,Galileo B. Luzano,,"Brazil paves highway to soy, sparking worries about Amazon https://news.mb.com.ph/2019/12/13/brazil-paves-highway-to-soy-sparking-worries-about-amazon/ … via @Crowdynews",['crowdynews'],['https://news.mb.com.ph/2019/12/13/brazil-paves-highway-to-soy-sparking-worries-about-amazon/'],[],0,0,0,[],[],https://twitter.com/LuzanoB/status/1205347897291599872,False,,0,,,,,,,"[{'user_id': '1899275323', 'username': 'LuzanoB'}, {'user_id': '202072895', 'username': 'Crowdynews'}]",
1205341866478260225,1205295036201623552,1576210869000,2019-12-13,07:21:09,MSK,153621977,jc_cali,Swizzy Colón,,"Ooh whoops no, I meant too far right in the USA context, sorry for the confusion.
But to keep being global, Bolsonaro in Brazil is literally permitting the burning of the Amazon, massacre of indigenous & LGBTQ folk, etc.","['confusedmathem1', 'natesilver538']",[],[],1,0,0,[],[],https://twitter.com/JC_Cali/status/1205341866478260225,False,,0,,,,,,,"[{'user_id': '153621977', 'username': 'JC_Cali'}, {'user_id': '1027415368468332545', 'username': 'ConfusedMathem1'}, {'user_id': '16017475', 'username': 'NateSilver538'}]",
1205337392808439810,1205337392808439810,1576209803000,2019-12-13,07:03:23,MSK,26584031,flightwoman,Jennifer Baratta,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,0,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/Flightwoman/status/1205337392808439810,False,,0,,,,,,,"[{'user_id': '26584031', 'username': 'Flightwoman'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205336745744699392,1205336745744699392,1576209648000,2019-12-13,07:00:48,MSK,314474124,einbrazilbiz,EIN Brazil Business,,Preservation or development? Brazil’s Amazon at a crossroads http://s.einnews.com/JMnoHZQFM5 ,[],['http://s.einnews.com/JMnoHZQFM5'],[],0,0,1,[],[],https://twitter.com/EINBrazilBiz/status/1205336745744699392,False,,0,,,,,,,"[{'user_id': '314474124', 'username': 'EINBrazilBiz'}]",
1205336611074068480,1205336611074068480,1576209616000,2019-12-13,07:00:16,MSK,166556095,einagrinews,EIN Agriculture News,,Preservation or development? Brazil’s Amazon at a crossroads http://s.einnews.com/JMnoHZQFM5 ,[],['http://s.einnews.com/JMnoHZQFM5'],[],0,0,0,[],[],https://twitter.com/EINAgriNews/status/1205336611074068480,False,,0,,,,,,,"[{'user_id': '166556095', 'username': 'EINAgriNews'}]",
1205336555998584835,1205336555998584835,1576209603000,2019-12-13,07:00:03,MSK,1393148048,pcomentar,Para Comentar,,"Top story: Brazil’s Amazon at a Crossroads https://www.latinorebels.com/2019/12/12/amazonatacrossroads/ …, see more http://tweetedtimes.com/PComentar?s=tnp ",[],"['https://www.latinorebels.com/2019/12/12/amazonatacrossroads/', 'http://tweetedtimes.com/PComentar?s=tnp']",[],0,0,0,[],[],https://twitter.com/PComentar/status/1205336555998584835,False,,0,,,,,,,"[{'user_id': '1393148048', 'username': 'PComentar'}]",
1205336342659567618,1205336342659567618,1576209552000,2019-12-13,06:59:12,MSK,2975647924,csimmons903,Craig Simmons,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,0,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/csimmons903/status/1205336342659567618,False,,0,,,,,,,"[{'user_id': '2975647924', 'username': 'csimmons903'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205335923031822338,1205335923031822338,1576209452000,2019-12-13,06:57:32,MSK,1133477020317315072,fiveminnews,FIVE MINUTE NEWS,,1970’s footage of Brazil’s development of the Amazon region http://dlvr.it/RLBNXp ,[],['http://dlvr.it/RLBNXp'],[],0,0,0,[],[],https://twitter.com/FiveMinNews/status/1205335923031822338,False,,0,,,,,,,"[{'user_id': '1133477020317315072', 'username': 'FiveMinNews'}]",
1205330040608702465,1205329437090287620,1576208050000,2019-12-13,06:34:10,MSK,2872589854,photonicdog,freya 2020 account of the decade edition,,a few better places you can put your money if you wanna help the amazon along with the indigenous people of brazil https://nyanguard-party.tumblr.com/post/187169560172/articulation-of-brazils-indigenous-peoples …,[],['https://nyanguard-party.tumblr.com/post/187169560172/articulation-of-brazils-indigenous-peoples'],[],0,2,1,[],[],https://twitter.com/photonicDog/status/1205330040608702465,False,,0,,,,,,,"[{'user_id': '2872589854', 'username': 'photonicDog'}]",
1205329662387183616,1205329662387183616,1576207960000,2019-12-13,06:32:40,MSK,1079811088072335360,sherishibuya,Sheri Shibuya,,Preservation or development? Brazil’s Amazon at a crossroads (from @AP) https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81 …,['ap'],['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81'],[],0,0,0,[],[],https://twitter.com/SheriShibuya/status/1205329662387183616,False,,0,,,,,,,"[{'user_id': '1079811088072335360', 'username': 'SheriShibuya'}, {'user_id': '51241574', 'username': 'AP'}]",
1205323131143016448,1205323131143016448,1576206402000,2019-12-13,06:06:42,MSK,11859152,jfcarpio,JFC,,Mystery surrounds humpback whale found dead in depths of Brazil’s Amazon jungle | The Independent https://www.independent.co.uk/news/world/americas/humpback-whale-dead-amazon-jungle-brazil-rainforest-marajo-island-a8796016.html …,[],['https://www.independent.co.uk/news/world/americas/humpback-whale-dead-amazon-jungle-brazil-rainforest-marajo-island-a8796016.html'],[],2,1,3,[],[],https://twitter.com/jfcarpio/status/1205323131143016448,False,,0,,,,,,,"[{'user_id': '11859152', 'username': 'jfcarpio'}]",
1205321092492976128,1205321092492976128,1576205916000,2019-12-13,05:58:36,MSK,366374544,reevynap,Reevyn Aronson,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon #Resista #DefendEarthDefenders #StopBolsonaro http://amwt.ch/4561 via @AmazonWatch,['amazonwatch'],['http://amwt.ch/4561'],[],0,0,0,"['#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/reevynap/status/1205321092492976128,False,,0,,,,,,,"[{'user_id': '366374544', 'username': 'reevynap'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205319827600138241,1205319827600138241,1576205615000,2019-12-13,05:53:35,MSK,20566926,brazil201,Alex,,#legacies Santa is the original amazon,[],[],[],0,0,1,['#legacies'],[],https://twitter.com/Brazil201/status/1205319827600138241,False,,0,,,,,,,"[{'user_id': '20566926', 'username': 'Brazil201'}]",
1205317285512187906,1205311919667716096,1576205009000,2019-12-13,05:43:29,MSK,137068448,marcostrigo,Marcos Trigo,,But the world biggest environment problem is Brazil's amazon fires...,['guardian'],[],[],0,0,1,[],[],https://twitter.com/marcostrigo/status/1205317285512187906,False,,0,,,,,,,"[{'user_id': '137068448', 'username': 'marcostrigo'}, {'user_id': '87818409', 'username': 'guardian'}]",
1205316324466913280,1205316324466913280,1576204780000,2019-12-13,05:39:40,MSK,1155175089299546114,antoine00898971,Antoinette Gonzales,,Government of Brazil : Save the Amazon rainforests ! - Sign the Petition! http://chng.it/QbFQWwRh via @ChangeOrgRus,['changeorgrus'],['http://chng.it/QbFQWwRh'],[],0,0,0,[],[],https://twitter.com/Antoine00898971/status/1205316324466913280,False,,0,,,,,,,"[{'user_id': '1155175089299546114', 'username': 'Antoine00898971'}, {'user_id': '533485731', 'username': 'ChangeOrgRus'}]",
1205316275301421057,1205315955594645504,1576204768000,2019-12-13,05:39:28,MSK,20566926,brazil201,Alex,,Santa gonna sell the North Pole to Amazon,['lindsayjoane'],[],[],0,0,0,[],[],https://twitter.com/Brazil201/status/1205316275301421057,False,,0,,,,,,,"[{'user_id': '20566926', 'username': 'Brazil201'}, {'user_id': '2805954792', 'username': 'lindsayjoane'}]",
1205316166111125505,1205316166111125505,1576204742000,2019-12-13,05:39:02,MSK,20566926,brazil201,Alex,,#legacies Santa should sell the North Pole to Amazon.,[],[],[],0,0,0,['#legacies'],[],https://twitter.com/Brazil201/status/1205316166111125505,False,,0,,,,,,,"[{'user_id': '20566926', 'username': 'Brazil201'}]",
1205315428786081792,1205315428786081792,1576204566000,2019-12-13,05:36:06,MSK,20566926,brazil201,Alex,,#legacies Santa just let amazon prime take over,[],[],[],0,0,0,['#legacies'],[],https://twitter.com/Brazil201/status/1205315428786081792,False,,0,,,,,,,"[{'user_id': '20566926', 'username': 'Brazil201'}]",
1205312187281084425,1205312187281084425,1576203793000,2019-12-13,05:23:13,MSK,3006566255,cl_person,Christian PERSON #EUVOXES,,Forest Defenders Increasingly Come Under Fire in Brazil’s Lawless Amazon http://revolutionjaune.org/2019/12/13/forest-defenders-increasingly-come-under-fire-in-brazils-lawless-amazon-2/ …,[],['http://revolutionjaune.org/2019/12/13/forest-defenders-increasingly-come-under-fire-in-brazils-lawless-amazon-2/'],[],0,0,0,[],[],https://twitter.com/CL_Person/status/1205312187281084425,False,,0,,,,,,,"[{'user_id': '3006566255', 'username': 'CL_Person'}]",
1205310927702315008,1205310927702315008,1576203493000,2019-12-13,05:18:13,MSK,1202953147,lifieldgg,greeneagle,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,1,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/lifieldgg/status/1205310927702315008,False,,0,,,,,,,"[{'user_id': '1202953147', 'username': 'lifieldgg'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205309530130792450,1205309530130792450,1576203160000,2019-12-13,05:12:40,MSK,2752352167,prevoclaire,Claire Prévost,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,1,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/prevoclaire/status/1205309530130792450,False,,0,,,,,,,"[{'user_id': '2752352167', 'username': 'prevoclaire'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205304143788888065,1205304143788888065,1576201876000,2019-12-13,04:51:16,MSK,904076468195602436,24brasiltv,24brasiltv,,1970’s footage of Brazil’s development of the Amazon region Footage from the early 1970's of Brazil carving its T... http://www.24brasiltv.com/noticias/videos/1970s-footage-of-brazils-development-of-the-amazon-region/ … pic.twitter.com/xQlwph8Giy,[],['http://www.24brasiltv.com/noticias/videos/1970s-footage-of-brazils-development-of-the-amazon-region/'],['https://pbs.twimg.com/media/ELoZu1zXkAEKXlW.jpg'],0,0,0,[],[],https://twitter.com/24brasiltv/status/1205304143788888065,False,,0,,,,,,,"[{'user_id': '904076468195602436', 'username': '24brasiltv'}]",
1205302579502170114,1205302579502170114,1576201503000,2019-12-13,04:45:03,MSK,2347049341,voxdotcom,Vox,,"The Amazon rainforest absorbs about 2 billion metric tons of carbon per year, nearly 5% of annual global emissions.
But its value — for Brazil, South America, and the world — is easy to overlook.
Now it's under attack and could vanish for good: https://trib.al/bARArF4 ",[],['https://trib.al/bARArF4'],[],2,16,39,[],[],https://twitter.com/voxdotcom/status/1205302579502170114,False,,0,,,,,,,"[{'user_id': '2347049341', 'username': 'voxdotcom'}]",
1205302425575247872,1205302425575247872,1576201466000,2019-12-13,04:44:26,MSK,834951907466743809,dehhartman,Daniel Hartman,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,2,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/dehhartman/status/1205302425575247872,False,,0,,,,,,,"[{'user_id': '834951907466743809', 'username': 'dehhartman'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205299573561987072,1205299573561987072,1576200786000,2019-12-13,04:33:06,MSK,3496181723,anthonygresham8,Anthony Gresham,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,1,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/AnthonyGresham8/status/1205299573561987072,False,,0,,,,,,,"[{'user_id': '3496181723', 'username': 'AnthonyGresham8'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205296292303441920,1205296292303441920,1576200004000,2019-12-13,04:20:04,MSK,724629011943579648,fnw_us,FashionNetwork US,,"Amazon to open distribution center in Northeastern Brazil in 2020 https://us.fashionnetwork.com/news/Amazon-to-open-distribution-center-in-Northeastern-Brazil-in-2020,1167920.html?src=twt#twt … pic.twitter.com/L8IjTV72Cn",[],"['https://us.fashionnetwork.com/news/Amazon-to-open-distribution-center-in-Northeastern-Brazil-in-2020,1167920.html?src=twt#twt']",['https://pbs.twimg.com/media/ELoSlwcXUAEy_Cu.jpg'],0,0,0,[],[],https://twitter.com/FNW_US/status/1205296292303441920,False,,0,,,,,,,"[{'user_id': '724629011943579648', 'username': 'FNW_US'}]",
1205295444479397894,1205295444479397894,1576199801000,2019-12-13,04:16:41,MSK,3006566255,cl_person,Christian PERSON #EUVOXES,,Forest Defenders Increasingly Come Under Fire in Brazil’s Lawless Amazon http://revolutionjaune.org/2019/12/13/forest-defenders-increasingly-come-under-fire-in-brazils-lawless-amazon/ …,[],['http://revolutionjaune.org/2019/12/13/forest-defenders-increasingly-come-under-fire-in-brazils-lawless-amazon/'],[],0,0,0,[],[],https://twitter.com/CL_Person/status/1205295444479397894,False,,0,,,,,,,"[{'user_id': '3006566255', 'username': 'CL_Person'}]",
1205295060654231552,1205295060654231552,1576199710000,2019-12-13,04:15:10,MSK,15045263,bobdruwing,Bob Druwing,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,1,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/bobdruwing/status/1205295060654231552,False,,0,,,,,,,"[{'user_id': '15045263', 'username': 'bobdruwing'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205291468597923841,1205291468597923841,1576198854000,2019-12-13,04:00:54,MSK,2184934963,ecowarriorss,GO GREEN,,EU says it cares so act - ban Brazil beef one of the prime movers of deforestation of Amazon is a matter of life and death for all of us. We must fight for it | Jonathan Watts https://www.theguardian.com/commentisfree/2019/dec/12/amazon-matter-of-life-and-death-for-all-of-us-we-must-fight-for-it?CMP=share_btn_tw …,[],['https://www.theguardian.com/commentisfree/2019/dec/12/amazon-matter-of-life-and-death-for-all-of-us-we-must-fight-for-it?CMP=share_btn_tw'],[],0,6,7,[],[],https://twitter.com/ECOWARRIORSS/status/1205291468597923841,False,,0,,,,,,,"[{'user_id': '2184934963', 'username': 'ECOWARRIORSS'}]",
1205288218008203264,1205288218008203264,1576198079000,2019-12-13,03:47:59,MSK,628858281,ceci_2812,Cecilia Demartini,,"#ExtremeE Final location announced!
The brand new @ExtremeELive series is kicking off in 2021 with events taking place in the Amazon rainforest in Brazil, Greenland, Nepal´s Himalayas, Saudi Arabia, and Senegal.
Read the full story:
#ElectricVehicles https://www.e-racing.net/2019/12/13/extreme-e-final-location-announced/ …",['extremeelive'],['https://www.e-racing.net/2019/12/13/extreme-e-final-location-announced/'],[],0,0,1,"['#extremee', '#electricvehicles']",[],https://twitter.com/ceci_2812/status/1205288218008203264,False,,0,,,,,,,"[{'user_id': '628858281', 'username': 'ceci_2812'}, {'user_id': '1037633133523423232', 'username': 'ExtremeELive'}]",
1205287469727592449,1205252237846556675,1576197900000,2019-12-13,03:45:00,MSK,126046134,ncremonezlv,Nickolas Cremonez,,"It's happening all over the world, here in Brazil our president claimed that Di Caprio set the amazon rain Forrest on fire","['michaelskiller1', 'manyatruenerd']",[],[],0,0,0,[],[],https://twitter.com/NCremonezLV/status/1205287469727592449,False,,0,,,,,,,"[{'user_id': '126046134', 'username': 'NCremonezLV'}, {'user_id': '2937871601', 'username': 'michaelskiller1'}, {'user_id': '1416480746', 'username': 'ManyATrueNerd'}]",
1205287400118734849,1205287400118734849,1576197884000,2019-12-13,03:44:44,MSK,739673291569270785,davo7the7poet7,David Marsh,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,1,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/davo7the7poet7/status/1205287400118734849,False,,0,,,,,,,"[{'user_id': '739673291569270785', 'username': 'davo7the7poet7'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205285947702726657,1205285947702726657,1576197537000,2019-12-13,03:38:57,MSK,2584223720,randim20,Randi M 🐴,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,1,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/RandiM20/status/1205285947702726657,False,,0,,,,,,,"[{'user_id': '2584223720', 'username': 'RandiM20'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205285867960623104,1205285867960623104,1576197518000,2019-12-13,03:38:38,MSK,624413,marketwatch,MarketWatch,,"Brazil paves highway to soy production, sparking worries about Amazon destruction at a tipping point https://on.mktw.net/2LOMCNP ",[],['https://on.mktw.net/2LOMCNP'],[],0,4,5,[],[],https://twitter.com/MarketWatch/status/1205285867960623104,False,,0,,,,,,,"[{'user_id': '624413', 'username': 'MarketWatch'}]",
1205285501852364800,1205285501852364800,1576197431000,2019-12-13,03:37:11,MSK,4818573448,christa26930016,Chrissy❤️🌹,,Brazil's Amazon rainforest and development at a crossroads https://phys.org/news/2019-12-brazil-amazon-rainforest-crossroads.html … pic.twitter.com/NmiMf4hUuO,[],['https://phys.org/news/2019-12-brazil-amazon-rainforest-crossroads.html'],"['https://pbs.twimg.com/media/ELoIu4iWwAAc1CQ.jpg', 'https://pbs.twimg.com/media/ELoIu4oXUAETLRB.jpg', 'https://pbs.twimg.com/media/ELoIu57XsAE2Y5n.jpg', 'https://pbs.twimg.com/media/ELoIu7sX0AIglc_.jpg']",1,0,0,[],[],https://twitter.com/Christa26930016/status/1205285501852364800,False,,0,,,,,,,"[{'user_id': '4818573448', 'username': 'Christa26930016'}]",
1205283590537273344,1205283590537273344,1576196975000,2019-12-13,03:29:35,MSK,834524954242797569,organicbabycomp,organicbabycompany,,"France to Partner With Brazil States on Amazon, Bypassing Bolsonaro http://dlvr.it/RLB36C pic.twitter.com/RYtuaAYfI3",[],['http://dlvr.it/RLB36C'],['https://pbs.twimg.com/media/ELoHCbZUUAA7FBP.jpg'],0,0,0,[],[],https://twitter.com/OrganicBabyComp/status/1205283590537273344,False,,0,,,,,,,"[{'user_id': '834524954242797569', 'username': 'OrganicBabyComp'}]",
1205282815824322561,1205282815824322561,1576196791000,2019-12-13,03:26:31,MSK,4818573448,christa26930016,Chrissy❤️🌹,,Brazil's Amazon rainforest and development at a crossroads https://phys.org/news/2019-12-brazil-amazon-rainforest-crossroads.html … pic.twitter.com/JfDFih8PPM,[],['https://phys.org/news/2019-12-brazil-amazon-rainforest-crossroads.html'],['https://pbs.twimg.com/media/ELoGUyjWoAEcVN1.jpg'],0,0,0,[],[],https://twitter.com/Christa26930016/status/1205282815824322561,False,,0,,,,,,,"[{'user_id': '4818573448', 'username': 'Christa26930016'}]",
1205282518762549249,1205282518762549249,1576196720000,2019-12-13,03:25:20,MSK,79151924,kerryhennigan,Kerry Hennigan,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,1,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/kerryhennigan/status/1205282518762549249,False,,0,,,,,,,"[{'user_id': '79151924', 'username': 'kerryhennigan'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205282212351889408,1205282212351889408,1576196647000,2019-12-13,03:24:07,MSK,1014951163450482688,nowrefugee,Refugee Awareness Now,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,1,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/NowRefugee/status/1205282212351889408,False,,0,,,,,,,"[{'user_id': '1014951163450482688', 'username': 'NowRefugee'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205281415321079809,1205280996138115074,1576196457000,2019-12-13,03:20:57,MSK,843284808105103360,hazzadews4,Harris,,Swear to god if I wake up in morning and he’s won I’m moving to Brazil and going to start cutting down the amazon rainforest even more.,[],[],[],1,0,1,[],[],https://twitter.com/HazzaDews4/status/1205281415321079809,False,,0,,,,,,,"[{'user_id': '843284808105103360', 'username': 'HazzaDews4'}]",
1205280888776355840,1205280888776355840,1576196331000,2019-12-13,03:18:51,MSK,963285634809937921,birdfaks,BIRD FACTS,,"The Neotropical kingfisher is replaced in eastern and southern Africa from Zimbabwe to Cape Province, South Africa. It is found in the Amazon Basin of northeast Brazil in the north-central and northeast.",[],[],[],0,0,0,[],[],https://twitter.com/birdfaks/status/1205280888776355840,False,,0,,,,,,,"[{'user_id': '963285634809937921', 'username': 'birdfaks'}]",
1205278715430744065,1205278715430744065,1576195813000,2019-12-13,03:10:13,MSK,1082403205428989952,ltdaiw,IW TRADING LTDA,,Greta Thunberg - Brazil is united with you in favor of legal Amazon Reforestation. But world want to see you smiling . A beautiful children smling . Everything will be all right . TO PRESERVE ENVIROMENT,[],[],[],0,0,0,[],[],https://twitter.com/LtdaIw/status/1205278715430744065,False,,0,,,,,,,"[{'user_id': '1082403205428989952', 'username': 'LtdaIw'}]",
1205276826680999936,1205276826680999936,1576195363000,2019-12-13,03:02:43,MSK,15142242,bluecorncomics,Blue Corn Comics,,"""Brazil's president has called Swedish climate change activist Greta Thunberg a 'brat' after she condemned violence against indigenous people who were killed in the Amazon."" https://www.cnn.com/2019/12/11/americas/bolsonaro-thunberg-brat-intl-scli/index.html …",[],['https://www.cnn.com/2019/12/11/americas/bolsonaro-thunberg-brat-intl-scli/index.html'],[],1,0,0,[],[],https://twitter.com/bluecorncomics/status/1205276826680999936,False,,0,,,,,,,"[{'user_id': '15142242', 'username': 'bluecorncomics'}]",
1205275170463764501,1205275170463764501,1576194968000,2019-12-13,02:56:08,MSK,479714822,bosguyinatl,Mark Koritz,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,1,2,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/bosguyinatl/status/1205275170463764501,False,,0,,,,,,,"[{'user_id': '479714822', 'username': 'bosguyinatl'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205272925533876226,1205272925533876226,1576194432000,2019-12-13,02:47:12,MSK,933148466255155201,rikounet1,rikounet,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon #Resista #DefendEarthDefenders #StopBolsonaro http://amwt.ch/4561 via @AmazonWatch,['amazonwatch'],['http://amwt.ch/4561'],[],0,1,1,"['#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/rikounet1/status/1205272925533876226,False,,0,,,,,,,"[{'user_id': '933148466255155201', 'username': 'rikounet1'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205270121473826816,1205270121473826816,1576193764000,2019-12-13,02:36:04,MSK,2149973089,apdiplowriter,Matt Lee,,"“#Brazil paves highway to soy, sparking worries about #Amazon” https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81 …",[],['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81'],[],0,2,1,"['#brazil', '#amazon']",[],https://twitter.com/APDiploWriter/status/1205270121473826816,False,,0,,,,,,,"[{'user_id': '2149973089', 'username': 'APDiploWriter'}]",
1205269868402089984,1205269868402089984,1576193704000,2019-12-13,02:35:04,MSK,1186759099205279746,veerjutte,vmsj🦅,,"Bolsonaro in charge of Brazil, Amazon Rainforest being destroyed like it’s nothing, global warming killing the planet, Uyghur Muslims being held in concentration camps, Trump in power in the US and now Boris in power in the UK. Today was a chance for change but we didn’t take it.",[],[],[],1,2,4,[],[],https://twitter.com/VeerJutte/status/1205269868402089984,False,,0,,,,,,,"[{'user_id': '1186759099205279746', 'username': 'VeerJutte'}]",
1205269854066020353,1205269854066020353,1576193700000,2019-12-13,02:35:00,MSK,737344653758988288,soar12steps,Recovery,,VETERANS https://buff.ly/2IsKz1W recovery documentary free on this link or Amazon Prime #park #mainstreet #down #rso #australia #comedy #jokes #brazil #india #jets #redwings,[],['https://buff.ly/2IsKz1W'],[],0,0,0,"['#park', '#mainstreet', '#down', '#rso', '#australia', '#comedy', '#jokes', '#brazil', '#india', '#jets', '#redwings']",[],https://twitter.com/SOAR12steps/status/1205269854066020353,False,,0,,,,,,,"[{'user_id': '737344653758988288', 'username': 'SOAR12steps'}]",
1205267426977423360,1205266543732543493,1576193122000,2019-12-13,02:25:22,MSK,27376074,leo_correa,Leo Correa,,"Brazil paves highway to soy, sparking worries about Amazon: https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81 …",[],['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81'],[],0,0,0,[],[],https://twitter.com/Leo_Correa/status/1205267426977423360,False,,0,,,,,,,"[{'user_id': '27376074', 'username': 'Leo_Correa'}]",
1205266797194293248,1205266797194293248,1576192971000,2019-12-13,02:22:51,MSK,2310727130,deviousfranklin,educated derelict,,Screw you Brazil for burning down the Amazon forests and destroying the earth. Screw you! https://twitter.com/govbr/status/1191432109837053953 …,[],['https://twitter.com/govbr/status/1191432109837053953'],[],0,0,0,[],[],https://twitter.com/deviousfranklin/status/1205266797194293248,False,https://twitter.com/govbr/status/1191432109837053953,0,,,,,,,"[{'user_id': '2310727130', 'username': 'deviousfranklin'}]",
1205266543732543493,1205266543732543493,1576192911000,2019-12-13,02:21:51,MSK,27376074,leo_correa,Leo Correa,,"Smoke rises from a fire in the Amazon rainforest near roads BR-163 and the Trans-Amazon in Ruropolis, Brazil. Amazon deforestation rose almost 30%. Worst level in 11 years. Para state alone accounted for 40% of the loss, especially along the these 2 highways. #APvideo @Leo_Correa pic.twitter.com/CGBLoa2Hny",['leo_correa'],[],[],1,4,4,['#apvideo'],[],https://twitter.com/Leo_Correa/status/1205266543732543493,False,,1,,,,,,,"[{'user_id': '27376074', 'username': 'Leo_Correa'}]",
1205266110137933825,1205266110137933825,1576192808000,2019-12-13,02:20:08,MSK,13112692,gemswinc,Cindy,,"Brazil paves highway to soy, sparking worries about Amazon https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81 …",[],['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81'],[],1,1,0,[],[],https://twitter.com/gemswinc/status/1205266110137933825,False,,0,,,,,,,"[{'user_id': '13112692', 'username': 'gemswinc'}]",
1205265381520105474,1205265381520105474,1576192634000,2019-12-13,02:17:14,MSK,256478435,skinnergj,Dougy's Daily Digest,,"Brazil paves highway to soy, sparking worries about Amazon https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81 … via @skinnergj",['skinnergj'],['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81'],[],0,0,0,[],[],https://twitter.com/skinnergj/status/1205265381520105474,False,,0,,,,,,,"[{'user_id': '256478435', 'username': 'skinnergj'}]",
1205264096704241665,1205264096704241665,1576192328000,2019-12-13,02:12:08,MSK,525127209,annafado,Anna Cariani,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,1,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/AnnaFado/status/1205264096704241665,False,,0,,,,,,,"[{'user_id': '525127209', 'username': 'AnnaFado'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205264003494219777,1205264003494219777,1576192305000,2019-12-13,02:11:45,MSK,918188324426194944,stand_4_america,Free America Network,, http://Amazon.com to open distribution center in Northeastern Brazil in 2020 FILE PHOTO: The logo of Amazon is seen at the http://rviv.ly/3KB4b6 ,[],"['http://Amazon.com', 'http://rviv.ly/3KB4b6']",[],0,0,0,[],[],https://twitter.com/stand_4_america/status/1205264003494219777,False,,0,,,,,,,"[{'user_id': '918188324426194944', 'username': 'stand_4_america'}]",
1205263345172934656,1205263345172934656,1576192148000,2019-12-13,02:09:08,MSK,258215708,idahoranches,J. Trent Jones,,"Brazil paves highway to soy, sparking worries about Amazon (from @AP) https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81 …",['ap'],['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81'],[],0,1,0,[],[],https://twitter.com/idahoranches/status/1205263345172934656,False,,0,,,,,,,"[{'user_id': '258215708', 'username': 'idahoranches'}, {'user_id': '51241574', 'username': 'AP'}]",
1205263339825221632,1205263339825221632,1576192147000,2019-12-13,02:09:07,MSK,23017454,kodoandsangha,KodoAndSangha,,"Brazil paves highway to soy, sparking worries about Amazon https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81 …",[],['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81'],[],0,0,0,[],[],https://twitter.com/KodoAndSangha/status/1205263339825221632,False,,0,,,,,,,"[{'user_id': '23017454', 'username': 'KodoAndSangha'}]",
1205261827292192768,1205261827292192768,1576191786000,2019-12-13,02:03:06,MSK,1473904536,watshesed,That's What She Said,,1970’s footage of Brazil’s development of the Amazon region https://fedgeno.com/1970s-footage-of-brazils-development-of-the-amazon-region/ … pic.twitter.com/JGMbVZZOvf,[],['https://fedgeno.com/1970s-footage-of-brazils-development-of-the-amazon-region/'],['https://pbs.twimg.com/media/ELnzPpoXsAEk-Jd.jpg'],0,0,0,[],[],https://twitter.com/WatSheSed/status/1205261827292192768,False,,0,,,,,,,"[{'user_id': '1473904536', 'username': 'WatSheSed'}]",
1205261817636904963,1205261817636904963,1576191784000,2019-12-13,02:03:04,MSK,717918531447205888,managed_hosts,Managed Hosting,,1970’s footage of Brazil’s development of the Amazon region https://fedgeno.com/1970s-footage-of-brazils-development-of-the-amazon-region/ … pic.twitter.com/lHLnsRacel,[],['https://fedgeno.com/1970s-footage-of-brazils-development-of-the-amazon-region/'],['https://pbs.twimg.com/media/ELnzPDXXkAEHERA.jpg'],0,0,0,[],[],https://twitter.com/Managed_Hosts/status/1205261817636904963,False,,0,,,,,,,"[{'user_id': '717918531447205888', 'username': 'Managed_Hosts'}]",
1205261807075647493,1205261807075647493,1576191782000,2019-12-13,02:03:02,MSK,722439395391836160,dnb_feed,Drum 'n' Bass,,1970’s footage of Brazil’s development of the Amazon region https://fedgeno.com/1970s-footage-of-brazils-development-of-the-amazon-region/ … pic.twitter.com/cjLfCK123T,[],['https://fedgeno.com/1970s-footage-of-brazils-development-of-the-amazon-region/'],['https://pbs.twimg.com/media/ELnzOekXYAI_XmF.jpg'],0,0,0,[],[],https://twitter.com/dnb_feed/status/1205261807075647493,False,,0,,,,,,,"[{'user_id': '722439395391836160', 'username': 'dnb_feed'}]",
1205261794798911488,1205261794798911488,1576191779000,2019-12-13,02:02:59,MSK,722972022720995328,dimepiece_org,Dimepiece,,1970’s footage of Brazil’s development of the Amazon region https://fedgeno.com/1970s-footage-of-brazils-development-of-the-amazon-region/ … pic.twitter.com/zYSUjvvZFi,[],['https://fedgeno.com/1970s-footage-of-brazils-development-of-the-amazon-region/'],['https://pbs.twimg.com/media/ELnzNxJWwAAadlL.jpg'],0,0,0,[],[],https://twitter.com/dimepiece_org/status/1205261794798911488,False,,0,,,,,,,"[{'user_id': '722972022720995328', 'username': 'dimepiece_org'}]",
1205261776167849985,1205261776167849985,1576191774000,2019-12-13,02:02:54,MSK,2942549443,occupyocupy,Occupy оккупироват,,1970’s footage of Brazil’s development of the Amazon region https://fedgeno.com/1970s-footage-of-brazils-development-of-the-amazon-region/ … pic.twitter.com/cq2Y3ti1lS,[],['https://fedgeno.com/1970s-footage-of-brazils-development-of-the-amazon-region/'],['https://pbs.twimg.com/media/ELnzMrQXYAAVKD7.jpg'],0,0,0,[],[],https://twitter.com/OccupyOcupy/status/1205261776167849985,False,,0,,,,,,,"[{'user_id': '2942549443', 'username': 'OccupyOcupy'}]",
1205261765585584129,1205261765585584129,1576191772000,2019-12-13,02:02:52,MSK,69521125,fedgeno,Fedge No,,1970’s footage of Brazil’s development of the Amazon region https://fedgeno.com/1970s-footage-of-brazils-development-of-the-amazon-region/ … pic.twitter.com/0gsFVNvlhj,[],['https://fedgeno.com/1970s-footage-of-brazils-development-of-the-amazon-region/'],['https://pbs.twimg.com/media/ELnzMEUWsAA_38S.jpg'],0,0,0,[],[],https://twitter.com/FedgeNo/status/1205261765585584129,False,,0,,,,,,,"[{'user_id': '69521125', 'username': 'FedgeNo'}]",
1205261755741552641,1205261755741552641,1576191769000,2019-12-13,02:02:49,MSK,379576731,occupyna,GlobalParadigmShift,,1970’s footage of Brazil’s development of the Amazon region https://fedgeno.com/1970s-footage-of-brazils-development-of-the-amazon-region/ … pic.twitter.com/3JYWRZrwMB,[],['https://fedgeno.com/1970s-footage-of-brazils-development-of-the-amazon-region/'],['https://pbs.twimg.com/media/ELnzLfnWwAIgLeV.jpg'],0,0,0,[],[],https://twitter.com/OccupyNA/status/1205261755741552641,False,,0,,,,,,,"[{'user_id': '379576731', 'username': 'OccupyNA'}]",
1205261685755392000,1165349650506952709,1576191753000,2019-12-13,02:02:33,MSK,923359304257884160,regulaverso,Fernando Torelly,,Only in a very broad sense. lots of latin americans don't even speak the same language. Brazil it self is a continent apart. tell that to isolated tribe in the amazon how they are the same ethnicity as the venetians in the southern Brazil.,"['ignacio_caas', 'amytitt', 'riot_anthem', 'topherflorence']",[],[],1,0,0,[],[],https://twitter.com/regulaverso/status/1205261685755392000,False,,0,,,,,,,"[{'user_id': '923359304257884160', 'username': 'regulaverso'}, {'user_id': '1511929614', 'username': 'Ignacio_Caas'}, {'user_id': '879408883051245568', 'username': 'Amytitt'}, {'user_id': '1102615526671597569', 'username': 'riot_anthem'}, {'user_id': '122769401', 'username': 'topherflorence'}]",
1205261665794764807,1205261665794764807,1576191748000,2019-12-13,02:02:28,MSK,757592858341830656,eatersouls,Eater of Souls,,"Brazil paves highway to soy, sparking worries about Amazon https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81 …
@mariliacout",['mariliacout'],['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81'],[],2,2,3,[],[],https://twitter.com/EaterSouls/status/1205261665794764807,False,,0,,,,,,,"[{'user_id': '757592858341830656', 'username': 'EaterSouls'}, {'user_id': '575723052', 'username': 'mariliacout'}]",
1205260542832713731,1205260542832713731,1576191480000,2019-12-13,01:58:00,MSK,759955208306888704,shabbottmary,Mary shabbott,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,1,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/ShabbottMary/status/1205260542832713731,False,,0,,,,,,,"[{'user_id': '759955208306888704', 'username': 'ShabbottMary'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205259120342970368,1205259120342970368,1576191141000,2019-12-13,01:52:21,MSK,474304890,rrossachacj,Robert Rossachacj,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,1,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/RRossachacj/status/1205259120342970368,False,,0,,,,,,,"[{'user_id': '474304890', 'username': 'RRossachacj'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205257667545096193,1205257667545096193,1576190795000,2019-12-13,01:46:35,MSK,807021402955972610,lasramisteriosa,LaSraMisteriosa,,"Brazil paves highway to soy, sparking worries about Amazon https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81 …",[],['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81'],[],0,0,0,[],[],https://twitter.com/lasramisteriosa/status/1205257667545096193,False,,0,,,,,,,"[{'user_id': '807021402955972610', 'username': 'lasramisteriosa'}]",
1205257032200282112,1205257032200282112,1576190643000,2019-12-13,01:44:03,MSK,21578604,gene038,Eugene Chin,,"Brazil paves highway to soy, sparking worries about Amazon https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81 …",[],['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81'],[],0,0,0,[],[],https://twitter.com/gene038/status/1205257032200282112,False,,0,,,,,,,"[{'user_id': '21578604', 'username': 'gene038'}]",
1205255992142897152,1205255992142897152,1576190395000,2019-12-13,01:39:55,MSK,3065952215,drallapaul,Paul Allard,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,1,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/drallapaul/status/1205255992142897152,False,,0,,,,,,,"[{'user_id': '3065952215', 'username': 'drallapaul'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205252234390441989,1205242157885534211,1576189499000,2019-12-13,01:24:59,MSK,57828037,personalescrito,ubique,,"""Footage from the early 1970's of Brazil carving its Trans-Amazon highway through the jungle, inaugurating a river port in Santarem, and inaugurating an agricultural town for Amazon colonists.""
#dictatorship #colonialism #deforestation #RainForest
https://www.youtube.com/watch?v=B2tfNQl1xog&feature=emb_logo … pic.twitter.com/wq3gOeAfNK","['leo_correa', 'dlbiller']",['https://www.youtube.com/watch?v=B2tfNQl1xog&feature=emb_logo'],[],0,5,4,"['#dictatorship', '#colonialism', '#deforestation', '#rainforest']",[],https://twitter.com/PersonalEscrito/status/1205252234390441989,False,,1,,,,,,,"[{'user_id': '57828037', 'username': 'PersonalEscrito'}, {'user_id': '27376074', 'username': 'Leo_Correa'}, {'user_id': '98726426', 'username': 'DLBiller'}]",
1205251822245560320,1205251822245560320,1576189401000,2019-12-13,01:23:21,MSK,180950693,amor_brazil,Amazon Mission Org.,,"DONATE!
#DonateAMOR
http://www.amorbrazil.org/get-involved
Amazon Mission Organization
P.O. Box 707, Mountain Home, AR 72654 pic.twitter.com/snRoXZG26D",[],['http://www.amorbrazil.org/get-involved'],[],0,1,1,['#donateamor'],[],https://twitter.com/amor_brazil/status/1205251822245560320,False,,1,,,,,,,"[{'user_id': '180950693', 'username': 'amor_brazil'}]",
1205251728809086976,1205251728809086976,1576189379000,2019-12-13,01:22:59,MSK,1115874631,cgtnofficial,CGTN,,"In the middle of the Amazon, locals are taking advantage of the dry season and using tourism to their advantage. CGTN’s Paulo Cabral visits Alter do Chão, Brazil.
#development #Brazil #amasonal https://newsus.cgtn.com/news/2019-12-13/Creating-sustainable-wealth-in-the-Amazon-MnxZwiNB5u/index.html …",[],['https://newsus.cgtn.com/news/2019-12-13/Creating-sustainable-wealth-in-the-Amazon-MnxZwiNB5u/index.html'],[],1,5,26,"['#development', '#brazil', '#amasonal']",[],https://twitter.com/CGTNOfficial/status/1205251728809086976,False,,0,,,,,,,"[{'user_id': '1115874631', 'username': 'CGTNOfficial'}]",
1205251701290209280,1205251701290209280,1576189372000,2019-12-13,01:22:52,MSK,620136960,cgtnamerica,CGTN America,,"In the middle of the Amazon, locals are taking advantage of the dry season and using tourism to their advantage. CGTN’s Paulo Cabral visits Alter do Chão, Brazil.
#development #Brazil #amasonal https://newsus.cgtn.com/news/2019-12-13/Creating-sustainable-wealth-in-the-Amazon-MnxZwiNB5u/index.html …",[],['https://newsus.cgtn.com/news/2019-12-13/Creating-sustainable-wealth-in-the-Amazon-MnxZwiNB5u/index.html'],[],0,0,0,"['#development', '#brazil', '#amasonal']",[],https://twitter.com/cgtnamerica/status/1205251701290209280,False,,0,,,,,,,"[{'user_id': '620136960', 'username': 'cgtnamerica'}]",
1205250270051127297,1205250270051127297,1576189031000,2019-12-13,01:17:11,MSK,18452743,jamesriver,James River Church,,"Last month, a group of 17 people travelled to Brazil. They worked to build a church along the Amazon River and form relationships with people in the community! Swipe to see some amazing moments🎉
pic.twitter.com/bJEpxQCe2e",[],[],"['https://pbs.twimg.com/media/ELnoshhWsAEYswG.jpg', 'https://pbs.twimg.com/media/ELnosoiXkAA2v1q.jpg', 'https://pbs.twimg.com/media/ELnosobW4AItiek.jpg', 'https://pbs.twimg.com/media/ELnosodXUAIIs54.jpg']",0,3,13,[],[],https://twitter.com/jamesriver/status/1205250270051127297,False,,0,,,,,,,"[{'user_id': '18452743', 'username': 'jamesriver'}]",
1205249913379934208,1205249913379934208,1576188946000,2019-12-13,01:15:46,MSK,21757749,seanmaynard,Sean Maynard,,"Brazil paves highway to soy, sparking worries about Amazon https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81 …",[],['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81'],[],0,0,0,[],[],https://twitter.com/seanmaynard/status/1205249913379934208,False,,0,,,,,,,"[{'user_id': '21757749', 'username': 'seanmaynard'}]",
1205249341868429314,1205249341868429314,1576188810000,2019-12-13,01:13:30,MSK,55519903,leotiengmailcom,Leotien Parlevliet,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,1,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/leotiengmailcom/status/1205249341868429314,False,,0,,,,,,,"[{'user_id': '55519903', 'username': 'leotiengmailcom'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205248953685463041,1205248953685463041,1576188717000,2019-12-13,01:11:57,MSK,17416420,stillhigher,Marty Perlmutter,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon #Resista #DefendEarthDefenders #StopBolsonaro http://amwt.ch/4561 via @AmazonWatch,['amazonwatch'],['http://amwt.ch/4561'],[],0,0,2,"['#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/stillhigher/status/1205248953685463041,False,,0,,,,,,,"[{'user_id': '17416420', 'username': 'stillhigher'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205248832432484353,1205248832432484353,1576188688000,2019-12-13,01:11:28,MSK,336752249,removalman123,Keith Evans,,"Brazil paves highway to soy, sparking worries about Amazon https://kjebusiness.com/brazil-paves-highway-to-soy-sparking-worries-about-amazon/ …",[],['https://kjebusiness.com/brazil-paves-highway-to-soy-sparking-worries-about-amazon/'],[],0,0,0,[],[],https://twitter.com/removalman123/status/1205248832432484353,False,,0,,,,,,,"[{'user_id': '336752249', 'username': 'removalman123'}]",
1205248532028035072,1205248532028035072,1576188617000,2019-12-13,01:10:17,MSK,14726230,causeofourjoy,Leticia Velasquez,,Brazil's Prince: Amazon Synod Final Doc a 'Pantheist' Conspiracy https://www.churchmilitant.com/news/article/brazils-prince-amazon-synod-final-doc-a-pantheist-conspiracy#.Xe-YZkqFpv8.facebook …,[],['https://www.churchmilitant.com/news/article/brazils-prince-amazon-synod-final-doc-a-pantheist-conspiracy#.Xe-YZkqFpv8.facebook'],[],0,1,0,[],[],https://twitter.com/CauseofourJoy/status/1205248532028035072,False,,0,,,,,,,"[{'user_id': '14726230', 'username': 'CauseofourJoy'}]",
1205248476768014337,1205248476768014337,1576188603000,2019-12-13,01:10:03,MSK,504792607,crabdiving,CrabDiving Podcast,,"Authoritarians hate being called out.
#Bolsonaro #Brazil #Amazon #GretaThunberg http://bit.ly/2PASUlj ",[],['http://bit.ly/2PASUlj'],[],0,0,2,"['#bolsonaro', '#brazil', '#amazon', '#gretathunberg']",[],https://twitter.com/CrabDiving/status/1205248476768014337,False,,0,,,,,,,"[{'user_id': '504792607', 'username': 'CrabDiving'}]",
1205248354638319619,1205242157885534211,1576188574000,2019-12-13,01:09:34,MSK,57828037,personalescrito,ubique,,"#Brazil paves highway to soy, sparking worries about Amazon. by @Leo_Correa & @DLBiller
#RainForest #deforestation #agribusiness
https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81 …","['leo_correa', 'dlbiller']",['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81'],[],1,17,7,"['#brazil', '#rainforest', '#deforestation', '#agribusiness']",[],https://twitter.com/PersonalEscrito/status/1205248354638319619,False,,0,,,,,,,"[{'user_id': '57828037', 'username': 'PersonalEscrito'}, {'user_id': '27376074', 'username': 'Leo_Correa'}, {'user_id': '98726426', 'username': 'DLBiller'}]",
1205247847383343105,1205247847383343105,1576188453000,2019-12-13,01:07:33,MSK,84725346,elcitizen,Leopoldo Castillo,,"Brazil paves highway to soy, sparking worries about Amazon https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81 …",[],['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81'],[],0,9,8,[],[],https://twitter.com/elcitizen/status/1205247847383343105,False,,0,,,,,,,"[{'user_id': '84725346', 'username': 'elcitizen'}]",
1205246164431454208,1205246164431454208,1576188052000,2019-12-13,01:00:52,MSK,335147046,eintrucknews,EIN Truck News,,"Brazil paves highway to soy, sparking worries about Amazon http://s.einnews.com/mPN2840ia- ",[],['http://s.einnews.com/mPN2840ia-'],[],0,0,0,[],[],https://twitter.com/EINTruckNews/status/1205246164431454208,False,,0,,,,,,,"[{'user_id': '335147046', 'username': 'EINTruckNews'}]",
1205245580919918592,1205245580919918592,1576187913000,2019-12-13,00:58:33,MSK,707316591453724673,instantspost,instant.com.pk,,"Brazil paves highway to soy, sparking worries about Amazon https://instant.com.pk/brazil-paves-freeway-to-soy-sparking-worries-about-amazon/ …",[],['https://instant.com.pk/brazil-paves-freeway-to-soy-sparking-worries-about-amazon/'],[],0,0,0,[],[],https://twitter.com/instantsPost/status/1205245580919918592,False,,0,,,,,,,"[{'user_id': '707316591453724673', 'username': 'instantsPost'}]",
1205243691994009601,1205243691994009601,1576187463000,2019-12-13,00:51:03,MSK,28390516,kmov,KMOV,,"Brazil paves highway to soy, sparking worries about Amazon http://dlvr.it/RL9gp6 #KMOV pic.twitter.com/pGP9tHETQE",[],['http://dlvr.it/RL9gp6'],['https://pbs.twimg.com/media/ELniwCqU8AEinxU.jpg'],0,0,0,['#kmov'],[],https://twitter.com/KMOV/status/1205243691994009601,False,,0,,,,,,,"[{'user_id': '28390516', 'username': 'KMOV'}]",
1205242957852561412,1205242957852561412,1576187288000,2019-12-13,00:48:08,MSK,990639377045970945,veraluciacalda3,Vera Lucia Caldas,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,0,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/VeraLuciaCalda3/status/1205242957852561412,False,,0,,,,,,,"[{'user_id': '990639377045970945', 'username': 'VeraLuciaCalda3'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205240675702169601,1205240675702169601,1576186744000,2019-12-13,00:39:04,MSK,1079911297,ecointernetdrgb,EcoInternet,,"Brazil paves highway to soy, sparking worries about Amazon: Associated Press https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81?utm_medium=APHealthScience&utm_campaign=SocialFlow&utm_source=Twitter …
MORE w/ EcoSearch - news: https://search.ecointernet.org/search/results?q=amazon%20brazil%20pave%20highway%20soy%20sparking%20worry&w=relevance … web: https://search.ecointernet.org/search/results?q=amazon%20brazil%20pave%20highway%20soy%20sparking%20worry&s=web …",[],"['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81?utm_medium=APHealthScience&utm_campaign=SocialFlow&utm_source=Twitter', 'https://search.ecointernet.org/search/results?q=amazon%20brazil%20pave%20highway%20soy%20sparking%20worry&w=relevance', 'https://search.ecointernet.org/search/results?q=amazon%20brazil%20pave%20highway%20soy%20sparking%20worry&s=web']",[],0,0,2,[],[],https://twitter.com/EcoInternetDrGB/status/1205240675702169601,False,,0,,,,,,,"[{'user_id': '1079911297', 'username': 'EcoInternetDrGB'}]",
1205240275360079872,1205240275360079872,1576186648000,2019-12-13,00:37:28,MSK,1026585376893235200,kazrockchick,Kaz Rockchick,,"Also, is Morrison so beholden 2 fulfilling trade agreements & China's demands that he will favour them over us?
China, Brazil & USA's trade wars are a factor in Climate Changes
We need 2 watch Lib Govt as the Amazon fires & ours seem strangely coincidental https://apple.news/AWHM4tWSqRG69nFMa21HOKw …",[],['https://apple.news/AWHM4tWSqRG69nFMa21HOKw'],[],0,0,0,[],[],https://twitter.com/KazRockchick/status/1205240275360079872,False,,0,,,,,,,"[{'user_id': '1026585376893235200', 'username': 'KazRockchick'}]",
1205240268640927746,1205240268640927746,1576186646000,2019-12-13,00:37:26,MSK,18589806,stacylemelle,Stacy Parker LeMelle,,Brazil’s Amazon at a Crossroads https://www.latinorebels.com/2019/12/12/amazonatacrossroads/ …,[],['https://www.latinorebels.com/2019/12/12/amazonatacrossroads/'],[],0,0,0,[],[],https://twitter.com/StacyLeMelle/status/1205240268640927746,False,,0,,,,,,,"[{'user_id': '18589806', 'username': 'StacyLeMelle'}]",
1205238035945648128,1205238035945648128,1576186114000,2019-12-13,00:28:34,MSK,17643749,crewislife,๒ รคץร Ŧยςк Շгย๓ק,,1970’s footage of Brazil’s development of the Amazon region http://dlvr.it/RL9crK pic.twitter.com/nY6oI58O4p,[],['http://dlvr.it/RL9crK'],['https://pbs.twimg.com/media/ELndm0gU0AAv3jm.jpg'],0,0,0,[],[],https://twitter.com/crewislife/status/1205238035945648128,False,,0,,,,,,,"[{'user_id': '17643749', 'username': 'crewislife'}]",
1205237912482136065,1205237912482136065,1576186085000,2019-12-13,00:28:05,MSK,1179710990,occuworld,OccuWorld 🏴,,Forest Defenders Increasingly Come Under Fire in Brazil’s Lawless Amazon https://amazonwatch.org/news/2019/1212-forest-defenders-increasingly-come-under-fire-in-brazils-lawless-amazon …,[],['https://amazonwatch.org/news/2019/1212-forest-defenders-increasingly-come-under-fire-in-brazils-lawless-amazon'],[],0,0,0,[],[],https://twitter.com/OccuWorld/status/1205237912482136065,False,,0,,,,,,,"[{'user_id': '1179710990', 'username': 'OccuWorld'}]",
1205237485292400640,1205237485292400640,1576185983000,2019-12-13,00:26:23,MSK,1022687765069221888,sleeperthomas,Thomas Sleeper,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,0,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/SleeperThomas/status/1205237485292400640,False,,0,,,,,,,"[{'user_id': '1022687765069221888', 'username': 'SleeperThomas'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205236467703918608,1205236467703918608,1576185740000,2019-12-13,00:22:20,MSK,1143597068025511936,jamespechs,jamespch,,Brazil's Amazon rainforest and development at a crossroads http://ow.ly/j4Sv1023us7 pic.twitter.com/HVtZYBPBUk,[],['http://ow.ly/j4Sv1023us7'],['https://pbs.twimg.com/media/ELncLVxWkAEa5ug.jpg'],0,0,0,[],[],https://twitter.com/jamespechs/status/1205236467703918608,False,,0,,,,,,,"[{'user_id': '1143597068025511936', 'username': 'jamespechs'}]",
1205236060235673614,1205236060235673614,1576185643000,2019-12-13,00:20:43,MSK,1143523817572241409,suitjut,Gato raro,,Brazil's Amazon rainforest and development at a crossroads http://ow.ly/j4Sv1023us7 pic.twitter.com/mdjUvctzjy,[],['http://ow.ly/j4Sv1023us7'],['https://pbs.twimg.com/media/ELnbz1JWsAg7g90.jpg'],0,0,0,[],[],https://twitter.com/SuitJut/status/1205236060235673614,False,,0,,,,,,,"[{'user_id': '1143523817572241409', 'username': 'SuitJut'}]",
1205233532957798415,1205233532957798415,1576185041000,2019-12-13,00:10:41,MSK,2546837940,francessinclai5,Frances Sinclair,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,0,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/francessinclai5/status/1205233532957798415,False,,0,,,,,,,"[{'user_id': '2546837940', 'username': 'francessinclai5'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205233330041556994,1205233330041556994,1576184992000,2019-12-13,00:09:52,MSK,256150699,jenapradio,Jennifer King,,Brazil's Amazon rainforest and development at a crossroads https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81 …,[],['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81'],[],0,0,0,[],[],https://twitter.com/jenapradio/status/1205233330041556994,False,,0,,,,,,,"[{'user_id': '256150699', 'username': 'jenapradio'}]",
1205232988222631937,1205232988222631937,1576184911000,2019-12-13,00:08:31,MSK,39011285,greenarkpress,C. Cornell (Evers),,Brazil's Amazon rainforest and development at a crossroads https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81 …,[],['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81'],[],0,0,0,[],[],https://twitter.com/greenarkpress/status/1205232988222631937,False,,0,,,,,,,"[{'user_id': '39011285', 'username': 'greenarkpress'}]",
1205232154902487042,1205232154902487042,1576184712000,2019-12-13,00:05:12,MSK,3242358537,aortic_pumps,Joey's Thesaurus,,"Brazil’s finds itself at a convergence, strain for endeavour but infested by decline #Amazon River environmental condition that… https://twitter.com/i/web/status/1205220074312929282 …",[],['https://twitter.com/i/web/status/1205220074312929282'],[],0,0,0,['#amazon'],[],https://twitter.com/aortic_pumps/status/1205232154902487042,False,,0,,,,,,,"[{'user_id': '3242358537', 'username': 'aortic_pumps'}]",
1205231864417529867,1205231864417529867,1576184643000,2019-12-13,00:04:03,MSK,96340864,veteco,Janet Chapman,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,0,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/veteco/status/1205231864417529867,False,,0,,,,,,,"[{'user_id': '96340864', 'username': 'veteco'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205231813343490061,1205231813343490061,1576184631000,2019-12-13,00:03:51,MSK,247255085,estwaldstein,Andrea Toscani,,#Amazon to open distribution center in Northeastern Brazil in 2020 https://finance.yahoo.com/news/amazon-com-open-distribution-center-191541315.html …,[],['https://finance.yahoo.com/news/amazon-com-open-distribution-center-191541315.html'],[],0,0,0,['#amazon'],[],https://twitter.com/Estwaldstein/status/1205231813343490061,False,,0,,,,,,,"[{'user_id': '247255085', 'username': 'Estwaldstein'}]",
1205230833482625024,1205230833482625024,1576184397000,2019-12-12,23:59:57,MSK,955306476,jcindyina,James A Clark Jr,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,0,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/JcindyinA/status/1205230833482625024,False,,0,,,,,,,"[{'user_id': '955306476', 'username': 'JcindyinA'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205230810745462784,1205230810745462784,1576184392000,2019-12-12,23:59:52,MSK,403685458,catslib,diana cowans,,"Forest Defenders Increasingly Come Under Fire in #Brazil's Lawless Amazon #Resista #DefendEarthDefenders #StopBolsonaro Bolsonaro and Trump are twins of tyranny, we cannot allow them to be successful. http://amwt.ch/4561 via @AmazonWatch",['amazonwatch'],['http://amwt.ch/4561'],[],0,0,0,"['#brazil', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/catslib/status/1205230810745462784,False,,0,,,,,,,"[{'user_id': '403685458', 'username': 'catslib'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205230718206369792,1205230718206369792,1576184369000,2019-12-12,23:59:29,MSK,1040480221827235841,btcnasia,btcn asia,,"Brazil’s finds itself at a crossroads, striving for development but plagued by worsening Amazon deforestation that could accelerate climate change. @DLBiller and @Leo_Correa traveled to the crossroads to find where the two highways lead. http://apne.ws/wdGpFsI @AP","['dlbiller', 'leo_correa', 'ap']",['http://apne.ws/wdGpFsI'],[],0,0,0,[],[],https://twitter.com/btcnasia/status/1205230718206369792,False,,0,,,,,,,"[{'user_id': '1040480221827235841', 'username': 'btcnasia'}, {'user_id': '98726426', 'username': 'DLBiller'}, {'user_id': '27376074', 'username': 'Leo_Correa'}, {'user_id': '51241574', 'username': 'AP'}]",
1205230593593806849,1205230593593806849,1576184340000,2019-12-12,23:59:00,MSK,60017224,peninsulaqatar,The Peninsula,,"Night falls in Brazil’s Amazon and two logging trucks without license plates emerge from the jungle. They rumble over dirt roads that lead away from a national forest, carrying trunks of trees hundreds of years old.
https://thepeninsulaqatar.com/article/12/12/2019/Brazil-s-Amazon-rainforest-and-development-at-a-crossroads …",[],['https://thepeninsulaqatar.com/article/12/12/2019/Brazil-s-Amazon-rainforest-and-development-at-a-crossroads'],[],0,0,0,[],[],https://twitter.com/PeninsulaQatar/status/1205230593593806849,False,,0,,,,,,,"[{'user_id': '60017224', 'username': 'PeninsulaQatar'}]",
1205230458314866688,1205230458314866688,1576184308000,2019-12-12,23:58:28,MSK,326346797,blueeyes6612,DONNA,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,0,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/BLUEEYES6612/status/1205230458314866688,False,,0,,,,,,,"[{'user_id': '326346797', 'username': 'BLUEEYES6612'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205230081045598209,1205230081045598209,1576184218000,2019-12-12,23:56:58,MSK,627227732,davidlance3,David Lance #FBPE #WATON,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,0,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/DavidLance3/status/1205230081045598209,False,,0,,,,,,,"[{'user_id': '627227732', 'username': 'DavidLance3'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205229548721205248,1205229548721205248,1576184091000,2019-12-12,23:54:51,MSK,345041798,blueinz,Tom Gledhill,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,0,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/BlueiNZ/status/1205229548721205248,False,,0,,,,,,,"[{'user_id': '345041798', 'username': 'BlueiNZ'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205229138736492545,1205229138736492545,1576183993000,2019-12-12,23:53:13,MSK,420805826,noradml17,Nora ML,,"""[T]he world must wake up to the existential threat posed by the destruction of the Amazon, and show solidarity with traditional communities, land rights activists and environmental NGOs in Brazil"" https://twitter.com/jonathanwatts/status/1205220729714880514 …",[],['https://twitter.com/jonathanwatts/status/1205220729714880514'],[],0,0,0,[],[],https://twitter.com/noradml17/status/1205229138736492545,False,https://twitter.com/jonathanwatts/status/1205220729714880514,0,,,,,,,"[{'user_id': '420805826', 'username': 'noradml17'}]",
1205228854211751937,1205228854211751937,1576183925000,2019-12-12,23:52:05,MSK,48779872,empathynow,EmpathyNow,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,2,2,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/EmpathyNow/status/1205228854211751937,False,,0,,,,,,,"[{'user_id': '48779872', 'username': 'EmpathyNow'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205226706962976768,1205226706962976768,1576183413000,2019-12-12,23:43:33,MSK,746012176733863936,catmom913,TruthWillOut 🌊🌈☮️🌎(SnittyBitch),,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon #Resista #DefendEarthDefenders #StopBolsonaro http://amwt.ch/4561 via @AmazonWatch,['amazonwatch'],['http://amwt.ch/4561'],[],0,0,0,"['#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/CatMom913/status/1205226706962976768,False,,0,,,,,,,"[{'user_id': '746012176733863936', 'username': 'CatMom913'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205226582916419584,1205226582916419584,1576183384000,2019-12-12,23:43:04,MSK,577767791,timweiskel,Tim Weiskel,,1970’s footage of Brazil’s development of the Amazon region https://environmentaljusticetv.wordpress.com/2019/12/12/1970s-footage-of-brazils-development-of-the-amazon-region/ …,[],['https://environmentaljusticetv.wordpress.com/2019/12/12/1970s-footage-of-brazils-development-of-the-amazon-region/'],[],0,0,0,[],[],https://twitter.com/TimWeiskel/status/1205226582916419584,False,,0,,,,,,,"[{'user_id': '577767791', 'username': 'TimWeiskel'}]",
1205225417017180160,1205225417017180160,1576183106000,2019-12-12,23:38:26,MSK,797560053146365952,bscottnewskona,b scott,,"12 December 2019 / European News Brief
Diplomats demand ‘credible’ reforms for Lebanon aid at Paris talks
Poland Will Soon Be Flying F-35s Meant To Fight Russia
Brazil's Amazon states seek $500m from Norway
Chinese foreign minister expected in Slovenia https://twitter.com/newsography1/status/1205191967195443200 …",[],['https://twitter.com/newsography1/status/1205191967195443200'],[],0,0,1,[],[],https://twitter.com/bscottnewskona/status/1205225417017180160,False,https://twitter.com/newsography1/status/1205191967195443200,0,,,,,,,"[{'user_id': '797560053146365952', 'username': 'bscottnewskona'}]",
1205225194911981568,1205225194911981568,1576183053000,2019-12-12,23:37:33,MSK,17643749,crewislife,๒ รคץร Ŧยςк Շгย๓ק,,1970’s footage of Brazil’s development of the Amazon region http://dlvr.it/RL9TTH pic.twitter.com/k56lL57viJ,[],['http://dlvr.it/RL9TTH'],['https://pbs.twimg.com/media/ELnR7WQVUAAZgM2.jpg'],0,0,0,[],[],https://twitter.com/crewislife/status/1205225194911981568,False,,0,,,,,,,"[{'user_id': '17643749', 'username': 'crewislife'}]",
1205224928515112962,1205191175092740096,1576182989000,2019-12-12,23:36:29,MSK,1537589275,bkohatl,Brian Keith O'Hara,,"@GretaThunberg goes where she can make the biggest difference. She is at war with Evangelical Brazil President @jairbolsonaro who is exterminating Amazon Indigenous Tribes to steal their land and give it to his billionaire supporters, WHO ARE BURNING DOWN THE AMAZON! pic.twitter.com/eJuvSLs9rQ","['tommynoskin', 'mashable', 'gretathunberg', 'speakerpelosi', 'jairbolsonaro']",[],['https://pbs.twimg.com/media/ELnRrfwXsAMr_B9.png'],1,0,0,[],[],https://twitter.com/bkohatl/status/1205224928515112962,False,,0,,,,,,,"[{'user_id': '1537589275', 'username': 'bkohatl'}, {'user_id': '960330169276919813', 'username': 'Tommynoskin'}, {'user_id': '972651', 'username': 'mashable'}, {'user_id': '1006419421244678144', 'username': 'GretaThunberg'}, {'user_id': '15764644', 'username': 'SpeakerPelosi'}, {'user_id': '128372940', 'username': 'jairbolsonaro'}]",
1205224522657476616,1205224522657476616,1576182892000,2019-12-12,23:34:52,MSK,59587240,humanrights666,Mikael Johansson,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,0,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/HumanRights666/status/1205224522657476616,False,,0,,,,,,,"[{'user_id': '59587240', 'username': 'HumanRights666'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205223214164652034,1205220074312929282,1576182580000,2019-12-12,23:29:40,MSK,1167826295146893312,rsepeta,Doctor Synth,,"Not “could accelerate climate change”. “Is rapidly accelerating climate change”. Brazil's Amazon forest is a treasure for the entire world, not solely their country. If Brazil fails to halt deforestation immediately, it will be a DESERT within 30 years.","['ap', 'dlbiller', 'leo_correa']",[],[],1,0,2,[],[],https://twitter.com/RSepeta/status/1205223214164652034,False,,0,,,,,,,"[{'user_id': '1167826295146893312', 'username': 'RSepeta'}, {'user_id': '51241574', 'username': 'AP'}, {'user_id': '98726426', 'username': 'DLBiller'}, {'user_id': '27376074', 'username': 'Leo_Correa'}]",
1205222635723866112,1205222635723866112,1576182442000,2019-12-12,23:27:22,MSK,166672230,999ghosties,chris 🍓🍉🍒✨,,"Hi, Australia is still burning where’s that energy you all had for the Amazon? Brazil is still burning btw but no one seems to care anymore. Its deforestation burning for Illegal mining, soy bean plantations, and animal agriculture. It’s fine though right?",[],[],[],0,0,6,[],[],https://twitter.com/999ghosties/status/1205222635723866112,False,,0,,,,,,,"[{'user_id': '166672230', 'username': '999ghosties'}]",
1205222362163142662,1205222362163142662,1576182377000,2019-12-12,23:26:17,MSK,103572210,dianejeantet,Diane Jeantet,,"Great reporting + stunning photos from highway BR-230, known as the Trans-Amazon, carved through jungle during Brazil’s military dictatorship in the 1970s. By @DLBiller and @Leo_Correa https://twitter.com/AP/status/1205220074312929282 …","['dlbiller', 'leo_correa']",['https://twitter.com/AP/status/1205220074312929282'],[],0,0,0,[],[],https://twitter.com/dianejeantet/status/1205222362163142662,False,https://twitter.com/AP/status/1205220074312929282,0,,,,,,,"[{'user_id': '103572210', 'username': 'dianejeantet'}, {'user_id': '98726426', 'username': 'DLBiller'}, {'user_id': '27376074', 'username': 'Leo_Correa'}]",
1205221306456821766,1205221306456821766,1576182126000,2019-12-12,23:22:06,MSK,207950470,zazafl,ZazaFL,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon #Resista #DefendEarthDefenders #StopBolsonaro http://amwt.ch/4561 via @AmazonWatch,['amazonwatch'],['http://amwt.ch/4561'],[],0,0,0,"['#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/ZazaFL/status/1205221306456821766,False,,0,,,,,,,"[{'user_id': '207950470', 'username': 'ZazaFL'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205220074312929282,1205220074312929282,1576181832000,2019-12-12,23:17:12,MSK,51241574,ap,The Associated Press,,"Brazil’s finds itself at a crossroads, striving for development but plagued by worsening Amazon deforestation that could accelerate climate change. @DLBiller and @Leo_Correa traveled to the crossroads to find where the two highways lead. http://apne.ws/wdGpFsI ","['dlbiller', 'leo_correa']",['http://apne.ws/wdGpFsI'],[],16,34,58,[],[],https://twitter.com/AP/status/1205220074312929282,False,,0,,,,,,,"[{'user_id': '51241574', 'username': 'AP'}, {'user_id': '98726426', 'username': 'DLBiller'}, {'user_id': '27376074', 'username': 'Leo_Correa'}]",
1205219684217434115,1205219684217434115,1576181739000,2019-12-12,23:15:39,MSK,3672447257,science_spies,Science Spies,,"Brazil's Amazon rainforest and development at a crossroads | https://sciencespies.com/environment/brazils-amazon-rainforest-and-development-at-a-crossroads/ …
#Environment pic.twitter.com/j3xJVLztGU",[],['https://sciencespies.com/environment/brazils-amazon-rainforest-and-development-at-a-crossroads/'],['https://pbs.twimg.com/media/ELnM6mAWsAIKArh.jpg'],0,0,0,['#environment'],[],https://twitter.com/Science_Spies/status/1205219684217434115,False,,0,,,,,,,"[{'user_id': '3672447257', 'username': 'Science_Spies'}]",
1205219592295079937,1205219592295079937,1576181717000,2019-12-12,23:15:17,MSK,989957623574421504,jjtravelassoc,Jennifer Edelson & Joel Wesseldyke Dream Vacations,,"20% of the world’s oxygen comes from the Amazon rainforest (Nearly two thirds of which resides in Brazil).
#TravelInspiration #JJTravelAssociates #SeeTheWorld pic.twitter.com/Dv86B3qOam",[],[],['https://pbs.twimg.com/media/ELnM1QJXUAEpMU8.jpg'],0,0,0,"['#travelinspiration', '#jjtravelassociates', '#seetheworld']",[],https://twitter.com/JJTravelAssoc/status/1205219592295079937,False,,0,,,,,,,"[{'user_id': '989957623574421504', 'username': 'JJTravelAssoc'}]",
1205218433991876616,1205218433991876616,1576181441000,2019-12-12,23:10:41,MSK,21231946,amayeda,Andrew Mayeda,,Brazil's Amazon rainforest and development at a crossroads https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81 …,[],['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81'],[],0,0,0,[],[],https://twitter.com/amayeda/status/1205218433991876616,False,,0,,,,,,,"[{'user_id': '21231946', 'username': 'amayeda'}]",
1205216993458216960,1205216993458216960,1576181097000,2019-12-12,23:04:57,MSK,2423674010,goransablic1,Goran Sablic,,CB 90 H in Brazil on the Amazon River https://youtu.be/9I42PVJtOlc via @YouTube,['youtube'],['https://youtu.be/9I42PVJtOlc'],[],0,0,0,[],[],https://twitter.com/GoranSablic1/status/1205216993458216960,False,,0,,,,,,,"[{'user_id': '2423674010', 'username': 'GoranSablic1'}, {'user_id': '10228272', 'username': 'YouTube'}]",
1205215547979374592,1205215547979374592,1576180753000,2019-12-12,22:59:13,MSK,577653607,karenkaren69,karen wolf,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,0,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/karenkaren69/status/1205215547979374592,False,,0,,,,,,,"[{'user_id': '577653607', 'username': 'karenkaren69'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205215070487273474,1205215070487273474,1576180639000,2019-12-12,22:57:19,MSK,1159498179324370944,bravomilagro1,Milagro Bravo 🆘 🌎 !!!,,"France to Partner with Brazil States on Amazon, Bypassing Bolsonaro !!!
https://nyti.ms/2s7r6NB ",[],['https://nyti.ms/2s7r6NB'],[],0,5,4,[],[],https://twitter.com/BravoMilagro1/status/1205215070487273474,False,,0,,,,,,,"[{'user_id': '1159498179324370944', 'username': 'BravoMilagro1'}]",
1205214214299824129,1205214214299824129,1576180435000,2019-12-12,22:53:55,MSK,5952632,dokbr,Cassio K,,"Amazon River, Amazonas, Brazil. pic.twitter.com/eQ0cc1IgcE",[],[],['https://pbs.twimg.com/media/ELnH8BXWsAsUUan.jpg'],1,2,5,[],[],https://twitter.com/dokbr/status/1205214214299824129,False,,0,,,,,,,"[{'user_id': '5952632', 'username': 'dokbr'}]",
1205213764796239872,1205213764796239872,1576180327000,2019-12-12,22:52:07,MSK,354472149,feroldtorchenot,litetechstudio,,"12-12-19
Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro",['amazonwatch'],['https://amwt.ch/4561'],[],0,0,0,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/FeroldTorchenot/status/1205213764796239872,False,,0,,,,,,,"[{'user_id': '354472149', 'username': 'FeroldTorchenot'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205212787426971648,1205212787426971648,1576180094000,2019-12-12,22:48:14,MSK,63738419,femmekatz,Kathe Garbrick,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon #Resista #DefendEarthDefenders #StopBolsonaro http://amwt.ch/4561 via @AmazonWatch,['amazonwatch'],['http://amwt.ch/4561'],[],0,0,0,"['#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/femmekatz/status/1205212787426971648,False,,0,,,,,,,"[{'user_id': '63738419', 'username': 'femmekatz'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205212167559098375,1205212167559098375,1576179947000,2019-12-12,22:45:47,MSK,324983788,crazyhorse2126,crazyhorse,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,1,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/crazyhorse2126/status/1205212167559098375,False,,0,,,,,,,"[{'user_id': '324983788', 'username': 'crazyhorse2126'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205211946758344707,1205211946758344707,1576179894000,2019-12-12,22:44:54,MSK,482577233,betty_lea,Betty Lea,,Forest Defenders Increasingly Come Under Fire in #Brazil's Lawless #Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,0,"['#brazil', '#amazon', '#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/Betty_Lea/status/1205211946758344707,False,,0,,,,,,,"[{'user_id': '482577233', 'username': 'Betty_Lea'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205211946661896193,1205211946661896193,1576179894000,2019-12-12,22:44:54,MSK,224426162,keesmarges,Kees Marges,,"Great story
Brazil's Amazon rainforest and development at a crossroads https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81 …",[],['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81'],[],0,0,0,[],[],https://twitter.com/Keesmarges/status/1205211946661896193,False,,0,,,,,,,"[{'user_id': '224426162', 'username': 'Keesmarges'}]",
1205211742562902016,1205211742562902016,1576179845000,2019-12-12,22:44:05,MSK,1454755542,woltronute,Ute Woltron,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon #Resista #DefendEarthDefenders #StopBolsonaro http://amwt.ch/4561 via @AmazonWatch,['amazonwatch'],['http://amwt.ch/4561'],[],0,0,2,"['#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/WoltronUte/status/1205211742562902016,False,,0,,,,,,,"[{'user_id': '1454755542', 'username': 'WoltronUte'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205211727656304640,1205211727656304640,1576179842000,2019-12-12,22:44:02,MSK,963495628545327104,stckpro,stck.pro,,$AMZN NEW ARTICLE : Amazon announces new distribution center in Brazil https://dashboard.stck.pro/news.php?ticker=AMZN&rowid=2748017 … Get all the latest $AMZN related news here : https://dashboard.stck.pro/news.php?ticker=AMZN …,[],"['https://dashboard.stck.pro/news.php?ticker=AMZN&rowid=2748017', 'https://dashboard.stck.pro/news.php?ticker=AMZN']",[],0,0,0,[],"['$amzn', '$amzn']",https://twitter.com/StckPro/status/1205211727656304640,False,,0,,,,,,,"[{'user_id': '963495628545327104', 'username': 'StckPro'}]",
1205211714280546304,1205211714280546304,1576179839000,2019-12-12,22:43:59,MSK,317907435,dianesnavely,Diane Snavely,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,0,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/DianeSnavely/status/1205211714280546304,False,,0,,,,,,,"[{'user_id': '317907435', 'username': 'DianeSnavely'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205210338985218049,1205210338985218049,1576179511000,2019-12-12,22:38:31,MSK,878490462,wgonzalezgarcia,William G Gonzalez,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,1,0,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/wgonzalezgarcia/status/1205210338985218049,False,,0,,,,,,,"[{'user_id': '878490462', 'username': 'wgonzalezgarcia'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205210324443549696,1205210324443549696,1576179507000,2019-12-12,22:38:27,MSK,1077642344,rickeybuttery,Rickey Buttery,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,0,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/RickeyButtery/status/1205210324443549696,False,,0,,,,,,,"[{'user_id': '1077642344', 'username': 'RickeyButtery'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205210085812822016,1205210085812822016,1576179450000,2019-12-12,22:37:30,MSK,26943695,tommymackatx,✖ TommyATX ✖,,Amazon announces new distribution center in Brazil $AMZN https://seekingalpha.com/news/3525944 ,[],['https://seekingalpha.com/news/3525944'],[],0,0,2,[],['$amzn'],https://twitter.com/TommyMackATX/status/1205210085812822016,False,,0,,,,,,,"[{'user_id': '26943695', 'username': 'TommyMackATX'}]",
1205209773722882048,1205209773722882048,1576179376000,2019-12-12,22:36:16,MSK,1134049078424162304,newsfilterio,newsfilter.io,,Amazon announces new distribution center in Brazil $AMZN https://newsfilter.io/articles/amazon-announces-new-distribution-center-in-brazil-8f7a3dc0466199b9fdfd343a225159ff …,[],['https://newsfilter.io/articles/amazon-announces-new-distribution-center-in-brazil-8f7a3dc0466199b9fdfd343a225159ff'],[],0,0,0,[],['$amzn'],https://twitter.com/newsfilterio/status/1205209773722882048,False,,0,,,,,,,"[{'user_id': '1134049078424162304', 'username': 'newsfilterio'}]",
1205208811839078401,1205208811839078401,1576179147000,2019-12-12,22:32:27,MSK,902725801,trishaann1951,Patricia P-Emanuel,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,0,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/TrishaAnn1951/status/1205208811839078401,False,,0,,,,,,,"[{'user_id': '902725801', 'username': 'TrishaAnn1951'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205208648361725952,1205208648361725952,1576179108000,2019-12-12,22:31:48,MSK,15296897,marketcurrents,Breaking News,,$AMZN - Amazon announces new distribution center in Brazil https://seekingalpha.com/news/3525944-amazon-announces-new-distribution-center-in-brazil?source=feed_f&utm_campaign=twitter_automated&utm_content=news&utm_medium=social&utm_source=twitter …,[],['https://seekingalpha.com/news/3525944-amazon-announces-new-distribution-center-in-brazil?source=feed_f&utm_campaign=twitter_automated&utm_content=news&utm_medium=social&utm_source=twitter'],[],0,2,0,[],['$amzn'],https://twitter.com/MarketCurrents/status/1205208648361725952,False,,0,,,,,,,"[{'user_id': '15296897', 'username': 'MarketCurrents'}]",
1205208595396214786,1205208595396214786,1576179095000,2019-12-12,22:31:35,MSK,700264840414285825,breaking24seven,Breaking the News 24/7,,"Amazon announces it will open second distribution center in Brazil in 2020
$AMZN https://breakingthenews.net/Article/Amazon-to-open-second-distribution-center-in-Brazil/50641810 …",[],['https://breakingthenews.net/Article/Amazon-to-open-second-distribution-center-in-Brazil/50641810'],[],0,0,1,[],['$amzn'],https://twitter.com/Breaking24Seven/status/1205208595396214786,False,,0,,,,,,,"[{'user_id': '700264840414285825', 'username': 'Breaking24Seven'}]",
1205208427494023168,1205208427494023168,1576179055000,2019-12-12,22:30:55,MSK,3761415808,shiffrinjoyce,Joyce Shiffrin,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,0,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/ShiffrinJoyce/status/1205208427494023168,False,,0,,,,,,,"[{'user_id': '3761415808', 'username': 'ShiffrinJoyce'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205208400193183745,1205208400193183745,1576179048000,2019-12-12,22:30:48,MSK,25393191,dgendvil,Derek Gendvil,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon #Resista #DefendEarthDefenders #StopBolsonaro http://amwt.ch/4561 via @AmazonWatch,['amazonwatch'],['http://amwt.ch/4561'],[],0,0,0,"['#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/dgendvil/status/1205208400193183745,False,,0,,,,,,,"[{'user_id': '25393191', 'username': 'dgendvil'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205207725833105409,1205207725833105409,1576178888000,2019-12-12,22:28:08,MSK,17156064,strosfan,strosfan,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,0,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/strosfan/status/1205207725833105409,False,,0,,,,,,,"[{'user_id': '17156064', 'username': 'strosfan'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205207555208822786,1205207555208822786,1576178847000,2019-12-12,22:27:27,MSK,59233991,mimbck,miriam kurland,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,0,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/mimbck/status/1205207555208822786,False,,0,,,,,,,"[{'user_id': '59233991', 'username': 'mimbck'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205207364489449472,1205207364489449472,1576178802000,2019-12-12,22:26:42,MSK,1136457579754872832,kempereliot,Eliot Kemper,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,0,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/KemperEliot/status/1205207364489449472,False,,0,,,,,,,"[{'user_id': '1136457579754872832', 'username': 'KemperEliot'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205207033475141633,1205207033475141633,1576178723000,2019-12-12,22:25:23,MSK,1390624596,sofiesomega,Sofie Løve Forsberg,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon https://amwt.ch/4561 @AmazonWatch #EyeOnTheAmazon #Resista #DefendEarthDefenders #StopBolsonaro,['amazonwatch'],['https://amwt.ch/4561'],[],0,0,1,"['#eyeontheamazon', '#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/SofiesOmega/status/1205207033475141633,False,,0,,,,,,,"[{'user_id': '1390624596', 'username': 'SofiesOmega'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205206888771674113,1205206888771674113,1576178688000,2019-12-12,22:24:48,MSK,863135703022043136,adrinkys99,Andrew Drinkwater,,Forest Defenders Increasingly Come Under Fire in Brazil%27s Lawless Amazon https%3A%2F% http://2Famwt.ch %2F4561 %40AmazonWatch %23EyeOnTheAmazon %23Resista %23DefendEarthDefenders %23StopBolsonaro,[],['http://2Famwt.ch'],[],0,0,0,[],[],https://twitter.com/Adrinkys99/status/1205206888771674113,False,,0,,,,,,,"[{'user_id': '863135703022043136', 'username': 'Adrinkys99'}]",
1205203978738376705,1205203976603471880,1576177994000,2019-12-12,22:13:14,MSK,14786217,rnfrstalliance,Rainforest Alliance,,"2/ In Brazil, huge areas of the #AmazonRainforest is being razed to make room for lucrative cattle
pasture. More than 20% of the Amazon has already been destroyed, with the profits concentrated in the hands of a few. #ActForAmazonia https://bit.ly/2LPePnR ",[],['https://bit.ly/2LPePnR'],[],1,9,8,"['#amazonrainforest', '#actforamazonia']",[],https://twitter.com/RnfrstAlliance/status/1205203978738376705,False,,0,,,,,,,"[{'user_id': '14786217', 'username': 'RnfrstAlliance'}]",
1205200534317088769,1205200534317088769,1576177173000,2019-12-12,21:59:33,MSK,55584120,peterprengaman,Peter Prengaman,,Brazil's Amazon rainforest and development at a crossroads (from @AP) By David Biller + @Leo_Correa https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81 …,"['ap', 'leo_correa']",['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81'],[],0,0,2,[],[],https://twitter.com/peterprengaman/status/1205200534317088769,False,,0,,,,,,,"[{'user_id': '55584120', 'username': 'peterprengaman'}, {'user_id': '51241574', 'username': 'AP'}, {'user_id': '27376074', 'username': 'Leo_Correa'}]",
1205200154497675264,1205200140065050625,1576177083000,2019-12-12,21:58:03,MSK,249951302,ajfaultlines,Fault Lines,,"In ‘Amazon Burning’ (2019) we examined how criminal networks are at the heart of deforestation in the Amazon. Under President Bolsonaro, deforestation in Brazil has reached a 10-year high: https://youtu.be/JojArKa_HLA #COP25 2/ pic.twitter.com/pguTkFzPx7",[],['https://youtu.be/JojArKa_HLA'],['https://pbs.twimg.com/media/ELm7JMmU0AAZFHN.jpg'],1,2,2,['#cop25'],[],https://twitter.com/AJFaultLines/status/1205200154497675264,False,,0,,,,,,,"[{'user_id': '249951302', 'username': 'AJFaultLines'}]",
1205200062692937729,1205200062692937729,1576177061000,2019-12-12,21:57:41,MSK,17463449,hapivibe,Hapi & the Lost Species,,Amazon indigenous leaders killed in Brazil drive-by shooting https://www.theguardian.com/world/2019/dec/08/amazon-indigenous-leaders-killed-in-brazil-drive-by-shooting?CMP=share_btn_tw …,[],['https://www.theguardian.com/world/2019/dec/08/amazon-indigenous-leaders-killed-in-brazil-drive-by-shooting?CMP=share_btn_tw'],[],0,0,0,[],[],https://twitter.com/HapiVibe/status/1205200062692937729,False,,0,,,,,,,"[{'user_id': '17463449', 'username': 'HapiVibe'}]",
1205199839987937282,1205199839987937282,1576177008000,2019-12-12,21:56:48,MSK,23121291,twebber02,Tammy Webber,,Brazil's Amazon rainforest and development at a crossroads https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81 …,[],['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81'],[],0,0,0,[],[],https://twitter.com/twebber02/status/1205199839987937282,False,,0,,,,,,,"[{'user_id': '23121291', 'username': 'twebber02'}]",
1205199405722341379,1205199405722341379,1576176904000,2019-12-12,21:55:04,MSK,125095427,sommelier50,Dimitri François,,Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon #Resista #DefendEarthDefenders #StopBolsonaro http://amwt.ch/4561 via @AmazonWatch,['amazonwatch'],['http://amwt.ch/4561'],[],0,0,0,"['#resista', '#defendearthdefenders', '#stopbolsonaro']",[],https://twitter.com/sommelier50/status/1205199405722341379,False,,0,,,,,,,"[{'user_id': '125095427', 'username': 'sommelier50'}, {'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205198967392423936,1205198967392423936,1576176799000,2019-12-12,21:53:19,MSK,831567731820527618,aphealthscience,AP Health & Science,,"Brazil’s Amazon rainforest is at a crossroads with development and illegal logging threatening to exacerbate climate change. An @AP team traveled two remote jungle highways to tell the story of the place and its people.
http://apne.ws/gQfOAMF ",['ap'],['http://apne.ws/gQfOAMF'],[],0,4,3,[],[],https://twitter.com/APHealthScience/status/1205198967392423936,False,,0,,,,,,,"[{'user_id': '831567731820527618', 'username': 'APHealthScience'}, {'user_id': '51241574', 'username': 'AP'}]",
1205197994636660736,1205197994636660736,1576176568000,2019-12-12,21:49:28,MSK,1079911297,ecointernetdrgb,EcoInternet,,"Forest Defenders Increasingly Come Under Fire in Brazil's Lawless Amazon: Amazon Watch http://amazonwatch.org/news/2019/1212-forest-defenders-increasingly-come-under-fire-in-brazils-lawless-amazon … #environment
MORE w/ EcoSearch - news: https://search.ecointernet.org/search/results?q=forest%20amazon%20fire%20defender%20increasingly%20come%20brazil%20lawless&w=relevance … web: https://search.ecointernet.org/search/results?q=forest%20amazon%20fire%20defender%20increasingly%20come%20brazil%20lawless&s=web …",[],"['http://amazonwatch.org/news/2019/1212-forest-defenders-increasingly-come-under-fire-in-brazils-lawless-amazon', 'https://search.ecointernet.org/search/results?q=forest%20amazon%20fire%20defender%20increasingly%20come%20brazil%20lawless&w=relevance', 'https://search.ecointernet.org/search/results?q=forest%20amazon%20fire%20defender%20increasingly%20come%20brazil%20lawless&s=web']",[],0,1,1,['#environment'],[],https://twitter.com/EcoInternetDrGB/status/1205197994636660736,False,,0,,,,,,,"[{'user_id': '1079911297', 'username': 'EcoInternetDrGB'}]",
1205196999701737482,1205196999701737482,1576176330000,2019-12-12,21:45:30,MSK,18240187,movetheworlduk,World Animal Protection UK,,"Tom is one of the many animals that were affected by the Amazon rain forest fires. The team at CETAS #wildlife rescue centre took great care of him ❤ Thanks to your support, we were able to deliver medicine to them in such a horrific time for Brazil's #animals. pic.twitter.com/z0V95wOxYP",[],[],[],4,31,64,"['#wildlife', '#animals']",[],https://twitter.com/MoveTheWorldUK/status/1205196999701737482,False,,1,,,,,,,"[{'user_id': '18240187', 'username': 'MoveTheWorldUK'}]",
1205196376855994371,1205196376855994371,1576176182000,2019-12-12,21:43:02,MSK,2329066872,theintercept,The Intercept,,Dorothy Stang died defending a sustainable development model for the Amazon. Can her legacy survive in Bolsonaro’s Brazil? https://interc.pt/34dFh0W ,[],['https://interc.pt/34dFh0W'],[],1,24,65,[],[],https://twitter.com/theintercept/status/1205196376855994371,False,,0,,,,,,,"[{'user_id': '2329066872', 'username': 'theintercept'}]",
1205192887669002243,1205192887669002243,1576175350000,2019-12-12,21:29:10,MSK,49356724,ptrevisani,Paulo Trevisani,,Brazil's Amazon rainforest and development at a crossroads (from @AP) https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81 …,['ap'],['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81'],[],1,1,0,[],[],https://twitter.com/ptrevisani/status/1205192887669002243,False,,0,,,,,,,"[{'user_id': '49356724', 'username': 'ptrevisani'}, {'user_id': '51241574', 'username': 'AP'}]",
1205192856933154821,1205178508701401089,1576175343000,2019-12-12,21:29:03,MSK,1109908176344965126,eilishass,gαbi,,"and our president (Brazil), who in his 64 years called Greta a brat
and she did more for the Amazon than he did.",['finneas'],[],[],1,0,31,[],[],https://twitter.com/eilishass/status/1205192856933154821,False,,0,,,,,,,"[{'user_id': '1109908176344965126', 'username': 'eilishass'}, {'user_id': '1573265498', 'username': 'finneas'}]",
1205192102956556289,1205192102956556289,1576175163000,2019-12-12,21:26:03,MSK,1079911297,ecointernetdrgb,EcoInternet,,"Brazil's Amazon #rainforest and development at a crossroads: Physorg https://phys.org/news/2019-12-brazil-amazon-rainforest-crossroads.html … #environment
MORE w/ EcoSearch - news: https://search.ecointernet.org/search/results?q=rainforest%20amazon%20development%20brazil%20crossroad&w=relevance … web: https://search.ecointernet.org/search/results?q=rainforest%20amazon%20development%20brazil%20crossroad&s=web …",[],"['https://phys.org/news/2019-12-brazil-amazon-rainforest-crossroads.html', 'https://search.ecointernet.org/search/results?q=rainforest%20amazon%20development%20brazil%20crossroad&w=relevance', 'https://search.ecointernet.org/search/results?q=rainforest%20amazon%20development%20brazil%20crossroad&s=web']",[],0,1,0,"['#rainforest', '#environment']",[],https://twitter.com/EcoInternetDrGB/status/1205192102956556289,False,,0,,,,,,,"[{'user_id': '1079911297', 'username': 'EcoInternetDrGB'}]",
1205191967195443200,1205191967195443200,1576175131000,2019-12-12,21:25:31,MSK,704398119446958080,newsography1,Donald Leung 🌐,,"12/12 Europea News Brief:
🇱🇧Diplomats demand ‘credible’ reforms for Lebanon aid at Paris talks
🇵🇱Poland Will Soon Be Flying F-35s Meant To Fight Russia
🇳🇴Brazil's Amazon states seek $500m from Norway
🇸🇮Chinese foreign minister expected in Slovenia
#nato #AcademicTwitter pic.twitter.com/7Ntp5WLdhp",[],[],"['https://pbs.twimg.com/media/ELmzsqhWsAA3Jf7.png', 'https://pbs.twimg.com/media/ELmzsqvW4AoDo5u.png', 'https://pbs.twimg.com/media/ELmzsqsX0AA9H8L.png', 'https://pbs.twimg.com/media/ELmzsqfWoAAXlmV.png']",0,1,4,"['#nato', '#academictwitter']",[],https://twitter.com/newsography1/status/1205191967195443200,False,,0,,,,,,,"[{'user_id': '704398119446958080', 'username': 'newsography1'}]",
1205191720834650112,1203695855880019969,1576175072000,2019-12-12,21:24:32,MSK,731855623,duabusan,Alberto,,"#Brazil #government was warned by prosecutors three days before “fire day”Documents show that Ibama was warned of a plan to set #fires to the #forests on August 7, but did nothing to stop burning in #Amazon #Rainforest #arson #fires #deforestation #COP25
https://revistagloborural.globo.com/Noticias/Politica/noticia/2019/08/governo-foi-alertado-pelo-ministerio-publico-tres-dias-antes-de-dia-do-fogo.html … pic.twitter.com/OhMw8u86n5","['monalis50878751', 'silkspectreiii', 'ajplus']",['https://revistagloborural.globo.com/Noticias/Politica/noticia/2019/08/governo-foi-alertado-pelo-ministerio-publico-tres-dias-antes-de-dia-do-fogo.html'],"['https://pbs.twimg.com/media/ELmzeZqXUAA5VaM.jpg', 'https://pbs.twimg.com/media/ELmzeZqWsAE8RYC.jpg', 'https://pbs.twimg.com/media/ELmzeZoX0AErB8a.jpg']",0,0,0,"['#brazil', '#government', '#fires', '#forests', '#amazon', '#rainforest', '#arson', '#fires', '#deforestation', '#cop25']",[],https://twitter.com/duabusan/status/1205191720834650112,False,,0,,,,,,,"[{'user_id': '731855623', 'username': 'duabusan'}, {'user_id': '1177357240711491584', 'username': 'Monalis50878751'}, {'user_id': '830921468087238656', 'username': 'silkspectreiii'}, {'user_id': '110396781', 'username': 'ajplus'}]",
1205190852659695616,1205190852659695616,1576174865000,2019-12-12,21:21:05,MSK,301573123,inaor,iNaor,,Brazil's Amazon rainforest and development at a crossroads https://naor.in/35kdLA4 /via @physorg_com pic.twitter.com/JxS5H6msYQ,['physorg_com'],['https://naor.in/35kdLA4'],['https://pbs.twimg.com/media/ELmysPbU4AATg8i.jpg'],0,0,0,[],[],https://twitter.com/iNaor/status/1205190852659695616,False,,0,,,,,,,"[{'user_id': '301573123', 'username': 'iNaor'}, {'user_id': '17248121', 'username': 'physorg_com'}]",
1205189058835693570,1205189058835693570,1576174437000,2019-12-12,21:13:57,MSK,35317431,paulogbarreto,Paulo Barreto,,Brazil's Amazon rainforest and development at a crossroads https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81 …,[],['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81'],[],0,0,1,[],[],https://twitter.com/paulogbarreto/status/1205189058835693570,False,,0,,,,,,,"[{'user_id': '35317431', 'username': 'paulogbarreto'}]",
1205188077326487552,1205188077326487552,1576174203000,2019-12-12,21:10:03,MSK,2829461701,genphys,General Physics Lab,,"Brazil's Amazon rainforest and development at a crossroads - +GENERAL PHYSICS LABORATORY (GPL)
Night falls in Brazil's Amazon and two logging trucks without license plates emerge from the jungle. They rumble over dirt roads...
https://www.genphys.com/environment/brazils-amazon-rainforest-and-development-at-a-crossroads …",[],['https://www.genphys.com/environment/brazils-amazon-rainforest-and-development-at-a-crossroads'],[],0,0,0,[],[],https://twitter.com/genphys/status/1205188077326487552,False,,0,,,,,,,"[{'user_id': '2829461701', 'username': 'genphys'}]",
1205187689412202496,1205187689412202496,1576174111000,2019-12-12,21:08:31,MSK,1479619152,pkwsj,Paul Kiernan,,Brazil's Amazon rainforest and development at a crossroads by @DLBiller https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81 …,['dlbiller'],['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81'],[],0,2,3,[],[],https://twitter.com/pkwsj/status/1205187689412202496,False,,0,,,,,,,"[{'user_id': '1479619152', 'username': 'pkwsj'}, {'user_id': '98726426', 'username': 'DLBiller'}]",
1205187007447732226,1204822952878989312,1576173948000,2019-12-12,21:05:48,MSK,1060502946746720257,marcovincio3,Marco Vinício,,"Brazil has been one of the major responsible for the degradation of the planet with the omission of the Amazon Forest fires. And make no mistake,@jairbolsonaro government holds in its coffers more than $1bi of stationary resources. And it uses foreign resources. All Corrupt. @UN","['un', 'antonioguterres', 'jairbolsonaro']",[],[],0,0,0,[],[],https://twitter.com/MarcoVincio3/status/1205187007447732226,False,,0,,,,,,,"[{'user_id': '1060502946746720257', 'username': 'MarcoVincio3'}, {'user_id': '14159148', 'username': 'UN'}, {'user_id': '811229675758505984', 'username': 'antonioguterres'}, {'user_id': '128372940', 'username': 'jairbolsonaro'}]",
1205185572316307456,1205185572316307456,1576173606000,2019-12-12,21:00:06,MSK,3379366161,preachersonke,J M Kinoti,,"Mother Nature doesn't recognize borders.
destroy the Amazon in Brazil, Rivers dry up in Asia.
Sadly, global polluters tend to be the wealthy in wealthy countries whom are the least affected by climate change.
How we address it will be the defining moment of the 21st Century.",[],[],[],0,0,0,[],[],https://twitter.com/PreachersonKE/status/1205185572316307456,False,,0,,,,,,,"[{'user_id': '3379366161', 'username': 'PreachersonKE'}]",
1205185560580673538,1205185560580673538,1576173603000,2019-12-12,21:00:03,MSK,326692104,neewsbot,News Bot,,Brazil's Amazon rainforest and development at a crossroads https://phys.org/news/2019-12-brazil-amazon-rainforest-crossroads.html …,[],['https://phys.org/news/2019-12-brazil-amazon-rainforest-crossroads.html'],[],0,0,0,[],[],https://twitter.com/neewsbot/status/1205185560580673538,False,,0,,,,,,,"[{'user_id': '326692104', 'username': 'neewsbot'}]",
1205185449335107588,1205185449335107588,1576173577000,2019-12-12,20:59:37,MSK,27376074,leo_correa,Leo Correa,,"Night falls in Brazil’s Amazon and logging trucks without license plates emerge from the jungle, carrying trunks of trees hundreds of years old. - Brazil's Amazon rainforest and development at a crossroads https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81 … with @DLBiller pic.twitter.com/OoeJ9zdcSP",['dlbiller'],['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81'],['https://pbs.twimg.com/media/ELmtxo-XsAAYVpL.jpg'],2,58,52,[],[],https://twitter.com/Leo_Correa/status/1205185449335107588,False,,0,,,,,,,"[{'user_id': '27376074', 'username': 'Leo_Correa'}, {'user_id': '98726426', 'username': 'DLBiller'}]",
1205184809208672256,1205184809208672256,1576173424000,2019-12-12,20:57:04,MSK,52119056,pablorodas,Pablo Rodas-Martini,,"Phys Org: ""Brazil's Amazon rainforest and development at a crossroads http://dlvr.it/RL90LH pic.twitter.com/Usnogsdk2Y",[],['http://dlvr.it/RL90LH'],['https://pbs.twimg.com/media/ELmtMbGUwAAgn61.jpg'],0,4,4,[],[],https://twitter.com/pablorodas/status/1205184809208672256,False,,0,,,,,,,"[{'user_id': '52119056', 'username': 'pablorodas'}]",
1205183775333928960,1205183775333928960,1576173177000,2019-12-12,20:52:57,MSK,4839872717,ellahoward271,Lou Ella Howard,,Brazil's Amazon rainforest and development at a crossroads https://article.wn.com/view/2019/12/12/Brazils_Amazon_rainforest_and_development_at_a_crossroads_8/ …,[],['https://article.wn.com/view/2019/12/12/Brazils_Amazon_rainforest_and_development_at_a_crossroads_8/'],[],0,0,0,[],[],https://twitter.com/ellahoward271/status/1205183775333928960,False,,0,,,,,,,"[{'user_id': '4839872717', 'username': 'ellahoward271'}]",
1205183038486974464,1205183038486974464,1576173002000,2019-12-12,20:50:02,MSK,20513956,physorg_space,Phys.org Space News,,Brazil's Amazon rainforest and development at a crossroads https://phys.org/news/2019-12-brazil-amazon-rainforest-crossroads.html …,[],['https://phys.org/news/2019-12-brazil-amazon-rainforest-crossroads.html'],[],0,2,0,[],[],https://twitter.com/physorg_space/status/1205183038486974464,False,,0,,,,,,,"[{'user_id': '20513956', 'username': 'physorg_space'}]",
1205181860583739392,1205181860583739392,1576172721000,2019-12-12,20:45:21,MSK,1170486757525266433,ks_longer,I Touch that shit!,,"Really?!!Damn Amazon rain first cant catch a break: The majority of the increase in soy production in the last decade has been in Brazil, Argentina,Bolivia & Paraguay,where production has contributed to deforestation in important biodiversity hotspots.
Source:World Wildlife Fund",[],[],[],1,0,0,[],[],https://twitter.com/KS_Longer/status/1205181860583739392,False,,0,,,,,,,"[{'user_id': '1170486757525266433', 'username': 'KS_Longer'}]",
1205181327122796544,1195079375777140744,1576172594000,2019-12-12,20:43:14,MSK,2565250742,mikiefan2013,MikeCWFmechanics,,"Orwellian double speak nonsense.
Whilst a corrupt government is allowing the burning of the Amazon, which is bad for Brazil and the world’s long term interests, you cannot call yourself environmentally aware or sustainable.",['govbr'],[],[],0,0,0,[],[],https://twitter.com/MikieFan2013/status/1205181327122796544,False,,0,,,,,,,"[{'user_id': '2565250742', 'username': 'MikieFan2013'}, {'user_id': '861707648584085504', 'username': 'govbr'}]",
1205181133174034432,1205181133174034432,1576172547000,2019-12-12,20:42:27,MSK,1011389826,cosmos_anders,Anders Hansson,,Brazil's Amazon rainforest and development at a crossroads https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81 … A must-read article very informative about what's looming,[],['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81'],[],0,0,0,[],[],https://twitter.com/Cosmos_Anders/status/1205181133174034432,False,,0,,,,,,,"[{'user_id': '1011389826', 'username': 'Cosmos_Anders'}]",
1205180234678644737,1205180234678644737,1576172333000,2019-12-12,20:38:53,MSK,273113540,beatricelacy,Beatrice Lacy,,Brazil's Amazon rainforest and development at a crossroads https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81 … #SaveTheAmazonRainforest,[],['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81'],[],0,0,0,['#savetheamazonrainforest'],[],https://twitter.com/BeatriceLacy/status/1205180234678644737,False,,0,,,,,,,"[{'user_id': '273113540', 'username': 'BeatriceLacy'}]",
1205179642329665539,1204884053117358080,1576172192000,2019-12-12,20:36:32,MSK,1060502946746720257,marcovincio3,Marco Vinício,,"Brazil has been one of the major responsible for the degradation of the planet with the omission of the Amazon Forest fires. And make no mistake,@jairbolsonaro government holds in its coffers more than $1bi of stationary resources. And it uses foreign resources. All Corrupt. @UN","['un', 'antonioguterres', 'astro_luca', 'space_station', 'jairbolsonaro']",[],[],0,0,0,[],[],https://twitter.com/MarcoVincio3/status/1205179642329665539,False,,0,,,,,,,"[{'user_id': '1060502946746720257', 'username': 'MarcoVincio3'}, {'user_id': '14159148', 'username': 'UN'}, {'user_id': '811229675758505984', 'username': 'antonioguterres'}, {'user_id': '290876018', 'username': 'astro_luca'}, {'user_id': '1451773004', 'username': 'Space_Station'}, {'user_id': '128372940', 'username': 'jairbolsonaro'}]",
1205178229608321025,1205178229608321025,1576171855000,2019-12-12,20:30:55,MSK,22398708,jason_caine_,Jason,,Amazon indigenous leaders killed in Brazil drive-by shooting https://www.theguardian.com/world/2019/dec/08/amazon-indigenous-leaders-killed-in-brazil-drive-by-shooting …,[],['https://www.theguardian.com/world/2019/dec/08/amazon-indigenous-leaders-killed-in-brazil-drive-by-shooting'],[],0,0,0,[],[],https://twitter.com/jason_CAINE_/status/1205178229608321025,False,,0,,,,,,,"[{'user_id': '22398708', 'username': 'jason_CAINE_'}]",
1205171497620430848,1205171497620430848,1576170250000,2019-12-12,20:04:10,MSK,169177471,authorgalelaure,G. Laure,,EVOLUTION OF A SAD WOMAN mystery suspense thriller romance #book @ #Amazon worldwide page bottom: #USA #Brazil #Canada #France #UK #Germany #Italy #Mexico #Spain #Australia #Japan #India for #ThursdayMotivation #shopping. 5men who love❤️ 1woman. http://www.tinyurl.com/y9716zr GL,[],['http://www.tinyurl.com/y9716zr'],[],0,0,0,"['#book', '#amazon', '#usa', '#brazil', '#canada', '#france', '#uk', '#germany', '#italy', '#mexico', '#spain', '#australia', '#japan', '#india', '#thursdaymotivation', '#shopping']",[],https://twitter.com/AuthorGaleLaure/status/1205171497620430848,False,,0,,,,,,,"[{'user_id': '169177471', 'username': 'AuthorGaleLaure'}]",
1205169645549998083,1205169645549998083,1576169809000,2019-12-12,19:56:49,MSK,1545618764,andrew_wasley,Andrew Wasley,,AMAZON ON FIRE : what we’ve learnt from a year investigating Brazil’s ‘big beef’ industry https://www.thebureauinvestigates.com/blog/2019-12-12/amazon-aflame-what-weve-learnt-in-a-year-reporting-on-brazilian-beef-and-the-rainforest … @tbij @guardian,"['tbij', 'guardian']",['https://www.thebureauinvestigates.com/blog/2019-12-12/amazon-aflame-what-weve-learnt-in-a-year-reporting-on-brazilian-beef-and-the-rainforest'],[],0,11,6,[],[],https://twitter.com/Andrew_Wasley/status/1205169645549998083,False,,0,,,,,,,"[{'user_id': '1545618764', 'username': 'Andrew_Wasley'}, {'user_id': '116009193', 'username': 'TBIJ'}, {'user_id': '87818409', 'username': 'guardian'}]",
1205169135107350532,1205169135107350532,1576169687000,2019-12-12,19:54:47,MSK,1098449433472237568,realnews2100,GAIA,,Supertrees: The Amazon’s Brazil nut tree creates its own rainfall — and it’s in danger https://www.vox.com/2019/12/12/20991590/amazon-rainforest-deforestation-climate-change-trees-rain-brazil-nut …,[],['https://www.vox.com/2019/12/12/20991590/amazon-rainforest-deforestation-climate-change-trees-rain-brazil-nut'],[],0,0,0,[],[],https://twitter.com/REALNEWS2100/status/1205169135107350532,False,,0,,,,,,,"[{'user_id': '1098449433472237568', 'username': 'REALNEWS2100'}]",
1205167424187883520,1205167424187883520,1576169279000,2019-12-12,19:47:59,MSK,18363255,latinousa,NPR's Latino USA,,Brazil’s Amazon at a Crossroads (via @AP) https://www.latinorebels.com/2019/12/12/amazonatacrossroads/ …,['ap'],['https://www.latinorebels.com/2019/12/12/amazonatacrossroads/'],[],0,2,1,[],[],https://twitter.com/LatinoUSA/status/1205167424187883520,False,,0,,,,,,,"[{'user_id': '18363255', 'username': 'LatinoUSA'}, {'user_id': '51241574', 'username': 'AP'}]",
1205165728761958400,1205142882258214914,1576168875000,2019-12-12,19:41:15,MSK,17534668,metasmith,Illadelphiana's Finest,,He's a lunatic. He blamed Leonardo di Caprio for the Amazon burning too! Black folks can't catch a break from crazy presidents here or in Brazil. Lol,['ncboyer'],[],[],0,0,1,[],[],https://twitter.com/MetaSmith/status/1205165728761958400,False,,0,,,,,,,"[{'user_id': '17534668', 'username': 'MetaSmith'}, {'user_id': '439043841', 'username': 'ncboyer'}]",
1205162287956418560,1205162287956418560,1576168054000,2019-12-12,19:27:34,MSK,3298710540,dojavibes,❄️DOJA❄️,,Mystery surrounds humpback whale found dead in depths of Brazil’s Amazon jungle | The Independent https://www.independent.co.uk/news/world/americas/humpback-whale-dead-amazon-jungle-brazil-rainforest-marajo-island-a8796016.html …,[],['https://www.independent.co.uk/news/world/americas/humpback-whale-dead-amazon-jungle-brazil-rainforest-marajo-island-a8796016.html'],[],0,0,1,[],[],https://twitter.com/dojavibes/status/1205162287956418560,False,,0,,,,,,,"[{'user_id': '3298710540', 'username': 'dojavibes'}]",
1205162230905528320,1205162230905528320,1576168041000,2019-12-12,19:27:21,MSK,5360012,greenpeaceusa,Greenpeace USA,,"Fires in Indonesia this year emitted more than TWICE the carbon of those in Brazil's Amazon Forest.
The makers of Kit Kats, Oreos, Dove soap, and Head & Shoulders are linked to massive greenhouse gas emissions from peatland fires for palm oil sourcing.
http://bit.ly/2E7fD3f ",[],['http://bit.ly/2E7fD3f'],[],0,23,22,[],[],https://twitter.com/greenpeaceusa/status/1205162230905528320,False,,0,,,,,,,"[{'user_id': '5360012', 'username': 'greenpeaceusa'}]",
1205161904639004674,1205161904639004674,1576167963000,2019-12-12,19:26:03,MSK,25903919,wowk13news,WOWK 13 News,,Brazil’s Amazon rainforest and development at a crossroads https://www.wowktv.com/news/u-s-world/brazils-amazon-rainforest-and-development-at-a-crossroads/?utm_medium=social&utm_source=twitter_WOWK13News …,[],['https://www.wowktv.com/news/u-s-world/brazils-amazon-rainforest-and-development-at-a-crossroads/?utm_medium=social&utm_source=twitter_WOWK13News'],[],0,0,0,[],[],https://twitter.com/WOWK13News/status/1205161904639004674,False,,0,,,,,,,"[{'user_id': '25903919', 'username': 'WOWK13News'}]",
1205161866491596800,1203695855880019969,1576167954000,2019-12-12,19:25:54,MSK,1058040162129633280,josietidwell,Josie Tidwell,,"""Own people"" you don't know what you talking about. Foreign people, including Americans come to Amazon to "" negociate"" with Indians to get the ""riches"" that Brazil has. Mind your own Country...","['allthingshhh', 'ajplus']",[],[],0,0,0,[],[],https://twitter.com/JosieTidwell/status/1205161866491596800,False,,0,,,,,,,"[{'user_id': '1058040162129633280', 'username': 'JosieTidwell'}, {'user_id': '182211776', 'username': 'allthingsHHH'}, {'user_id': '110396781', 'username': 'ajplus'}]",
1205159637290569729,1202222750951256067,1576167422000,2019-12-12,19:17:02,MSK,771377036791320576,caid_brazil,Christian Aid in Brazil,,"We also listened and learned about the perspective of the organisations and communities that are in frontline of the impacts in #Amazon region, with Leon Souza @redamazonia and Sara Oliveira @MAB_Brasil #WeAreTheAmazon pic.twitter.com/I1dG08F2zC","['redamazonia', 'mab_brasil']",[],"['https://pbs.twimg.com/media/ELmWSKQXsAI3YM0.jpg', 'https://pbs.twimg.com/media/ELmWSKUXkAAF5U7.jpg', 'https://pbs.twimg.com/media/ELmWSKWWkAEwhiN.jpg']",0,0,0,"['#amazon', '#wearetheamazon']",[],https://twitter.com/CAid_Brazil/status/1205159637290569729,False,,0,,,,,,,"[{'user_id': '771377036791320576', 'username': 'CAid_Brazil'}, {'user_id': '3750329655', 'username': 'redamazonia'}, {'user_id': '292958831', 'username': 'MAB_Brasil'}]",
1205159588330377216,1202222750951256067,1576167411000,2019-12-12,19:16:51,MSK,771377036791320576,caid_brazil,Christian Aid in Brazil,,"The ecumenical dialogue and celebration of #Amazon Voices took place on 9th december in Brasilia, capital of Brazil, as part of the #WeAreTheAmazon initiative. pic.twitter.com/gNyeGYCVhK","['ieabrasil', 'fld_actalliance', 'ca_global', 'oikoumene', 'anglicanworld', 'ieclb', 'conic_brasil', 'christian_aid', 'johnfplant', 'actclimate', 'actalliance', 'fumecalc', 'cop25cl', 'iriperu', 'iamcaritas', 'greenfaithworld', 'lutheranworld', 'wscfeurope', 'rudelmar', 'mab', 'repambr', 'alcnoticias_esp', 'benckeromi', 'mab_brasil', 'redamazonia']",[],"['https://pbs.twimg.com/media/ELmWP0XW4AkDAU2.jpg', 'https://pbs.twimg.com/media/ELmWP0XW4AIWGyM.jpg']",1,2,4,"['#amazon', '#wearetheamazon']",[],https://twitter.com/CAid_Brazil/status/1205159588330377216,False,,0,,,,,,,"[{'user_id': '771377036791320576', 'username': 'CAid_Brazil'}, {'user_id': '44370607', 'username': 'ieabrasil'}, {'user_id': '281563156', 'username': 'FLD_actalliance'}, {'user_id': '105158777', 'username': 'CA_global'}, {'user_id': '31669941', 'username': 'Oikoumene'}, {'user_id': '2301602804', 'username': 'AnglicanWorld'}, {'user_id': '104949035', 'username': 'ieclb'}, {'user_id': '633973903', 'username': 'CONIC_Brasil'}, {'user_id': '18726763', 'username': 'christian_aid'}, {'user_id': '843749077', 'username': 'johnfplant'}, {'user_id': '2749145822', 'username': 'actclimate'}, {'user_id': '108648075', 'username': 'ACTAlliance'}, {'user_id': '257581991', 'username': 'FUMECalc'}, {'user_id': '1116059487578853376', 'username': 'COP25CL'}, {'user_id': '1169271417092882432', 'username': 'IriPeru'}, {'user_id': '21288364', 'username': 'iamCARITAS'}, {'user_id': '1288912644', 'username': 'greenfaithworld'}, {'user_id': '17988622', 'username': 'lutheranworld'}, {'user_id': '196547848', 'username': 'WSCFEurope'}, {'user_id': '154778534', 'username': 'rudelmar'}, {'user_id': '118164579', 'username': 'MAB'}, {'user_id': '809833234108452864', 'username': 'RepamBr'}, {'user_id': '293775536', 'username': 'ALCNoticias_Esp'}, {'user_id': '1195015933326249986', 'username': 'BenckeRomi'}, {'user_id': '292958831', 'username': 'MAB_Brasil'}, {'user_id': '3750329655', 'username': 'redamazonia'}]",
1205159510610006023,1205159510610006023,1576167392000,2019-12-12,19:16:32,MSK,23788966,talk1370,Talk 1370,,HEADLINES: Brazil's Amazon rainforest and development at a crossroads https://talk1370.radio.com/articles/ap-news/brazils-amazon-rainforest-and-development-at-a-crossroads …,[],['https://talk1370.radio.com/articles/ap-news/brazils-amazon-rainforest-and-development-at-a-crossroads'],[],0,0,0,[],[],https://twitter.com/TALK1370/status/1205159510610006023,False,,0,,,,,,,"[{'user_id': '23788966', 'username': 'TALK1370'}]",
1205158973474852867,1205158973474852867,1576167264000,2019-12-12,19:14:24,MSK,249217178,latinorebels,Latino Rebels,,"Brazil’s #Amazon at a Crossroads via @AP
https://www.latinorebels.com/2019/12/12/amazonatacrossroads/ …",['ap'],['https://www.latinorebels.com/2019/12/12/amazonatacrossroads/'],[],0,2,1,['#amazon'],[],https://twitter.com/latinorebels/status/1205158973474852867,False,,0,,,,,,,"[{'user_id': '249217178', 'username': 'latinorebels'}, {'user_id': '51241574', 'username': 'AP'}]",
1205158909813678086,1205158909813678086,1576167249000,2019-12-12,19:14:09,MSK,98726426,dlbiller,David Biller,,"There's a crossroads in Brazil's Amazon. We traveled there to find where the highways came from, and where they lead... 🛣️🌳
📝- me
📸📹- @Leo_Correa
https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81 …",['leo_correa'],['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81'],[],0,23,25,[],[],https://twitter.com/DLBiller/status/1205158909813678086,False,,0,,,,,,,"[{'user_id': '98726426', 'username': 'DLBiller'}, {'user_id': '27376074', 'username': 'Leo_Correa'}]",
1205157828270407680,1205157828270407680,1576166991000,2019-12-12,19:09:51,MSK,799718923541291008,candies2639,candacemariecooper,,"Deforestation in the Brazilian Amazon is continuing to pace ahead of recent historical norms despite global outcry over ongoing destruction of Earth’s largest rainforest, reveals data released by Brazil’s national space research agency INPE. https://www.reddit.com/r/worldnews/comments/e9mq30/deforestation_in_the_brazilian_amazon_is/?utm_source=share&utm_medium=ios_app&utm_name=iossmf …",[],['https://www.reddit.com/r/worldnews/comments/e9mq30/deforestation_in_the_brazilian_amazon_is/?utm_source=share&utm_medium=ios_app&utm_name=iossmf'],[],1,3,4,[],[],https://twitter.com/candies2639/status/1205157828270407680,False,,0,,,,,,,"[{'user_id': '799718923541291008', 'username': 'candies2639'}]",
1205157757634142209,1205157757634142209,1576166974000,2019-12-12,19:09:34,MSK,816101397397700608,greeenorg,greeen,,Brazil's Amazon at a Crossroads - https://greeen.info/?p=2485242 ,[],['https://greeen.info/?p=2485242'],[],0,0,0,[],[],https://twitter.com/greeenorg/status/1205157757634142209,False,,0,,,,,,,"[{'user_id': '816101397397700608', 'username': 'greeenorg'}]",
1205157303760146432,1205157303760146432,1576166866000,2019-12-12,19:07:46,MSK,92625567,fer_gimenes,Fernanda Gimenes,,"Protection of the Brazilian Amazon being discussed at the #COP25Madrid. “Protecting the Amazon is crucial for Brazil’s economy, global food security and climate mitigation at the same time” André Guimarães from @IPAM_Amazonia #brasilnacop pic.twitter.com/ZwATJ7rHuS",['ipam_amazonia'],[],['https://pbs.twimg.com/media/ELmULMwXUAAAtFi.jpg'],0,3,20,"['#cop25madrid', '#brasilnacop']",[],https://twitter.com/fer_gimenes/status/1205157303760146432,False,,0,,,,,,,"[{'user_id': '92625567', 'username': 'fer_gimenes'}, {'user_id': '67302940', 'username': 'IPAM_Amazonia'}]",
1205156791224586240,1205156791224586240,1576166744000,2019-12-12,19:05:44,MSK,1659018350,fabriziosmarket,Elektronika,,Mystery surrounds humpback whale found dead in depths of Brazil’s Amazon jungle https://www.independent.co.uk/news/world/americas/humpback-whale-dead-amazon-jungle-brazil-rainforest-marajo-island-a8796016.html …,[],['https://www.independent.co.uk/news/world/americas/humpback-whale-dead-amazon-jungle-brazil-rainforest-marajo-island-a8796016.html'],[],0,0,0,[],[],https://twitter.com/Fabriziosmarket/status/1205156791224586240,False,,0,,,,,,,"[{'user_id': '1659018350', 'username': 'Fabriziosmarket'}]",
1205155892947300354,1205155892947300354,1576166530000,2019-12-12,19:02:10,MSK,58815028,brazilfound,BrazilFoundation,,"On Tuesday we held our first event in Palm Beach - a luncheon benefit for the #Amazon - hosted by @TOLFintl and Amanda Schumacher. We raised more than US$28k!
https://brazilfoundation.org/palm-beach/ #BrazilFoundation",['tolfintl'],['https://brazilfoundation.org/palm-beach/'],[],0,0,0,"['#amazon', '#brazilfoundation']",[],https://twitter.com/BrazilFound/status/1205155892947300354,False,,0,,,,,,,"[{'user_id': '58815028', 'username': 'BrazilFound'}, {'user_id': '1112763453138264064', 'username': 'TOLFIntl'}]",
1205155599975096321,1205155599975096321,1576166460000,2019-12-12,19:01:00,MSK,314474124,einbrazilbiz,EIN Brazil Business,,Brazil’s Amazon at a Crossroads http://s.einnews.com/J68rMnu5cG ,[],['http://s.einnews.com/J68rMnu5cG'],[],0,0,1,[],[],https://twitter.com/EINBrazilBiz/status/1205155599975096321,False,,0,,,,,,,"[{'user_id': '314474124', 'username': 'EINBrazilBiz'}]",
1205154792294752261,1205154792294752261,1576166267000,2019-12-12,18:57:47,MSK,972542818987192320,attoresearch,ATTO - Amazon Tall Tower Observatory,,"Beyond the general story on @voxdotcom, there is also an in-depth article but the #AmazonRainforest, the Brazil Nut Tree and our #AmazonResearch at ATTO: https://www.vox.com/2019/12/12/20991590/amazon-rainforest-deforestation-climate-change-trees-rain-brazil-nut …",['voxdotcom'],['https://www.vox.com/2019/12/12/20991590/amazon-rainforest-deforestation-climate-change-trees-rain-brazil-nut'],[],0,1,5,"['#amazonrainforest', '#amazonresearch']",[],https://twitter.com/ATTOresearch/status/1205154792294752261,False,,0,,,,,,,"[{'user_id': '972542818987192320', 'username': 'ATTOresearch'}, {'user_id': '2347049341', 'username': 'voxdotcom'}]",
1205154102415544320,1205154102415544320,1576166103000,2019-12-12,18:55:03,MSK,1079911297,ecointernetdrgb,EcoInternet,,"Brazil's Amazon at a Crossroads: ABC News https://abcnews.go.com/International/wireStory/brazils-amazon-crossroads-67685620 … #environment
MORE w/ EcoSearch - news: https://search.ecointernet.org/search/results?q=amazon%20brazil%20crossroad&w=relevance … web: https://search.ecointernet.org/search/results?q=amazon%20brazil%20crossroad&s=web …",[],"['https://abcnews.go.com/International/wireStory/brazils-amazon-crossroads-67685620', 'https://search.ecointernet.org/search/results?q=amazon%20brazil%20crossroad&w=relevance', 'https://search.ecointernet.org/search/results?q=amazon%20brazil%20crossroad&s=web']",[],0,0,0,['#environment'],[],https://twitter.com/EcoInternetDrGB/status/1205154102415544320,False,,0,,,,,,,"[{'user_id': '1079911297', 'username': 'EcoInternetDrGB'}]",
1205153543671427073,1205153543671427073,1576165970000,2019-12-12,18:52:50,MSK,949768987,ernstnordholt,Ernst Nordholt,,Brazil's Amazon at a Crossroads - https://goo.gl/alerts/HFcYm #GoogleAlerts,[],['https://goo.gl/alerts/HFcYm'],[],0,0,0,['#googlealerts'],[],https://twitter.com/ErnstNordholt/status/1205153543671427073,False,,0,,,,,,,"[{'user_id': '949768987', 'username': 'ErnstNordholt'}]",
1205151550974418945,1205151550974418945,1576165495000,2019-12-12,18:44:55,MSK,590788952,rpujolvives,Robert Pujol i Vives,,"Amazon fires: #Brazil will reject $20 million of aid from #G7 - @CNN https://www.cnn.com/2019/08/27/americas/brazil-rejects-g7-aid-amazon-intl/index.html …
#Amazonia fires are in the dial of Brazil growth. This money is nothing in from the fortune that they think that will win https://rpujolviven.blogspot.com/2012/10/infinite-growth.html …",['cnn'],"['https://www.cnn.com/2019/08/27/americas/brazil-rejects-g7-aid-amazon-intl/index.html', 'https://rpujolviven.blogspot.com/2012/10/infinite-growth.html']",[],0,0,0,"['#brazil', '#g7', '#amazonia']",[],https://twitter.com/rpujolvives/status/1205151550974418945,False,,0,,,,,,,"[{'user_id': '590788952', 'username': 'rpujolvives'}, {'user_id': '759251', 'username': 'CNN'}]",
1205149815191064577,1205149815191064577,1576165081000,2019-12-12,18:38:01,MSK,22971125,amazonwatch,AMAZON WATCH,,"ICYMI: “Deforestation in the Brazilian Amazon is continuing to pace ahead of recent historical norms, reveals data released by Brazil’s national space research agency INPE.” #AnotherOne #ProtectTheAmazon https://news.mongabay.com/2019/12/amazon-deforestation-paces-ahead-of-recent-historical-norm/ …",[],['https://news.mongabay.com/2019/12/amazon-deforestation-paces-ahead-of-recent-historical-norm/'],[],1,5,4,"['#anotherone', '#protecttheamazon']",[],https://twitter.com/AmazonWatch/status/1205149815191064577,False,,0,,,,,,,"[{'user_id': '22971125', 'username': 'AmazonWatch'}]",
1205148597014188033,1205148597014188033,1576164790000,2019-12-12,18:33:10,MSK,3401375327,citawertz,Cita Wertz,,"Night falls in Brazil’s Amazon and two logging trucks without license plates emerge from the jungle. They rumble over dirt roads that lead away from a national forest, carrying trunks of trees hundreds of years old.",[],[],[],0,0,0,[],[],https://twitter.com/CitaWertz/status/1205148597014188033,False,,0,,,,,,,"[{'user_id': '3401375327', 'username': 'CitaWertz'}]",
1205147824821686272,1205147824821686272,1576164606000,2019-12-12,18:30:06,MSK,895161191483547649,bastilleglobal,BastilleGlobal,,Brazil's Amazon at a Crossroads https://www.bastillepost.com/global/article/2973448 … pic.twitter.com/131AsUmgsp,[],['https://www.bastillepost.com/global/article/2973448'],['https://pbs.twimg.com/media/ELmLjyVUUAAlvvI.jpg'],0,0,0,[],[],https://twitter.com/BastilleGlobal/status/1205147824821686272,False,,0,,,,,,,"[{'user_id': '895161191483547649', 'username': 'BastilleGlobal'}]",
1205147798049447941,1205147798049447941,1576164600000,2019-12-12,18:30:00,MSK,1013923607481868288,latinamericar,Latin America Reports,,"After talks at the#COP25 Climate Summit in Madrid, the group of nine Amazon states in Brazil may receive $500 million from Norway to protect the Amazon, if funding at a federal level falls through.
vía @AP
We wrote more about Brazil's Amazon here:
https://latinamericareports.com/destroy-amazon-bad-for-business/3094/ …",['ap'],['https://latinamericareports.com/destroy-amazon-bad-for-business/3094/'],[],0,0,0,[],[],https://twitter.com/LatinamericaR/status/1205147798049447941,False,,0,,,,,,,"[{'user_id': '1013923607481868288', 'username': 'LatinamericaR'}, {'user_id': '51241574', 'username': 'AP'}]",
1205146579239415808,1205146579239415808,1576164309000,2019-12-12,18:25:09,MSK,57811016,sizqui,Silvia Izquierdo,,Brazil's Amazon at a Crossroads (from @AP) https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81 …,['ap'],['https://apnews.com/d96ab6ee8492f3b0585efb1de2e78f81'],[],0,0,1,[],[],https://twitter.com/sizqui/status/1205146579239415808,False,,0,,,,,,,"[{'user_id': '57811016', 'username': 'sizqui'}, {'user_id': '51241574', 'username': 'AP'}]",
1205146423936684032,1205146423936684032,1576164272000,2019-12-12,18:24:32,MSK,831163975245119488,ukvapegeek,Cameron Anderson,,Brazil's Amazon at a Crossroads http://dlvr.it/RL8WVj pic.twitter.com/mOMvInSNEf,[],['http://dlvr.it/RL8WVj'],['https://pbs.twimg.com/media/ELmKSRnUwAI0QZi.jpg'],0,0,0,[],[],https://twitter.com/ukvapegeek/status/1205146423936684032,False,,0,,,,,,,"[{'user_id': '831163975245119488', 'username': 'ukvapegeek'}]",
1205145940325212160,1205145940325212160,1576164157000,2019-12-12,18:22:37,MSK,3305366522,plantlifehewo,Bob Hope,,"""Brazil's Amazon at a Crossroads"" by The Associated Press via NYT https://ift.tt/349ZOmU ",[],['https://ift.tt/349ZOmU'],[],0,0,0,[],[],https://twitter.com/PlantLifeHewo/status/1205145940325212160,False,,0,,,,,,,"[{'user_id': '3305366522', 'username': 'PlantLifeHewo'}]",
1205145090584436738,1205145090584436738,1576163954000,2019-12-12,18:19:14,MSK,1193745164205842432,gradunet,Gradunet Education Network,,"""Brazil's Amazon at a Crossroads"" by The Associated Press via NYT https://ift.tt/349ZOmU pic.twitter.com/5CpoNmjHhX",[],['https://ift.tt/349ZOmU'],['https://pbs.twimg.com/media/ELmJEuPXUAAKLGO.png'],0,0,0,[],[],https://twitter.com/gradunet/status/1205145090584436738,False,,0,,,,,,,"[{'user_id': '1193745164205842432', 'username': 'gradunet'}]",
1205141455280525315,1205141455280525315,1576163088000,2019-12-12,18:04:48,MSK,870368302819938304,bananavitalbar,Banana Vital®,,"Our beautiful banana plantation in Minas Gerais where the yellow and green bananas we use in our bars are grown.
#brazil #simplybananas #minasgerais #healthysnack #nutrition #vegan #glutenfree #nongmo #amazon #wegmans #portablenutrition #potassium pic.twitter.com/cmxIsGo2xD",[],[],['https://pbs.twimg.com/media/ELmFwvHWwAAcXbL.jpg'],0,0,0,"['#brazil', '#simplybananas', '#minasgerais', '#healthysnack', '#nutrition', '#vegan', '#glutenfree', '#nongmo', '#amazon', '#wegmans', '#portablenutrition', '#potassium']",[],https://twitter.com/BananaVitalBar/status/1205141455280525315,False,,0,,,,,,,"[{'user_id': '870368302819938304', 'username': 'BananaVitalBar'}]",
1205137180571635713,1205136756263272450,1576162068000,2019-12-12,17:47:48,MSK,17613261,elizabarclay,Eliza Barclay,,"This project also includes three longform pieces, beginning with @umairfan's wonderful dispatch from the Amazon on Brazil nut tree and its critical role in rainfall https://www.vox.com/2019/12/12/20991590/amazon-rainforest-deforestation-climate-change-trees-rain-brazil-nut …","['gretathunberg', 'umairfan']",['https://www.vox.com/2019/12/12/20991590/amazon-rainforest-deforestation-climate-change-trees-rain-brazil-nut'],[],1,0,2,[],[],https://twitter.com/elizabarclay/status/1205137180571635713,False,,0,,,,,,,"[{'user_id': '17613261', 'username': 'elizabarclay'}, {'user_id': '1006419421244678144', 'username': 'GretaThunberg'}, {'user_id': '177822689', 'username': 'umairfan'}]",
1205133554335789056,1205100602025545730,1576161204000,2019-12-12,17:33:24,MSK,2356698637,patrecef,Patrece Fernandes,,Why a Politician a powerful president has to fear a 16 year old @GretaThunberg from United States to Brazil wats going on guys ? Focus on impeachment and Amazon fires,"['realdonaldtrump', 'gretathunberg']",[],[],0,0,0,[],[],https://twitter.com/PatreceF/status/1205133554335789056,False,,0,,,,,,,"[{'user_id': '2356698637', 'username': 'PatreceF'}, {'user_id': '25073877', 'username': 'realDonaldTrump'}, {'user_id': '1006419421244678144', 'username': 'GretaThunberg'}]",
1205131457598853121,1205131457598853121,1576160704000,2019-12-12,17:25:04,MSK,1079911297,ecointernetdrgb,EcoInternet,,"Supertrees: The Amazon's Brazil nut tree creates its own rainfall — and it's in danger: Vox https://www.vox.com/2019/12/12/20991590/amazon-rainforest-deforestation-climate-change-trees-rain-brazil-nut … #environment
MORE w/ EcoSearch - news: https://search.ecointernet.org/search/results?q=amazon%20tree%20supertrees%20brazil%20nut%20creates%20rainfall%20danger&w=relevance … web: https://search.ecointernet.org/search/results?q=amazon%20tree%20supertrees%20brazil%20nut%20creates%20rainfall%20danger&s=web …",[],"['https://www.vox.com/2019/12/12/20991590/amazon-rainforest-deforestation-climate-change-trees-rain-brazil-nut', 'https://search.ecointernet.org/search/results?q=amazon%20tree%20supertrees%20brazil%20nut%20creates%20rainfall%20danger&w=relevance', 'https://search.ecointernet.org/search/results?q=amazon%20tree%20supertrees%20brazil%20nut%20creates%20rainfall%20danger&s=web']",[],0,0,0,['#environment'],[],https://twitter.com/EcoInternetDrGB/status/1205131457598853121,False,,0,,,,,,,"[{'user_id': '1079911297', 'username': 'EcoInternetDrGB'}]",
1205128436496228352,1205128436496228352,1576159984000,2019-12-12,17:13:04,MSK,1079911297,ecointernetdrgb,EcoInternet,,"France to Partner with Brazil States on Amazon, Bypassing Bolsonaro: Science - The New York Times https://www.nytimes.com/2019/12/09/world/americas/france-to-partner-with-brazil-states-on-amazon-bypassing-bolsonaro.html …
MORE w/ EcoSearch - news: https://search.ecointernet.org/search/results?q=amazon%20france%20partner%20brazil%20state%20bypassing%20bolsonaro&w=relevance … web: https://search.ecointernet.org/search/results?q=amazon%20france%20partner%20brazil%20state%20bypassing%20bolsonaro&s=web …",[],"['https://www.nytimes.com/2019/12/09/world/americas/france-to-partner-with-brazil-states-on-amazon-bypassing-bolsonaro.html', 'https://search.ecointernet.org/search/results?q=amazon%20france%20partner%20brazil%20state%20bypassing%20bolsonaro&w=relevance', 'https://search.ecointernet.org/search/results?q=amazon%20france%20partner%20brazil%20state%20bypassing%20bolsonaro&s=web']",[],0,1,1,[],[],https://twitter.com/EcoInternetDrGB/status/1205128436496228352,False,,0,,,,,,,"[{'user_id': '1079911297', 'username': 'EcoInternetDrGB'}]",
1205127563754065922,1205127563754065922,1576159776000,2019-12-12,17:09:36,MSK,127368974,paft2010,Pedro Flores Tenorio,,"My PhD thesis ""Economic Valuation of Critical Ecosystem Services in the Peruvian Amazon: A Case Study of the Brazil Nut (Bertholletia excelsa sp.) Species Harvest in the Old-growth Forest of Peru"" has been included in La Trobe University’s Research Onlin… https://lnkd.in/dk-_nt4 ",[],['https://lnkd.in/dk-_nt4'],[],0,1,2,[],[],https://twitter.com/PAFT2010/status/1205127563754065922,False,,0,,,,,,,"[{'user_id': '127368974', 'username': 'PAFT2010'}]",
1205125017866055680,1204988268699357184,1576159169000,2019-12-12,16:59:29,MSK,67914003,lovercarol13,carol 🦋🇧🇷 LOVER FEST BRAZIL,,You can buy them on Amazon!,['noproofnotmuch'],[],[],0,0,0,[],[],https://twitter.com/lovercarol13/status/1205125017866055680,False,,0,,,,,,,"[{'user_id': '67914003', 'username': 'lovercarol13'}, {'user_id': '1082029820920373248', 'username': 'noproofnotmuch'}]",
1205124304528117762,1205124304528117762,1576158998000,2019-12-12,16:56:38,MSK,1195126426959319040,stoatlyl,Stoat -where are the Equality Impact Assessments?,,Looks like the pirralha made sure more people learned about the murders of people of the Amazon for protesting against destruction. Please don't RT @jairbolsonaro doesn't like people knowing Indigenous Brazilians are being murdered in Brazil. #Amazon,['jairbolsonaro'],[],[],0,0,0,['#amazon'],[],https://twitter.com/StoatlyL/status/1205124304528117762,False,,0,,,,,,,"[{'user_id': '1195126426959319040', 'username': 'StoatlyL'}, {'user_id': '128372940', 'username': 'jairbolsonaro'}]",
1205123491483267072,1205006863324123136,1576158805000,2019-12-12,16:53:25,MSK,3317723493,saida11660,Zaida,,Brazil’s president doesn’t understand how important the Amazon rainforest and its people were to the rest of the world. The Indigenous people understood & respected the forest. We do not. This will b our undoing,['cnn'],[],[],0,0,0,[],[],https://twitter.com/Saida11660/status/1205123491483267072,False,,0,,,,,,,"[{'user_id': '3317723493', 'username': 'Saida11660'}, {'user_id': '759251', 'username': 'CNN'}]",
1205121413868408833,1205121413868408833,1576158309000,2019-12-12,16:45:09,MSK,1023271263626842112,allbrpolitics,All The Brazilian Politics,,"Brazil, Germany join efforts for sustainable production in Amazon Brazil’s Ministry of Agriculture, Livestock, and Supply is set to create the Socio-Environmental Adequacy Index on the production chains of meat, soybeans, and wood in the states... https://tmblr.co/Zn_uBZ2mcfAGg ",[],['https://tmblr.co/Zn_uBZ2mcfAGg'],[],0,0,0,[],[],https://twitter.com/AllBrPolitics/status/1205121413868408833,False,,0,,,,,,,"[{'user_id': '1023271263626842112', 'username': 'AllBrPolitics'}]",
1205116197437689856,1205116197437689856,1576157066000,2019-12-12,16:24:26,MSK,76849994,canintl,Climate Action Network International (CAN),,.@CANIntl daily meet gives the platform to the indigenous people of the Amazon fighting to protect the sacred headwaters from oil extraction poised to happen in Brazil that will also drive deforestation #COP25 @Purpose pic.twitter.com/f2wHLSzCJH,"['canintl', 'purpose']",[],['https://pbs.twimg.com/media/ELluyowXUAAyPpi.jpg'],0,0,2,['#cop25'],[],https://twitter.com/CANIntl/status/1205116197437689856,False,,0,,,,,,,"[{'user_id': '76849994', 'username': 'CANIntl'}, {'user_id': '92673121', 'username': 'Purpose'}]",
1205114149568688129,1205114131558412289,1576156577000,2019-12-12,16:16:17,MSK,2347049341,voxdotcom,Vox,,"4/ The Brazil nut tree of, well, Brazil, releases chemicals that form clouds to produce tons of rainfall.
The rain provides drinking water to big cities like São Paulo, some 1,500 miles from the Amazon, and farmers rely on it as a source of irrigation. http://bit.ly/35gsrQP pic.twitter.com/926K1maOkB",[],['http://bit.ly/35gsrQP'],['https://pbs.twimg.com/media/ELls7jlXYAApbeu.jpg'],1,20,29,[],[],https://twitter.com/voxdotcom/status/1205114149568688129,False,,0,,,,,,,"[{'user_id': '2347049341', 'username': 'voxdotcom'}]",
1205113808005537792,1205113808005537792,1576156496000,2019-12-12,16:14:56,MSK,832933162946850820,jufilippozzi,Juliana Filippozzi,,"Brazil 🇧🇷
What a pity when our Brazilian President called the young Greta Thunberg à ‘brat’, after she voiced concern over Brazil's deforestation of the Amazon and the killings of indigenous people in the… https://www.instagram.com/p/B5-UK1zBMy2/?igshid=ilbe6ng9wzs3 …",[],['https://www.instagram.com/p/B5-UK1zBMy2/?igshid=ilbe6ng9wzs3'],[],0,0,0,[],[],https://twitter.com/jufilippozzi/status/1205113808005537792,False,,0,,,,,,,"[{'user_id': '832933162946850820', 'username': 'jufilippozzi'}]",
1205107575487946754,1205104256312848385,1576155010000,2019-12-12,15:50:10,MSK,1187991203528216577,youfunnyguys2,YouFunnyGuys ™ ®,,The Amazon is a river in Brazil pic.twitter.com/Y9B2otmRH8,"['avgfinancedude', 'rothysgf', 'realdonaldtrump']",[],[],0,0,0,[],[],https://twitter.com/YouFunnyGuys2/status/1205107575487946754,False,,1,,,,,,,"[{'user_id': '1187991203528216577', 'username': 'YouFunnyGuys2'}, {'user_id': '1186048411222630400', 'username': 'AvgFinanceDude'}, {'user_id': '1007793177913364480', 'username': 'rothysgf'}, {'user_id': '25073877', 'username': 'realDonaldTrump'}]",
1205107206875570177,1205107206875570177,1576154922000,2019-12-12,15:48:42,MSK,2471921711,nyr_mello,Nayara Mello,,"Cloudy day in Amazon! em Manaus, Brazil https://www.instagram.com/p/B5-RK4ehm0W/?igshid=17qu5ml9lbvur …",[],['https://www.instagram.com/p/B5-RK4ehm0W/?igshid=17qu5ml9lbvur'],[],0,0,0,[],[],https://twitter.com/nyr_mello/status/1205107206875570177,False,,0,,,,,,,"[{'user_id': '2471921711', 'username': 'nyr_mello'}]",
1205104957420126208,1205104957420126208,1576154386000,2019-12-12,15:39:46,MSK,1157593181564784640,daily_nyk,NYK DAILY,,Brazil’s Amazon states seek $500 million from Norway https://nykdaily.com/2019/12/brazils-amazon-states-seek-500-million-from-norway/ … pic.twitter.com/MrhNWYFfXC,[],['https://nykdaily.com/2019/12/brazils-amazon-states-seek-500-million-from-norway/'],['https://pbs.twimg.com/media/ELlkknwXYAErL62.jpg'],0,0,0,[],[],https://twitter.com/daily_nyk/status/1205104957420126208,False,,0,,,,,,,"[{'user_id': '1157593181564784640', 'username': 'daily_nyk'}]",
1205101806075961344,1205101806075961344,1576153634000,2019-12-12,15:27:14,MSK,333601677,samcowie84,Sam Cowie,,"In year of decade high Amazon deforestation & attacks/invasions of protected forest areas/indigenous lands, Brazil's environment ministry under Ricardo Salles has dozens of job vacancies & has spent less than half of its proposed budget https://noticias.uol.com.br/meio-ambiente/ultimas-noticias/redacao/2019/12/11/ministerio-de-salles-acumula-cargos-vazios-e-deve-ter-menor-gasto-em-5-anos.htm …",[],['https://noticias.uol.com.br/meio-ambiente/ultimas-noticias/redacao/2019/12/11/ministerio-de-salles-acumula-cargos-vazios-e-deve-ter-menor-gasto-em-5-anos.htm'],[],0,14,34,[],[],https://twitter.com/SamCowie84/status/1205101806075961344,False,,0,,,,,,,"[{'user_id': '333601677', 'username': 'SamCowie84'}]",
1205100403353894912,1205100403353894912,1576153300000,2019-12-12,15:21:40,MSK,1082733243164708865,welovetheearth1,WeLoveTheEarth.com,,Brazil And The Amazon | Patriot Act with Hasan Minhaj | Netflix http://welovetheearth.com/brazil-and-the-amazon-patriot-act-with-hasan-minhaj-netflix-26/ …,[],['http://welovetheearth.com/brazil-and-the-amazon-patriot-act-with-hasan-minhaj-netflix-26/'],[],0,0,0,[],[],https://twitter.com/WeLoveTheEarth1/status/1205100403353894912,False,,0,,,,,,,"[{'user_id': '1082733243164708865', 'username': 'WeLoveTheEarth1'}]",
1205098738387165185,1204735108709863424,1576152903000,2019-12-12,15:15:03,MSK,1097821909243310080,dani71533521,Dani Tedesco 🇧🇷,,"A problem he cant solve""?
CO2 emmissions?
Brazil has a huge huge preserved Green area.
And a hard legislation to protect that.
Brazil has a quite clean energétic Matrix
Amazon is not the lungs of the world.
Oceans are.","['runalanrun', 'cnn']",[],[],0,0,1,[],[],https://twitter.com/Dani71533521/status/1205098738387165185,False,,0,,,,,,,"[{'user_id': '1097821909243310080', 'username': 'Dani71533521'}, {'user_id': '39426175', 'username': 'runalanrun'}, {'user_id': '759251', 'username': 'CNN'}]",
1205083965520072704,1205083965520072704,1576149381000,2019-12-12,14:16:21,MSK,337240473,yellowbrickc,Krisztina Hirth 🇪🇺,,". @awscloud do you have a time line for supporting amazon MQ in Brazil?
Or maybe someone else knows how long it usually takes for services being rolled out in #brazil #aws #amq ?
RT would be highly appreciated 🙂",['awscloud'],[],[],0,1,0,"['#brazil', '#aws', '#amq']",[],https://twitter.com/YellowBrickC/status/1205083965520072704,False,,0,,,,,,,"[{'user_id': '337240473', 'username': 'YellowBrickC'}, {'user_id': '66780587', 'username': 'awscloud'}]",
1205081801997398016,1205081801997398016,1576148865000,2019-12-12,14:07:45,MSK,590788952,rpujolvives,Robert Pujol i Vives,,"On the front lines of Bolsonaro’s war on the Amazon, Brazil’s forest communities fight against climate catastrophe https://interc.pt/2Xt4Lnq by Alexander Zaitchik
The victory of greed http://rpujolviven.blogspot.com/2017/02/spring-asthenia-in-fifth-of-february.html …",[],"['https://interc.pt/2Xt4Lnq', 'http://rpujolviven.blogspot.com/2017/02/spring-asthenia-in-fifth-of-february.html']",[],0,0,0,[],[],https://twitter.com/rpujolvives/status/1205081801997398016,False,,0,,,,,,,"[{'user_id': '590788952', 'username': 'rpujolvives'}]",
1205072416805965826,1204087969746960384,1576146627000,2019-12-12,13:30:27,MSK,2565250742,mikiefan2013,MikeCWFmechanics,,Of course Brazil has its sovereignty and that has to be respected. But the Amazon is vital for the world including Brazil and Brazil has a moral responsibility. Destroying the Amazon is not the solution for Brazil’s economy and will harm future generations of Brazilian people,['govbr'],[],[],0,0,0,[],[],https://twitter.com/MikieFan2013/status/1205072416805965826,False,,0,,,,,,,"[{'user_id': '2565250742', 'username': 'MikieFan2013'}, {'user_id': '861707648584085504', 'username': 'govbr'}]",
1205066058626981888,1204734466528333824,1576145112000,2019-12-12,13:05:12,MSK,982544490,mrkillianc,Killian,,🤣 Sound biys. Not a bad shout tho Brazil is full of um could make grand coin up in the amazon,"['puretobin', 'kusterd__', 'dailymirror']",[],[],0,0,0,[],[],https://twitter.com/MrKillianC/status/1205066058626981888,False,,0,,,,,,,"[{'user_id': '982544490', 'username': 'MrKillianC'}, {'user_id': '449704800', 'username': 'PureTobin'}, {'user_id': '302568969', 'username': 'Kusterd__'}, {'user_id': '16887175', 'username': 'DailyMirror'}]",
1205064246549188608,1205064246549188608,1576144680000,2019-12-12,12:58:00,MSK,1008245514557673472,skitterdr,Dr. Skitter,,Brazil’s president should be accountable to the loss in the Amazon! https://twitter.com/CNN/status/1204906229895745538 …,[],['https://twitter.com/CNN/status/1204906229895745538'],[],0,0,0,[],[],https://twitter.com/SkitterDr/status/1205064246549188608,False,https://twitter.com/CNN/status/1204906229895745538,0,,,,,,,"[{'user_id': '1008245514557673472', 'username': 'SkitterDr'}]",
1205061164679327745,1205061164679327745,1576143945000,2019-12-12,12:45:45,MSK,1152434324135792640,ww_xodj,セレンディップの3人の王子,,"真実神軍
suspicious things in the would.
MR.jar bolsonarolpresident of Brazil said,some NGOs burnd the amazon on pupose.
when I wached TV, there were many areas in the amazon on fire on Google earth.
president bolsanoro said some famous American actor donated continue...",[],[],[],0,0,2,[],[],https://twitter.com/ww_xodj/status/1205061164679327745,False,,0,,,,,,,"[{'user_id': '1152434324135792640', 'username': 'ww_xodj'}]",
1205057343014072321,1205057343014072321,1576143034000,2019-12-12,12:30:34,MSK,752886194049052673,hamannadn,OTTO HAMANN 🌲,,Brazil’s Bolsonaro Claims Without Evidence That NGOs Are Setting Amazon Fires - NBC 10 Philadelphia http://dlvr.it/RL7SCR pic.twitter.com/KRSCWfwSVZ,[],['http://dlvr.it/RL7SCR'],['https://pbs.twimg.com/media/ELk5REEU8AAaX3E.jpg'],0,0,0,[],[],https://twitter.com/HAMANNadn/status/1205057343014072321,False,,0,,,,,,,"[{'user_id': '752886194049052673', 'username': 'HAMANNadn'}]",
1205057276190613504,1205057276190613504,1576143018000,2019-12-12,12:30:18,MSK,142282697,unfcccwebcast,UNFCCC,,[Press Conference] stopped Amazon Environmental Research Institute: Back to the 90’s: Did Brazil return to runaway deforestation? https://unfccc-cop25.streamworld.de/webcast/amazon-environmental-research-institute-back-to-th … #cop25,[],['https://unfccc-cop25.streamworld.de/webcast/amazon-environmental-research-institute-back-to-th'],[],0,3,5,['#cop25'],[],https://twitter.com/UNFCCCwebcast/status/1205057276190613504,False,,0,,,,,,,"[{'user_id': '142282697', 'username': 'UNFCCCwebcast'}]",
1205055514121580544,1205055514121580544,1576142598000,2019-12-12,12:23:18,MSK,1142001332699717635,climatecomment,Climate News and Comment,,"""Brazil's president called Swedish climate change activist Greta Thunberg a ""brat"" after she condemned violence against indigenous people who were killed in the Amazon.""
https://twitter.com/cnni/status/1205029587241050112 … pic.twitter.com/tQQXvEPVro",[],['https://twitter.com/cnni/status/1205029587241050112'],['https://pbs.twimg.com/media/ELk3mf9XYAARgoC.jpg'],0,0,0,[],[],https://twitter.com/ClimateComment/status/1205055514121580544,False,,0,,,,,,,"[{'user_id': '1142001332699717635', 'username': 'ClimateComment'}]",
1205052080299368449,1205052080299368449,1576141779000,2019-12-12,12:09:39,MSK,2163697541,meyerrune,Rune Gregers Meyer,,"""Greta Thunberg is a brat""
Words of Brazil’s President Bolsonaro when he attacked the young Swedish environmental activist Greta Thunberg after she expressed concern about the slayings of indigenous Brazilians in the Amazon.
What… https://lnkd.in/eMNArkM https://lnkd.in/eCUMVBe ",[],"['https://lnkd.in/eMNArkM', 'https://lnkd.in/eCUMVBe']",[],0,0,0,[],[],https://twitter.com/MeyerRune/status/1205052080299368449,False,,0,,,,,,,"[{'user_id': '2163697541', 'username': 'MeyerRune'}]",
1205049270719655936,1205049270719655936,1576141109000,2019-12-12,11:58:29,MSK,142282697,unfcccwebcast,UNFCCC,,[Press Conference] started Amazon Environmental Research Institute: Back to the 90’s: Did Brazil return to runaway deforestation? https://unfccc-cop25.streamworld.de/webcast/amazon-environmental-research-institute-back-to-th … #cop25,[],['https://unfccc-cop25.streamworld.de/webcast/amazon-environmental-research-institute-back-to-th'],[],0,0,2,['#cop25'],[],https://twitter.com/UNFCCCwebcast/status/1205049270719655936,False,,0,,,,,,,"[{'user_id': '142282697', 'username': 'UNFCCCwebcast'}]",
1205045681167179776,1205045681167179776,1576140253000,2019-12-12,11:44:13,MSK,12001102,fleicap,[ca] fleicap,,"Reposted from @dailyoverview
The Juruá River is a southern tributary of the Amazon River, flowing approximately 1,500 miles (2,400 km) through Brazil and Peru. For most of its length, the river winds through the Amazon basin and is generally curvy and sl… https://ift.tt/38vWOEG pic.twitter.com/T2ndB3a1VA",['dailyoverview'],['https://ift.tt/38vWOEG'],['https://pbs.twimg.com/media/ELkuqVTWoAA-_Lp.jpg'],0,0,0,[],[],https://twitter.com/fleicap/status/1205045681167179776,False,,0,,,,,,,"[{'user_id': '12001102', 'username': 'fleicap'}, {'user_id': '123438775', 'username': 'dailyoverview'}]",
1205043892011360256,1205043892011360256,1576139827000,2019-12-12,11:37:07,MSK,3579433516,fatigamentalfm,𝔽atiga 𝕄ental,,"#RT @CNN: Brazil's president called Swedish climate change activist Greta Thunberg a ""brat"" after she condemned violence against indigenous people who were killed in the Amazon. https://cnn.it/36sEwCs ",['cnn'],['https://cnn.it/36sEwCs'],[],0,0,0,['#rt'],[],https://twitter.com/FatigaMentalFM/status/1205043892011360256,False,,0,,,,,,,"[{'user_id': '3579433516', 'username': 'FatigaMentalFM'}, {'user_id': '759251', 'username': 'CNN'}]",
1205043631784157185,1205043631784157185,1576139765000,2019-12-12,11:36:05,MSK,1165433936698208257,limboripped,Ripped Limbo,,"#RT @CNN: Brazil's president called Swedish climate change activist Greta Thunberg a ""brat"" after she condemned violence against indigenous people who were killed in the Amazon. https://cnn.it/36sEwCs ",['cnn'],['https://cnn.it/36sEwCs'],[],0,0,0,['#rt'],[],https://twitter.com/LimboRipped/status/1205043631784157185,False,,0,,,,,,,"[{'user_id': '1165433936698208257', 'username': 'LimboRipped'}, {'user_id': '759251', 'username': 'CNN'}]",
1205043062134714368,1205040966673010688,1576139629000,2019-12-12,11:33:49,MSK,47350606,guengl,The Left in the European Parliament,,"Mariah Silva of Brazilian Black Coaltion says the EU-Mercosur FTA will embolden Brazil’s far right President Bolsonaro:
“Bolsonaro is part of the elite and he is specifically targeting blacks in Brazil. The Amazon region is made of majority indigenous and blacks.” pic.twitter.com/Fn127Y5YQU",[],[],['https://pbs.twimg.com/media/ELksRj5XYAA2fMD.jpg'],1,1,2,[],[],https://twitter.com/GUENGL/status/1205043062134714368,False,,0,,,,,,,"[{'user_id': '47350606', 'username': 'GUENGL'}]",
1205042335949737984,1205006863324123136,1576139456000,2019-12-12,11:30:56,MSK,51977397,segismund0,Jorge R Galán,,"Being so loud and selective? Sure it is. For instance, do you know what is happening in venezuelan's Amazon? She and any leftists around the world say nothing about it. No one is saying nothing about the indigenous massacre there. Indigenous venezuelans are fleeing to Brazil.","['singleraven', 'cnn']",[],[],1,0,0,[],[],https://twitter.com/segismund0/status/1205042335949737984,False,,0,,,,,,,"[{'user_id': '51977397', 'username': 'segismund0'}, {'user_id': '1140241310495825920', 'username': 'SingleRaven'}, {'user_id': '759251', 'username': 'CNN'}]",
1205040147114446849,1205040147114446849,1576138934000,2019-12-12,11:22:14,MSK,847373552265207808,tagtodayo,tag today.,,"Brazil's president called Swedish climate change activist Greta Thunberg a ""brat"" after she condemned violence against indigenous people who were killed in the Amazon. https://cnn.it/36sEwCs ",[],['https://cnn.it/36sEwCs'],[],0,0,0,[],[],https://twitter.com/tagtodayO/status/1205040147114446849,False,,0,,,,,,,"[{'user_id': '847373552265207808', 'username': 'tagtodayO'}]",
1205039202037055489,1205039202037055489,1576138708000,2019-12-12,11:18:28,MSK,906396984952619008,antonkarpp,Anton Ehrola,,"RT CNN ""Brazil's president called Swedish climate change activist Greta Thunberg a ""brat"" after she condemned violence against indigenous people who were killed in the Amazon. https://cnn.it/36sEwCs """,[],['https://cnn.it/36sEwCs'],[],0,0,0,[],[],https://twitter.com/antonkarpp/status/1205039202037055489,False,,0,,,,,,,"[{'user_id': '906396984952619008', 'username': 'antonkarpp'}]",
1205036635634782208,1205036635634782208,1576138097000,2019-12-12,11:08:17,MSK,735890817949138944,abbear111,ดีงามพระราม8,,"Brazil's president called Swedish climate change activist Greta Thunberg a ""brat"" after she condemned violence against indigenous people who were killed in the Amazon. https://cnn.it/2LLTo7a ",[],['https://cnn.it/2LLTo7a'],[],0,0,0,[],[],https://twitter.com/abbear111/status/1205036635634782208,False,,0,,,,,,,"[{'user_id': '735890817949138944', 'username': 'abbear111'}]",
1205029798105567232,1205029798105567232,1576136466000,2019-12-12,10:41:06,MSK,43303611,motofe,Motofe,,#Brazil Little @GretaThunberg has more courage than this “douche bag” whose claim to ignominy will be the decimation of the Amazon for parochial short term political gains https://twitter.com/cnn/status/1205006863324123136 …,['gretathunberg'],['https://twitter.com/cnn/status/1205006863324123136'],[],0,0,0,['#brazil'],[],https://twitter.com/Motofe/status/1205029798105567232,False,https://twitter.com/CNN/status/1205006863324123136,0,,,,,,,"[{'user_id': '43303611', 'username': 'Motofe'}, {'user_id': '1006419421244678144', 'username': 'GretaThunberg'}]",
1205029587241050112,1205029587241050112,1576136416000,2019-12-12,10:40:16,MSK,2097571,cnni,CNN International,,"Brazil's president called Swedish climate change activist Greta Thunberg a ""brat"" after she condemned violence against indigenous people who were killed in the Amazon. https://cnn.it/2LLTo7a ",[],['https://cnn.it/2LLTo7a'],[],56,89,193,[],[],https://twitter.com/cnni/status/1205029587241050112,False,,0,,,,,,,"[{'user_id': '2097571', 'username': 'cnni'}]",
1205023806030405632,1205018212917596161,1576135038000,2019-12-12,10:17:18,MSK,15316910,whizkidd,Rahul Srinivas,,"More:
UP has more people than Brazil which is 3 times bigger than India.
The Amazon rain forest at 5.5M http://sq.km is almost twice the size of India.
Sakha Republic -- a state in Russisa is roughly the same size as India and has a population of 9 lakhs.",['kataakshvaani'],['http://sq.km'],[],0,0,1,[],[],https://twitter.com/whizkidd/status/1205023806030405632,False,,0,,,,,,,"[{'user_id': '15316910', 'username': 'whizkidd'}, {'user_id': '60115903', 'username': 'kataakshvaani'}]",
1205021961207857152,1205021961207857152,1576134598000,2019-12-12,10:09:58,MSK,1608274170,junk_account2,Junk Account,,"Greenpeace on the radio about environmentally friendly Christmas. We shouldn’t eat meat as it contributes to deforestation of the Amazon.
Bugger me. That Irish cow we got our beef joint from is better travelled than me! How the hell did it get to Brazil to cut down trees?",[],[],[],0,0,0,[],[],https://twitter.com/junk_account2/status/1205021961207857152,False,,0,,,,,,,"[{'user_id': '1608274170', 'username': 'junk_account2'}]",
1205019903008358401,1205019903008358401,1576134107000,2019-12-12,10:01:47,MSK,1201683407119405056,thenewsedgenow,The News Edge,,Brazil's President Calls Greta Thunberg a 'Brat' for Speaking Up About Amazon Slayings https://www.thenewsedge.com/2019/12/12/brazils-president-calls-greta-thunberg-a-brat-for-speaking-up-about-amazon-slayings/ …,[],['https://www.thenewsedge.com/2019/12/12/brazils-president-calls-greta-thunberg-a-brat-for-speaking-up-about-amazon-slayings/'],[],0,0,0,[],[],https://twitter.com/thenewsedgenow/status/1205019903008358401,False,,0,,,,,,,"[{'user_id': '1201683407119405056', 'username': 'thenewsedgenow'}]",
1205017772364832773,1205017772364832773,1576133599000,2019-12-12,09:53:19,MSK,2500825304,incrediblereads,#FridayThe13th,,"#Rio de Janeiro: Everything You Need To Know by Francis Okumu https://www.amazon.com/dp/B00WS18D1M/ref=cm_sw_r_tw_dp_U_x_rgE8DbB1W7301 … via @amazon
#brazil #brasil #travel #thursday",['amazon'],['https://www.amazon.com/dp/B00WS18D1M/ref=cm_sw_r_tw_dp_U_x_rgE8DbB1W7301'],[],0,0,0,"['#rio', '#brazil', '#brasil', '#travel', '#thursday']",[],https://twitter.com/incrediblereads/status/1205017772364832773,False,,0,,,,,,,"[{'user_id': '2500825304', 'username': 'incrediblereads'}, {'user_id': '20793816', 'username': 'amazon'}]",
1205016334100250624,1205016334100250624,1576133256000,2019-12-12,09:47:36,MSK,126450347,jksagrinion,JKS,,"CNN@CNNBrazil's president called Swedish climate change activist Greta Thunberg a ""brat"" after she condemned violence against indigenous people who were killed in the Amazon. she is time magazine person of the year what brazil's president is?",[],[],[],0,0,0,[],[],https://twitter.com/JKSAgrinion/status/1205016334100250624,False,,0,,,,,,,"[{'user_id': '126450347', 'username': 'JKSAgrinion'}]",
1205011979045343232,1205011979045343232,1576132218000,2019-12-12,09:30:18,MSK,2500825304,incrediblereads,#FridayThe13th,,Brazil: Insights by F Otieno https://www.amazon.com/dp/B00YPCWKWA/ref=cm_sw_r_tw_dp_U_x_TRD8Db68QFPRY … via @amazon #thursdaythoughts,['amazon'],['https://www.amazon.com/dp/B00YPCWKWA/ref=cm_sw_r_tw_dp_U_x_TRD8Db68QFPRY'],[],0,0,0,['#thursdaythoughts'],[],https://twitter.com/incrediblereads/status/1205011979045343232,False,,0,,,,,,,"[{'user_id': '2500825304', 'username': 'incrediblereads'}, {'user_id': '20793816', 'username': 'amazon'}]",
1205010042451152896,1205006881602887680,1576131756000,2019-12-12,09:22:36,MSK,1143556106737709056,lanati_resist,LaNati,,"...responsible.
After killings in the northern state of Maranhão, Brazil’s former environment minister, Marina Silva, tweeted: “This Amazon bloodbath demands a strong and swift response from Brazilian authorities.”",['safetypindaily'],[],[],0,0,0,[],[],https://twitter.com/LaNati_Resist/status/1205010042451152896,False,,0,,,,,,,"[{'user_id': '1143556106737709056', 'username': 'LaNati_Resist'}, {'user_id': '449600949', 'username': 'SafetyPinDaily'}]",
1205009181306245130,1205009181306245130,1576131551000,2019-12-12,09:19:11,MSK,2500825304,incrediblereads,#FridayThe13th,,"#Rt Brazil: Insights by F Otieno https://www.amazon.com/dp/B00YPCWKWA/ref=cm_sw_r_tw_dp_U_x_TRD8Db68QFPRY … via @amazon
#thursdaymotivation",['amazon'],['https://www.amazon.com/dp/B00YPCWKWA/ref=cm_sw_r_tw_dp_U_x_TRD8Db68QFPRY'],[],0,0,0,"['#rt', '#thursdaymotivation']",[],https://twitter.com/incrediblereads/status/1205009181306245130,False,,0,,,,,,,"[{'user_id': '2500825304', 'username': 'incrediblereads'}, {'user_id': '20793816', 'username': 'amazon'}]",
1205007893290004481,1204906229895745538,1576131244000,2019-12-12,09:14:04,MSK,1156691530561871873,iyaiseda,iyaiseda,,This monumental moron has caused more damage to Brazil and the Amazon than anyone else...,['cnn'],[],[],0,0,0,[],[],https://twitter.com/iyaiseda/status/1205007893290004481,False,,0,,,,,,,"[{'user_id': '1156691530561871873', 'username': 'iyaiseda'}, {'user_id': '759251', 'username': 'CNN'}]",
1205006863324123136,1205006863324123136,1576130998000,2019-12-12,09:09:58,MSK,759251,cnn,CNN,,"Brazil's president called Swedish climate change activist Greta Thunberg a ""brat"" after she condemned violence against indigenous people who were killed in the Amazon. https://cnn.it/36sEwCs ",[],['https://cnn.it/36sEwCs'],[],396,264,1110,[],[],https://twitter.com/CNN/status/1205006863324123136,False,,0,,,,,,,"[{'user_id': '759251', 'username': 'CNN'}]",
1205005056765911041,1205005056765911041,1576130568000,2019-12-12,09:02:48,MSK,98486683,forestkeeper,Forest Keeper,,"“An institutionalized genocide of #indigenous peoples is taking place in #Brazil,-#Amazon Watch Program Director Christian Poirier. It is the constitutional duty of the Brazilian government to protect indigenous territories and ensure the safety of their peoples.”#Art6LacksRights https://twitter.com/DanBacher/status/1204990918748622848 …",[],['https://twitter.com/DanBacher/status/1204990918748622848'],[],1,1,1,"['#indigenous', '#brazil', '#amazon', '#art6lacksrights']",[],https://twitter.com/ForestKeeper/status/1205005056765911041,False,https://twitter.com/DanBacher/status/1204990918748622848,0,,,,,,,"[{'user_id': '98486683', 'username': 'ForestKeeper'}]",
1204997453554110464,1204997453554110464,1576128755000,2019-12-12,08:32:35,MSK,874023301,clairesturz,TalesOfABackpacker🌍,,Five Places to Visit in #Brazil After #Rio de Janeiro #backpacking #travel https://is.gd/vakgRT #amazon,[],['https://is.gd/vakgRT'],[],0,0,0,"['#brazil', '#rio', '#backpacking', '#travel', '#amazon']",[],https://twitter.com/clairesturz/status/1204997453554110464,False,,0,,,,,,,"[{'user_id': '874023301', 'username': 'clairesturz'}]",
1204976874776080385,1204976874776080385,1576123848000,2019-12-12,07:10:48,MSK,980252405081280512,jamestu33843822,James tucker,,Brazil president. Is the man that's destroying the Amazon Rainforest. He feels threatened by a child that's making a difference in the world. Unlike himself! HORRIBLE MAN! Brazil should impeached his sorry ASS! ROME IS BURNING!! https://twitter.com/CNN/status/1204720005327282176 …,[],['https://twitter.com/CNN/status/1204720005327282176'],[],0,0,2,[],[],https://twitter.com/Jamestu33843822/status/1204976874776080385,False,https://twitter.com/CNN/status/1204720005327282176,0,,,,,,,"[{'user_id': '980252405081280512', 'username': 'Jamestu33843822'}]",
1204974258079842304,1204974258079842304,1576123225000,2019-12-12,07:00:25,MSK,922285213732007936,anajuhparrilla,ana julia MET LANA PARRILLA,,"thank you for coming to brazil. meeting you and my friends from all over Brazil was a dream coming true! i hope you liked our country and come back as soon as you can. there are many places you should visit, like Amazon forest, Nordeste... @LanaParrilla te amo, beijos grandes💋",['lanaparrilla'],[],[],0,1,1,[],[],https://twitter.com/anajuhparrilla/status/1204974258079842304,False,,0,,,,,,,"[{'user_id': '922285213732007936', 'username': 'anajuhparrilla'}, {'user_id': '129400817', 'username': 'LanaParrilla'}]",
1204967941273354241,1204906229895745538,1576121719000,2019-12-12,06:35:19,MSK,32863779,chassoaks,charles,,The Brazil President is another Donald Trump.He could care less about who lives in the Amazon forest or how many gets killed.just clear the land for money.He is a stupid adult brat that should be kicked out of office just like his predecessors.,['cnn'],[],[],0,0,0,[],[],https://twitter.com/chassoaks/status/1204967941273354241,False,,0,,,,,,,"[{'user_id': '32863779', 'username': 'chassoaks'}, {'user_id': '759251', 'username': 'CNN'}]",
1204967511705436164,1204957365138788352,1576121616000,2019-12-12,06:33:36,MSK,2760033892,bmac2668,Bill MacDonald,,Think Amazon...Brazil,['kica333'],[],[],0,0,0,[],[],https://twitter.com/bmac2668/status/1204967511705436164,False,,0,,,,,,,"[{'user_id': '2760033892', 'username': 'bmac2668'}, {'user_id': '176609398', 'username': 'Kica333'}]",
1204960616953200640,1204960616953200640,1576119972000,2019-12-12,06:06:12,MSK,3195635892,marschelthomas,Tom Marschel,,"If #JairBolsonaro can lift hundreds of thousands out of poverty by providing more arable land in the Amazon and boosting Brazil’s economy, reducing unemployment, eliminating govt waste including rolling back entitlements, corruption and the union protectors, I’m for it. #Brazil https://twitter.com/cnn/status/1204906229895745538 …",[],['https://twitter.com/cnn/status/1204906229895745538'],[],0,0,0,"['#jairbolsonaro', '#brazil']",[],https://twitter.com/MarschelThomas/status/1204960616953200640,False,https://twitter.com/CNN/status/1204906229895745538,0,,,,,,,"[{'user_id': '3195635892', 'username': 'MarschelThomas'}]",
1204960069886074881,1204455980509147142,1576119842000,2019-12-12,06:04:02,MSK,30580937,riobr,Cesar,,"So are the sizes of the Amazon rain forest, California and Australia. The Amazon is much wider and is part of the ecosystem of various South American countries. This year's fire actually began in Bolivia and ended up reaching Brazil.","['positiveschls', 'washtimes']",[],[],1,0,0,[],[],https://twitter.com/RioBR/status/1204960069886074881,False,,0,,,,,,,"[{'user_id': '30580937', 'username': 'RioBR'}, {'user_id': '3689074642', 'username': 'positiveschls'}, {'user_id': '14662354', 'username': 'WashTimes'}]",
1204957657045569537,1204957657045569537,1576119267000,2019-12-12,05:54:27,MSK,417739798,350nyc,350NYC.org,,Amazon indigenous leaders killed in Brazil drive-by shooting https://www.theguardian.com/world/2019/dec/08/amazon-indigenous-leaders-killed-in-brazil-drive-by-shooting?CMP=share_btn_tw …,[],['https://www.theguardian.com/world/2019/dec/08/amazon-indigenous-leaders-killed-in-brazil-drive-by-shooting?CMP=share_btn_tw'],[],0,0,1,[],[],https://twitter.com/350NYC/status/1204957657045569537,False,,0,,,,,,,"[{'user_id': '417739798', 'username': '350NYC'}]",
1204950000335278080,1204950000335278080,1576117441000,2019-12-12,05:24:01,MSK,53655876,helnz,Helnz,,You could come to Brazil and see the situation of the Amazon today! @GretaThunberg pic.twitter.com/tdagdhxB7m,['gretathunberg'],[],['https://pbs.twimg.com/media/ELjXouFX0AMN5I_.jpg'],0,0,1,[],[],https://twitter.com/helnz/status/1204950000335278080,False,,0,,,,,,,"[{'user_id': '53655876', 'username': 'helnz'}, {'user_id': '1006419421244678144', 'username': 'GretaThunberg'}]",
1204949912846245889,1204906229895745538,1576117420000,2019-12-12,05:23:40,MSK,904509577,resplendent101,Maggie Fresh,,"He’s a scum bag for not valuing the rights of the indigenous people who are the stewards of the Amazon forest.All of the $ won’t do a bit of good if Brazil can’t breathe clean air,grow foods due to poor soil quality,& rivers run dry,& land is flood-prone.",['cnn'],[],[],0,0,0,[],[],https://twitter.com/resplendent101/status/1204949912846245889,False,,0,,,,,,,"[{'user_id': '904509577', 'username': 'resplendent101'}, {'user_id': '759251', 'username': 'CNN'}]",
1204949886283763719,1204949410792255489,1576117414000,2019-12-12,05:23:34,MSK,946504593667747840,gui16511919,Vitara | Poucos Dias,,"#Brazil
Brazil is a really beautiful country, with a lot of culture, beautiful places to visit, have the biggest part of Amazon, is a really cool country to make a reagion",[],[],[],0,0,0,['#brazil'],[],https://twitter.com/GUI16511919/status/1204949886283763719,False,,0,,,,,,,"[{'user_id': '946504593667747840', 'username': 'GUI16511919'}]",
1204947128780558337,1204906229895745538,1576116756000,2019-12-12,05:12:36,MSK,783706768069292034,lrbm737,MBK,,"She shouldn't pipe in matters she has no understanding of.
Had she ever been to Brazil? The Amazon?
Shut up Greta!",['cnn'],[],[],0,0,0,[],[],https://twitter.com/lrbm737/status/1204947128780558337,False,,0,,,,,,,"[{'user_id': '783706768069292034', 'username': 'lrbm737'}, {'user_id': '759251', 'username': 'CNN'}]",
1204946916162723840,1204906231409913856,1576116706000,2019-12-12,05:11:46,MSK,1953457680,pentapatipullar,Pentapati Pullarao,,@jairbolsonaro @GretaThunberg @PawanKalyan @paulocoelho Greta is more than President of Brazil.The Brat will defeat Amazon fires @UNEP #AmazonRainforest,"['cnni', 'jairbolsonaro', 'gretathunberg', 'pawankalyan', 'paulocoelho', 'unep']",[],[],0,0,4,['#amazonrainforest'],[],https://twitter.com/PentapatiPullar/status/1204946916162723840,False,,0,,,,,,,"[{'user_id': '1953457680', 'username': 'PentapatiPullar'}, {'user_id': '2097571', 'username': 'cnni'}, {'user_id': '128372940', 'username': 'jairbolsonaro'}, {'user_id': '1006419421244678144', 'username': 'GretaThunberg'}, {'user_id': '2719753171', 'username': 'PawanKalyan'}, {'user_id': '5520952', 'username': 'paulocoelho'}, {'user_id': '38146999', 'username': 'UNEP'}]",
1204945376475832320,1204945376475832320,1576116339000,2019-12-12,05:05:39,MSK,1204575240182992896,roblukas3,Rob Lukas,,"Brazil's president called Swedish climate change activist Greta Thunberg a ""brat"" after she condemned violence against indigenous people who were killed in the Amazon. https://cnn.it/2sm5rRW ",[],['https://cnn.it/2sm5rRW'],[],0,0,1,[],[],https://twitter.com/RobLukas3/status/1204945376475832320,False,,0,,,,,,,"[{'user_id': '1204575240182992896', 'username': 'RobLukas3'}]",
1204943694618615808,1200675565524664320,1576115938000,2019-12-12,04:58:58,MSK,1083861686174601216,ralebrasileira,HelioCerrado,,From the Amazon region (North of Brazil)...,"['bushra_ebadi', 'cigionline']",[],[],0,0,0,[],[],https://twitter.com/RaleBrasileira/status/1204943694618615808,False,,0,,,,,,,"[{'user_id': '1083861686174601216', 'username': 'RaleBrasileira'}, {'user_id': '2302027682', 'username': 'Bushra_Ebadi'}, {'user_id': '38498866', 'username': 'CIGIonline'}]",
1204942425422217217,1204942425422217217,1576115635000,2019-12-12,04:53:55,MSK,610256140,tonatiusaraiva,Tonatiú S. 🇧🇷,,"Took 5 months, but Fire Force is finally available officially in Brazil by Amazon Prime Video. Still, I'm a bit mad that they took all this time, and we only get 12 episodes and no dub. 😒 pic.twitter.com/q4ePYorDRT",[],[],['https://pbs.twimg.com/media/ELjQveAWkAAwDp3.jpg'],1,2,1,[],[],https://twitter.com/TonatiuSaraiva/status/1204942425422217217,False,,0,,,,,,,"[{'user_id': '610256140', 'username': 'TonatiuSaraiva'}]",
1204942362293800963,1204942362293800963,1576115620000,2019-12-12,04:53:40,MSK,11542482,paulosantoro,Paulo Santoro,,"@PrimeVideo Please, when Mrs Maisel will be available here in Brazil? I subscribe Amazon Prime.",['primevideo'],[],[],0,0,0,[],[],https://twitter.com/paulosantoro/status/1204942362293800963,False,,0,,,,,,,"[{'user_id': '11542482', 'username': 'paulosantoro'}, {'user_id': '17220817', 'username': 'PrimeVideo'}]",
1204939839898083328,1202271417942913025,1576115019000,2019-12-12,04:43:39,MSK,1147210997918314496,guilher35859347,Guilherme Vieira,,"Brazil has a crazy and earthy president, we are in danger of losing the Amazon","['voxdotcom', 'leodicaprio']",[],[],0,0,0,[],[],https://twitter.com/Guilher35859347/status/1204939839898083328,False,,0,,,,,,,"[{'user_id': '1147210997918314496', 'username': 'Guilher35859347'}, {'user_id': '2347049341', 'username': 'voxdotcom'}, {'user_id': '133880286', 'username': 'LeoDiCaprio'}]",
1204938241192988672,1204938241192988672,1576114638000,2019-12-12,04:37:18,MSK,159205496,lobodolago,Pedro A.,,Make no mistake #Brazil #Amazon https://twitter.com/jeremymcampbell/status/1204927508430434305 …,[],['https://twitter.com/jeremymcampbell/status/1204927508430434305'],[],0,0,0,"['#brazil', '#amazon']",[],https://twitter.com/LobodoLago/status/1204938241192988672,False,https://twitter.com/jeremymcampbell/status/1204927508430434305,0,,,,,,,"[{'user_id': '159205496', 'username': 'LobodoLago'}]",
1204928296330371073,1204927124412522496,1576112266000,2019-12-12,03:57:46,MSK,98726426,dlbiller,David Biller,,"Brazil's soft power actually *increased* in 2019, per this index. https://softpower30.com/country/brazil/
BIG caveat: the survey was conducted before the Amazon fires.",['luciaguimaraes'],['https://softpower30.com/country/brazil/'],[],1,0,0,[],[],https://twitter.com/DLBiller/status/1204928296330371073,False,,0,,,,,,,"[{'user_id': '98726426', 'username': 'DLBiller'}, {'user_id': '17013378', 'username': 'luciaguimaraes'}]",
1204923247805861889,1204923247805861889,1576111063000,2019-12-12,03:37:43,MSK,22230453,besatree,Besatree,,"What the shit?
Mystery surrounds humpback whale found dead in depths of Brazil’s Amazon jungle https://www.independent.co.uk/news/world/americas/humpback-whale-dead-amazon-jungle-brazil-rainforest-marajo-island-a8796016.html …",[],['https://www.independent.co.uk/news/world/americas/humpback-whale-dead-amazon-jungle-brazil-rainforest-marajo-island-a8796016.html'],[],1,0,1,[],[],https://twitter.com/besatree/status/1204923247805861889,False,,0,,,,,,,"[{'user_id': '22230453', 'username': 'besatree'}]",
1204921625411497985,1204921625411497985,1576110676000,2019-12-12,03:31:16,MSK,2218836026,doomsdayscw,DoomsdaysCW🌻🌹☢️,,Amazon indigenous leaders killed in Brazil drive-by shooting https://www.theguardian.com/world/2019/dec/08/amazon-indigenous-leaders-killed-in-brazil-drive-by-shooting?CMP=share_btn_tw …,[],['https://www.theguardian.com/world/2019/dec/08/amazon-indigenous-leaders-killed-in-brazil-drive-by-shooting?CMP=share_btn_tw'],[],0,0,1,[],[],https://twitter.com/DoomsdaysCW/status/1204921625411497985,False,,0,,,,,,,"[{'user_id': '2218836026', 'username': 'DoomsdaysCW'}]",
1204921167988977664,1204879255655473152,1576110567000,2019-12-12,03:29:27,MSK,1110533832,robertsmitchel1,Gacchanirgata,,"So you transact with Brazil because less Amazon is bullish, and Turkey because use of force is bullish, and China because re-education camps are bullish?",['numismatics9'],[],[],1,0,0,[],[],https://twitter.com/RobertSMitchel1/status/1204921167988977664,False,,0,,,,,,,"[{'user_id': '1110533832', 'username': 'RobertSMitchel1'}, {'user_id': '834660645865979904', 'username': 'NUMISMATICS9'}]",
1204920991551565824,1204906229895745538,1576110525000,2019-12-12,03:28:45,MSK,705478923333857281,wwmayoremeritus,Thomas,,Brazil's president is an autocrat blind to anything that crowds his own ignorant goals. One not need much of a brain to appreciate that the burning of the Amazon couldn’t be as extensive without violence against the indigenous communities.🙁,['cnn'],[],[],0,0,0,[],[],https://twitter.com/wwmayoremeritus/status/1204920991551565824,False,,0,,,,,,,"[{'user_id': '705478923333857281', 'username': 'wwmayoremeritus'}, {'user_id': '759251', 'username': 'CNN'}]",
1204920939491799041,1204914387745722369,1576110512000,2019-12-12,03:28:32,MSK,1182647462504419329,kevkell99082550,Kev Kelly,,Sanders is right the fossil fuel industry is killing our planet especially in brazil where bolsenera has the amazon destroyed the earths lungs are on fire the earth is on fire and only sanders can out out the flames #systemchangenotclimatechange,"['thehill', 'berniesanders']",[],[],0,0,0,['#systemchangenotclimatechange'],[],https://twitter.com/KevKell99082550/status/1204920939491799041,False,,0,,,,,,,"[{'user_id': '1182647462504419329', 'username': 'KevKell99082550'}, {'user_id': '1917731', 'username': 'thehill'}, {'user_id': '216776631', 'username': 'BernieSanders'}]",
1204920438335397895,1204920438335397895,1576110393000,2019-12-12,03:26:33,MSK,261898607,lilques0,Queso,,"Brazil’s President: and Leonardo DiCaprio ruined the ozone, he’s burning down the Amazon, and he kidnapped Shamu and put her in a chlorine tank ok! And there used to be a way to stick it to Leo it was called rock n roll. But guess what? Oh no. Leo had to ruin that too with a lit-",[],[],[],0,0,3,[],[],https://twitter.com/lilques0/status/1204920438335397895,False,,0,,,,,,,"[{'user_id': '261898607', 'username': 'lilques0'}]",
1204914602502438913,1204914602502438913,1576109002000,2019-12-12,03:03:22,MSK,8199382,dannypayne,daniel payne,,Women Are Leading Amazon Ayahuasca Ceremonies for the First Time https://www.vice.com/en_us/article/gv5m9y/amazon-women-are-leading-ayahuasca-ceremonies-for-the-first-time … story from 2016 when the #femenist movement came out in force from the jungles of Brazil and Peru,[],['https://www.vice.com/en_us/article/gv5m9y/amazon-women-are-leading-ayahuasca-ceremonies-for-the-first-time'],[],0,0,0,['#femenist'],[],https://twitter.com/dannypayne/status/1204914602502438913,False,,0,,,,,,,"[{'user_id': '8199382', 'username': 'dannypayne'}]",
1204913322216361984,1204913322216361984,1576108696000,2019-12-12,02:58:16,MSK,1084011894594260992,jackbrackenbur2,Jack Brackenbury,,"I'd never thought I'd actually agree with @jairbolsonaro - @GretaThunberg is a brat, but not for condemning violence against #indigenouspeople who were killed in the Amazon.
#JairBolsonaro #GretaThunberg #Brazil https://twitter.com/cnni/status/1204906231409913856 …","['jairbolsonaro', 'gretathunberg']",['https://twitter.com/cnni/status/1204906231409913856'],[],0,0,0,"['#indigenouspeople', '#jairbolsonaro', '#gretathunberg', '#brazil']",[],https://twitter.com/JackBrackenbur2/status/1204913322216361984,False,https://twitter.com/cnni/status/1204906231409913856,0,,,,,,,"[{'user_id': '1084011894594260992', 'username': 'JackBrackenbur2'}, {'user_id': '128372940', 'username': 'jairbolsonaro'}, {'user_id': '1006419421244678144', 'username': 'GretaThunberg'}]",
1204913185720897536,1204906231409913856,1576108664000,2019-12-12,02:57:44,MSK,38423105,zoila_n,Zoila Neves,,"Why doesn’t he admit himself being a CRIMINAL, that is the truth! Bolsonaro is destroying Brazil along with the Amazon.",['cnni'],[],[],0,0,0,[],[],https://twitter.com/Zoila_N/status/1204913185720897536,False,,0,,,,,,,"[{'user_id': '38423105', 'username': 'Zoila_N'}, {'user_id': '2097571', 'username': 'cnni'}]",
1204906240700223494,1204906240700223494,1576107008000,2019-12-12,02:30:08,MSK,249217178,latinorebels,Latino Rebels,,Brazil’s Amazon States Seek $500 Million From Norway via @AP https://www.latinorebels.com/2019/12/11/brazilamazonstatesnorway/ …,['ap'],['https://www.latinorebels.com/2019/12/11/brazilamazonstatesnorway/'],[],0,0,1,[],[],https://twitter.com/latinorebels/status/1204906240700223494,False,,0,,,,,,,"[{'user_id': '249217178', 'username': 'latinorebels'}, {'user_id': '51241574', 'username': 'AP'}]",
1204906231409913856,1204906231409913856,1576107006000,2019-12-12,02:30:06,MSK,2097571,cnni,CNN International,,"Brazil's president called Swedish climate change activist Greta Thunberg a ""brat"" after she condemned violence against indigenous people who were killed in the Amazon. https://cnn.it/2EbkqAx ",[],['https://cnn.it/2EbkqAx'],[],45,50,141,[],[],https://twitter.com/cnni/status/1204906231409913856,False,,0,,,,,,,"[{'user_id': '2097571', 'username': 'cnni'}]",
1204906229895745538,1204906229895745538,1576107005000,2019-12-12,02:30:05,MSK,759251,cnn,CNN,,"Brazil's president called Swedish climate change activist Greta Thunberg a ""brat"" after she condemned violence against indigenous people who were killed in the Amazon. https://cnn.it/2sm5rRW ",[],['https://cnn.it/2sm5rRW'],[],667,335,1463,[],[],https://twitter.com/CNN/status/1204906229895745538,False,,0,,,,,,,"[{'user_id': '759251', 'username': 'CNN'}]",
1204906208823533568,1204906208823533568,1576107000000,2019-12-12,02:30:00,MSK,16699451,wisctv_news3,News 3 Now / Channel 3000,,"Brazil's president called Swedish climate change activist Greta Thunberg a ""brat"" after she condemned violence against indigenous people who were killed in the Amazon. https://www.channel3000.com/news/world-news/greta-thunberg-labeled-a-brat-by-brazilian-president-jair-bolsonaro/1150356072 …",[],['https://www.channel3000.com/news/world-news/greta-thunberg-labeled-a-brat-by-brazilian-president-jair-bolsonaro/1150356072'],[],0,0,2,[],[],https://twitter.com/WISCTV_News3/status/1204906208823533568,False,,0,,,,,,,"[{'user_id': '16699451', 'username': 'WISCTV_News3'}]",
1204903714651160576,1204903714651160576,1576106406000,2019-12-12,02:20:06,MSK,895161191483547649,bastilleglobal,BastilleGlobal,,Brazil's Amazon states seek $500 million from Norway https://www.bastillepost.com/global/article/2972726 … pic.twitter.com/0SlU1UjVy3,[],['https://www.bastillepost.com/global/article/2972726'],['https://pbs.twimg.com/media/ELitivEUUAAMRAN.jpg'],0,0,0,[],[],https://twitter.com/BastilleGlobal/status/1204903714651160576,False,,0,,,,,,,"[{'user_id': '895161191483547649', 'username': 'BastilleGlobal'}]",
1204902323933384710,1204902323933384710,1576106074000,2019-12-12,02:14:34,MSK,990905908665372672,spacewomanr,spacewoman reporter,,Brazil’s far-right president Jair Bolsonaro has derided Greta Thunberg after the teenage climate activist added her voice to growing international condemnation of a surge of anti-indigenous violence in the Amazon.Greta Thunberg labelled a 'brat' pic.twitter.com/LV0F3KPJrb,[],[],['https://pbs.twimg.com/media/ELisRwYXYAIhkw6.jpg'],1,0,1,[],[],https://twitter.com/SpacewomanR/status/1204902323933384710,False,,0,,,,,,,"[{'user_id': '990905908665372672', 'username': 'SpacewomanR'}]",
1204899898312839168,1204899898312839168,1576105496000,2019-12-12,02:04:56,MSK,153936935,gabstargardter,Gabriel Stargardter,,Brazil's central bank just cut interest rates to a new low of 4.5%. That's bad news for Amazon deforestation. https://www.reuters.com/article/us-brazil-environment-economy-analysis-idUSKBN1YD221 …,[],['https://www.reuters.com/article/us-brazil-environment-economy-analysis-idUSKBN1YD221'],[],0,0,1,[],[],https://twitter.com/gabstargardter/status/1204899898312839168,False,,0,,,,,,,"[{'user_id': '153936935', 'username': 'gabstargardter'}]",
1204896776332800000,1204853614658719745,1576104752000,2019-12-12,01:52:32,MSK,5447732,amoration,evo,,"@Judithoko is in Lagos if you end up in Nigeria
Our http://www.wild-cacao.org team shot in the Amazon in Brazil last year and has allies in the VR industry down there","['creativeclo', 'judithoko']",['http://www.wild-cacao.org'],[],1,0,4,[],[],https://twitter.com/amoration/status/1204896776332800000,False,,0,,,,,,,"[{'user_id': '5447732', 'username': 'amoration'}, {'user_id': '2233869104', 'username': 'CreativeClo'}, {'user_id': '28694571', 'username': 'Judithoko'}]",
1204895715270569984,1204895715270569984,1576104499000,2019-12-12,01:48:19,MSK,1197965521020305408,simpleworldnew1,SimpleWorldNews,,"Greta Thunberg called a 'brat' by Brazil's President Jair Bolsonaro - Brazil's president has called climate campaigner Greta Thunberg ""a brat"" after she tweeted about the murder of two indigenous people in the Amazon. #news #worldwide https://ift.tt/2YEScYj ",[],['https://ift.tt/2YEScYj'],[],0,0,0,"['#news', '#worldwide']",[],https://twitter.com/SimpleWorldNew1/status/1204895715270569984,False,,0,,,,,,,"[{'user_id': '1197965521020305408', 'username': 'SimpleWorldNew1'}]",
1204894380965978112,1204894380965978112,1576104180000,2019-12-12,01:43:00,MSK,22971125,amazonwatch,AMAZON WATCH,,"Despite climate concerns, Brazil will expand coastal oil drilling. We wished we were more shocked. 😡 #KeepItInTheGround https://www.aljazeera.com/ajimpact/climate-concerns-brazil-expand-coastal-oil-drilling-191209180634848.html …",[],['https://www.aljazeera.com/ajimpact/climate-concerns-brazil-expand-coastal-oil-drilling-191209180634848.html'],[],0,18,18,['#keepitintheground'],[],https://twitter.com/AmazonWatch/status/1204894380965978112,False,,0,,,,,,,"[{'user_id': '22971125', 'username': 'AmazonWatch'}]",
1204893540251295744,1204893540251295744,1576103980000,2019-12-12,01:39:40,MSK,73355715,fabiordasilva,Fábio Silva,,"Soh para constar:
FORBES: ""It was under Lula and Marina Silva (2003-2008) that Brazil had the highest incidence of burning,” Leonardo Coutinho told me over email. “But neither Lula nor Marina was accused of putting the Amazon at risk.”
https://www.forbes.com/sites/michaelshellenberger/2019/08/26/why-everything-they-say-about-the-amazon-including-that-its-the-lungs-of-the-world-is-wrong/#4f9b99ac5bde …",[],['https://www.forbes.com/sites/michaelshellenberger/2019/08/26/why-everything-they-say-about-the-amazon-including-that-its-the-lungs-of-the-world-is-wrong/#4f9b99ac5bde'],[],0,0,0,[],[],https://twitter.com/fabiordasilva/status/1204893540251295744,False,,0,,,,,,,"[{'user_id': '73355715', 'username': 'fabiordasilva'}]",
1204892476626083841,1204892476626083841,1576103726000,2019-12-12,01:35:26,MSK,3059457425,analyticaglobal,Global Analytica,,"Once again, Brazil’s President #JairBolsonaro discredited both Greta Thunberg as a ""brat"" and Leonardo DiCaprio as a suspect in financing fires in the Amazon.
http://bit.ly/2YCjjDB ",[],['http://bit.ly/2YCjjDB'],[],0,0,0,['#jairbolsonaro'],[],https://twitter.com/AnalyticaGlobal/status/1204892476626083841,False,,0,,,,,,,"[{'user_id': '3059457425', 'username': 'AnalyticaGlobal'}]",
1204892358749360128,1204892358749360128,1576103698000,2019-12-12,01:34:58,MSK,825821958474440705,mississaugamgs,Mississauga MGs,,"‘The Amazon Is Completely Lawless’: The Rainforest After Bolsonaro’s First Year
Deforestation in the world’s largest rainforest, an important buffer against climate change, has soared under President Jair Bolsonaro of Brazil. https://nyti.ms/2DM9BVt ",[],['https://nyti.ms/2DM9BVt'],[],0,0,0,[],[],https://twitter.com/MississaugaMgs/status/1204892358749360128,False,,0,,,,,,,"[{'user_id': '825821958474440705', 'username': 'MississaugaMgs'}]",
1204891554130870272,1204891554130870272,1576103506000,2019-12-12,01:31:46,MSK,2838450295,lori1981ann1,Lori Ann,,"I agree 💯Brazil’s President Jair Bolsonaro called Swedish climate change campaigner Greta Thunberg a “brat” on Tuesday, Dec. 10, after her comment on two Indigenous people Brazilians’ death in the Amazon. pic.twitter.com/GSHBL6Vzev",[],[],['https://pbs.twimg.com/media/ELiie1_WoAUO2cZ.jpg'],0,5,8,[],[],https://twitter.com/Lori1981Ann1/status/1204891554130870272,False,,0,,,,,,,"[{'user_id': '2838450295', 'username': 'Lori1981Ann1'}]",
1204891107521380353,1204891107521380353,1576103400000,2019-12-12,01:30:00,MSK,296005306,telesurenglish,teleSUR English,,"Once again, Brazil’s President #JairBolsonaro discredited both Greta Thunberg as a ""brat"" and Leonardo DiCaprio as a suspect in financing fires in the Amazon.
http://bit.ly/2YCjjDB ",[],['http://bit.ly/2YCjjDB'],[],4,22,16,['#jairbolsonaro'],[],https://twitter.com/telesurenglish/status/1204891107521380353,False,,0,,,,,,,"[{'user_id': '296005306', 'username': 'telesurenglish'}]",
1204890904051568640,1204890904051568640,1576103351000,2019-12-12,01:29:11,MSK,917537504391319552,pjunio779,Paulin,,"@GretaThunberg This girl is an example for our society, while we are always on the roll this girl is fighting for our environment, I see a girl who does not live in Brazil but fights for the Amazon while we who live here nothing ...",['gretathunberg'],[],[],0,0,1,[],[],https://twitter.com/pjunio779/status/1204890904051568640,False,,0,,,,,,,"[{'user_id': '917537504391319552', 'username': 'pjunio779'}, {'user_id': '1006419421244678144', 'username': 'GretaThunberg'}]",
1204884898315722752,1204884898315722752,1576101920000,2019-12-12,01:05:20,MSK,180950693,amor_brazil,Amazon Mission Org.,,"AMOR team and Asas de Socorro (Wings of Relief) with Citizenship Action and Mission in the São Jorge Community, located on the shores of Lake of the Membeca, Caapiranga, AM.
DONATE!
http://amorbrazil.org/en/get-involved.html#GIVE …
Amazon Mission Organization
P.O. Box 707, Mountain Home, AR 72654 pic.twitter.com/GC5poTTHlI",[],['http://amorbrazil.org/en/get-involved.html#GIVE'],['https://pbs.twimg.com/media/ELicbdcXsAEGpWX.jpg'],0,1,1,[],[],https://twitter.com/amor_brazil/status/1204884898315722752,False,,0,,,,,,,"[{'user_id': '180950693', 'username': 'amor_brazil'}]",
1204884559600521216,1204883650128384002,1576101839000,2019-12-12,01:03:59,MSK,1186627452254248966,damian_heron,Damian Heron,,"Certainly this occurred in the #Amazon #Rainforest in #Brazil, right??",['thebabylonbee'],[],[],0,0,1,"['#amazon', '#rainforest', '#brazil']",[],https://twitter.com/damian_heron/status/1204884559600521216,False,,0,,,,,,,"[{'user_id': '1186627452254248966', 'username': 'damian_heron'}, {'user_id': '4914384040', 'username': 'TheBabylonBee'}]",
1204883648908054528,1204883648908054528,1576101622000,2019-12-12,01:00:22,MSK,1023271263626842112,allbrpolitics,All The Brazilian Politics,,"Brazil’s weak currency, cheaper credit add to Amazon threats Brazil’s record-low interest rates and exchange rate threaten to accelerate Amazon deforestation, which has already risen sharply under Brazil’s farm-friendly President Jair Bolsonaro,... https://tmblr.co/Zn_uBZ2mb_wxL ",[],['https://tmblr.co/Zn_uBZ2mb_wxL'],[],0,0,0,[],[],https://twitter.com/AllBrPolitics/status/1204883648908054528,False,,0,,,,,,,"[{'user_id': '1023271263626842112', 'username': 'AllBrPolitics'}]",
1204880461346082816,1204795860401434624,1576100862000,2019-12-12,00:47:42,MSK,1073924226518839296,costavitorjor,Vitor Costa,,"Congratulations Greta!👏👏 for the achievement! Know that your courage to fight for the planet is what motivates me not to give up fighting for the Amazon here in Brazil and against climate negationism.😍🤗
#FridaysForFuture
#PrayforAmazonia",['gretathunberg'],[],[],0,0,0,"['#fridaysforfuture', '#prayforamazonia']",[],https://twitter.com/costavitorjor/status/1204880461346082816,False,,0,,,,,,,"[{'user_id': '1073924226518839296', 'username': 'costavitorjor'}, {'user_id': '1006419421244678144', 'username': 'GretaThunberg'}]",
1204876551290064896,1204876551290064896,1576099930000,2019-12-12,00:32:10,MSK,274607629,ramiisantos,Ramii,,"I can't hold anymore!!! It's torture enough to look in every social media and EVERY CREATURE is showing their own copy of ""Regretting You"" by CoHo.
I'm suffering.
I'm in pain.
I envy them!!!!
Please Amazon, be fast and deliver my copy, here in Brazil, as soon as possible!!!",[],[],[],0,0,0,[],[],https://twitter.com/RamiiSantos/status/1204876551290064896,False,,0,,,,,,,"[{'user_id': '274607629', 'username': 'RamiiSantos'}]",
1204871361761435649,1204871361761435649,1576098692000,2019-12-12,00:11:32,MSK,390206490,star_foreign,Star World,,Brazil’s Amazon states seek $500 million from Norway http://dlvr.it/RL5z8t ,[],['http://dlvr.it/RL5z8t'],[],0,0,0,[],[],https://twitter.com/Star_Foreign/status/1204871361761435649,False,,0,,,,,,,"[{'user_id': '390206490', 'username': 'Star_Foreign'}]",
1204869883873374213,1204869883873374213,1576098340000,2019-12-12,00:05:40,MSK,98726426,dlbiller,David Biller,,Brazil’s Amazon states seek $500 million from Norway. 📝@dianejeantet #COP25 https://apnews.com/8aafd15f873e1e62a15bc127846b6801 …,['dianejeantet'],['https://apnews.com/8aafd15f873e1e62a15bc127846b6801'],[],0,2,9,['#cop25'],[],https://twitter.com/DLBiller/status/1204869883873374213,False,,0,,,,,,,"[{'user_id': '98726426', 'username': 'DLBiller'}, {'user_id': '103572210', 'username': 'dianejeantet'}]",
1204867428443992065,1204867428443992065,1576097754000,2019-12-11,23:55:54,MSK,3321144051,jasonunsworth2,Jason Unsworth,,Brazil’s President is burning down the Amazon! @joswinson @mariecgoldman #GE2109 https://twitter.com/ndtv/status/1204864682424553473 …,"['joswinson', 'mariecgoldman']",['https://twitter.com/ndtv/status/1204864682424553473'],[],0,0,0,['#ge2109'],[],https://twitter.com/JasonUnsworth2/status/1204867428443992065,False,https://twitter.com/ndtv/status/1204864682424553473,0,,,,,,,"[{'user_id': '3321144051', 'username': 'JasonUnsworth2'}, {'user_id': '14933304', 'username': 'joswinson'}, {'user_id': '2860522038', 'username': 'mariecgoldman'}]",
1204866804616704005,1204866804616704005,1576097606000,2019-12-11,23:53:26,MSK,72123226,alidametcalf,Alida Metcalf,,The killings of Guajajara tribe members follow that of another last month amid a push by Brazil’s president to develop the Amazon rainforest https://www.wsj.com/articles/brazil-killings-spur-concerns-over-development-tensions-in-the-amazon-11575936902 …,[],['https://www.wsj.com/articles/brazil-killings-spur-concerns-over-development-tensions-in-the-amazon-11575936902'],[],0,0,0,[],[],https://twitter.com/AlidaMetcalf/status/1204866804616704005,False,,0,,,,,,,"[{'user_id': '72123226', 'username': 'AlidaMetcalf'}]",
1204864391541342208,1204864391541342208,1576097030000,2019-12-11,23:43:50,MSK,765536084872814592,raseef22en,Raseef22 English,,"The Amazon Jungle: this is how far Arabs are willing to go to escape the harsh reality in their homelands. Fatima and Aya settled in Lençóis, Brazil and recount their newfound freedom and happiness
https://buff.ly/36kVL8K ",[],['https://buff.ly/36kVL8K'],[],1,2,4,[],[],https://twitter.com/Raseef22En/status/1204864391541342208,False,,0,,,,,,,"[{'user_id': '765536084872814592', 'username': 'Raseef22En'}]",
1204862893063208960,1204852711403008000,1576096673000,2019-12-11,23:37:53,MSK,611753395,kvnpkrwrd,kevin,,"Hands down, my favorite brat.
Busting on Bolsonaro, the Chicago Boy from Brazil burning Amazon and Amazonians at once for Monsanto.
Thank you, @GretaThunberg. You elevate the respect for Time and chance at a future.","['aoc', 'gretathunberg']",[],[],0,0,0,[],[],https://twitter.com/kvnpkrwrd/status/1204862893063208960,False,,0,,,,,,,"[{'user_id': '611753395', 'username': 'kvnpkrwrd'}, {'user_id': '138203134', 'username': 'AOC'}, {'user_id': '1006419421244678144', 'username': 'GretaThunberg'}]",
1204860977159774214,1204860977159774214,1576096216000,2019-12-11,23:30:16,MSK,469585219,americangeo,The American Geographical Society,,"Brazil’s space agency reported that in one year, more than 3,700 square miles of the Amazon had been razed — a swath of jungle nearly the size of Lebanon torn from the world’s largest rainforest.
http://ow.ly/ZnM050xt0Qe pic.twitter.com/81Az8jtWD6",[],['http://ow.ly/ZnM050xt0Qe'],['https://pbs.twimg.com/media/ELiGrCYWkAI-x_M.jpg'],0,8,7,[],[],https://twitter.com/AmericanGeo/status/1204860977159774214,False,,0,,,,,,,"[{'user_id': '469585219', 'username': 'AmericanGeo'}]",
1204857570655178752,1204857570655178752,1576095404000,2019-12-11,23:16:44,MSK,972220994847957000,leewolfffiction,Lee Wolff,,"Did u know the Amazon is the world's largest rain forest? Visiting Brazil & Amazon was 1 of my best trips ever. The hardest part was keeping the howling monkey who lived in the hammock outside my room from coming inside my room & the best part was waking up daily, on the Amazon.",[],[],[],0,0,0,[],[],https://twitter.com/LeeWolffFiction/status/1204857570655178752,False,,0,,,,,,,"[{'user_id': '972220994847957000', 'username': 'LeeWolffFiction'}]",
1204855637030686720,1204855637030686720,1576094943000,2019-12-11,23:09:03,MSK,22624436,originsosu,Origins: Current Events in Historical Perspective,,"Given that the Amazon rainforest lies largely within Brazil’s borders, the debate over climate change there (or rather, the refusal of president Jair Bolsonaro to acknowledge the reality of the climate crisis) has grave impacts for the whole world. http://origins.osu.edu/article/amazon-rainforest-under-threat-Bolsonaro-fires-agrobusiness-indigenous-Brazil …",[],['http://origins.osu.edu/article/amazon-rainforest-under-threat-Bolsonaro-fires-agrobusiness-indigenous-Brazil'],[],0,0,2,[],[],https://twitter.com/OriginsOSU/status/1204855637030686720,False,,0,,,,,,,"[{'user_id': '22624436', 'username': 'OriginsOSU'}]",
1204855001102856192,1204851643990327296,1576094792000,2019-12-11,23:06:32,MSK,2356281922,claretwoody,Woody,,"Many, many climate change scientists, who have been to university agree with her. Those who don’t Trump, Brazil’s amazon burning facist president and Putin and you! I know who I trust. If she was my daughter I would be proud as.
Plus a uni degree doesn’t make you clever.",['ajax_hake'],[],[],0,0,2,[],[],https://twitter.com/Claretwoody/status/1204855001102856192,False,,0,,,,,,,"[{'user_id': '2356281922', 'username': 'Claretwoody'}, {'user_id': '373856011', 'username': 'Ajax_Hake'}]",
1204854327791108096,1204854327791108096,1576094631000,2019-12-11,23:03:51,MSK,17437733,jchyip,Jason Yip,,Amazon indigenous leaders killed in Brazil drive-by shooting https://www.theguardian.com/world/2019/dec/08/amazon-indigenous-leaders-killed-in-brazil-drive-by-shooting?CMP=share_btn_tw …,[],['https://www.theguardian.com/world/2019/dec/08/amazon-indigenous-leaders-killed-in-brazil-drive-by-shooting?CMP=share_btn_tw'],[],0,0,0,[],[],https://twitter.com/jchyip/status/1204854327791108096,False,,0,,,,,,,"[{'user_id': '17437733', 'username': 'jchyip'}]",
1204854129178402817,1204854129178402817,1576094584000,2019-12-11,23:03:04,MSK,22971125,amazonwatch,AMAZON WATCH,,"""The enormity of the deforestation growth in Brazil is no accident,"" @cpeartree, @AmazonWatch Program Director thinks the deforestation and fires ""can be attributed entirely to the environmental mismanagement policies and rhetoric of Bolsonaro."" https://www.businessinsider.com/greta-thunberg-twitter-pirralha-brat-bolsonaro-2019-12 …","['cpeartree', 'amazonwatch']",['https://www.businessinsider.com/greta-thunberg-twitter-pirralha-brat-bolsonaro-2019-12'],[],0,43,57,[],[],https://twitter.com/AmazonWatch/status/1204854129178402817,False,,0,,,,,,,"[{'user_id': '22971125', 'username': 'AmazonWatch'}, {'user_id': '2335528783', 'username': 'cpeartree'}]",
1204853923577810944,1204853559554125824,1576094535000,2019-12-11,23:02:15,MSK,992880914886725632,athurluiz,Grande Comentarista Incoveniente🇧🇷,,@amazon please come up here in Brazil and create a marketplace in order to fuck with @MercadoLivre,"['mercadolivre', 'amazon']",[],[],0,0,3,[],[],https://twitter.com/AthurLuiz/status/1204853923577810944,False,,0,,,,,,,"[{'user_id': '992880914886725632', 'username': 'AthurLuiz'}, {'user_id': '15166137', 'username': 'MercadoLivre'}, {'user_id': '20793816', 'username': 'amazon'}]",
1204851886928490496,1204851886928490496,1576094049000,2019-12-11,22:54:09,MSK,1024441561969451008,lafemmemagique,Emily,,"Icon #GretaThunberg #Bolsonaro is just salty that he got called the F out destroying the #Amazon for destroying the habitats of animals, homes, culture & killing the indigenous peoples of the Amazon rain forest. The president of Brazil is fine w/ having Brazilians killed. https://twitter.com/thehill/status/1204849873872412674 … pic.twitter.com/iwPEueUHWK",[],['https://twitter.com/thehill/status/1204849873872412674'],[],0,0,0,"['#gretathunberg', '#bolsonaro', '#amazon']",[],https://twitter.com/lafemmemagique/status/1204851886928490496,False,,1,,,,,,,"[{'user_id': '1024441561969451008', 'username': 'lafemmemagique'}]",
1204851134436958211,1204824047730728960,1576093870000,2019-12-11,22:51:10,MSK,1162917178628345858,mtokusatsu,Marcus Tokusatsu,,"I'd like to give you some advice, as if I were your big brother: ignore the statements of a ""stupid"" president like Jair Bolsonaro. He is not even caring about the environmental issues of the Amazon rainforest and the northeast coast of Brazil.","['gretathunberg', 'f4f_turin']",[],[],0,0,0,[],[],https://twitter.com/MTokusatsu/status/1204851134436958211,False,,0,,,,,,,"[{'user_id': '1162917178628345858', 'username': 'MTokusatsu'}, {'user_id': '1006419421244678144', 'username': 'GretaThunberg'}, {'user_id': '1084391908900782080', 'username': 'F4F_Turin'}]",
1204850119948079105,1204850119948079105,1576093628000,2019-12-11,22:47:08,MSK,21108715,pennipete,Penni Peterson,,Mystery surrounds humpback whale found dead in depths of Brazil’s Amazon jungle https://www.independent.co.uk/news/world/americas/humpback-whale-dead-amazon-jungle-brazil-rainforest-marajo-island-a8796016.html …,[],['https://www.independent.co.uk/news/world/americas/humpback-whale-dead-amazon-jungle-brazil-rainforest-marajo-island-a8796016.html'],[],0,3,0,[],[],https://twitter.com/pennipete/status/1204850119948079105,False,,0,,,,,,,"[{'user_id': '21108715', 'username': 'pennipete'}]",
1204849122320224256,1204849122320224256,1576093390000,2019-12-11,22:43:10,MSK,839163893519888384,thetimesscot,The Times Scotland,,16-year-old climate activist Greta Thunberg has been branded a “brat” by Brazil’s president for condemning violence against indigenous people in the Amazon https://www.thetimes.co.uk/edition/news/greta-thunberg-branded-a-brat-by-brazils-president-bolsonaro-tcxzhr783?utm_medium=Social&utm_source=Twitter#Echobox=1576085025 …,[],['https://www.thetimes.co.uk/edition/news/greta-thunberg-branded-a-brat-by-brazils-president-bolsonaro-tcxzhr783?utm_medium=Social&utm_source=Twitter#Echobox=1576085025'],[],0,0,2,[],[],https://twitter.com/thetimesscot/status/1204849122320224256,False,,0,,,,,,,"[{'user_id': '839163893519888384', 'username': 'thetimesscot'}]",
1204845193331167239,1204845193331167239,1576092453000,2019-12-11,22:27:33,MSK,16364089,gabehollombe,Gabe Hollombe,,"🚀New Course Helps Those in Machine Learning Roles Prepare for Certification
🚀Amazon EC2 I3en Instances are Now Available in AWS Canada, Brazil (São Paulo), & Europe (Paris) AWS Regions
https://amzn.to/36o2IpF pic.twitter.com/fDXIfJ5ZZA",[],['https://amzn.to/36o2IpF'],"['https://pbs.twimg.com/media/ELh14PvWoAAysIH.png', 'https://pbs.twimg.com/media/ELh14cwXsAM9X3k.jpg']",0,0,0,[],[],https://twitter.com/gabehollombe/status/1204845193331167239,False,,0,,,,,,,"[{'user_id': '16364089', 'username': 'gabehollombe'}]",
1204844607374331909,1204844607374331909,1576092313000,2019-12-11,22:25:13,MSK,3185601206,eduardoqlik,Eduardo,,"#RT @awscloud: New #AWSLaunches!
🚀New Course Helps Those in Machine Learning Roles Prepare for Certification
🚀Amazon EC2 I3en Instances are Now Available in AWS Canada, Brazil (São Paulo), & Europe (Paris) AWS Regions
https://amzn.to/36o2IpF pic.twitter.com/dnrJrFlAQe",['awscloud'],['https://amzn.to/36o2IpF'],"['https://pbs.twimg.com/media/ELh14PvWoAAysIH.png', 'https://pbs.twimg.com/media/ELh14cwXsAM9X3k.jpg']",0,0,0,"['#rt', '#awslaunches']",[],https://twitter.com/eduardoqlik/status/1204844607374331909,False,,0,,,,,,,"[{'user_id': '3185601206', 'username': 'eduardoqlik'}, {'user_id': '66780587', 'username': 'awscloud'}]",
1204844604312428546,1204844604312428546,1576092313000,2019-12-11,22:25:13,MSK,30827588,herrholze,Herr Holze,,"Neues von DailyOverview The Juruá River is a southern tributary of the Amazon River, flowing approximately 1,500 miles (2,400 km) through Brazil and Peru. See more here: https://bit.ly/2sjkECW /// #dailyoverview #earth #aerialphotography #picoftheday #… pic.twitter.com/HIDa5lgebt",[],['https://bit.ly/2sjkECW'],['https://pbs.twimg.com/media/ELh09rhWsAA6eiX.jpg'],0,0,0,"['#dailyoverview', '#earth', '#aerialphotography', '#picoftheday']",[],https://twitter.com/HerrHolze/status/1204844604312428546,False,,0,,,,,,,"[{'user_id': '30827588', 'username': 'HerrHolze'}]",
1204843882523041794,1204843882523041794,1576092141000,2019-12-11,22:22:21,MSK,939102745096724480,yogikashyap41,saurabh kashyap,,Sting calls Amazon rainforest fires in Brazil a disgrace pic.twitter.com/Xa3N71mBYa,[],[],['https://pbs.twimg.com/media/ELh3IHUWkAIX9e_.jpg'],0,0,0,[],[],https://twitter.com/yogikashyap41/status/1204843882523041794,False,,0,,,,,,,"[{'user_id': '939102745096724480', 'username': 'yogikashyap41'}]",
1204843088088158208,1204843088088158208,1576091951000,2019-12-11,22:19:11,MSK,281496093,jennirayflo,Jenni Rayflo 🌱,,"The Amazon fires were and are inextricably linked to Brazil's beef industry.
Suhmuhdik. pic.twitter.com/gdia8eb9lN",[],[],[],0,0,0,[],[],https://twitter.com/jennirayflo/status/1204843088088158208,False,,1,,,,,,,"[{'user_id': '281496093', 'username': 'jennirayflo'}]",
1204842514676617222,1204842514676617222,1576091815000,2019-12-11,22:16:55,MSK,66780587,awscloud,Amazon Web Services,,"New #AWSLaunches!
🚀New Course Helps Those in Machine Learning Roles Prepare for Certification
🚀Amazon EC2 I3en Instances are Now Available in AWS Canada, Brazil (São Paulo), & Europe (Paris) AWS Regions
https://amzn.to/36o2IpF pic.twitter.com/205dmVAhpL",[],['https://amzn.to/36o2IpF'],"['https://pbs.twimg.com/media/ELh14PvWoAAysIH.png', 'https://pbs.twimg.com/media/ELh14cwXsAM9X3k.jpg']",0,10,20,['#awslaunches'],[],https://twitter.com/awscloud/status/1204842514676617222,False,,0,,,,,,,"[{'user_id': '66780587', 'username': 'awscloud'}]",
1204841921300115457,1204841921300115457,1576091673000,2019-12-11,22:14:33,MSK,6107422,thetimes,The Times,,The 16-year-old climate activist Greta Thunberg has been branded a “brat” by Brazil’s president for condemning violence against indigenous people in the Amazon https://www.thetimes.co.uk/edition/news/greta-thunberg-branded-a-brat-by-brazils-president-bolsonaro-tcxzhr783?utm_medium=Social&utm_source=Twitter#Echobox=1576085719 …,[],['https://www.thetimes.co.uk/edition/news/greta-thunberg-branded-a-brat-by-brazils-president-bolsonaro-tcxzhr783?utm_medium=Social&utm_source=Twitter#Echobox=1576085719'],[],10,9,21,[],[],https://twitter.com/thetimes/status/1204841921300115457,False,,0,,,,,,,"[{'user_id': '6107422', 'username': 'thetimes'}]",
1204841639019270144,1204841639019270144,1576091606000,2019-12-11,22:13:26,MSK,21474366,mstandage,Matthew Standage,,"RT DOverview The Juruá River is a southern tributary of the Amazon River, flowing approximately 1,500 miles (2,400 km) through Brazil and Peru. See more here: https://bit.ly/2sjkECW /// #dailyoverview #earth #aerialphotography #picoftheday #nature #ama… pic.twitter.com/GpCHaxM6DO",[],['https://bit.ly/2sjkECW'],['https://pbs.twimg.com/media/ELh09rhWsAA6eiX.jpg'],0,0,0,"['#dailyoverview', '#earth', '#aerialphotography', '#picoftheday', '#nature', '#ama']",[],https://twitter.com/mstandage/status/1204841639019270144,False,,0,,,,,,,"[{'user_id': '21474366', 'username': 'mstandage'}]",
1204841524774592512,1204841524774592512,1576091579000,2019-12-11,22:12:59,MSK,2347560146,doverview,Daily Overview,,"The Juruá River is a southern tributary of the Amazon River, flowing approximately 1,500 miles (2,400 km) through Brazil and Peru. See more here: https://bit.ly/2sjkECW /// #dailyoverview #earth #aerialphotography #picoftheday #nature #amazonriver #brazil #peru @planetlabs #ttot pic.twitter.com/XnTBr8Svwf",['planetlabs'],['https://bit.ly/2sjkECW'],['https://pbs.twimg.com/media/ELh09rhWsAA6eiX.jpg'],0,10,23,"['#dailyoverview', '#earth', '#aerialphotography', '#picoftheday', '#nature', '#amazonriver', '#brazil', '#peru', '#ttot']",[],https://twitter.com/DOverview/status/1204841524774592512,False,,0,,,,,,,"[{'user_id': '2347560146', 'username': 'DOverview'}, {'user_id': '17663776', 'username': 'planetlabs'}]",
1204830303191212033,1204794084013068288,1576088903000,2019-12-11,21:28:23,MSK,949005208373342208,sweet_angel_bby,Rebecca L Brazil,,"Available on Amber’s second favorite website, Amazon! It was the second or third result when I searched “seatbelt extender”. 🙄 Ugh",['cyrinthia212'],[],[],0,1,0,[],[],https://twitter.com/sweet_angel_bby/status/1204830303191212033,False,,0,,,,,,,"[{'user_id': '949005208373342208', 'username': 'sweet_angel_bby'}, {'user_id': '186438220', 'username': 'CYRINTHIA212'}]",
1204829034854715392,1204829034854715392,1576088601000,2019-12-11,21:23:21,MSK,1044985863464267778,starkciths,BEE SAW FROZEN II | #womenforwonderstorm,,"god brazil’s president is such a dickhead. i’m sorry if anyone here is from brazil, nothing against your people, it’s just that he’s such a clown. he talks shit abt a kid. he put the amazon on fire. what the actual fuck dude",[],[],[],0,0,3,[],[],https://twitter.com/starkciths/status/1204829034854715392,False,,0,,,,,,,"[{'user_id': '1044985863464267778', 'username': 'starkciths'}]",
1204826799814823936,1204826799814823936,1576088068000,2019-12-11,21:14:28,MSK,1079911297,ecointernetdrgb,EcoInternet,,"Sting calls Amazon #rainforest fires in Brazil a disgrace: Reuters https://www.reuters.com/video/watch/sting-calls-amazon-rainforest-fires-in-b-idOVB9E9SV1 …
MORE w/ EcoSearch - news: https://search.ecointernet.org/search/results?q=rainforest%20amazon%20fire%20sting%20call%20brazil%20disgrace&w=relevance … web: https://search.ecointernet.org/search/results?q=rainforest%20amazon%20fire%20sting%20call%20brazil%20disgrace&s=web …",[],"['https://www.reuters.com/video/watch/sting-calls-amazon-rainforest-fires-in-b-idOVB9E9SV1', 'https://search.ecointernet.org/search/results?q=rainforest%20amazon%20fire%20sting%20call%20brazil%20disgrace&w=relevance', 'https://search.ecointernet.org/search/results?q=rainforest%20amazon%20fire%20sting%20call%20brazil%20disgrace&s=web']",[],0,0,0,['#rainforest'],[],https://twitter.com/EcoInternetDrGB/status/1204826799814823936,False,,0,,,,,,,"[{'user_id': '1079911297', 'username': 'EcoInternetDrGB'}]",
1204823953325383681,1204823953325383681,1576087389000,2019-12-11,21:03:09,MSK,80876593,lauriegoering,Laurie Goering,,"As Brazil steps back on forest protection, international cash to protect forests is flowing to the Colombian Amazon http://news.trust.org/item/20191211172142-qog5v/ … #Amazon #forest #Norway pic.twitter.com/zCtc1ocnXI",[],['http://news.trust.org/item/20191211172142-qog5v/'],['https://pbs.twimg.com/media/ELhk9zTXkAAqUBd.jpg'],0,0,0,"['#amazon', '#forest', '#norway']",[],https://twitter.com/lauriegoering/status/1204823953325383681,False,,0,,,,,,,"[{'user_id': '80876593', 'username': 'lauriegoering'}]",
1204823322330054656,1204823322330054656,1576087239000,2019-12-11,21:00:39,MSK,2323327490,mdvmatteo,Matteo De Vos,,"Coincidence? I think not. Industrial #beef - driven by agro giants @JBS_oficial , @MarfrigConosur & Minerva - is burning the #Amazon. Consider the absurdity of #mercosur trade deal allowing 99,000 ton annual quota for beef exports to EU (42.5% from Brazil) https://www.theguardian.com/environment/2019/dec/10/revealed-fires-three-times-more-common-in-amazon-beef-farming-zones …","['jbs_oficial', 'marfrigconosur']",['https://www.theguardian.com/environment/2019/dec/10/revealed-fires-three-times-more-common-in-amazon-beef-farming-zones'],[],0,0,1,"['#beef', '#amazon', '#mercosur']",[],https://twitter.com/mdvmatteo/status/1204823322330054656,False,,0,,,,,,,"[{'user_id': '2323327490', 'username': 'mdvmatteo'}, {'user_id': '3030524615', 'username': 'JBS_oficial'}, {'user_id': '423397397', 'username': 'MarfrigConosur'}]",
1204823195087495168,1204823195087495168,1576087208000,2019-12-11,21:00:08,MSK,34143160,bhrrc,Business & Human Rights,,"In this week's update...
🔆 #Philippines could hold fossil fuel companies liable for human rights violations
🌳 Two indigenous leaders murdered in conflict for #Brazil's Amazon
📝 42 German companies call for #mHRDD
Read it and subscribe! 📬 https://bit.ly/2PcEBo8 pic.twitter.com/utRjKVDbkq",[],['https://bit.ly/2PcEBo8'],['https://pbs.twimg.com/media/ELhkTiIX0AAXpNl.jpg'],0,3,2,"['#philippines', '#brazil', '#mhrdd']",[],https://twitter.com/BHRRC/status/1204823195087495168,False,,0,,,,,,,"[{'user_id': '34143160', 'username': 'BHRRC'}]",
1204822874789466115,1204475905810354184,1576087132000,2019-12-11,20:58:52,MSK,1388329244,djlovechicago,DJLOVE@CHICAGO,,"That's because Brazil's new president
Is an evil greedy agent of the devil who is intent
on destroying the Amazon rain forests & the world.
He has no regard for the earth, indigenous lives
Or people of color, nor does he have regard
for preserving our fragile world eco systems.",['time'],[],[],0,0,0,[],[],https://twitter.com/DJLOVECHICAGO/status/1204822874789466115,False,,0,,,,,,,"[{'user_id': '1388329244', 'username': 'DJLOVECHICAGO'}, {'user_id': '14293310', 'username': 'TIME'}]",
1204819901723996160,1204819901723996160,1576086423000,2019-12-11,20:47:03,MSK,967248464,scenictravelers,Scenic Travel Photos,,"Amazon Rainforest, Brazil pic.twitter.com/pSgFIUuhoh",[],[],['https://pbs.twimg.com/media/ELhhT3WUUAArTGV.jpg'],0,0,0,[],[],https://twitter.com/scenictravelers/status/1204819901723996160,False,,0,,,,,,,"[{'user_id': '967248464', 'username': 'scenictravelers'}]",
1204817825908580353,1204817825908580353,1576085928000,2019-12-11,20:38:48,MSK,873736014967255040,80_mcswan,THE BLACK SALTIRE#FBSI,,"Brazil’s President Jair Bolsonaro described activist Greta Thunberg as a “brat” after she spoke of her concerns about the deforestation of the Amazon rainforest.
The Brazilian president has just let himself and his country down",[],[],[],1,6,19,[],[],https://twitter.com/80_mcswan/status/1204817825908580353,False,,0,,,,,,,"[{'user_id': '873736014967255040', 'username': '80_mcswan'}]",
1204816693643616261,1204816693643616261,1576085658000,2019-12-11,20:34:18,MSK,832057747,bronwentucker,Bronwen Tucker,,Reminder also that #COP25 was *first* supposed to be held in Brazil until Bolsonaro was elected and immediately cancelled it. Can assume this decision made burning the Amazon and trampling Indigenous rights easier 💀. https://twitter.com/bronwentucker/status/1204771897180856320 …,[],['https://twitter.com/bronwentucker/status/1204771897180856320'],[],0,9,20,['#cop25'],[],https://twitter.com/bronwentucker/status/1204816693643616261,False,https://twitter.com/bronwentucker/status/1204771897180856320,0,,,,,,,"[{'user_id': '832057747', 'username': 'bronwentucker'}]",
1204815610582118402,1204751806422831105,1576085400000,2019-12-11,20:30:00,MSK,997187155,sidhu_posh,Posh Sidhu,,Brazil need to make less children so that they don’t completely destroy the Amazon. How do you feel about these type of words?,"['adriaraujo88', 'markacollett']",[],[],1,0,0,[],[],https://twitter.com/sidhu_posh/status/1204815610582118402,False,,0,,,,,,,"[{'user_id': '997187155', 'username': 'sidhu_posh'}, {'user_id': '1867501657', 'username': 'Adriaraujo88'}, {'user_id': '829715112890159104', 'username': 'MarkACollett'}]",
1204814193221877760,1204814193221877760,1576085062000,2019-12-11,20:24:22,MSK,1128746952672202752,funsandfacts1,Funsandfacts,,Sting calls Amazon rainforest fires in Brazil a disgrace https://ift.tt/2LNI22C ,[],['https://ift.tt/2LNI22C'],[],0,0,0,[],[],https://twitter.com/Funsandfacts1/status/1204814193221877760,False,,0,,,,,,,"[{'user_id': '1128746952672202752', 'username': 'Funsandfacts1'}]",
1204813040815935490,1204813040815935490,1576084787000,2019-12-11,20:19:47,MSK,3092119215,latam_politics,LATAM POLITICS,,"France to forge partnership with #Brazil states to protect the #Amazon, bypassing president #Bolsonaro https://reut.rs/2PpbNaU #environment #deforestation",[],['https://reut.rs/2PpbNaU'],[],0,1,1,"['#brazil', '#amazon', '#bolsonaro', '#environment', '#deforestation']",[],https://twitter.com/LATAM_POLITICS/status/1204813040815935490,False,,0,,,,,,,"[{'user_id': '3092119215', 'username': 'LATAM_POLITICS'}]",
1204812410135236608,1204812410135236608,1576084637000,2019-12-11,20:17:17,MSK,48830004,terrie1001,Terri Edwards,,"Brazil's government has faced heavy criticism in recent months over a spike in illegal logging and habitat destruction in the Amazon rainforest, where many rare species and indigenous tribes live.
https://thehill.com/policy/international/473892-brazils-president-calls-teen-climate-activist-greta-thunberg-a-brat#.XfEkjjV4tKA.twitter …",[],['https://thehill.com/policy/international/473892-brazils-president-calls-teen-climate-activist-greta-thunberg-a-brat#.XfEkjjV4tKA.twitter'],[],0,0,0,[],[],https://twitter.com/TerriE1001/status/1204812410135236608,False,,0,,,,,,,"[{'user_id': '48830004', 'username': 'TerriE1001'}]",
1204806961952428035,1204806961952428035,1576083338000,2019-12-11,19:55:38,MSK,829651621529403392,renewourworld_,Renew Our World,,"Delivery of the #RenewOurWorld Letter here at #COP25 to the Governor of Pará State, Helder Zahluth. Pará is an important state of the Amazon, but unfortunately it is the state with the highest gas emissions in Brazil and an area of great deforestation pic.twitter.com/YfASNoA5W7",[],[],['https://pbs.twimg.com/media/ELhVikgXUAA-ic1.jpg'],1,4,8,"['#renewourworld', '#cop25']",[],https://twitter.com/RenewOurWorld_/status/1204806961952428035,False,,0,,,,,,,"[{'user_id': '829651621529403392', 'username': 'RenewOurWorld_'}]",
1204806882092814336,1204475905810354184,1576083319000,2019-12-11,19:55:19,MSK,1186946110281134083,alabemarc2,Alabe Marc,,"Brazil has a President Assassin, who has direct links with other criminals, orders killers, orders killers, is destroyer of the Amazon to benefit farmers. jail for him already. @GretaThunberg is an example to the world, bolsonaro is the shame of the world.","['time', 'gretathunberg']",[],[],0,0,0,[],[],https://twitter.com/AlabeMarc2/status/1204806882092814336,False,,0,,,,,,,"[{'user_id': '1186946110281134083', 'username': 'AlabeMarc2'}, {'user_id': '14293310', 'username': 'TIME'}, {'user_id': '1006419421244678144', 'username': 'GretaThunberg'}]",
1204806167995801601,1204806167995801601,1576083149000,2019-12-11,19:52:29,MSK,1259492647,jackiesmith1a,Jacqueline Smith,,"Fires 3X more common in Amazon beef farming zones than in rest of Amazon now accordng to new analysis. Findings draw attentn to links btwn Brazil’s powerful beef industry &deforestation of Amazon rainforest, just as wrld debates climate change at COP25.
https://www.theguardian.com/environment/2019/dec/10/revealed-fires-three-times-more-common-in-amazon-beef-farming-zones?CMP=share_btn_tw …",[],['https://www.theguardian.com/environment/2019/dec/10/revealed-fires-three-times-more-common-in-amazon-beef-farming-zones?CMP=share_btn_tw'],[],0,0,0,[],[],https://twitter.com/jackiesmith1a/status/1204806167995801601,False,,0,,,,,,,"[{'user_id': '1259492647', 'username': 'jackiesmith1a'}]",
1204805194183299072,1204803269924659200,1576082917000,2019-12-11,19:48:37,MSK,1190446772344303616,joeafernandes2,Joe A. Fernandes,,Brazil is supposed to be a Christian country but they are complicit in destroying the indigenous natives living in the Amazon area. They burning them out.,"['rwpusa', 'ncronline']",[],[],0,0,2,[],[],https://twitter.com/JoeAFernandes2/status/1204805194183299072,False,,0,,,,,,,"[{'user_id': '1190446772344303616', 'username': 'JoeAFernandes2'}, {'user_id': '2863996955', 'username': 'RWPUSA'}, {'user_id': '25146372', 'username': 'NCRonline'}]",
1204800467286609921,1204743717132914688,1576081790000,2019-12-11,19:29:50,MSK,1202030553584820227,contegahosaf,ahead of the curve,,"Why there are no purple zones in Brazil? Since Bolsonaro destroyed all the Amazon forests and doesn't exist oxygen in the whole country anymore, omg.","['wwhker', 'time', 'gretathunberg']",[],[],0,0,0,[],[],https://twitter.com/ContegaHosaf/status/1204800467286609921,False,,0,,,,,,,"[{'user_id': '1202030553584820227', 'username': 'ContegaHosaf'}, {'user_id': '1142281559837249536', 'username': 'wwHKer'}, {'user_id': '14293310', 'username': 'TIME'}, {'user_id': '1006419421244678144', 'username': 'GretaThunberg'}]",
1204798739380154368,1204760968196186119,1576081378000,2019-12-11,19:22:58,MSK,428122788,gerald_chege,Gerald Chege,,"In the US, Alexander Ocascio Cortez was lynched by the Reps for her ""Green New Deal"" while over in Brazil, Bolsonaro refers to a teenager as a ""brat"" who gets too much time on media..
Elsewhere, with the death of the Amazon imminent and the world in need of a new pair of lungs,",['michaelmburu_'],[],[],0,0,0,[],[],https://twitter.com/gerald_chege/status/1204798739380154368,False,,0,,,,,,,"[{'user_id': '428122788', 'username': 'gerald_chege'}, {'user_id': '812725716089470976', 'username': 'MichaelMburu_'}]",
1204797004548694017,1204797004548694017,1576080964000,2019-12-11,19:16:04,MSK,259389278,pokercenter,Manfred Rosenberg,,"Greta Thunberg called a 'brat' by Brazil's President Jair Bolsonaro - Brazil's president has called climate campaigner Greta Thunberg ""a brat"" after she tweeted about the murder of two indigenous people in the Amazon. http://dlvr.it/RL568L #worldnews pic.twitter.com/5sauEHcFMT",[],['http://dlvr.it/RL568L'],['https://pbs.twimg.com/media/ELhMfZ_U8AEL4jZ.jpg'],0,1,0,['#worldnews'],[],https://twitter.com/PokerCenter/status/1204797004548694017,False,,0,,,,,,,"[{'user_id': '259389278', 'username': 'PokerCenter'}]",
1204795080646766592,1204795080646766592,1576080505000,2019-12-11,19:08:25,MSK,951874165547655168,aolijerhoek,Alex Olijerhoek,,"Brazil's weak currency, cheaper credit add to Amazon threats - Reuters https://www.reuters.com/article/us-brazil-environment-economy-analysis/brazils-weak-currency-cheaper-credit-add-to-amazon-threats-idUSKBN1YD221?il=0 …",[],['https://www.reuters.com/article/us-brazil-environment-economy-analysis/brazils-weak-currency-cheaper-credit-add-to-amazon-threats-idUSKBN1YD221?il=0'],[],0,0,0,[],[],https://twitter.com/AOlijerhoek/status/1204795080646766592,False,,0,,,,,,,"[{'user_id': '951874165547655168', 'username': 'AOlijerhoek'}]",
1204791394780532737,1204780507747229696,1576079627000,2019-12-11,18:53:47,MSK,2455294867,eruhkzorx,invent animate fan account,,"brazil's president is a bitch lol, he's one of the major reasons for deforestation in the Amazon. he practically supports global warming.",['tap_a_dime'],[],[],1,0,2,[],[],https://twitter.com/EruhkzorX/status/1204791394780532737,False,,0,,,,,,,"[{'user_id': '2455294867', 'username': 'EruhkzorX'}, {'user_id': '1167423894850023425', 'username': 'tap_a_dime'}]",
1204790868806455296,1204790868806455296,1576079501000,2019-12-11,18:51:41,MSK,539608560,jpmayer_,JP Mayer,,Someone have Amazon links for Calli ink (black) and Hunt 102 boxes with ship to Brazil?,[],[],[],3,0,0,[],[],https://twitter.com/JPMayer_/status/1204790868806455296,False,,0,,,,,,,"[{'user_id': '539608560', 'username': 'JPMayer_'}]",
1204790812237848576,1204790812237848576,1576079488000,2019-12-11,18:51:28,MSK,21288364,iamcaritas,Caritas,,"We strongly condemn the brutal and shocking #murder of our colleague, Humberto Peixoto, who championed the rights of #IndigenousPeople in the #Amazon. Please pray for his family and loved ones.
He's the latest #HumanRights defender to be killed in Brazil. pic.twitter.com/I2ZKzNAV9p",[],[],['https://pbs.twimg.com/media/ELhG2wrXkAMZgFh.jpg'],0,8,22,"['#murder', '#indigenouspeople', '#amazon', '#humanrights']",[],https://twitter.com/iamCARITAS/status/1204790812237848576,False,,0,,,,,,,"[{'user_id': '21288364', 'username': 'iamCARITAS'}]",
1204789146449039360,1204728944932655104,1576079091000,2019-12-11,18:44:51,MSK,411564538,connectingd3,Connecting the Dots,,"Although you have the Powerful behind you, this brat has science behind her.
#Amazon is a world heritage. Indigenous people are #Brazil's heritage. We care.","['geraldkutney', 'lisanoel1968']",[],[],0,0,3,"['#amazon', '#brazil']",[],https://twitter.com/connectingd3/status/1204789146449039360,False,,0,,,,,,,"[{'user_id': '411564538', 'username': 'connectingd3'}, {'user_id': '904408999', 'username': 'GeraldKutney'}, {'user_id': '2823650596', 'username': 'lisanoel1968'}]",
1204788989988876289,1204788989988876289,1576079053000,2019-12-11,18:44:13,MSK,100102307,yaboytdash,T Dash,,Mystery surrounds humpback whale found dead in depths of Brazil’s Amazon jungle https://www.independent.co.uk/news/world/americas/humpback-whale-dead-amazon-jungle-brazil-rainforest-marajo-island-a8796016.html …,[],['https://www.independent.co.uk/news/world/americas/humpback-whale-dead-amazon-jungle-brazil-rainforest-marajo-island-a8796016.html'],[],0,1,2,[],[],https://twitter.com/yaboytdash/status/1204788989988876289,False,,0,,,,,,,"[{'user_id': '100102307', 'username': 'yaboytdash'}]",
1204786949367578626,1204715310680608768,1576078567000,2019-12-11,18:36:07,MSK,968880044432007169,sami___tweets,kaju kismis,,Just like Brazil president accused @LeoDiCaprio for the Amazon fire. Crowdfunding NGO's,"['bbcworld', 'leodicaprio']",[],[],0,0,0,[],[],https://twitter.com/sami___tweets/status/1204786949367578626,False,,0,,,,,,,"[{'user_id': '968880044432007169', 'username': 'sami___tweets'}, {'user_id': '742143', 'username': 'BBCWorld'}, {'user_id': '133880286', 'username': 'LeoDiCaprio'}]",
1204785868713664515,1204766051059286019,1576078309000,2019-12-11,18:31:49,MSK,34106576,sherrysherry1,Sherry Sherry,,"#Congrats #Greta !
Uh oh, Bolsonaro is gonna be pretty upset
The Rainsforest Burning President of Brazil called her a ""brat""
He hates having environmental impacts/climate change talked about when he's trying to make money burning down #Amazon #Rainforest
#BolsonaroBrat
#Brat",['nbcnews'],[],[],0,0,1,"['#congrats', '#greta', '#amazon', '#rainforest', '#bolsonarobrat', '#brat']",[],https://twitter.com/Sherrysherry1/status/1204785868713664515,False,,0,,,,,,,"[{'user_id': '34106576', 'username': 'Sherrysherry1'}, {'user_id': '14173315', 'username': 'NBCNews'}]",
1204785412075487232,1204785412075487232,1576078200000,2019-12-11,18:30:00,MSK,1013923607481868288,latinamericar,Latin America Reports,,"A group of nine of #Brazil’s Amazon states have bypassed the national government to create a deal with France to protect the #rainforest.
Vía @nytimes
We wrote more about preserving the Amazon here:
https://latinamericareports.com/indigenous-people-best-protect-amazon/3056/ …",['nytimes'],['https://latinamericareports.com/indigenous-people-best-protect-amazon/3056/'],[],0,0,0,"['#brazil', '#rainforest']",[],https://twitter.com/LatinamericaR/status/1204785412075487232,False,,0,,,,,,,"[{'user_id': '1013923607481868288', 'username': 'LatinamericaR'}, {'user_id': '807095', 'username': 'nytimes'}]",
1204782897573646336,1204782897573646336,1576077601000,2019-12-11,18:20:01,MSK,1571037955,paul_okonji,paul okonji,,"Brazil's president has called Swedish climate change activist Greta Thunberg a ""brat"" after she condemned violence against indigenous people who were killed in the Amazon. https://cnn.it/2E8C7AM ",[],['https://cnn.it/2E8C7AM'],[],0,0,0,[],[],https://twitter.com/paul_okonji/status/1204782897573646336,False,,0,,,,,,,"[{'user_id': '1571037955', 'username': 'paul_okonji'}]",
1204781289406119936,1204781289406119936,1576077217000,2019-12-11,18:13:37,MSK,496049389,orosane,Olivia Rosane,,"""How can the media give space to a brat like that?"" In my 1st @EcoWatch post today, #Brazil's Bolsonaro is angry that #GretaThunberg is standing up for indigenous communities in the #Amazon: https://www.ecowatch.com/bolsonaro-thunberg-indigenous-rights-2641567205.html?rebelltitem=2#rebelltitem2 …",['ecowatch'],['https://www.ecowatch.com/bolsonaro-thunberg-indigenous-rights-2641567205.html?rebelltitem=2#rebelltitem2'],[],0,1,1,"['#brazil', '#gretathunberg', '#amazon']",[],https://twitter.com/orosane/status/1204781289406119936,False,,0,,,,,,,"[{'user_id': '496049389', 'username': 'orosane'}, {'user_id': '78361556', 'username': 'EcoWatch'}]",
1204779847651909638,1204779847651909638,1576076874000,2019-12-11,18:07:54,MSK,482875004,p_risks,P-risks 🗼💰📈🛢,,"France to forge partnership with Brazil states on Amazon, bypassing Bolsonaro https://www.reuters.com/article/us-climate-change-accord-amazon/france-to-forge-partnership-with-brazil-states-on-amazon-bypassing-bolsonaro-idUSKBN1YD2B1?feedType=RSS&feedName=worldNews …",[],['https://www.reuters.com/article/us-climate-change-accord-amazon/france-to-forge-partnership-with-brazil-states-on-amazon-bypassing-bolsonaro-idUSKBN1YD2B1?feedType=RSS&feedName=worldNews'],[],0,0,1,[],[],https://twitter.com/P_risks/status/1204779847651909638,False,,0,,,,,,,"[{'user_id': '482875004', 'username': 'P_risks'}]",
1204777918670475264,1204777918670475264,1576076414000,2019-12-11,18:00:14,MSK,64923550,brazilinst,Brazil Institute,,"According to Dr. Pacala @Princeton, the Amazon falls at the center of all four major concerns facing the planet: climate, food, water & biodiversity. So, what would actually happen if the Amazon Rainforest disappeared? Read our latest #ThinkBrazil blog! http://bit.ly/349Extz ",['princeton'],['http://bit.ly/349Extz'],[],0,0,1,['#thinkbrazil'],[],https://twitter.com/BrazilInst/status/1204777918670475264,False,,0,,,,,,,"[{'user_id': '64923550', 'username': 'BrazilInst'}, {'user_id': '5694822', 'username': 'Princeton'}]",
1204777620136693761,1204777620136693761,1576076342000,2019-12-11,17:59:02,MSK,22022865,ncstockguy,NC StockGuy,,"Brazil’s President Jair Bolsonaro on Tuesday called young Swedish environmental activist Greta Thunberg a “brat” after she expressed concern about the slayings of indigenous Brazilians in the Amazon.
https://apnews.com/d2c6b86587dc11f8e64542a72ebbbbd6 …",[],['https://apnews.com/d2c6b86587dc11f8e64542a72ebbbbd6'],[],0,0,0,[],[],https://twitter.com/NCStockGuy/status/1204777620136693761,False,,0,,,,,,,"[{'user_id': '22022865', 'username': 'NCStockGuy'}]",
1204777436052893696,1204777436052893696,1576076299000,2019-12-11,17:58:19,MSK,1123876869647028226,priscilabralves,PriscilaAlves,,"Learning by distance with @RodolfoNobrega: How amazing is to have internet that makes us fly to Brazil to attend this workshop! Glad to see such great studies in Amazon, Caatinga and Brazilian Northeast! Well done!! @UFCG_Oficial pic.twitter.com/clb4DYrsuN","['rodolfonobrega', 'ufcg_oficial']",[],['https://pbs.twimg.com/media/ELg6sJcXUAEu3JK.jpg'],0,0,4,[],[],https://twitter.com/PriscilaBRAlves/status/1204777436052893696,False,,0,,,,,,,"[{'user_id': '1123876869647028226', 'username': 'PriscilaBRAlves'}, {'user_id': '18552710', 'username': 'RodolfoNobrega'}, {'user_id': '111928031', 'username': 'UFCG_Oficial'}]",
1204776601629556736,1204776601629556736,1576076100000,2019-12-11,17:55:00,MSK,373033271,wil_johnson1,† Crusader,,Greta Thunberg is labelled a 'little brat' by Brazil's President Jair Bolsonaro after she said indigenous people are 'literally being murdered' for trying to stop Amazon deforestation https://www.dailymail.co.uk/news/article-7777403/Brazilian-president-calls-activist-Greta-Thunberg-brat.html … pic.twitter.com/cNnnpNMwTu,[],['https://www.dailymail.co.uk/news/article-7777403/Brazilian-president-calls-activist-Greta-Thunberg-brat.html'],['https://pbs.twimg.com/media/ELg540QUYAExzr-.jpg'],0,0,0,[],[],https://twitter.com/Wil_Johnson1/status/1204776601629556736,False,,0,,,,,,,"[{'user_id': '373033271', 'username': 'Wil_Johnson1'}]",
1204776091136798722,1204776091136798722,1576075978000,2019-12-11,17:52:58,MSK,34005611,wwwgalelaurecom,"Gale Laure, Author",,EVOLUTION OF A SAD WOMAN #books worldwide #Christmas2019 #shopping @ bottom of page for good #wednesdaymood: #Amazon #USA #Japan #India #Australia #Brazil #Germany #France #UK #Canada #Mexico #Italy #Spain http://www.tinyurl.com/y9716zr GL,[],['http://www.tinyurl.com/y9716zr'],[],0,0,0,"['#books', '#christmas2019', '#shopping', '#wednesdaymood', '#amazon', '#usa', '#japan', '#india', '#australia', '#brazil', '#germany', '#france', '#uk', '#canada', '#mexico', '#italy', '#spain']",[],https://twitter.com/wwwgalelaurecom/status/1204776091136798722,False,,0,,,,,,,"[{'user_id': '34005611', 'username': 'wwwgalelaurecom'}]",
1204773330416332800,1204773330416332800,1576075320000,2019-12-11,17:42:00,MSK,727524717121409024,thisisplace,place,,"France and a group of Brazilian states plan to announce a partnership to preserve the Amazon rainforest, bypassing Brazil's federal government | #landrights #propertyrights https://bit.ly/2s8TT4d ",[],['https://bit.ly/2s8TT4d'],[],0,0,0,"['#landrights', '#propertyrights']",[],https://twitter.com/thisisplace/status/1204773330416332800,False,,0,,,,,,,"[{'user_id': '727524717121409024', 'username': 'thisisplace'}]",
1204772328263081984,1204772328263081984,1576075081000,2019-12-11,17:38:01,MSK,382129509,thewilsoncenter,The Wilson Center,,"Read about the Amazon rainforest's global impact, its impact on the U.S., and its impact on food security in Brazil: https://buff.ly/345hgJb ",[],['https://buff.ly/345hgJb'],[],0,0,0,[],[],https://twitter.com/TheWilsonCenter/status/1204772328263081984,False,,0,,,,,,,"[{'user_id': '382129509', 'username': 'TheWilsonCenter'}]",
1204771042834690053,1204771042834690053,1576074774000,2019-12-11,17:32:54,MSK,17324965,brazilcham,"Brazilian-American Chamber of Commerce, Inc",,Project will bring innovation and sustainability to producers of the Legal Amazon https://bit.ly/38vIyvC via @DATAGRO #Brazil #BrazilUSCham #Agribusiness #Sustainability,['datagro'],['https://bit.ly/38vIyvC'],[],0,2,0,"['#brazil', '#braziluscham', '#agribusiness', '#sustainability']",[],https://twitter.com/brazilcham/status/1204771042834690053,False,,0,,,,,,,"[{'user_id': '17324965', 'username': 'brazilcham'}, {'user_id': '59827848', 'username': 'DATAGRO'}]",
1204768465967632384,1204768465967632384,1576074160000,2019-12-11,17:22:40,MSK,20456313,coimbra_,Coimbra Sirica,,"@ApibOficial A Artemisa aparece no artigo sobre @GretaThunberg em @TIME https://time.com/person-of-the-year-2019-greta-thunberg/?utm_source=twitter&utm_medium=social&utm_campaign=person-of-the-year&utm_term=_&linkId=78763203 …
In Brasilia, Brazil, 19-year-old Artemisa Xakriabá marched with other indigenous women as the Amazon was burning, then traveled to the U.N. climate summit in New York City","['apiboficial', 'gretathunberg', 'time']",['https://time.com/person-of-the-year-2019-greta-thunberg/?utm_source=twitter&utm_medium=social&utm_campaign=person-of-the-year&utm_term=_&linkId=78763203'],[],0,0,0,[],[],https://twitter.com/Coimbra_/status/1204768465967632384,False,,0,,,,,,,"[{'user_id': '20456313', 'username': 'Coimbra_'}, {'user_id': '848495834887061505', 'username': 'ApibOficial'}, {'user_id': '1006419421244678144', 'username': 'GretaThunberg'}, {'user_id': '14293310', 'username': 'TIME'}]",
1204752658474635264,1204752658474635264,1576070391000,2019-12-11,16:19:51,MSK,227239093,infinityviran,Justice,,please could we put a trade block on @jairbolsonaro Brazil @UN @EU_Commission @GretaThunberg and then BOMB them if they don't stop destroying the Amazon? Savages running the country!,"['jairbolsonaro', 'un', 'eu_commission', 'gretathunberg']",[],[],0,0,0,[],[],https://twitter.com/InfinityViran/status/1204752658474635264,False,,0,,,,,,,"[{'user_id': '227239093', 'username': 'InfinityViran'}, {'user_id': '128372940', 'username': 'jairbolsonaro'}, {'user_id': '14159148', 'username': 'UN'}, {'user_id': '157981564', 'username': 'EU_Commission'}, {'user_id': '1006419421244678144', 'username': 'GretaThunberg'}]",
1204751604500631552,1204751604500631552,1576070140000,2019-12-11,16:15:40,MSK,25283401,unatalie,Natalie,,"Press Conference at #COP25
Andre Guimarães from @IPAM_Amazonia
""Land grabbing is a bad business for Brazil and for our business environment
Land grabbing has to be ended YESTERDAY for the sake of the Amazon"".",['ipam_amazonia'],[],[],1,0,6,['#cop25'],[],https://twitter.com/unatalie/status/1204751604500631552,False,,0,,,,,,,"[{'user_id': '25283401', 'username': 'unatalie'}, {'user_id': '67302940', 'username': 'IPAM_Amazonia'}]",
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'}]",
1204748702381826049,1204748702381826049,1576069448000,2019-12-11,16:04:08,MSK,1186659189864591360,boyluvwilly,William Evans,,"Brazil's president has called Greta Thunberg a ""brat"" after she condemned violence against indigenous people who were killed in the Amazon.",[],[],[],0,0,0,[],[],https://twitter.com/boyluvwilly/status/1204748702381826049,False,,0,,,,,,,"[{'user_id': '1186659189864591360', 'username': 'boyluvwilly'}]",
1204747998527401986,1204711151084457984,1576069280000,2019-12-11,16:01:20,MSK,953764162856988678,tioci1,Boycott Brazil BDS Brasil,,"A year of Bolsonaro and all you can show for it is the Amazon in flames, indigenous people dead and Brazil's reputation destroyed. What are you laughing about?","['miriam__gm', 'cbsnews']",[],[],0,0,0,[],[],https://twitter.com/Tioci1/status/1204747998527401986,False,,0,,,,,,,"[{'user_id': '953764162856988678', 'username': 'Tioci1'}, {'user_id': '68020024', 'username': 'Miriam__GM'}, {'user_id': '15012486', 'username': 'CBSNews'}]",
1204747455671291904,1204747455671291904,1576069151000,2019-12-11,15:59:11,MSK,17446493,castellani,Brian Castellani,,"Brazil's president has called Swedish climate change activist, and Time magazines Person of the Year, Greta Thunberg, a ""brat"" after she condemned violence against indigenous people who were killed in the Amazon. https://amp.cnn.com/cnn/2019/12/11/americas/bolsonaro-thunberg-brat-intl-scli/index.html …",[],['https://amp.cnn.com/cnn/2019/12/11/americas/bolsonaro-thunberg-brat-intl-scli/index.html'],[],1,2,1,[],[],https://twitter.com/castellani/status/1204747455671291904,False,,0,,,,,,,"[{'user_id': '17446493', 'username': 'castellani'}]",
1204746898847887360,1204746898847887360,1576069018000,2019-12-11,15:56:58,MSK,2811559122,cnnphilippines,CNN Philippines,,"Brazil's president calls Swedish climate change activist Greta Thunberg a ""brat"" after she condemned violence against indigenous people who were killed in the Amazon http://bit.ly/2rrKdlx ",[],['http://bit.ly/2rrKdlx'],[],5,9,41,[],[],https://twitter.com/cnnphilippines/status/1204746898847887360,False,,0,,,,,,,"[{'user_id': '2811559122', 'username': 'cnnphilippines'}]",
1204746178903986176,1204746178903986176,1576068846000,2019-12-11,15:54:06,MSK,805391164241301504,e_commercenews,e_Commerce News,,Amazon: Brazil and Germany Cooperate for Sustainable Production - The Rio Times http://dlvr.it/RL4Rtj pic.twitter.com/uFE9OYqCvr,[],['http://dlvr.it/RL4Rtj'],['https://pbs.twimg.com/media/ELgeQ7qUcAALHFx.jpg'],0,0,0,[],[],https://twitter.com/e_CommerceNews/status/1204746178903986176,False,,0,,,,,,,"[{'user_id': '805391164241301504', 'username': 'e_CommerceNews'}]",
1204744053193097217,1204726735188590593,1576068340000,2019-12-11,15:45:40,MSK,1192589306885550091,leyse65081133,Leyse #LendYourVoicetotheAmazon,,"Bono, your voice echoes to the world...We admire you; Lend your Voice to the Amazon, Brazil, please! Thank you !",['u2'],[],[],0,0,0,[],[],https://twitter.com/Leyse65081133/status/1204744053193097217,False,,0,,,,,,,"[{'user_id': '1192589306885550091', 'username': 'Leyse65081133'}, {'user_id': '18847632', 'username': 'U2'}]",
1204743655606632448,1204743655606632448,1576068245000,2019-12-11,15:44:05,MSK,1553843870,newsmasscentral,MassCentralMedia,,Brazil’s President Jair Bolsonaro described activist Greta Thunberg as a “brat” in his latest attack on celebrity environmentalists concerned about the deforestation of the Amazon rainforest https://www.bloomberg.com/news/articles/2019-12-10/bolsonaro-calls-greta-thunberg-a-brat-in-latest-celebrity-insult … via @bpolitics,['bpolitics'],['https://www.bloomberg.com/news/articles/2019-12-10/bolsonaro-calls-greta-thunberg-a-brat-in-latest-celebrity-insult'],[],0,1,2,[],[],https://twitter.com/NewsMassCentral/status/1204743655606632448,False,,0,,,,,,,"[{'user_id': '1553843870', 'username': 'NewsMassCentral'}, {'user_id': '564111558', 'username': 'bpolitics'}]",
1204743394460884992,1204743394460884992,1576068182000,2019-12-11,15:43:02,MSK,35695666,hivos,Hivos Global,,"On Dec 10 at our #COP25Madrid side event ""Climate Action for the Amazon,"" @JoeniaWapichana, Brazil's 1st indigenous female deputy, told negotiators and civil society that #climateaction is also a #humanrights issue! #AllEyesontheAmazon https://alleyesontheamazon.org/ #IndigenousRights https://twitter.com/HivosAmLatina/status/1204446550681956352 …",['joeniawapichana'],"['https://alleyesontheamazon.org/', 'https://twitter.com/HivosAmLatina/status/1204446550681956352']",[],0,1,3,"['#cop25madrid', '#climateaction', '#humanrights', '#alleyesontheamazon', '#indigenousrights']",[],https://twitter.com/hivos/status/1204743394460884992,False,https://twitter.com/HivosAmLatina/status/1204446550681956352,0,,,,,,,"[{'user_id': '35695666', 'username': 'hivos'}, {'user_id': '1091313179152576512', 'username': 'JoeniaWapichana'}]",
1204742165911547905,1204742165911547905,1576067890000,2019-12-11,15:38:10,MSK,1198206073108344833,adamsmi65486069,adam smith,,Defenders of the Rainforest: The Fight to Protect Brazil’s Amazon https://hrw.org/video-photos/interactive/2019/09/23/defenders-rainforest-fight-protect-brazils-amazon …,[],['https://hrw.org/video-photos/interactive/2019/09/23/defenders-rainforest-fight-protect-brazils-amazon'],[],0,0,0,[],[],https://twitter.com/adamsmi65486069/status/1204742165911547905,False,,0,,,,,,,"[{'user_id': '1198206073108344833', 'username': 'adamsmi65486069'}]",
1204738308825374720,1204738308825374720,1576066970000,2019-12-11,15:22:50,MSK,1049780272751935489,miamibluewave,MAX the BERN,,"Amazonian Forest Protectors Rally Outside COP25 Amid Death of Two Indige...
#COP25 #GreenNewDeal #ClimateChange #GlobalCitizen #HumanRights #Indigenous #Amazon #Bolsonaro #Brazil #Solidarity #Democracy #Bernie2020 #ClimateAction #ExtinctionRebellion https://youtu.be/diMgc-efJ8A ",[],['https://youtu.be/diMgc-efJ8A'],[],0,2,3,"['#cop25', '#greennewdeal', '#climatechange', '#globalcitizen', '#humanrights', '#indigenous', '#amazon', '#bolsonaro', '#brazil', '#solidarity', '#democracy', '#bernie2020', '#climateaction', '#extinctionrebellion']",[],https://twitter.com/MiamiBlueWave/status/1204738308825374720,False,,0,,,,,,,"[{'user_id': '1049780272751935489', 'username': 'MiamiBlueWave'}]",
1204737282051366912,1204737282051366912,1576066725000,2019-12-11,15:18:45,MSK,915927660483751936,dhlou01,Catl,,"Brazil's president is far worse than a brat. Violence against indigenous people in the Amazon should be condemned!
#Bolsonaro #Brazil #ClimateEmergency https://twitter.com/CNN/status/1204735108709863424 …",[],['https://twitter.com/CNN/status/1204735108709863424'],[],0,0,0,"['#bolsonaro', '#brazil', '#climateemergency']",[],https://twitter.com/DHLou01/status/1204737282051366912,False,https://twitter.com/CNN/status/1204735108709863424,0,,,,,,,"[{'user_id': '915927660483751936', 'username': 'DHLou01'}]",
1204736665845149696,1204736665845149696,1576066578000,2019-12-11,15:16:18,MSK,1194827266645254145,tessa76515651,Tessa2023,,So Brazil are killing indigenous people of the Amazon? I didn’t know that like what the..... https://twitter.com/cnn/status/1204735108709863424 …,[],['https://twitter.com/cnn/status/1204735108709863424'],[],0,0,0,[],[],https://twitter.com/Tessa76515651/status/1204736665845149696,False,https://twitter.com/CNN/status/1204735108709863424,0,,,,,,,"[{'user_id': '1194827266645254145', 'username': 'Tessa76515651'}]",
1204735699431370753,1204735699431370753,1576066348000,2019-12-11,15:12:28,MSK,40296265,mynbc15,NBC 15 News,,"Brazil's president has called Swedish climate change activist Greta Thunberg a ""brat"" after she condemned violence against indigenous people who were killed in the Amazon.
https://www.cnn.com/2019/12/11/americas/bolsonaro-thunberg-brat-intl-scli/index.html …",[],['https://www.cnn.com/2019/12/11/americas/bolsonaro-thunberg-brat-intl-scli/index.html'],[],1,1,1,[],[],https://twitter.com/mynbc15/status/1204735699431370753,False,,0,,,,,,,"[{'user_id': '40296265', 'username': 'mynbc15'}]",
1204735108709863424,1204735108709863424,1576066207000,2019-12-11,15:10:07,MSK,759251,cnn,CNN,,"Brazil's president has called Swedish climate change activist Greta Thunberg a ""brat"" after she condemned violence against indigenous people who were killed in the Amazon. https://cnn.it/2E8C7AM ",[],['https://cnn.it/2E8C7AM'],[],553,397,1494,[],[],https://twitter.com/CNN/status/1204735108709863424,False,,0,,,,,,,"[{'user_id': '759251', 'username': 'CNN'}]",
1204734744371617792,1204734744371617792,1576066120000,2019-12-11,15:08:40,MSK,65949052,nubbi777,shane van rensburg,,Mystery surrounds humpback whale found dead in depths of Brazil’s Amazon jungle https://www.independent.co.uk/news/world/americas/humpback-whale-dead-amazon-jungle-brazil-rainforest-marajo-island-a8796016.html …,[],['https://www.independent.co.uk/news/world/americas/humpback-whale-dead-amazon-jungle-brazil-rainforest-marajo-island-a8796016.html'],[],0,0,0,[],[],https://twitter.com/nubbi777/status/1204734744371617792,False,,0,,,,,,,"[{'user_id': '65949052', 'username': 'nubbi777'}]",
1204730789151133696,1204730789151133696,1576065177000,2019-12-11,14:52:57,MSK,67819703,sanctuaryasia,Sanctuary Asia,,Tashka and Laura Yawanawa split their time between leading their people in the #Amazon #rainforest and working for #indigenous peoples' #rights in #Rio. They have co-founded nonprofits like the Nawa institute to aid their work. Read the full interview in our Dec issue! #Brazil pic.twitter.com/z6t0vUNhcP,[],[],['https://pbs.twimg.com/media/ELgQOW3U4AAMtC6.jpg'],1,3,6,"['#amazon', '#rainforest', '#indigenous', '#rights', '#rio', '#brazil']",[],https://twitter.com/SanctuaryAsia/status/1204730789151133696,False,,0,,,,,,,"[{'user_id': '67819703', 'username': 'SanctuaryAsia'}]",
1204730050349817861,1204730050349817861,1576065001000,2019-12-11,14:50:01,MSK,1638283832,hellokierahere,Interstella 👽,,Brazil’s President let the Amazon burn forever even going as far to reject foreign help when the rest of the world found out. https://twitter.com/time/status/1204475905810354184 …,[],['https://twitter.com/time/status/1204475905810354184'],[],0,0,0,[],[],https://twitter.com/HelloKieraHere/status/1204730050349817861,False,https://twitter.com/TIME/status/1204475905810354184,0,,,,,,,"[{'user_id': '1638283832', 'username': 'HelloKieraHere'}]",
1204729625932443648,1204711151084457984,1576064900000,2019-12-11,14:48:20,MSK,3098234929,ladykgct,Kellz,,20+ % of The Amazon recently burned (allegedly by the hands of Brazil’s govt) but she’s the brat?? These world leaders who talk in this manner are of no use to their people or the rest of the world and need to go.,['cbsnews'],[],[],1,0,3,[],[],https://twitter.com/LadyKGCT/status/1204729625932443648,False,,0,,,,,,,"[{'user_id': '3098234929', 'username': 'LadyKGCT'}, {'user_id': '15012486', 'username': 'CBSNews'}]",
1204729429366378503,1204726778251632641,1576064853000,2019-12-11,14:47:33,MSK,1537589275,bkohatl,Brian Keith O'Hara,,"@GretaThunberg Democratic President Franklin ""FDR"" Roosevelt said he welcomed the hate of Greedy Bankers. Greta, wear Evangelical Brazil President @jairbolsonaro with pride. He is EXTERMINATING Indigenous Amazon Tribes and Stealing their land, the Amazon Rain Forests. pic.twitter.com/5xt8kVRHWm","['thehill', 'gretathunberg', 'jairbolsonaro']",[],['https://pbs.twimg.com/media/ELgPBorW4AE4Dnt.png'],0,0,2,[],[],https://twitter.com/bkohatl/status/1204729429366378503,False,,0,,,,,,,"[{'user_id': '1537589275', 'username': 'bkohatl'}, {'user_id': '1917731', 'username': 'thehill'}, {'user_id': '1006419421244678144', 'username': 'GretaThunberg'}, {'user_id': '128372940', 'username': 'jairbolsonaro'}]",
1204725815709257728,1204725815709257728,1576063991000,2019-12-11,14:33:11,MSK,262309573,moonmanslu,Luna's Sun Moon man,,"amazon apocalyptic surreal ; as everyone got big booty the source of big booty burnt , hectares upon hectares of it . right upon humans achieving the mimic of brazil bondas culture. apocalyptic surreal",[],[],[],0,0,0,[],[],https://twitter.com/moonmanslu/status/1204725815709257728,False,,0,,,,,,,"[{'user_id': '262309573', 'username': 'moonmanslu'}]",
1204723594787532800,1204723594787532800,1576063462000,2019-12-11,14:24:22,MSK,610952363,natcapcoalition,Natural Capital Coalition,,"France to Partner with Brazil States on Amazon, Bypassing Bolsonaro:
France & a group of Brazilian states plan to announce a partnership to preserve the Amazon rainforest, the group’s leader said, bypassing Brazil’s federal government.
https://nyti.ms/35c1Dkv @nytclimate pic.twitter.com/nPGuOhjjYI",['nytclimate'],['https://nyti.ms/35c1Dkv'],['https://pbs.twimg.com/media/ELgJuGzWwAAAJBW.jpg'],0,3,3,[],[],https://twitter.com/NatCapCoalition/status/1204723594787532800,False,,0,,,,,,,"[{'user_id': '610952363', 'username': 'NatCapCoalition'}, {'user_id': '14603515', 'username': 'nytclimate'}]",
1204723518358859777,1204723518358859777,1576063444000,2019-12-11,14:24:04,MSK,1072534912303951873,lymanawhitney,Anne Whitney Lyman🎗🆘‼️ 😡 😡 😡 😡 🌗🔥💧,,"Humanity Still Exists!
France to Forge Partnership with Brazil States on Amazon, Bypassing Bolsonaro |Voice of America - English https://www.voanews.com/americas/france-forge-partnership-brazil-states-amazon-bypassing-bolsonaro …",[],['https://www.voanews.com/americas/france-forge-partnership-brazil-states-amazon-bypassing-bolsonaro'],[],1,5,9,[],[],https://twitter.com/LymanAWhitney/status/1204723518358859777,False,,0,,,,,,,"[{'user_id': '1072534912303951873', 'username': 'LymanAWhitney'}]",
1204722882149896193,1204720005327282176,1576063292000,2019-12-11,14:21:32,MSK,1051327783018758146,anunevenkeel,It’s An Uneven Keel Though,,He curses the day that the earth chose Brazil as the host of the most valuable natural resource in the planet (Amazon rainforest) which he should not be permitted to F up to become a world power.,['cnn'],[],[],1,0,6,[],[],https://twitter.com/AnUnevenKeel/status/1204722882149896193,False,,0,,,,,,,"[{'user_id': '1051327783018758146', 'username': 'AnUnevenKeel'}, {'user_id': '759251', 'username': 'CNN'}]",
1204722507124748289,1204722507124748289,1576063203000,2019-12-11,14:20:03,MSK,449600949,safetypindaily,SafetyPin-Daily,,"France to Forge Partnership with Brazil States on Amazon, Bypassing Bolsonaro | Via: VoA news https://www.voanews.com/americas/france-forge-partnership-brazil-states-amazon-bypassing-bolsonaro …",[],['https://www.voanews.com/americas/france-forge-partnership-brazil-states-amazon-bypassing-bolsonaro'],[],0,2,8,[],[],https://twitter.com/SafetyPinDaily/status/1204722507124748289,False,,0,,,,,,,"[{'user_id': '449600949', 'username': 'SafetyPinDaily'}]",
1204718850543099909,1204718850543099909,1576062331000,2019-12-11,14:05:31,MSK,540397056,jerrythetidd,Jerry T. (Text Vote to 954954),,Amazon indigenous leaders killed in Brazil drive-by shooting https://www.theguardian.com/world/2019/dec/08/amazon-indigenous-leaders-killed-in-brazil-drive-by-shooting?CMP=share_btn_tw …,[],['https://www.theguardian.com/world/2019/dec/08/amazon-indigenous-leaders-killed-in-brazil-drive-by-shooting?CMP=share_btn_tw'],[],0,0,0,[],[],https://twitter.com/JerryTheTidd/status/1204718850543099909,False,,0,,,,,,,"[{'user_id': '540397056', 'username': 'JerryTheTidd'}]",
1204716633153036288,1204716633153036288,1576061802000,2019-12-11,13:56:42,MSK,803648695660986369,eha_news,EHA News,,"Climate activist #Greta Thunberg labelled a 'brat' by #Brazil's President Bolsonaro
After Greta's comments on Amazon and indigenious people, Bolsonaro called her a ""pirralha,"" which means ""little brat"" in Portuguese. pic.twitter.com/arvqugUd0H",[],[],['https://pbs.twimg.com/media/ELgDY7DWoAA3N4f.jpg'],1,0,6,"['#greta', '#brazil']",[],https://twitter.com/eha_news/status/1204716633153036288,False,,0,,,,,,,"[{'user_id': '803648695660986369', 'username': 'eha_news'}]",
1204714732491378688,1204714732491378688,1576061349000,2019-12-11,13:49:09,MSK,186719785,moto2002moto,moto,,Amazon: Brazil and Germany Cooperate for Sustainable Production | The Rio Times https://riotimesonline.com/brazil-news/brazil/amazon-brazil-and-germany-cooperate-for-sustainable-production/ …,[],['https://riotimesonline.com/brazil-news/brazil/amazon-brazil-and-germany-cooperate-for-sustainable-production/'],[],0,0,0,[],[],https://twitter.com/moto2002moto/status/1204714732491378688,False,,0,,,,,,,"[{'user_id': '186719785', 'username': 'moto2002moto'}]",
1204712512156864514,1204712512156864514,1576060820000,2019-12-11,13:40:20,MSK,152384945,caltiberiasvii,~ Mi,,"Brazil's weak currency, cheaper credit add to Amazon threats https://reut.rs/343enZp ",[],['https://reut.rs/343enZp'],[],0,0,0,[],[],https://twitter.com/caltiberiasvii/status/1204712512156864514,False,,0,,,,,,,"[{'user_id': '152384945', 'username': 'caltiberiasvii'}]",
1204712075521597440,1204712075521597440,1576060715000,2019-12-11,13:38:35,MSK,76237140,submergingmkt,"James S. Henry, Esq.",,"#Brazil #Mineva, giant beef exporter, uses cattle sourced from burned lands in the #Amazon. Clear case of the connection between CO2 + #meateating. #ClimateEmergency https://www.thebureauinvestigates.com/stories/2019-12-10/hundreds-of-thousands-of-fires-rage-around-farms-that-supply-the-worlds-biggest-butcher …",[],['https://www.thebureauinvestigates.com/stories/2019-12-10/hundreds-of-thousands-of-fires-rage-around-farms-that-supply-the-worlds-biggest-butcher'],[],0,0,0,"['#brazil', '#mineva', '#amazon', '#meateating', '#climateemergency']",[],https://twitter.com/submergingmkt/status/1204712075521597440,False,,0,,,,,,,"[{'user_id': '76237140', 'username': 'submergingmkt'}]",
1204702441285079045,1204698700628602880,1576058418000,2019-12-11,13:00:18,MSK,52755452,alextomo,alex thomson,,"Brazil also obstructing progress. Pres Bolsonaro on GThunberg yesterday: “What is the name of that girl, from abroad… Tabata… how is it? Greta! She’s been saying that Indians have died defending the Amazon. It is amazing how much space the press give to this little brat. »",[],[],[],1,6,3,[],[],https://twitter.com/alextomo/status/1204702441285079045,False,,0,,,,,,,"[{'user_id': '52755452', 'username': 'alextomo'}]",
1204702180734881793,1204702180734881793,1576058356000,2019-12-11,12:59:16,MSK,204799904,janetcobb,Janet Cobb,,Amazon indigenous leaders killed in Brazil drive-by shooting https://www.theguardian.com/world/2019/dec/08/amazon-indigenous-leaders-killed-in-brazil-drive-by-shooting?CMP=share_btn_tw …,[],['https://www.theguardian.com/world/2019/dec/08/amazon-indigenous-leaders-killed-in-brazil-drive-by-shooting?CMP=share_btn_tw'],[],0,0,0,[],[],https://twitter.com/Janetcobb/status/1204702180734881793,False,,0,,,,,,,"[{'user_id': '204799904', 'username': 'Janetcobb'}]",
1204700687981875200,1204700687981875200,1576058000000,2019-12-11,12:53:20,MSK,3168601011,sleihysusan,Susan Leihy,,"France to forge partnership with Brazil states on Amazon, bypassing Bolsonaro http://a.msn.com/01/en-us/BBY0jlP?ocid=st …",[],['http://a.msn.com/01/en-us/BBY0jlP?ocid=st'],[],0,0,0,[],[],https://twitter.com/SleihySusan/status/1204700687981875200,False,,0,,,,,,,"[{'user_id': '3168601011', 'username': 'SleihySusan'}]",
1204699248018804736,1204699248018804736,1576057657000,2019-12-11,12:47:37,MSK,781751434463227904,astorplaceart,AstorPlaceArtists,,"The unsufferable Brazil President @JairBolsinaro will probably be getting #impeached or overthrown any time now that he has fiddled while the #Amazon Rainforest burns.
@GretaThunberg
@realDonaldTrump
@aplastic_planet
@PlasticPollutes
@PlasticOceansUS https://twitter.com/TIME/status/1204475905810354184 …","['gretathunberg', 'realdonaldtrump', 'aplastic_planet', 'plasticpollutes', 'plasticoceansus']",['https://twitter.com/TIME/status/1204475905810354184'],[],0,0,0,"['#impeached', '#amazon']",[],https://twitter.com/AstorPlaceArt/status/1204699248018804736,False,https://twitter.com/TIME/status/1204475905810354184,0,,,,,,,"[{'user_id': '781751434463227904', 'username': 'AstorPlaceArt'}, {'user_id': '1006419421244678144', 'username': 'GretaThunberg'}, {'user_id': '25073877', 'username': 'realDonaldTrump'}, {'user_id': '832240326102355968', 'username': 'aplastic_planet'}, {'user_id': '71310291', 'username': 'PlasticPollutes'}, {'user_id': '975913893066231808', 'username': 'PlasticOceansUS'}]",
1204697725335416832,1204697725335416832,1576057294000,2019-12-11,12:41:34,MSK,772774722643910656,geog_fry,Geog Fry 🌍,,"BBC News - Amazon fires: What's the latest in Brazil? https://www.bbc.co.uk/news/world-latin-america-49971563 …
#Year8 #Rainforest",[],['https://www.bbc.co.uk/news/world-latin-america-49971563'],[],0,0,1,"['#year8', '#rainforest']",[],https://twitter.com/Geog_Fry/status/1204697725335416832,False,,0,,,,,,,"[{'user_id': '772774722643910656', 'username': 'Geog_Fry'}]",
1204690352843771904,1204690352843771904,1576055536000,2019-12-11,12:12:16,MSK,352412335,pat_merc,(snom)³⁶⁵,,i need a regional form of the flygon line that's bug/dragon. maybe a region that's based on the Amazon/Brazil,[],[],[],0,0,1,[],[],https://twitter.com/Pat_Merc/status/1204690352843771904,False,,0,,,,,,,"[{'user_id': '352412335', 'username': 'Pat_Merc'}]",
1204689652516610048,1204689652516610048,1576055369000,2019-12-11,12:09:29,MSK,407119382,eugeniomonts,Eugénio Montês,,Amazon indigenous leaders killed in Brazil drive-by shooting https://www.theguardian.com/world/2019/dec/08/amazon-indigenous-leaders-killed-in-brazil-drive-by-shooting?CMP=Share_iOSApp_Other …,[],['https://www.theguardian.com/world/2019/dec/08/amazon-indigenous-leaders-killed-in-brazil-drive-by-shooting?CMP=Share_iOSApp_Other'],[],0,0,0,[],[],https://twitter.com/EugenioMonts/status/1204689652516610048,False,,0,,,,,,,"[{'user_id': '407119382', 'username': 'EugenioMonts'}]",
1204685800505516032,1204685800505516032,1576054451000,2019-12-11,11:54:11,MSK,66931709,meanguitar,MeanGuitar,,Mystery surrounds humpback whale found dead in depths of Brazil’s Amazon jungle | The Independent https://www.independent.co.uk/news/world/americas/humpback-whale-dead-amazon-jungle-brazil-rainforest-marajo-island-a8796016.html …,[],['https://www.independent.co.uk/news/world/americas/humpback-whale-dead-amazon-jungle-brazil-rainforest-marajo-island-a8796016.html'],[],0,0,0,[],[],https://twitter.com/meanguitar/status/1204685800505516032,False,,0,,,,,,,"[{'user_id': '66931709', 'username': 'meanguitar'}]",
1204684326467559424,1204475905810354184,1576054100000,2019-12-11,11:48:20,MSK,2692386102,etalgrp_luis,Luis Albeiro Rojas 🇨🇴🇦🇺,,"In return we call the President of Brazil a monster who kills his indigenous people and the Amazon, sucks the life out of Brazil to enrich himself.",['time'],[],[],0,0,0,[],[],https://twitter.com/etalgrp_luis/status/1204684326467559424,False,,0,,,,,,,"[{'user_id': '2692386102', 'username': 'etalgrp_luis'}, {'user_id': '14293310', 'username': 'TIME'}]",
1204679950063808512,1204679950063808512,1576053056000,2019-12-11,11:30:56,MSK,480881323,michaeleichert,Michael Eichert,,"Brazil's president calls Greta Thunberg a 'brat' over comments on Twitter: https://aol.it/2EbyCtf via @AOL: While he allows the Amazon to burn, she is the brat because she reminds him of his irresponsible leadership.",['aol'],['https://aol.it/2EbyCtf'],[],0,0,0,[],[],https://twitter.com/michaeleichert/status/1204679950063808512,False,,0,,,,,,,"[{'user_id': '480881323', 'username': 'michaeleichert'}, {'user_id': '66237835', 'username': 'AOL'}]",
1204679861668909056,1204679861668909056,1576053035000,2019-12-11,11:30:35,MSK,3059457425,analyticaglobal,Global Analytica,,Brazil's president has called Greta Thunberg 'a brat' after she tweeted about the murder of two indigenous people in the Amazon http://po.st/8L1glT ,[],['http://po.st/8L1glT'],[],0,0,1,[],[],https://twitter.com/AnalyticaGlobal/status/1204679861668909056,False,,0,,,,,,,"[{'user_id': '3059457425', 'username': 'AnalyticaGlobal'}]",
1204679025593069570,1204679025593069570,1576052836000,2019-12-11,11:27:16,MSK,2922301331,econ_cl,ECON,,"[NYT] France to Partner with Brazil States on Amazon, Bypassing Bolsonaro https://ift.tt/38wFnnI ",[],['https://ift.tt/38wFnnI'],[],0,0,0,[],[],https://twitter.com/ECON_cl/status/1204679025593069570,False,,0,,,,,,,"[{'user_id': '2922301331', 'username': 'ECON_cl'}]",
1204677742647762944,1204677742647762944,1576052530000,2019-12-11,11:22:10,MSK,22917909,gastronomy,Tanat Tonguthaisri,,"[AWS] Amazon EC2 I3en Instances are Now Available in AWS Canada, Brazil (São Paulo), and Europe (Paris) AWS Regions -->