-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpetition_authors.tsv
We can make this file beautiful and searchable if this error is corrected: Any value after quoted field isn't allowed in line 965.
3768 lines (3768 loc) · 338 KB
/
petition_authors.tsv
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
"LastName" "FirstName" "Country" "Affiliation" "Scientist" "Signed"
"Abad" "Candy" "Ecuador" "Universidad San Francisco de Quito USFQ" "Yes" "2017-12-01T20:00:00.000Z"
"Abbott" "John C." "USA" "University of Alabama" "Yes" "2017-12-01T20:00:00.000Z"
"Abdul Aziz" "Sheema" "Malaysia" "Rimba / University of Southampton" "Yes" "2017-12-01T20:00:00.000Z"
"Abellan" "Pedro" "Spain" "Universidad de Sevilla" "Yes" "2017-12-01T20:00:00.000Z"
"Aberle" "Matt A." "USA" "Virginia Tech" "Yes" "2017-12-01T20:00:00.000Z"
"Ablard" "Kelly M." "USA" "Airmid Institute" "Yes" "2017-12-01T20:00:00.000Z"
"Abraczinskas" "Laura" "USA" "Michigan State University Museum" "No" "2017-12-01T20:00:00.000Z"
"Abruna" "Fernando" "USA" "Abruna & Musgrave, Architects" "No" "2017-12-01T20:00:00.000Z"
"Abutaha" "Maged M." "Egypt" "Desert Research Center" "Yes" "2017-12-01T20:00:00.000Z"
"Acevedo" "Pedro" "USA" "Smithsonian Institution" "Yes" "2017-12-01T20:00:00.000Z"
"Acosta-Galvis" "Andrés" "Colombia" "Instituto de Investigación de Recursos Biológicos Alexander von Humboldt" "Yes" "2017-12-01T20:00:00.000Z"
"Acre" "Matthew R." "USA" "Texas Tech University" "No" "2017-12-01T20:00:00.000Z"
"Adams" "Rachel E." "USA" "Texas A&M University" "Yes" "2017-12-01T20:00:00.000Z"
"Adams" "Nicole E." "USA" "University of Southern California" "Yes" "2017-12-01T20:00:00.000Z"
"Addison" "Kemp" "USA" "University of Texas Austin " "Yes" "2017-12-02T14:43:35.785Z"
"Afonso" "Audinei A. Nogueira" "Brazil" "Universidade do Estado de Mato Grosso" "Yes" "2017-12-01T20:00:00.000Z"
"Afonso Silva" "Ana C." "Portugal" "University of Lisbon" "Yes" "2017-12-01T20:00:00.000Z"
"Agapow" "Paul" "UK" "Imperial College London" "Yes" "2017-12-01T20:00:00.000Z"
"Aguiar" "Ludmilla MS" "Brazil" "Universidade de Brasília" "Yes" "2017-12-01T20:00:00.000Z"
"Ahlberg" "Per E." "Sweden" "Uppsala University" "Yes" "2017-12-01T20:00:00.000Z"
"Ahlgren" "Johan" "Sweden" "-" "Yes" "2017-12-02T16:49:24.501Z"
"Ailloud" "Jennifer" "France" "-" "Yes" "2017-12-01T20:00:00.000Z"
"Aitken" "Sally" "Canada" "University of British Columbia" "Yes" "2017-12-01T20:00:00.000Z"
"Aivelo" "Tuomas" "Switzerland" "University of Zurich" "Yes" "2017-12-03T08:59:41.574Z"
"Akkawi de Freitas" "Paula" "Brasil" "University " "Yes" "2017-12-02T23:06:15.339Z"
"Alagador" "Diogo" "Portugal" "Research Center on Biodiversity and Genetic Resources, Univ Évora" "Yes" "2017-12-01T20:00:00.000Z"
"Alaimo" "Emma R." "USA" "University of Texas at Austin" "No" "2017-12-01T20:00:00.000Z"
"Alava" "Juan Jose" "Canada And Ecuador" "University of British Columbia; Fundacion Ecuatoriana para el Estudio de Mamiferos Marinos" "Yes" "2017-12-03T22:01:09.690Z"
"Alba" "Eliana" "Bolivia" "Universidad Mayor de San Simón " "Yes" "2017-12-03T16:16:14.142Z"
"Albers" "Justine" "USA" "UC Santa Barbara" "Yes" "2017-12-01T21:45:44.801Z"
"Albert" "James S." "USA" "University of Louisiana at Lafayette" "Yes" "2017-12-01T20:00:00.000Z"
"Albright" "Rebecca" "USA" "California Academy of Sciences" "Yes" "2017-12-01T20:00:00.000Z"
"Alcaraz-Hernández" "Juan Diego" "Spain" "University of Girona" "Yes" "2017-12-01T20:00:00.000Z"
"Alda" "Fernando" "USA" "USA" "Yes" "2017-12-01T20:00:00.000Z"
"Alec" "Christie" "UK" "University of Cambridge" "No" "2017-12-01T20:00:00.000Z"
"Aleman" "Julie C." "Canada" "Université de Montréal" "Yes" "2017-12-01T20:00:00.000Z"
"Alencar" "Laura" "Brazil" "Universidade de São Paulo" "Yes" "2017-12-01T20:00:00.000Z"
"Alexander" "Timothy J." "Switzerland" "University of Bern" "Yes" "2017-12-01T20:00:00.000Z"
"Alexandersson" "Ronny" "Sweden" "Uppsala University" "No" "2017-12-01T20:00:00.000Z"
"Alexandridis" "Nikolaos" "Greece" "Institut français de recherche pour l'exploitation de la mer" "Yes" "2017-12-01T20:00:00.000Z"
"Alexandrino" "Diogo" "Portugal" "Universidade do Porto - CIIMAR" "Yes" "2017-12-01T20:00:00.000Z"
"Alfaro" "Michael" "USA" "UCLA" "Yes" "2017-12-01T20:00:00.000Z"
"Aliaga - Rossel" "Enzo" "Bolivia" "Instituto de Ecologia. University Mayor of San Andres" "Yes" "2017-12-03T15:00:23.408Z"
"Aline" "Revel" "Switzerland" "UNIL" "No" "2017-12-02T15:33:33.434Z"
"Aliperti" "Jaclyn R." "USA" "University of California, Davis" "Yes" "2017-12-01T20:00:00.000Z"
"Alldred" "Mary" "USA" "SUNY Plattsburgh" "Yes" "2017-12-01T20:00:00.000Z"
"Allen" "Andrew E." "USA" "Scripps Institution of Oceanography" "Yes" "2017-12-01T20:00:00.000Z"
"Allen" "Jazzmine" "USA" "University of Washington" "Yes" "2017-12-01T20:00:00.000Z"
"Almeida" "Wenderson" "Brazil" "SEE-MG" "No" "2017-12-02T23:49:28.666Z"
"Almeida" "Sérgio M." "Brazil" "Universidade Católica de Pernambuco" "Yes" "2017-12-01T20:00:00.000Z"
"Alofs" "Karen" "USA" "University of Michigan" "Yes" "2017-12-01T20:00:00.000Z"
"Alström" "Per" "Sweden" "Uppsala University and Swedish University of Agricultural Sciences" "Yes" "2017-12-01T20:00:00.000Z"
"Altenburger" "Andreas" "Denmark" "University of Copenhagen" "Yes" "2017-12-01T20:00:00.000Z"
"Alter" "Liz" "USA" "City University of New York" "Yes" "2017-12-01T20:00:00.000Z"
"Alvarez" "Mariano" "USA" "Duke University" "Yes" "2017-12-01T20:00:00.000Z"
"Alves" "Ruy" "Brazil" "MUSEU NACIONAL, UFRJ" "Yes" "2017-12-04T17:08:33.186Z"
"Alves" "Crislaine" "Brazil" "Universidade do Estado de Mato Grosso" "Yes" "2017-12-01T20:00:00.000Z"
"Alves" "Guilherme A." "Brazil" "Universidade Estadual de Campinas" "Yes" "2017-12-01T20:00:00.000Z"
"Amaral" "Fabio R." "Brazil" "Universidade Federal de São Paulo" "Yes" "2017-12-01T20:00:00.000Z"
"Amarasinghe " "Ravi" "Srilanka" "TERN" "Yes" "2017-12-09T14:56:42.820Z"
"Amarello" "Melissa A" "USA" "Advocates for Snake Preservation" "Yes" "2017-12-01T20:00:00.000Z"
"Amemiya" "Chris" "USA" "University of California, Merced" "Yes" "2017-12-01T20:00:00.000Z"
"Amichai" "Eran" "Israel" "Tel Aviv University" "Yes" "2017-12-03T12:02:59.969Z"
"Aminuddin" "Amir" "Malaysia" "The University of Nottingham, Malaysia Campus" "No" "2017-12-03T14:52:38.183Z"
"Ammirati" "Joe" "USA" "University of Washington" "Yes" "2017-12-01T20:00:00.000Z"
"Anastasia" "Thevenin" "USA" "Moravian College" "No" "2017-12-01T20:00:00.000Z"
"Andermann" "Tobias" "Sweden" "Gothenburg Global Biodiversity Centre" "Yes" "2017-12-01T20:00:00.000Z"
"Andersen" "Tom" "Denmark" "Just me" "No" "2017-12-03T09:47:26.964Z"
"Anderson" "Kathryn M." "Canada" "University of British Columbia, Beaty Biodiversity Research Center" "Yes" "2017-12-01T20:00:00.000Z"
"Anderson" "Jordan" "USA" "Duke University" "Yes" "2017-12-01T20:00:00.000Z"
"Anderson" "Emily" "USA" "Old Dominion University" "Yes" "2017-12-01T20:00:00.000Z"
"Anderson" "Gregory" "USA" "University of Connecticut" "Yes" "2017-12-01T20:00:00.000Z"
"Anderson" "Wesley M." "USA" "University of Florida" "Yes" "2017-12-01T20:00:00.000Z"
"Anderson" "Jill" "USA" "University of Georgia" "Yes" "2017-12-03T05:14:59.659Z"
"Anderson" "Christiane" "USA" "University of Michigan" "Yes" "2017-12-01T20:00:00.000Z"
"Anderson" "Steven C." "USA" "University of the Pacific" "Yes" "2017-12-01T20:00:00.000Z"
"Andersone" "Zanete" "Norway" "WWF" "Yes" "2017-12-04T11:55:26.241Z"
"Andersson" "Martin" "Sweden" "-" "No" "2017-12-03T14:57:58.162Z"
"Andersson" "Stefan" "Sweden" "University of Lund" "Yes" "2017-12-01T20:00:00.000Z"
"Andis" "A.Z." "USA" "Yale University" "No" "2017-12-01T20:00:00.000Z"
"Andrea Enrico" "Pia" "UK" "London School of Economics" "Yes" "2017-12-01T20:00:00.000Z"
"Andreasen" "Katarina" "Sweden" "Uppsala University/Biology Education Centre" "Yes" "2017-12-05T18:34:01.876Z"
"Andreoli" "Joseph A." "USA" "University of Florida" "No" "2017-12-01T20:00:00.000Z"
"Andreone" "Franco" "Italy" "Museo Regionale di Scienze Naturali" "Yes" "2017-12-01T20:00:00.000Z"
"Andretti" "Christian" "Brazil" "Pontifícia Universidade Católica do Rio Grande do Sul/ PUCRS" "Yes" "2017-12-01T20:00:00.000Z"
"Andrew" "Fraass" "USA" "Sam Houston State University" "Yes" "2017-12-03T12:01:58.927Z"
"Andrzejczyk" "Nicolette E" "USA" "University of California, Riverside" "Yes" "2017-12-01T20:00:00.000Z"
"Aneiros" "Fernando" "Spain" "University of Vigo" "Yes" "2017-12-12T09:02:45.229Z"
"Angeli" "Nicole Frances" "USA" "Auburn University" "Yes" "2017-12-01T20:00:00.000Z"
"Angert" "Amy L." "Canada" "University of British Columbia" "Yes" "2017-12-01T20:00:00.000Z"
"Angulo" "Ariadne" "Canada" "IUCN SSC Amphibian Specialist Group & Amphibian Survival Alliance" "Yes" "2017-12-01T20:00:00.000Z"
"Anker" "Arthur" "Brazil" "Federal University of Goiás" "Yes" "2017-12-01T20:00:00.000Z"
"Anstett" "Daniel N" "Canada" "University of British Columiba" "Yes" "2017-12-01T20:00:00.000Z"
"Anstis" "Marion" "Australia" "University of Newcastle, NSW" "Yes" "2017-12-01T20:00:00.000Z"
"Anthony" "Carl D" "USA" "John Carroll University" "Yes" "2017-12-01T20:00:00.000Z"
"Antoine" "Paccard" "Canada" "McGill University" "Yes" "2017-12-01T20:00:00.000Z"
"Antonelli" "Anna" "Sweden" "-" "No" "2017-12-01T21:05:09.695Z"
"Antonelli" "Alexandre" "Sweden" "Gothenburg Global Biodiversity Centre" "Yes" "2017-12-01T20:00:00.000Z"
"Antonelli" "Marcelo A." "USA" "University of California Davis" "No" "2017-12-01T20:00:00.000Z"
"Antonio" "Campos-Rocha" "-" "Universidade Estadual de Campinas" "No" "2017-12-02T13:21:05.736Z"
"Antunes" "Maria Nayara" "Brazil" "Universidade do Estado de Mato Grosso" "Yes" "2017-12-01T20:00:00.000Z"
"Antunes" "Pedro M." "Canada" "Algoma University" "Yes" "2017-12-01T20:00:00.000Z"
"Antunes Carvalho" "Fernanda" "Brazil" "Universidade do Rio Grande do Norte" "Yes" "2017-12-01T20:00:00.000Z"
"Anubhav" "Vanamamalai" "India" "Centre for Wildlife Studies" "Yes" "2017-12-01T20:00:00.000Z"
"Anujan" "Krishna" "USA" "Columbia University" "Yes" "2017-12-03T14:08:10.907Z"
"Anzelone" "Marielle" "USA" "PopUP Forest: Times Square" "Yes" "2017-12-01T20:00:00.000Z"
"Aparicio" "Enric" "Spain" "University of Girona" "Yes" "2017-12-01T20:00:00.000Z"
"Apodaca" "Joseph J" "USA" "Tangled Bank Conservation" "Yes" "2017-12-01T20:00:00.000Z"
"Apple" "Jennifer L" "USA" "SUNY Geneseo" "Yes" "2017-12-01T20:00:00.000Z"
"Arana" "Marcelo" "Argentina" "Universidad Nacional de Río Cuarto" "Yes" "2017-12-04T15:30:38.157Z"
"Arana" "Cesar" "Peru" "Museo de Historia Natural; Univ. Nacional Mayor de San Marcos" "Yes" "2017-12-01T20:00:00.000Z"
"Arancibia" "Paulina" "USA/Chile" "Rutgers University" "Yes" "2017-12-01T20:00:00.000Z"
"Arandjelovic" "Mimi" "Germany" "Max Planck Institute for Evolutionary Anthropology" "Yes" "2017-12-01T20:00:00.000Z"
"Araujo" "Daniele Mina" "Brazil" "Universidade do Estado de Mato Grosso" "Yes" "2017-12-01T20:00:00.000Z"
"Arbogast" "Brian Scott" "USA" "University of North Carolina Wilmington" "Yes" "2017-12-01T20:00:00.000Z"
"Arcese" "Peter" "Canada" "University of British Columbia" "Yes" "2017-12-01T20:00:00.000Z"
"Archie" "Andrea" "-" "-" "No" "2017-12-02T23:21:25.911Z"
"Arcila" "Andrea" "Colombia" "Independent reseacher" "No" "2017-12-01T20:00:00.000Z"
"Arcila Marin" "Natalia" "Colombia" "CES University" "Yes" "2017-12-01T20:00:00.000Z"
"Arehov" "Kim" "Sweden" "Lund University" "Yes" "2017-12-02T19:17:41.135Z"
"Arellano" "Lisette" "USA" "Golden Gate National Parks Conservancy" "Yes" "2017-12-04T04:14:40.328Z"
"Arengo" "Felicity" "USA" "American Museum of Natural History" "Yes" "2017-12-01T20:00:00.000Z"
"Arias Becerra" "Joan Salvador" "Argentina" "UEL (CONICET-Fundación Miguel Lillo); Universidad Nacional de Tucumán" "Yes" "2017-12-01T20:00:00.000Z"
"Aristide" "Leandro" "France/Argentina" "École Normal Supérieure" "Yes" "2017-12-01T20:00:00.000Z"
"Armani" "Thalia Larissa" "Brazil" "Universidade do Estado de Mato Grosso" "Yes" "2017-12-01T20:00:00.000Z"
"Armenta" "Tiffany" "USA" "UCLA" "Yes" "2017-12-01T22:24:00.958Z"
"Armitage" "Kevin" "USA" "Miami University of Ohio" "No" "2017-12-01T20:00:00.000Z"
"Armitage" "David" "USA" "University of Notre Dame" "Yes" "2017-12-01T20:00:00.000Z"
"Arnold" "Bryan D." "USA" "Illinois College" "Yes" "2017-12-01T20:00:00.000Z"
"Arnold" "Derek A." "USA" "University of Alaska Fairbanks" "No" "2017-12-01T20:00:00.000Z"
"Arnqvist" "Göran" "Sweden" "Uppsala University" "Yes" "2017-12-01T20:00:00.000Z"
"Arponen" "Anni" "Finland" "University of Helsinki" "Yes" "2017-12-01T20:00:00.000Z"
"Arrolho" "Julia D." "USA" "Yale University" "Yes" "2017-12-01T20:00:00.000Z"
"Arsenault" "Julien" "Canada" "University of Montreal" "Yes" "2017-12-02T17:09:36.519Z"
"Arslan" "Muhammad" "Germany" "Helmholtz Centre for Environmental Research" "Yes" "2017-12-01T20:00:00.000Z"
"Artyushkova" "Kateryna" "USA" "University of New Mexico" "Yes" "2017-12-01T20:00:00.000Z"
"Ascari" "Lucas" "Brazil" "Federal University of Rio de Janeiro" "Yes" "2017-12-03T22:43:27.061Z"
"Asencio" "Shannon" "Canada" "Canadian Museum of Nature" "No" "2017-12-01T20:00:00.000Z"
"Ashley" "Matthew W." "UK" "University of Brighton" "No" "2017-12-01T20:00:00.000Z"
"Ashlock" "Lauren W" "USA" "University of Vermont" "Yes" "2017-12-01T20:00:00.000Z"
"Ashraf" "Uzma" "Pakistan" "College of Earth and Environmental Sciences, University of the Punjab" "Yes" "2017-12-01T20:00:00.000Z"
"Askew" "James" "USA" "University of Southern California" "Yes" "2017-12-01T20:00:00.000Z"
"Astaras" "Christos" "Greece" "Forest Research Institute, ELGO-Demeter" "Yes" "2017-12-01T20:00:00.000Z"
"Astua" "Diego" "Brazil" "Universidade Federal de Pernambuco" "Yes" "2017-12-01T20:00:00.000Z"
"Atashgahi" "Zohreh" "Iran" "Ferdowsi University of Mashhad" "Yes" "2017-12-04T19:15:32.048Z"
"Atkins" "Jeff" "USA" "Virginia Commonwealth University" "Yes" "2017-12-01T20:00:00.000Z"
"Atkinson" "Matthew S." "USA" "University of Central Florida" "No" "2017-12-01T20:00:00.000Z"
"Aubry-Kientz" "Mélaine" "USA" "University of California, Merced" "Yes" "2017-12-01T20:00:00.000Z"
"Augugliaro" "Claudio" "Switzerland" "UNIL" "Yes" "2017-12-05T02:40:04.414Z"
"August-Schmidt" "Elizabeth M." "USA" "University of California, Santa Barbara" "Yes" "2017-12-01T20:00:00.000Z"
"Ausprey" "Ian J." "USA" "University of Florida" "Yes" "2017-12-01T20:00:00.000Z"
"Austen" "Emily" "Canada" "Mount Allison University" "Yes" "2017-12-01T20:00:00.000Z"
"Auteri" "Giorgia G" "USA" "University of Michigan" "Yes" "2017-12-01T20:00:00.000Z"
"Averill" "Colin" "USA" "Boston University" "Yes" "2017-12-01T20:00:00.000Z"
"Avila" "Luciano J." "Argentina" "IPEEC-CONICET" "Yes" "2017-12-01T20:00:00.000Z"
"Avila Jr" "Rubem Samuel" "Brazil" "Universidade Federal do Pampa" "No" "2017-12-01T20:00:00.000Z"
"Avila-Pires" "Teresa C.S." "Brazil" "Museu Paraense Emilio Goeldi" "No" "2017-12-01T20:00:00.000Z"
"Axtner" "Jan" "Germany" "Leibniz Institute for Zoo and Wildlife Research (IZW)" "Yes" "2017-12-01T20:00:00.000Z"
"Ayers" "Megan E." "USA" "Virginia Department of Conservation and Recreation" "Yes" "2017-12-01T20:00:00.000Z"
"Ayres" "Debra R" "USA" "UC Davis" "Yes" "2017-12-01T20:00:00.000Z"
"Azevedo" "Bruna Pereira de" "Brazil" "-" "Yes" "2017-12-01T20:00:00.000Z"
"Bacci" "Lucas F." "Brazil" "Universidade Estadual de Campinas" "Yes" "2017-12-01T20:00:00.000Z"
"Bäckstrand" "Karin" "Sweden" "Stockholm university" "Yes" "2017-12-02T15:26:20.073Z"
"Bacon" "Christine" "Sweden" "University of Gothenburg" "Yes" "2017-12-01T20:00:00.000Z"
"Baden" "Susanne" "Sweden" "Univeristy of Gothenburg" "Yes" "2017-12-01T20:00:00.000Z"
"Badgley" "Catherine" "USA" "University of Michigan" "Yes" "2017-12-03T23:44:17.506Z"
"Baeckens" "Simon" "USA" "Harvard University" "Yes" "2017-12-01T20:00:00.000Z"
"Baêta" "Délio" "Brazil" "Museu Nacional - MNRJ" "Yes" "2017-12-01T20:00:00.000Z"
"Báez" "Selene" "Ecuador" "Escuela Politécnica Nacional" "Yes" "2017-12-06T02:09:46.372Z"
"Báez Lizarazo" "Mabel R." "Brazil" "Universidade Federal do Rio Grande do Sul" "Yes" "2017-12-01T20:00:00.000Z"
"Bagaturov" "Mikhail F." "Russia" "Athens Institute For Education & Research" "Yes" "2017-12-01T20:00:00.000Z"
"Bahm" "Matt" "USA" "Institute for Applied Ecology" "Yes" "2017-12-01T20:00:00.000Z"
"Baider" "Claudia" "Mauritius" "The Mauritius Herbarium" "Yes" "2017-12-01T20:00:00.000Z"
"Baier" "Felix" "USA" "Harvard University" "Yes" "2017-12-01T20:00:00.000Z"
"Bailey" "Liam D." "Netherlands" "Netherlands Institute of Ecology (NIOO-KNAW)" "Yes" "2017-12-01T20:00:00.000Z"
"Bailey" "C. Donovan" "USA" "New Mexico State University" "Yes" "2017-12-01T20:00:00.000Z"
"Baker" "William J." "UK" "Royal Botanic Gardens, Kew" "Yes" "2017-12-01T20:00:00.000Z"
"Baker" "Paul" "USA" "Duke University" "Yes" "2017-12-01T20:00:00.000Z"
"Bakker" "Victoria" "USA" "Montana State University" "Yes" "2017-12-01T20:00:00.000Z"
"Balcells" "Maria Mercedes" "Argentina" "University of Buenos Aires" "Yes" "2017-12-01T20:00:00.000Z"
"Baldo" "Diego" "Argentina" "Instituto de Biología Subtropical (CONICET-UNaM)" "Yes" "2017-12-01T20:00:00.000Z"
"Baldwin" "Carole C." "USA" "Smithsonian Institution" "Yes" "2017-12-01T20:00:00.000Z"
"Ballare" "Kimberly" "USA" "University of Texas at Austin" "Yes" "2017-12-01T20:00:00.000Z"
"Ballen" "Gustavo" "Brazil" "Universidade de São Paulo " "Yes" "2017-12-02T12:11:09.493Z"
"Ban" "Stephen S" "Canada" "British Columbia Ministry of Environment" "Yes" "2017-12-01T20:00:00.000Z"
"Banhos" "Aureo" "Brazil" "Univesidade Federal do Espírito Santo" "Yes" "2017-12-03T13:59:31.201Z"
"Baranov" "Viktor" "Germany" "Senckenberg Research Institute" "Yes" "2017-12-02T20:06:25.801Z"
"Barba-Herrera" "Sonia" "France" "University Pierre et Marie Curie, Paris" "Yes" "2017-12-03T22:53:45.311Z"
"Barber" "Nicholas A." "USA" "Northern Illinois University" "Yes" "2017-12-01T20:00:00.000Z"
"Barberi" "Maira" "Brazil" "Pontificia Universodade Catolica de Goiás" "Yes" "2017-12-02T18:52:47.311Z"
"Barbier" "Eder" "Brazil" "Federal University of Pernambuco" "Yes" "2017-12-01T20:00:00.000Z"
"Barbosa" "Daniele Freitas" "Brazil" "Universidade do Estado de Mato Grosso" "Yes" "2017-12-01T20:00:00.000Z"
"Barbosa" "Newton P. U." "Brazil" "Universidade Federal de Minas Gerais" "Yes" "2017-12-01T20:00:00.000Z"
"Barbosa" "Flavia" "USA" "Lake Forest College" "Yes" "2017-12-01T20:00:00.000Z"
"Barca" "Erin" "USA" "-" "No" "2017-12-01T20:00:00.000Z"
"Barden" "Phillip" "USA" "New Jersey Institute of Technology" "Yes" "2017-12-01T20:00:00.000Z"
"Barela" "Isidro A." "USA" "Mississippi State University" "Yes" "2017-12-01T20:00:00.000Z"
"Barendse" "William" "Australia" "University of Queensland" "Yes" "2017-12-01T20:00:00.000Z"
"Barfod" "Anders S." "Denmark" "Dept. of Bioscience, Aarhus University" "Yes" "2017-12-01T20:00:00.000Z"
"Barker" "Nicole" "Canada" "University of Alberta" "Yes" "2017-12-01T20:00:00.000Z"
"Barker" "F. Keith" "USA" "University of Minnesota" "Yes" "2017-12-01T20:00:00.000Z"
"Barker" "Kristin J" "USA" "University of Montana" "Yes" "2017-12-01T20:00:00.000Z"
"Barlow" "John" "USA" "University of Vermont" "Yes" "2017-12-01T20:00:00.000Z"
"Barnard" "Malcolm A." "USA" "University of Georgia" "Yes" "2017-12-01T20:00:00.000Z"
"Barnett" "Ross" "UK" "The University of Durham" "Yes" "2017-12-01T20:00:00.000Z"
"Barnosky" "Anthony" "USA" "Stanford University" "Yes" "2017-12-05T03:35:58.262Z"
"Barraclough" "Rosemary K" "New Zealand" "University of Auckland" "Yes" "2017-12-01T20:00:00.000Z"
"Barrasso" "Diego A" "Argentina" "IDEAus - CONICET" "Yes" "2017-12-01T20:00:00.000Z"
"Barrientos Correa" "Lucas Santiago" "Colombia" "Universidad de los Andes" "Yes" "2017-12-01T20:00:00.000Z"
"Barrios-Izás" "Manuel A." "Guatemala" "Instituto de Investigaciones, Zacapa" "Yes" "2017-12-01T20:00:00.000Z"
"Barros" "Marília A. S." "Brazil" "Universidade Federal de Pernambuco" "Yes" "2017-12-01T20:00:00.000Z"
"Barros" "Ceres" "Canada" "University of British Columbia" "Yes" "2017-12-01T20:00:00.000Z"
"Barroso de Morais" "Erica" "Switzerland" "University of Zurich" "No" "2017-12-01T20:00:00.000Z"
"Barrow" "Lisa N." "USA" "University of New Mexico" "Yes" "2017-12-01T20:00:00.000Z"
"Barta" "Daniel E." "USA" "American Museum of Natural History" "Yes" "2017-12-01T20:00:00.000Z"
"Barthel" "Leon M. F." "Germany" "Leibniz Institute for Zoo and Wildlife Research" "Yes" "2017-12-01T20:00:00.000Z"
"Barthelmess" "Erika L" "USA" "St. Lawrence University" "Yes" "2017-12-01T20:00:00.000Z"
"Bartholomei-Santos" "Marlise L." "Brazil" "Universidade Federal de Santa Maria" "Yes" "2017-12-01T20:00:00.000Z"
"Bartish" "Igor" "Czechia" "Institute of Botany" "Yes" "2017-12-05T13:18:34.367Z"
"Barton" "Christine M." "USA" "-" "No" "2017-12-01T20:00:00.000Z"
"Barton" "Daniel C." "USA" "Humboldt State University" "Yes" "2017-12-01T20:00:00.000Z"
"Barton" "Andrew" "USA" "University of Maine at Farmington" "Yes" "2017-12-01T20:00:00.000Z"
"Baruah" "Gaurav" "Switzerland" "University of Zurich" "Yes" "2017-12-01T20:00:00.000Z"
"Baselga" "Andrés" "Spain" "University of Santiago de Compostela" "Yes" "2017-12-01T20:00:00.000Z"
"Bashforth" "Arden" "Denmark" "Natural History Museum of Denmark" "Yes" "2017-12-01T20:00:00.000Z"
"Bassing" "Sarah" "USA" "University of Washington" "Yes" "2017-12-02T14:39:44.526Z"
"Basso" "Nestor G" "Argentina" "IDEAus - CONICET" "Yes" "2017-12-01T20:00:00.000Z"
"Bastin" "Lucy" "UK" "Aston University" "Yes" "2017-12-01T20:00:00.000Z"
"Batista" "Romina" "Brazil" "Instituto Nacional de Pesquisas da Amazônia" "Yes" "2017-12-01T20:00:00.000Z"
"Batista" "João A. N." "Brazil" "Universidade Federal de Minas Gerais" "Yes" "2017-12-01T20:00:00.000Z"
"Battey" "C.J." "USA" "University of Washington, Seattle" "Yes" "2017-12-01T20:00:00.000Z"
"Bauder" "Ellen T" "USA" "San Diego State University" "Yes" "2017-12-01T20:00:00.000Z"
"Bauer" "Franziska" "Germany" "Senckenberg Natural History Collections Dresden, Museum of Zoology" "Yes" "2017-12-01T20:00:00.000Z"
"Bauer" "Nicholas C." "USA" "Massachusetts General Hospital" "Yes" "2017-12-01T20:00:00.000Z"
"Bauer" "Aaron M." "USA" "Villanova University" "Yes" "2017-12-01T20:00:00.000Z"
"Baughman" "Owen" "USA" "University of Nevada" "Yes" "2017-12-04T17:25:43.434Z"
"Baum" "Julia" "Canada" "University of Victoria, BC" "Yes" "2017-12-01T20:00:00.000Z"
"Bean" "William T." "USA" "Humboldt State University" "Yes" "2017-12-01T20:00:00.000Z"
"Beard" "J. Andrew" "USA" "University of Connecticut" "Yes" "2017-12-01T20:00:00.000Z"
"Beard" "Karen H." "USA" "Utah State University" "Yes" "2017-12-01T20:00:00.000Z"
"Beatty " "Christopher " "USA" "-" "Yes" "2017-12-03T16:44:15.103Z"
"Beauvais " "Marie-Pierre" "Canada" "Université de Montréal" "Yes" "2017-12-02T17:29:16.031Z"
"Beck" "Allison" "USA" "Black Hawk College" "Yes" "2017-12-01T20:00:00.000Z"
"Beck" "Peter" "USA" "St. Edward's University" "Yes" "2017-12-01T20:00:00.000Z"
"Beckerman" "Andrew P." "UK" "University of Sheffield" "Yes" "2017-12-01T20:00:00.000Z"
"Beckman" "Noelle G." "USA" "Utah State University" "Yes" "2017-12-01T20:00:00.000Z"
"Bedoya" "Ana Maria" "Colombia" "University of Washington" "Yes" "2017-12-03T01:08:22.907Z"
"Bégin" "Chantale" "USA" "University of South Florida" "Yes" "2017-12-01T20:00:00.000Z"
"Behrensmeyer" "Anna" "USA" "Smithsonian Institution" "Yes" "2017-12-02T03:35:49.848Z"
"Bekkouche" "Nicolas" "France" "-" "Yes" "2017-12-01T20:00:00.000Z"
"Bell" "Rachel" "USA" "University of Massachusetts Amherst" "Yes" "2017-12-01T20:00:00.000Z"
"Bell to" "Charles" "USA" "University of New Orleans" "Yes" "2017-12-01T20:00:00.000Z"
"Ben-David" "Merav" "USA" "University of Wyoming" "Yes" "2017-12-01T20:00:00.000Z"
"Benander" "Bertil" "Sweden" "-" "No" "2017-12-01T20:00:00.000Z"
"Benbow" "Mark" "USA" "Michigan State University" "Yes" "2017-12-02T12:43:18.366Z"
"Benca" "Jeffrey P." "USA" "University of California, Berkeley" "Yes" "2017-12-01T20:00:00.000Z"
"Bendiksby" "Mika" "Norway" "NTNU University museum" "Yes" "2017-12-01T20:00:00.000Z"
"Benkman" "Craig" "USA" "University of Wyoming" "No" "2017-12-01T20:00:00.000Z"
"Bennett" "Joseph R." "Canada" "Carleton University" "Yes" "2017-12-01T20:00:00.000Z"
"Bennett" "Amy C." "UK" "University of Leeds" "Yes" "2017-12-01T20:00:00.000Z"
"Bennett" "Dominic J." "UK/Ireland" "Gothenburg Global Biodiversity Centre" "Yes" "2017-12-01T20:00:00.000Z"
"Bennett" "Brittany" "USA" "University of Hawaii" "Yes" "2017-12-01T22:52:28.260Z"
"Bennett" "Kevin" "USA" "University of Maryland" "Yes" "2017-12-01T20:00:00.000Z"
"Bennett" "Breanna" "USA" "Villanova University" "Yes" "2017-12-02T04:02:03.161Z"
"Bentley" "Blair P." "Australia" "University of Western Australia" "Yes" "2017-12-01T20:00:00.000Z"
"Bentley" "Andrew" "USA" "University of Kansas" "Yes" "2017-12-01T20:00:00.000Z"
"Bento" "Karla Bianca" "Brazil" "Universidade do Estado de Mato Grosso" "Yes" "2017-12-01T20:00:00.000Z"
"Berardini" "Tanya" "USA" "Phoenix Bioinformatics" "Yes" "2017-12-01T20:00:00.000Z"
"Berg" "David J." "USA" "Miami Univeristy, Ohio" "Yes" "2017-12-01T20:00:00.000Z"
"Berger" "Anne" "Germany" "Leibniz-Institute for Zoo and Wildlife Research" "Yes" "2017-12-01T20:00:00.000Z"
"Berger" "Josef S." "Sweden" "Lund University" "Yes" "2017-12-01T20:00:00.000Z"
"Berggren" "Matz" "Sweden" "University of Göteborg" "Yes" "2017-12-02T11:19:35.487Z"
"Berglund" "Helena" "Sweden" "Lund university" "Yes" "2017-12-06T16:17:49.707Z"
"Bergström" "Ulf" "Sweden" "Swedish University of Agricultural Sciences" "Yes" "2017-12-01T20:00:00.000Z"
"Berkley" "Nicholas" "UK" "University of Plymouth" "Yes" "2017-12-02T15:14:15.250Z"
"Bernacchi" "Carl J" "USA" "University of Illinois, Urbana-Champaign" "Yes" "2017-12-01T20:00:00.000Z"
"Bernal" "Ximena" "USA" "Purdue University" "Yes" "2017-12-01T20:00:00.000Z"
"Berneck" "Bianca V. M." "Brazil" "Universidade Estadual Paulista" "Yes" "2017-12-01T20:00:00.000Z"
"Berney" "Catherine" "Switzerland" "University of Lausanne" "No" "2017-12-02T19:29:57.962Z"
"Bernier" "Arielle" "Canada" "University of Northern British Columbia" "Yes" "2017-12-01T20:00:00.000Z"
"Bernstein" "Justin" "USA" "Rutgers University-Newark" "Yes" "2017-12-01T20:00:00.000Z"
"Berthoud" "Yannick" "Switzerland" "-" "No" "2017-12-08T11:09:15.064Z"
"Berthrong" "Sean T." "USA" "Butler University" "Yes" "2017-12-01T20:00:00.000Z"
"Bertola" "Laura" "USA" "City University of New York" "Yes" "2017-12-01T20:00:00.000Z"
"Bertolino" "Sandro" "Italy" "University of Turin" "Yes" "2017-12-01T20:00:00.000Z"
"Bertrand" "Joris A. M." "Switzerland" "University of Lausanne" "No" "2017-12-01T20:00:00.000Z"
"Bertsch" "Hans" "USA" "LA Co Museum Natural History" "No" "2017-12-01T20:00:00.000Z"
"Berv" "Jacob Samuel" "USA" "Cornell University" "Yes" "2017-12-01T20:00:00.000Z"
"Bessa" "Carla" "Argentina" "INALI- CONICET" "Yes" "2017-12-01T20:00:00.000Z"
"Best" "Barbara" "USA" "New Mexico State University" "Yes" "2017-12-01T20:00:00.000Z"
"Bētiņa " "Ginta " "Latvia" "-" "No" "2017-12-04T21:05:47.099Z"
"Betto-Colliard" "Caroline" "Switzerland" "CUSO" "Yes" "2017-12-04T14:29:58.239Z"
"Betts" "Joel" "USA" "Michigan State University" "Yes" "2017-12-02T16:03:32.427Z"
"Bevington" "John M." "USA" "Moravian College, Dept. Biological Sciences" "Yes" "2017-12-01T20:00:00.000Z"
"Biber" "Matthias F." "Germany" "SBiK-F" "Yes" "2017-12-01T20:00:00.000Z"
"Bickford" "David" "USA" "University of La Verne" "Yes" "2017-12-01T20:00:00.000Z"
"Biederman" "Lori" "USA" "Iowa State University" "Yes" "2017-12-01T20:00:00.000Z"
"Bijmoer" "Roxali" "Netherlands" "Naturalis Biodiversity Center, Leiden" "Yes" "2017-12-01T20:00:00.000Z"
"Bilgin" "C.Can" "Turkey" "Middle East Technical University" "Yes" "2017-12-01T20:00:00.000Z"
"Bills" "Christy" "USA" "Natural History Museum of Utah" "No" "2017-12-01T20:00:00.000Z"
"Binns" "John F" "USA" "International Reptile Conservation Foundation" "No" "2017-12-01T20:00:00.000Z"
"Birge" "Tiffany" "USA" "Old Dominion University, Graduate Student, Biological Sciences" "Yes" "2017-12-01T20:00:00.000Z"
"Birks" "Sharon" "USA" "University of Washington, Seattle" "Yes" "2017-12-01T20:00:00.000Z"
"Bisang" "Irene" "Sweden" "Swedish Museum of Natural History" "Yes" "2017-12-03T13:30:21.410Z"
"Bishop" "Phillip" "New Zealand" "Univeristy of Otago" "Yes" "2017-12-02T12:37:32.194Z"
"Bishop" "Tom R" "South Africa" "University of Pretoria" "Yes" "2017-12-01T20:00:00.000Z"
"Bissessur" "Prishnee" "Mauritius" "University of Mauritius" "Yes" "2017-12-01T20:00:00.000Z"
"Bitencourt" "Cássia" "Brazil" "Universidade Estadual de Feira de Santana" "Yes" "2017-12-02T22:07:40.339Z"
"Bittner" "Steven M." "USA" "University of Oklahoma" "Yes" "2017-12-01T20:00:00.000Z"
"Björk" "Robert" "Sweden" "University of Gothenburg" "Yes" "2017-12-01T20:00:00.000Z"
"Blach-Overgaard" "Anne" "Denmark" "Center for Biodiversity Dynamics In a Changing World (BIOCHANGE), Department of Bioscience, Aarhus University" "Yes" "2017-12-01T20:00:00.000Z"
"Blackburn" "Daniel G." "USA" "Trinity College, Hartford" "Yes" "2017-12-01T20:00:00.000Z"
"Blackmon" "Nisa" "USA" "Illinois Wesleyan University" "Yes" "2017-12-01T20:00:00.000Z"
"Blackthron" "Rhianna" "Australia" "Australian National University" "Yes" "2017-12-01T20:00:00.000Z"
"Blake" "Max" "UK" "Forest Research" "Yes" "2017-12-01T20:00:00.000Z"
"Blake" "Klocke" "USA" "George Mason University" "Yes" "2017-12-01T20:00:00.000Z"
"Blanco-Pastor" "José Luis" "France" "INRA" "Yes" "2017-12-01T20:00:00.000Z"
"Blank" "Dorotea" "Sweden" "Chalmers" "No" "2017-12-02T13:05:35.225Z"
"Blarquez" "Olivier" "Canada" "Université de Montréal" "Yes" "2017-12-01T20:00:00.000Z"
"Bleakley" "Bronwyn H." "USA" "Stonehill College" "Yes" "2017-12-01T20:00:00.000Z"
"Blichaska" "Malgorzata" "Sweden" "Uppsala University" "Yes" "2017-12-02T13:19:55.809Z"
"Blickley" "Jessica L" "USA" "Occidental College" "Yes" "2017-12-01T20:00:00.000Z"
"Block" "Nicholas" "USA" "Stonehill College" "Yes" "2017-12-01T20:00:00.000Z"
"Block" "Kristin" "USA" "University of Arizona" "Yes" "2017-12-01T20:00:00.000Z"
"Blois" "Jessica L." "USA" "University of California Merced" "Yes" "2017-12-01T20:00:00.000Z"
"Blom" "Mozes P.K." "Sweden" "Naturhistoriska Riksmuseet" "Yes" "2017-12-01T20:00:00.000Z"
"Bloom" "Steve" "USA" "none" "Yes" "2017-12-01T20:00:00.000Z"
"Bloom" "Devin" "USA" "Western Michigan University" "Yes" "2017-12-01T20:00:00.000Z"
"Boakes" "Elizabeth" "UK" "Centre for Biodiversity and Environment Research, UCL" "Yes" "2017-12-01T20:00:00.000Z"
"Bobiwash" "Kyle" "Canada" "Simon Fraser University" "Yes" "2017-12-01T20:00:00.000Z"
"Bochorny" "Thuane" "Brazil" "Universidade Estadual de Campinas" "Yes" "2017-12-01T20:00:00.000Z"
"Bocksberger" "Gaëlle" "Germany" "Max Planck Institute for Evolutionary Anthropology" "No" "2017-12-01T20:00:00.000Z"
"Boden" "Rich" "UK" "University of Plymouth" "Yes" "2017-12-01T20:00:00.000Z"
"Bodensteiner" "Brooke L." "USA" "Virginia Tech" "Yes" "2017-12-01T20:00:00.000Z"
"Boehm" "Mannfred M. A." "Canada" "Biodiversity Resarch Centre, University of British Columbia" "Yes" "2017-12-01T20:00:00.000Z"
"Boehm" "Emily" "USA" "Duke University" "Yes" "2017-12-01T20:00:00.000Z"
"Boekhout" "Teun" "Netherlands" "Westerdijk Fungal Biodiversity Institute" "Yes" "2017-12-01T20:00:00.000Z"
"Boersma" "P. Dee" "USA" "University of Washington" "No" "2017-12-01T20:00:00.000Z"
"Boesch" "Christophe" "Germany" "Max-Planck-Institute for evolutionary Anthropology" "Yes" "2017-12-01T20:00:00.000Z"
"Boessenkool" "Sanne" "Norway" "University of Oslo" "Yes" "2017-12-01T20:00:00.000Z"
"Bogan" "Arthur E." "USA" "North Carolina Museum of Natural Sciences" "Yes" "2017-12-01T20:00:00.000Z"
"Bohlin" "Tobias" "-" "-" "No" "2017-12-04T06:24:19.243Z"
"Bohlman" "Stephanie" "USA" "University of Florida" "Yes" "2017-12-01T20:00:00.000Z"
"Böhnert" "Tim" "Germany" "University of Bonn" "Yes" "2017-12-04T10:34:21.506Z"
"Boiko" "Dmitrijs" "Latvia" "Natural History museum of Latvia" "Yes" "2017-12-05T17:32:23.435Z"
"Boles" "Sara E." "USA" "University of California, Davis" "Yes" "2017-12-01T20:00:00.000Z"
"Bolin" "Vivi" "UK" "-" "Yes" "2017-12-03T12:06:14.620Z"
"Bolivar" "Paulina" "Mexico" "Uppsala University" "No" "2017-12-01T20:00:00.000Z"
"Bôlla" "Daniela" "Brazil" "Instituto Nacional de Pesquisas da Amazônia" "Yes" "2017-12-01T20:00:00.000Z"
"Bollivar" "David" "USA" "Illinois Wesleyan University" "Yes" "2017-12-01T20:00:00.000Z"
"Bombaci" "Sara" "USA" "Colorado State University" "Yes" "2017-12-01T20:00:00.000Z"
"Bombarely" "Aureliano" "USA" "
Virginia Polytechnic Institute and State University" "Yes" "2017-12-01T20:00:00.000Z"
"Bonaldo" "Alexandre" "Brazil" "Museu Paraense Emílio Goeldi" "Yes" "2017-12-01T20:00:00.000Z"
"Bongalov" "Boris" "Bulgaria" "University of Cambridge" "Yes" "2017-12-01T20:00:00.000Z"
"Boniface" "Adrien" "France" "Université de Lyon" "Yes" "2017-12-01T20:00:00.000Z"
"Bonneau" "Laurie J" "USA" "Trinity College Hartford CT" "Yes" "2017-12-01T20:00:00.000Z"
"Bonnet" "Timothee" "Australia" "Australian National University" "Yes" "2017-12-01T20:00:00.000Z"
"Bontrager" "Megan" "Canada" "University of British Columbia" "Yes" "2017-12-04T18:19:14.938Z"
"Boone" "Michelle" "USA" "Miami University" "No" "2017-12-01T20:00:00.000Z"
"Borcherding" "Jost" "Germany" "Institute for Zoology, University of Cologne" "Yes" "2017-12-01T20:00:00.000Z"
"Borden" "Jesse" "USA" "University of Florida" "Yes" "2017-12-02T01:06:15.100Z"
"Borges" "Lucas Aparecido" "Brazil" "Universidade do Estado de Mato Grosso" "Yes" "2017-12-01T20:00:00.000Z"
"Borges" "Jhennifer Stefany da Silva" "Brazil" "Universidade do Estado de Mato Grosso" "Yes" "2017-12-01T20:00:00.000Z"
"Borges" "Paulo" "Portugal" "Universidade dos Açores" "Yes" "2017-12-01T20:00:00.000Z"
"Borja-Acosta" "Kevin-Giancarlo" "Colombia" "Instituto de Investigacion de Recursos Biológicos Alexander von Humboldt" "Yes" "2017-12-01T20:00:00.000Z"
"Borkin" "Leo J" "Russia" "Zoological Institute, Russian Academy of Sciences" "Yes" "2017-12-01T20:00:00.000Z"
"Bornschein" "Marcos R." "Brazil" "Universidade Estadual Paulista" "Yes" "2017-12-01T20:00:00.000Z"
"Borowy" "Dorothy" "USA" "University of Maryland, Baltimore County" "Yes" "2017-12-01T20:00:00.000Z"
"Borregaard" "Michael" "Denmark" "University of Copenhagen" "Yes" "2017-12-01T20:00:00.000Z"
"Borrelle" "Stephanie" "New Zealand" "Auckland University of Technology" "Yes" "2017-12-01T20:00:00.000Z"
"Borzée" "Amaël" "Republic Of Korea" "Seoul National University" "Yes" "2017-12-01T20:00:00.000Z"
"Bossart" "Janice" "USA" "Southeastern Louisiana University" "Yes" "2017-12-01T20:00:00.000Z"
"Boström" "Sven" "Sweden" "Swedish Museum of Natural History" "Yes" "2017-12-02T14:04:55.736Z"
"Bota-Sierra" "Cornelio Andrés" "Colombia" "Universidad de Antioquia" "Yes" "2017-12-01T20:00:00.000Z"
"Bötzl" "Fabian" "Germany" "University of Würzburg" "Yes" "2017-12-01T20:00:00.000Z"
"Boucher" "Florian C." "South Africa" "Stellenbosch University" "Yes" "2017-12-01T20:00:00.000Z"
"Bougie" "Tiffany" "USA" "University of Wisconsin Madison" "Yes" "2017-12-01T20:00:00.000Z"
"Bourbour" "Ryan P" "USA" "University of California, Davis" "Yes" "2017-12-01T20:00:00.000Z"
"Bourgeois" "Yann" "United Arab Emirates" "New York University Abu Dhabi" "Yes" "2017-12-01T20:00:00.000Z"
"Bourlat" "Sarah J." "Sweden" "University of Gothenburg" "Yes" "2017-12-01T20:00:00.000Z"
"Boussard" "Aurèle" "France" "University of burgundy" "Yes" "2017-12-03T10:39:50.028Z"
"Boussau" "Bastien" "France" "CNRS, LBBE, Université Lyon 1" "No" "2017-12-01T20:00:00.000Z"
"Bouzid" "Nassima" "USA" "Burke Museum of Natural History and Culture, University of Washington, Seattle" "Yes" "2017-12-01T20:00:00.000Z"
"Bowman" "Michelle" "Canada" "Forensecolgy" "Yes" "2017-12-01T20:00:00.000Z"
"Bowman" "Samuel R." "USA" "New York University" "Yes" "2017-12-01T20:00:00.000Z"
"Boyce" "Andy J." "USA" "University of Montana" "Yes" "2017-12-01T20:00:00.000Z"
"Boyles" "Justin" "USA" "Southern Illinois University" "Yes" "2017-12-01T20:00:00.000Z"
"Bradley" "Bethany" "USA" "University of Massachusetts, Amherst" "Yes" "2017-12-01T20:00:00.000Z"
"Brady" "Jennifer S." "USA" "Colorado State University" "Yes" "2017-12-01T20:00:00.000Z"
"Brady" "Matthew L." "USA" "Louisiana State University Museum of Natural Science" "Yes" "2017-12-01T20:00:00.000Z"
"Brady" "Steven" "USA" "Southern Connecticut State University" "Yes" "2017-12-01T20:00:00.000Z"
"Brady" "Valerie J" "USA" "University of Minnesota Duluth" "Yes" "2017-12-01T20:00:00.000Z"
"Braga" "Caryne" "Brazil" "Universidade Federal do Rio de Janeiro" "Yes" "2017-12-01T20:00:00.000Z"
"Braker" "Elizabeth" "USA" "Occidental College" "Yes" "2017-12-01T20:00:00.000Z"
"Branch" "Trevor A" "USA" "University of Washington, Seattle" "Yes" "2017-12-01T20:00:00.000Z"
"Brandl" "Simon" "Canada" "Simon Fraser University" "Yes" "2017-12-01T20:00:00.000Z"
"Brannelly" "Laura" "USA" "University of Pittsburgh" "Yes" "2017-12-01T20:00:00.000Z"
"Brannick" "Alexandria" "USA" "University of Washington, Seattle" "Yes" "2017-12-01T20:00:00.000Z"
"Brasil" "Leandro S." "Brazil" "Universidade Federal do Pará" "Yes" "2017-12-01T20:00:00.000Z"
"Brasileiro" "Cinthia A" "Brazil" "Universidade Federal de São Paulo" "Yes" "2017-12-01T20:00:00.000Z"
"Braun" "Michael J." "USA" "Smithsonian Institution" "No" "2017-12-01T20:00:00.000Z"
"Braun" "Edward Louis" "USA" "University of Florida" "Yes" "2017-12-01T20:00:00.000Z"
"Bravo" "Adriana" "Canada" "Royal Ontario Museum" "Yes" "2017-12-01T20:00:00.000Z"
"Bravo" "Carolina" "Spain" "Museo Nacional de Ciencias Naturales" "Yes" "2017-12-01T20:00:00.000Z"
"Bravo" "Gustavo A." "USA" "Harvard University" "Yes" "2017-12-01T20:00:00.000Z"
"Braz" "Henrique" "Brazil" "Instituto Butantan" "Yes" "2017-12-01T22:00:38.436Z"
"Breckheimer" "Ian K" "USA" "Harvard University" "Yes" "2017-12-01T20:00:00.000Z"
"Breitburg" "Denise" "USA" "Smithsonian Environmental Research Center" "Yes" "2017-12-01T20:00:00.000Z"
"Brenes Coto" "Jose Pablo" "Costa Rica" "-" "No" "2017-12-05T18:19:28.320Z"
"Brennan" "Reid" "USA" "University of Vermont" "Yes" "2017-12-01T20:00:00.000Z"
"Brenowitz" "Eliot A" "USA" "University of Washington" "Yes" "2017-12-01T20:00:00.000Z"
"Bressi" "Nicola" "Italy" "Natural History Museum Trieste" "Yes" "2017-12-04T07:36:21.527Z"
"Bret-Harte" "M. Syndonia" "USA" "University of Alaska Fairbanks" "Yes" "2017-12-01T20:00:00.000Z"
"Brevik" "Kristian" "USA" "University of Vermont" "No" "2017-12-01T20:00:00.000Z"
"Briggs" "Cheryl" "USA" "University of California, Santa Barbara" "No" "2017-12-01T20:00:00.000Z"
"Brightly" "William H." "USA" "University of Washington" "No" "2017-12-01T20:00:00.000Z"
"Brigitte" "Nyirambangutse" "Rwanda" "University of Rwanda" "Yes" "2017-12-01T20:00:00.000Z"
"Brito" "Daniel" "Brazil" "Universidade Federal de Goiás" "Yes" "2017-12-01T20:00:00.000Z"
"Broadbent" "Eben" "USA" "University of Florida" "Yes" "2017-12-11T21:50:41.479Z"
"Brochu" "Christopher" "USA" "University of Iowa" "Yes" "2017-12-01T20:00:00.000Z"
"Brock" "Kinsey" "USA" "University of California, Merced" "Yes" "2017-12-03T04:42:00.801Z"
"Brodie" "Edmund" "USA" "University of Virginia " "Yes" "2017-12-03T13:30:32.761Z"
"Brodin" "Tomas" "Sweden" "Umeå University" "Yes" "2017-12-03T10:08:12.460Z"
"Brodsky" "Emily" "USA" "Sterling College" "Yes" "2017-12-01T20:00:00.000Z"
"Bronson" "Allison W." "USA" "American Museum of Natural History" "Yes" "2017-12-01T20:00:00.000Z"
"Brooks" "Andrew W." "USA" "Vanderbilt University" "Yes" "2017-12-01T20:00:00.000Z"
"Brotz" "Lucas M." "Canada" "University of British Columbia" "Yes" "2017-12-01T20:00:00.000Z"
"Brower" "Barbara" "-" "Portland State University" "Yes" "2017-12-01T20:00:00.000Z"
"Brower" "Lincoln P." "USA" "Sweet Briar College" "Yes" "2017-12-01T20:00:00.000Z"
"Brown" "Katie" "Canada" "University of Toronto" "Yes" "2017-12-02T21:45:42.972Z"
"Brown" "Joseph W." "UK" "University of Sheffield" "Yes" "2017-12-01T20:00:00.000Z"
"Brown" "Jeremy M." "USA" "Louisiana State University" "Yes" "2017-12-02T17:53:04.161Z"
"Brown" "Clare" "USA" "Louisiana State University" "Yes" "2017-12-01T22:47:07.092Z"
"Brown" "Mary" "USA" "Rainforest Trust" "No" "2017-12-04T15:38:42.355Z"
"Brown" "Alissa J" "USA" "University of North Carolina at Chapel Hill" "Yes" "2017-12-01T20:00:00.000Z"
"Brown" "Donald J." "USA" "West Virginia University" "Yes" "2017-12-01T20:00:00.000Z"
"Browne" "Luke M" "USA" "University of California, Los Angeles" "Yes" "2017-12-01T20:00:00.000Z"
"Bruce" "Rannala" "USA" "UC Davis" "Yes" "2017-12-02T18:34:53.958Z"
"Brumbaugh" "Daniel" "USA" "University of California, Santa Cruz" "Yes" "2017-12-01T20:00:00.000Z"
"Brumfield" "Robb" "USA" "Louisiana State University" "Yes" "2017-12-01T20:00:00.000Z"
"Bruner" "Sarah" "USA" "Columbia University" "Yes" "2017-12-01T20:00:00.000Z"
"Brunner" "Rebecca" "USA" "University of California" "Yes" "2017-12-02T00:41:58.502Z"
"Brus" "Evan" "USA" "Arizona State University" "Yes" "2017-12-01T20:00:00.000Z"
"Brusa" "Francisco" "Argentina" "Museo de La Plata" "Yes" "2017-12-01T20:00:00.000Z"
"Brusch" "George" "USA" "Arizona State University" "Yes" "2017-12-01T20:00:00.000Z"
"Bruxaux" "Jade" "France" "University of Toulouse III - Paul Sabatier" "Yes" "2017-12-01T20:00:00.000Z"
"Bryant" "Laurie J." "USA" "USDOI, Bureau of Land Management (ret.)" "Yes" "2017-12-01T20:00:00.000Z"
"Buchholtz" "Erin" "USA" "Texas A&M University" "Yes" "2017-12-01T20:00:00.000Z"
"Buckeridge" "Kate M." "UK" "Lancaster University" "Yes" "2017-12-01T20:00:00.000Z"
"Buenaventura" "Eliana" "USA/Colombia" "Smithsonian Institution, National Museum of Natural History" "Yes" "2017-12-01T20:00:00.000Z"
"Bueno" "Marcelo L." "Brazil" "Universidade Federal de Viçosa" "Yes" "2017-12-01T20:00:00.000Z"
"Buffalo" "Vincent S." "USA" "University of California, Davis" "Yes" "2017-12-01T20:00:00.000Z"
"Buffam" "Ishi" "USA" "University of Cincinnati" "Yes" "2017-12-01T20:00:00.000Z"
"Buitrago-González" "Wolfgang" "Colombia" "Universidad del Quindío" "Yes" "2017-12-01T20:00:00.000Z"
"Buitrago-Rosas" "Daniel" "Panama/USA" "University of Massachusetts Boston" "Yes" "2017-12-01T20:00:00.000Z"
"Bukejs" "Andris" "Latvia" "Daugavpils University" "Yes" "2017-12-05T06:54:40.520Z"
"Bulkan" "Janette" "Canada" "University of British Columbia" "No" "2017-12-01T20:00:00.000Z"
"Buma" "Audrey" "USA" "N/A" "No" "2017-12-01T20:00:00.000Z"
"Buma" "Brian" "USA" "Univeristy of Alaska" "Yes" "2017-12-01T20:00:00.000Z"
"Bunker" "Daniel" "USA" "New Jersey Institute of Technology" "Yes" "2017-12-01T20:00:00.000Z"
"Burak" "Mary K." "USA" "Yale University" "Yes" "2017-12-01T20:00:00.000Z"
"Burbrink" "Frank" "USA" "American Museum of Natural History" "Yes" "2017-12-01T20:00:00.000Z"
"Burchill" "Andrew T." "USA" "Arizona State University" "Yes" "2017-12-01T20:00:00.000Z"
"Burdett" "Ayesha S." "USA" "New Mexico Museum of Natural History and Science" "Yes" "2017-12-01T20:00:00.000Z"
"Burfeind" "Florian" "USA" "-" "No" "2017-12-07T15:29:00.603Z"
"Burgess" "Matthew G." "USA" "University of California, Santa Barbara" "Yes" "2017-12-01T20:00:00.000Z"
"Burghardt" "Karin T." "USA" "Smithsonian Environmental Research Center" "Yes" "2017-12-01T20:00:00.000Z"
"Burgio" "Kevin R." "USA" "University of Connecticut" "Yes" "2017-12-01T20:00:00.000Z"
"Burin" "Gustavo" "Brazil" "Universidade de São Paulo" "Yes" "2017-12-01T20:00:00.000Z"
"Burke" "Margaret G" "USA" "California Academy of Sciences" "Yes" "2017-12-01T20:00:00.000Z"
"Burke" "Janelle" "USA" "Howard University" "Yes" "2017-12-01T20:00:00.000Z"
"Burke" "Mary" "USA" "University of California, Davis" "Yes" "2017-12-01T20:00:00.000Z"
"Burner" "Ryan C" "USA" "Louisana State University" "Yes" "2017-12-01T20:00:00.000Z"
"Burns" "Kevin" "USA" "San Diego State University" "Yes" "2017-12-01T20:00:00.000Z"
"Burri" "Reto" "Germany" "FSU Jena" "Yes" "2017-12-03T09:13:52.355Z"
"Burton" "Cole" "Canada" "University of British Columbia" "Yes" "2017-12-01T20:00:00.000Z"
"Bury" "R Bruce" "USA" "Retired Federal (U.S.) scientist" "No" "2017-12-01T20:00:00.000Z"
"Buschbom" "Jutta" "Germany" "Thuenen Institute" "Yes" "2017-12-01T20:00:00.000Z"
"Buske" "Rodrigo" "Brasil" "Universidade Federal de Santa Maria" "Yes" "2017-12-02T11:43:18.701Z"
"Bustamante" "Jorge" "USA" "University of Washington, Seattle" "Yes" "2017-12-01T20:00:00.000Z"
"Butler" "Aodhán Dermot" "USA" "Stanford University" "Yes" "2017-12-01T20:00:00.000Z"
"Buzatto" "Bruno" "Australia" "University of Western Australia" "Yes" "2017-12-04T03:33:32.923Z"
"Bynum" "Nora" "USA" "Field Museum of Natural History" "No" "2017-12-01T20:00:00.000Z"
"Byrnes" "Jarrett E.K." "USA" "University of Massachusetts Boston" "Yes" "2017-12-01T20:00:00.000Z"
"Cable" "Rachel" "USA" "University of Michigan" "Yes" "2017-12-01T20:00:00.000Z"
"Cabral Pacheco" "Lívia M." "Brazil" "-" "No" "2017-12-01T20:00:00.000Z"
"Cabrera" "Francisco" "Ecuador" "Universidad San Francisco de Quito USFQ" "Yes" "2017-12-01T20:00:00.000Z"
"Cabrerizo" "Marco J." "Spain" "University of Granada" "Yes" "2017-12-01T20:00:00.000Z"
"Cade" "David" "USA" "Stanford University" "Yes" "2017-12-01T20:00:00.000Z"
"Caetano" "Daniel" "USA" "University of Arkansas" "Yes" "2017-12-01T20:00:00.000Z"
"Cahill" "Abigail" "USA" "Albion College" "Yes" "2017-12-01T20:00:00.000Z"
"Cai" "Liming" "China" "Harvard University" "Yes" "2017-12-01T20:00:00.000Z"
"Calabuig" "Isabel" "Denmark" "Natural History Museum of Denmark" "Yes" "2017-12-01T20:00:00.000Z"
"Calamari" "Zachary T." "USA" "University of California, San Francisco" "Yes" "2017-12-01T20:00:00.000Z"
"Calazans" "Luana" "Brazil" "Universidade Federal do Rio de Janeiro" "Yes" "2017-12-04T13:25:17.582Z"
"Calazans" "Elson" "Brazil" "University of Brasília" "Yes" "2017-12-01T20:00:00.000Z"
"Caldeira" "Nathália" "Brazil" "Universidade de São Paulo" "Yes" "2017-12-01T20:00:00.000Z"
"Calderón Gutiérrez" "Fernando" "USA" "Texas A&M University at Galveston" "Yes" "2017-12-01T20:00:00.000Z"
"Calderon-Acevedo" "Camilo A." "USA/Colombia" "University of Missouri-St. Louis" "Yes" "2017-12-01T20:00:00.000Z"
"Caldwell" "Michael S." "USA" "Gettysburg College" "Yes" "2017-12-01T20:00:00.000Z"
"Calegari" "Barbara Borges" "Brazil" "Pontifical Catholic University of Rio Grande do Sul" "Yes" "2017-12-01T20:00:00.000Z"
"Calió" "Maria Fernanda" "Brazil" "Universidade Estadual de Campinas" "Yes" "2017-12-01T20:00:00.000Z"
"Callahan" "Benjamin" "USA" "North Carolina State University" "Yes" "2017-12-01T20:00:00.000Z"
"Calvente" "Alice" "Brazil" "Universidade Federal do Rio Grande do Norte" "Yes" "2017-12-01T20:00:00.000Z"
"Camacho" "Gabriela P." "Brazil" "Universidade Federal do Paraná" "Yes" "2017-12-01T20:00:00.000Z"
"Camacho" "Andrés" "Costa Rica" "Instituto Monteverde" "Yes" "2017-12-02T15:10:20.273Z"
"Camargo" "Sanabria" "Mexico" "Conacyt - Universidad Autónoma de Chihuahua" "Yes" "2017-12-01T20:00:00.000Z"
"Camelier" "Priscila" "Brazil" "Universidade de São Paulo" "Yes" "2017-12-01T20:00:00.000Z"
"Cameron" "Christopher" "Canada" "University of Montrteal" "No" "2017-12-01T20:00:00.000Z"
"Cameron" "Tom C." "UK" "University of Essex" "Yes" "2017-12-01T20:00:00.000Z"
"Cameron Devitt" "Susan E." "USA" "University of Texas" "No" "2017-12-01T20:00:00.000Z"
"Campbell" "Heather" "South Africa" "University of Pretoria" "Yes" "2017-12-01T20:00:00.000Z"
"Campbell" "Susanna" "USA" "University of Michigan" "Yes" "2017-12-01T20:00:00.000Z"
"Campbell" "William B." "USA/Mexico" "Independent Research Scientist" "Yes" "2017-12-01T20:00:00.000Z"
"Campos" "Lucas D. de" "Brazil" "Universidade de São Paulo" "Yes" "2017-12-01T20:00:00.000Z"
"Campos" "Ernesto" "Mexico" "Universidad Autónoma de Baja California" "Yes" "2017-12-01T20:00:00.000Z"
"Campos" "Stephanie M." "USA" "Indiana University" "Yes" "2017-12-02T15:45:16.651Z"
"Candido" "Andreia" "Brazil" "Universidade do Estado de Mato Grosso" "Yes" "2017-12-01T20:00:00.000Z"
"Cañedo" "Rosa María " "Peru" "Universidad Mayor de San Marcos" "Yes" "2017-12-04T00:07:58.457Z"
"Canning" "Katharine L." "USA" "Burke Museum of Natural History and Culture, University of Washington" "No" "2017-12-01T20:00:00.000Z"
"Cano" "Ángela" "Switzerland" "University of Geneva" "Yes" "2017-12-01T20:00:00.000Z"
"Canton" "Roberta" "Brazil" "Instituto Nacional de Pesquisas da Amazônia" "Yes" "2017-12-03T14:06:41.625Z"
"Cantrell" "Bonnie A" "USA" "University of Vermont" "Yes" "2017-12-01T20:00:00.000Z"
"Caplat" "Paul" "UK" "Queen's University Belfast" "No" "2017-12-01T20:00:00.000Z"
"Capparella" "Angelo" "USA" "Illinois State University" "No" "2017-12-01T20:00:00.000Z"
"Cappelen " "Benedicte " "Sweden" "Sveahestar" "No" "2017-12-02T15:59:37.740Z"
"Caputo" "Marco" "Venezuela" "Choroni" "No" "2017-12-01T20:00:00.000Z"
"CaraDonna" "Paul" "USA" "Chicago Botanic Garden" "Yes" "2017-12-04T15:40:51.181Z"
"Caravaggi" "Anthony" "Ireland" "University College Cork, Queen's University Belfast" "Yes" "2017-12-01T20:00:00.000Z"
"Card" "Daren" "USA" "University of Texas at Arlington" "Yes" "2017-12-01T20:00:00.000Z"
"Cardenas" "Paco" "Sweden" "Uppsala University" "Yes" "2017-12-01T20:00:00.000Z"
"Cardinale" "Bradley" "USA" "University of Michigan-Ann Arbor" "Yes" "2017-12-01T20:00:00.000Z"
"Cardinaux" "Aline" "Switzerland" "University of Lausanne" "Yes" "2017-12-02T14:42:21.546Z"
"Cardona Giraldo" "Alexandra " "Colombia" "Universidad de Caldas " "Yes" "2017-12-02T20:02:48.339Z"
"Cardoso" "Bruna Fogaca" "Brazil" "Universidade do Estado de Mato Grosso" "Yes" "2017-12-01T20:00:00.000Z"
"Carey" "Nicholas" "UK" "Scottish Association of Marine Science" "No" "2017-12-01T20:00:00.000Z"
"Carilo Filho" "Leildo M." "Brazil" "Universidade Estadual de Santa Cruz" "Yes" "2017-12-01T20:00:00.000Z"
"Carina" "Hoorn" "Netherlands" "University of Amsterdam" "Yes" "2017-12-01T20:00:00.000Z"
"Carleton" "Michael" "USA" "Smithsonian Institution" "No" "2017-12-04T21:05:27.919Z"
"Carls " "Libório" "Brasil" "Universidade Federal de Goiás" "No" "2017-12-02T15:42:11.325Z"
"Carlson" "Ben S." "USA" "Yale University" "Yes" "2017-12-01T20:00:00.000Z"
"Carlsson" "Patric" "Sweden" "Geologist/Upper secondary school teacher" "No" "2017-12-02T14:27:09.655Z"
"Carlsson" "Bengt" "Sweden" "Uppsala University" "Yes" "2017-12-01T20:00:00.000Z"
"Carlton" "James" "USA" "Williams College" "Yes" "2017-12-01T20:00:00.000Z"
"Carmo" "João" "Brazil" "Universidade Estadual de Campinas" "Yes" "2017-12-01T20:00:00.000Z"
"Carmona" "Carlos P." "Estonia" "University of Tartu" "Yes" "2017-12-01T20:00:00.000Z"
"Carmona" "Leila" "Spain" "-" "Yes" "2017-12-02T21:12:38.533Z"
"Carnaval" "Ana C" "USA" "City College of CUNY" "No" "2017-12-01T20:00:00.000Z"
"Carrano" "Matthew T." "USA" "Smithsonian Institution" "Yes" "2017-12-01T20:00:00.000Z"
"Carranza" "Salvador" "Spain" "Institute of Evolutionary Biology (CSIC-UPF)" "Yes" "2017-12-01T20:00:00.000Z"
"Carrier" "Tyler J." "USA" "University of North Carolina at Charlotte" "Yes" "2017-12-01T20:00:00.000Z"
"Carrijo" "Tiago" "Brazil" "Universidade Federal do ABC" "Yes" "2017-12-02T21:28:17.972Z"
"Carrillo" "Juan D" "Sweden" "University of Gothenburg" "Yes" "2017-12-01T20:00:00.000Z"
"Carrive" "Laetitia" "France" "Univ Paris Sud" "Yes" "2017-12-01T20:00:00.000Z"
"Carter" "A.L." "USA" "Iowa State University" "Yes" "2017-12-01T20:00:00.000Z"
"Cartmill" "Matt" "USA" "Boston University" "Yes" "2017-12-01T20:00:00.000Z"
"Cartmill" "Erica" "USA" "UCLA" "Yes" "2017-12-01T20:00:00.000Z"
"Carvajal" "Mariom A." "Chile" "Universidad de Magallanes" "Yes" "2017-12-04T17:49:18.348Z"
"Carvajal-Quintero" "Juan D." "Colombia/France/Mexico" "Université Paul Sabatier/Instituto de Ecologia A.C" "Yes" "2017-12-01T20:00:00.000Z"
"Carvalho" "Liria Ribeiro de" "Brazil" "Universidade do Estado de Mato Grosso" "Yes" "2017-12-01T20:00:00.000Z"
"Carvalho" "André Luiz" "Brazil" "University of São Paulo" "Yes" "2017-12-06T17:36:40.793Z"
"Carvalho Madrigal" "Sara" "Colombia" "University CES" "Yes" "2017-12-05T15:26:44.062Z"
"Casagranda" "M. Dolores" "Argentina" "Unidad Ejecutora Lillo" "Yes" "2017-12-01T20:00:00.000Z"
"Casali" "Daniel" "Brazil" "UFMG" "Yes" "2017-12-03T17:07:54.163Z"
"Casey" "Shauna" "USA" "UC Santa Cruz" "No" "2017-12-12T20:04:25.217Z"
"Cashion" "Erin" "USA" "Ohio History Connection" "Yes" "2017-12-01T20:00:00.000Z"
"Cassin-Sackett" "Loren" "USA" "University of South Florida; Smithsonian Institution" "Yes" "2017-12-01T20:00:00.000Z"
"Castañeda" "María del Rosario" "Colombia" "Universidad del Valle" "Yes" "2017-12-01T20:00:00.000Z"
"Castillo" "Jhoana" "Colombia" "Universidad Nacional de Colombia" "Yes" "2017-12-02T13:08:51.440Z"
"Castro" "Gabriela Ribeiro" "Brazil" "Universidade do Estado de Mato Grosso" "Yes" "2017-12-01T20:00:00.000Z"
"Castro" "Deborah" "Brazil" "Universidade Estadual do Ceará " "Yes" "2017-12-02T16:57:15.415Z"
"Catalano" "Santiago" "Argentina" "UEL (CONICET-Fundación Miguel Lillo)" "Yes" "2017-12-01T20:00:00.000Z"
"Catano" "Christopher P" "USA" "Washington University in St Louis" "Yes" "2017-12-01T20:00:00.000Z"
"Catford" "Jane A." "UK" "University of Southampton" "Yes" "2017-12-01T20:00:00.000Z"
"Catherine" "Foley" "USA" "Stony Brook University" "Yes" "2017-12-02T21:16:01.375Z"
"Caviedes-Solis" "Itzue W." "USA" "University of Washington and Burke Museum of Natural History" "Yes" "2017-12-01T20:00:00.000Z"
"Cavoto" "Elisa" "Switzerland" "University of Lausanne" "Yes" "2017-12-03T15:18:18.930Z"
"Cawthorn" "Michelle" "USA" "Georgia Southern University" "Yes" "2017-12-01T20:00:00.000Z"
"Ceballos" "Gerardo" "Mexico" "Universidad Nacional Autonoma de Mexico" "No" "2017-12-01T20:00:00.000Z"
"Cecala" "Kristen" "USA" "University of the South" "Yes" "2017-12-01T20:00:00.000Z"
"Ceccarelli" "F. Sara" "Mexico" "CICESE" "Yes" "2017-12-01T20:00:00.000Z"
"Cellinese" "Nico" "USA" "University of Florida" "Yes" "2017-12-01T20:00:00.000Z"
"Censky" "Ellen J." "USA" "Milwaukee Public Museum, WI" "Yes" "2017-12-01T20:00:00.000Z"
"Céspedes Arias" "Laura" "Colombia" "Universidad de los Andes" "Yes" "2017-12-01T20:00:00.000Z"
"Chakrabarty" "Prosanta" "USA" "Louisiana State University, Museum of Natural Science" "Yes" "2017-12-01T20:00:00.000Z"
"Chalfoun" "Anna D." "USA" "University of Wyoming" "No" "2017-12-01T20:00:00.000Z"
"Chambers" "Sally M." "USA" "Marie Selby Botanical Gardens" "Yes" "2017-12-01T20:00:00.000Z"
"Chambers" "Leanne" "USA" "The George Washington University" "Yes" "2017-12-01T20:00:00.000Z"
"Chan" "Kai M. A." "Canada" "University of British Columbia" "Yes" "2017-12-01T20:00:00.000Z"
"Chan" "Lauren M." "USA" "Pacific University" "Yes" "2017-12-01T20:00:00.000Z"
"Chan" "Jeremy" "USA" "University of Washignton" "Yes" "2017-12-01T20:00:00.000Z"
"Chandler" "Mark" "USA" "Earthwatch Institute" "Yes" "2017-12-01T20:00:00.000Z"
"Chandler" "Bailey" "USA" "Georgia Southern University" "Yes" "2017-12-01T20:00:00.000Z"
"Chandler" "Houston C." "USA" "Virginia Tech" "Yes" "2017-12-01T20:00:00.000Z"
"Chang" "Jonathan" "USA" "University of California, Los Angeles" "Yes" "2017-12-01T20:00:00.000Z"
"Chanut" "Pierre" "Switzerland" "ETH Zurich" "Yes" "2017-12-01T20:00:00.000Z"
"Chapman" "Erin" "USA" "Tulane University" "Yes" "2017-12-01T20:00:00.000Z"
"Charbonneaux" "Maël" "France" "University of Montpellier, France" "Yes" "2017-12-01T20:00:00.000Z"
"Charlier" "Paulette" "Belgium" "University of Liège" "Yes" "2017-12-01T20:00:00.000Z"
"Chase" "Mark" "UK" "Royal Botanic Gardens, Kew" "Yes" "2017-12-01T20:00:00.000Z"
"Chasey" "Richard" "USA" "Nomad Ecology, Inc." "Yes" "2017-12-01T20:00:00.000Z"
"Chatrou" "Lars" "Netherlands" "Wageningen University & Research" "Yes" "2017-12-01T20:00:00.000Z"
"Chatzimanolis" "Stylianos" "USA" "University of Tennessee at Chattanooga" "Yes" "2017-12-01T20:00:00.000Z"
"Chaves Portilla" "Giovanni" "Colombia" "FUNDACIÓN ECODIVERSIDAD COLOMBIA" "Yes" "2017-12-04T01:40:10.535Z"
"Chavez" "Samantha J." "USA" "USDA-NRCS" "No" "2017-12-01T20:00:00.000Z"
"Cheeseman" "Amanda" "USA" "SUNY College of Environmental Science and Forestry" "Yes" "2017-12-01T20:00:00.000Z"
"Chen" "Youhua" "China" "Chengdu Institute of Biology" "Yes" "2017-12-01T20:00:00.000Z"
"Chen" "Donglei" "China" "Uppsala University" "Yes" "2017-12-01T20:00:00.000Z"
"Chen" "Wentao" "France/China" "Université Grenoble Alpes" "Yes" "2017-12-01T20:00:00.000Z"
"Chen" "James" "Japan" "Sophia University" "Yes" "2017-12-01T20:00:00.000Z"
"Chen" "Nancy" "USA" "University of California, Davis" "Yes" "2017-12-01T20:00:00.000Z"
"Cheng" "Yiru" "USA" "Columbia University" "Yes" "2017-12-01T20:00:00.000Z"
"Cherry" "Elizabeth" "USA" "Manhattanville College" "Yes" "2017-12-01T20:00:00.000Z"
"Chester" "Emily" "USA" "Indiana University " "Yes" "2017-12-02T19:58:16.275Z"
"Chipman" "Ariel" "Israel" "The Hebrew University of Jerusalem" "Yes" "2017-12-02T20:19:35.440Z"
"Chisholm" "Chelsea Lee" "Switzerland" "University of Lausanne" "Yes" "2017-12-01T20:00:00.000Z"
"Choksi" "Pooja" "USA" "Columbia University" "Yes" "2017-12-03T14:46:18.445Z"
"Chong" "Ju-Lian" "Malaysia" "Universiti Malaysia Terengganu" "Yes" "2017-12-01T20:00:00.000Z"
"Choong" "Amy M.F." "Singapore" "National University of Singapore" "Yes" "2017-12-01T20:00:00.000Z"
"Chou" "Emily" "USA" "Columbia University" "Yes" "2017-12-01T20:00:00.000Z"
"Christenhusz" "Maarten J. M." "UK" "Curtin University/Plant Gateway/Royal Botanic Gardens, Kew" "Yes" "2017-12-01T20:00:00.000Z"
"Christian" "König" "Germany" "University of Goettingen" "No" "2017-12-01T20:00:00.000Z"
"Christman" "Michelle" "USA" "Biologist" "Yes" "2017-12-01T20:00:00.000Z"
"Chu" "Joanna" "USA" "California State University, Monterey Bay" "Yes" "2017-12-01T20:00:00.000Z"
"Chua" "Marcus A.H." "Singapore" "National University of Singapore" "Yes" "2017-12-01T20:00:00.000Z"
"Chuctaya" "Junior" "Peru" "Museo de Historia Natural-UNMSM" "Yes" "2017-12-02T23:36:09.768Z"
"Chyn" "Kristina" "USA" "Texas A&M University" "Yes" "2017-12-01T20:00:00.000Z"
"Cianciaruso" "Marcus" "Brazil" "Universidade Federal de Goiás" "Yes" "2017-12-01T20:00:00.000Z"
"Cicuzza" "Daniele" "Brunei Darussalam" "University of Brunei Darussalam" "Yes" "2017-12-01T20:00:00.000Z"
"Cinel" "Scott D." "USA" "University of Florida" "Yes" "2017-12-01T20:00:00.000Z"
"Cisneros" "Laura" "USA" "University of Connecticut" "Yes" "2017-12-01T20:00:00.000Z"
"Cisneros-Heredia" "Diego F." "Ecuador" "Universidad San Francisco de Quito USFQ" "Yes" "2017-12-01T20:00:00.000Z"
"Ciucani" "Maria M" "Denmark" "Natural History Museum of Denmark" "Yes" "2017-12-01T20:00:00.000Z"
"Clapp" "Mary" "USA" "University of California Davis" "Yes" "2017-12-01T20:00:00.000Z"
"Claramunt" "Santiago" "Canada" "Royal Ontario Museum" "Yes" "2017-12-01T20:00:00.000Z"
"Clark" "Ann H." "USA" "-" "Yes" "2017-12-01T20:00:00.000Z"
"Clark" "Christopher" "USA" "Cornell University" "No" "2017-12-01T20:00:00.000Z"
"Clark" "Howard O." "USA" "Fresno" "Yes" "2017-12-01T20:00:00.000Z"
"Clark" "Mary" "USA" "Moonlight Environmental Consulting" "Yes" "2017-12-01T20:00:00.000Z"
"Clarke" "John M" "Australia" "CSIRO" "Yes" "2017-12-01T20:00:00.000Z"
"Clarke" "Tara" "USA" "Duke University " "Yes" "2017-12-03T20:47:53.976Z"
"Clarkston" "Bridgette" "Canada" "University of British Columbia" "Yes" "2017-12-01T20:00:00.000Z"
"Claytor" "Jordan R." "USA" "University of Washington" "Yes" "2017-12-01T20:00:00.000Z"
"Clegg" "Jonathan" "UK" "-" "Yes" "2017-12-01T20:00:00.000Z"
"Clemann" "Nick" "Australia" "Arthur Rylah Institute for Environmental Research" "Yes" "2017-12-01T20:00:00.000Z"
"Clement" "Jean-Christophe" "France" "Université Savoie Mont Blanc" "Yes" "2017-12-01T20:00:00.000Z"
"Clément" "Laura" "Switzerland" "University of Lausanne " "Yes" "2017-12-02T17:58:21.953Z"
"Clements" "David R." "Canada" "Trinity Western University" "Yes" "2017-12-01T20:00:00.000Z"
"Clements" "Gopalasamy Reuben" "Malaysia" "Rimba" "Yes" "2017-12-01T20:00:00.000Z"
"Clever" "Friederike" "UK" "Manchester Metropolitan University" "Yes" "2017-12-04T04:14:57.253Z"
"Clulow" "Simon" "Australia" "University of Newcastle" "Yes" "2017-12-01T20:00:00.000Z"
"Coddington" "Jonathan" "USA" "Smithsonian Institution" "No" "2017-12-01T20:00:00.000Z"
"Coelho" "Lais" "USA" "Columbia University" "Yes" "2017-12-01T20:00:00.000Z"
"Coelho de Souza" "Fernanda" "UK" "University of Leeds" "Yes" "2017-12-01T20:00:00.000Z"
"Cohen" "Heather" "Germany" "Max Planck Institute for Evolutionary Anthropology" "Yes" "2017-12-01T20:00:00.000Z"
"Colberg" "Eva M" "USA" "University of Missouri-St. Louis" "Yes" "2017-12-01T20:00:00.000Z"
"Coldsnow" "Kayla D" "USA" "Rensselaer Polytechnic Institute" "Yes" "2017-12-01T20:00:00.000Z"
"Cole" "Theodor C. H." "Germany" "Freie Universität Berlin" "Yes" "2017-12-01T20:00:00.000Z"
"Cole" "Eric" "USA" "St. Olaf College" "Yes" "2017-12-01T20:00:00.000Z"
"Colla" "Sheila" "Canada" "York University" "Yes" "2017-12-01T20:00:00.000Z"
"Collevatti" "Rosane" "Brazil" "Universidade Federal de Goias" "Yes" "2017-12-01T20:00:00.000Z"
"Collins" "Eric" "USA" "University of Alaska Fairbanks" "Yes" "2017-12-01T20:00:00.000Z"
"Collins" "Clint E." "USA" "University of Idaho" "Yes" "2017-12-01T20:00:00.000Z"
"Colosi" "Joseph" "USA" "DeSales University" "Yes" "2017-12-01T20:00:00.000Z"
"Conceicao" "Luciano Dias" "Brazil" "Universidade do Estado de Mato Grosso" "Yes" "2017-12-01T20:00:00.000Z"
"Condamine" "Fabien L." "France" "CNRS, Institut des Sciences de l'Evolution - Montpellier" "Yes" "2017-12-01T20:00:00.000Z"
"Congreve" "Curtis R." "USA" "Penn State University" "Yes" "2017-12-01T20:00:00.000Z"
"Conley" "Rose" "USA" "Universy of Cincinnati" "No" "2017-12-01T20:00:00.000Z"
"Conner" "Alana L." "USA" "Stanford University" "No" "2017-12-01T20:00:00.000Z"
"Conti" "Elena" "Switzerland" "University of Zurich" "Yes" "2017-12-01T20:00:00.000Z"
"Contina" "Andrea" "USA" "University of Oklahoma/Oklahoma Biological Survey" "Yes" "2017-12-01T20:00:00.000Z"
"Cook" "Joseph" "USA" "University of New Mexico" "Yes" "2017-12-01T20:00:00.000Z"
"Cooper" "Rosa" "USA" "SUNY College of Environmental Science and Forestry" "Yes" "2017-12-01T20:00:00.000Z"
"Cooper" "Robert D." "USA" "University of California, Los Angeles" "Yes" "2017-12-01T20:00:00.000Z"
"Cooper" "Lynne" "USA" "University of New Hampshire" "Yes" "2017-12-01T20:00:00.000Z"
"Copete" "José L." "Spain" "HBW-Alive" "No" "2017-12-01T20:00:00.000Z"
"Cordeiro" "Saulo de Paula" "Brazil" "Universidade do Estado de Mato Grosso" "Yes" "2017-12-01T20:00:00.000Z"
"Cordova" "Daniel" "Ecuador" "Universidad San Francisco de Quito" "Yes" "2017-12-01T20:00:00.000Z"
"Cords" "Marina" "USA" "Columbia Univeristy" "Yes" "2017-12-01T20:00:00.000Z"
"Corey" "Ben" "Australia" "West Australian Parks and Wildlife Service, Department of Biodiversity, Conservation & Attractions" "Yes" "2017-12-01T20:00:00.000Z"
"Corral" "Lucia" "USA" "University of Nebraska-Lincoln" "Yes" "2017-12-01T20:00:00.000Z"
"Corro" "Lucila" "USA" "Colorado Department of Natural Resources" "Yes" "2017-12-01T22:02:13.873Z"
"Cortés" "Andrés" "Colombia" "University of Gothenburg" "Yes" "2017-12-01T20:00:00.000Z"
"Cortés-Alcaide" "Pablo" "Spain" "Fegacesar, Colombia" "Yes" "2017-12-01T20:00:00.000Z"
"Cortez" "Maria Beatriz de S." "Brazil" "University of Florida" "Yes" "2017-12-01T20:00:00.000Z"
"Corzett" "Christopher H" "USA" "University of Southern California" "Yes" "2017-12-01T20:00:00.000Z"
"Cosacov" "Andrea" "Argentina" "University of Córdoba, Argentina" "Yes" "2017-12-01T20:00:00.000Z"
"Cosic" "Nada" "Serbia" "University of Belgrade" "Yes" "2017-12-13T09:52:08.675Z"
"Costa" "Leonora Pires" "Brazil" "Universidade Federal do Espirito Santo" "Yes" "2017-12-01T20:00:00.000Z"
"Costanza" "Jennifer" "USA" "North Carolina State University" "Yes" "2017-12-01T20:00:00.000Z"
"Costelloe" "Blair R." "Germany" "Max Planck Institute for Ornithology/University of Konstanz" "Yes" "2017-12-01T20:00:00.000Z"
"Courchamp" "Franck" "France" "CNRS, Univ Paris Sud" "Yes" "2017-12-01T20:00:00.000Z"
"Courtney Jones" "Stephanie" "Australia" "University of Wollongong" "Yes" "2017-12-01T22:55:52.466Z"
"Couvillon" "Ross" "USA" "Texas A&M University-Kingsville" "Yes" "2017-12-01T20:00:00.000Z"
"Cover" "Matthew" "USA" "California State University Stanislaus" "Yes" "2017-12-01T20:00:00.000Z"
"Cowman" "Peter F." "Australia" "ARC Centre of Excellence for Coral Reef Studies, James Cook University" "Yes" "2017-12-01T20:00:00.000Z"
"Cozy" "Loralyn" "USA" "Illinois Wesleyan University" "Yes" "2017-12-01T20:00:00.000Z"
"Cozzuol" "Mario A." "Brazil" "Universidade Federal de Minas Gerais" "Yes" "2017-12-01T20:00:00.000Z"
"Craig" "Timothy" "USA" "University of Minnesota Duluth" "Yes" "2017-12-01T20:00:00.000Z"
"Crain" "Benjamin J." "USA" "University of Tennessee" "Yes" "2017-12-01T20:00:00.000Z"
"Cramer" "Gail" "USA" "Retired Indiana University" "No" "2017-12-02T20:40:29.856Z"
"Craven" "Dylan" "Germany" "German Centre for Integrative Biodiversity Research (iDiv) Halle-Jena-Leipzig" "Yes" "2017-12-01T20:00:00.000Z"
"Craven" "Mark" "USA" "University of Wisconsin-Madison" "Yes" "2017-12-01T20:00:00.000Z"
"Crawford" "Joanne" "USA" "Michigan State University" "Yes" "2017-12-01T20:00:00.000Z"
"Crawford" "Callie" "USA" "New Jersey Institute of Technology" "Yes" "2017-12-01T22:57:20.998Z"
"Craze" "Paul G" "UK" "Trends in Ecology and Evolution" "Yes" "2017-12-01T20:00:00.000Z"
"Creasy" "Kaitlyn" "USA" "Butler University" "No" "2017-12-01T20:00:00.000Z"
"Crespin" "Silvio J." "El Salvador" "Instituto de Investigaciones Tropicales de El Salvador/Universidad de Chile" "Yes" "2017-12-01T20:00:00.000Z"
"Crespo-Pérez" "Verónica" "Ecuador" "Pontificia Universidad Católica del Ecuador" "Yes" "2017-12-01T20:00:00.000Z"
"Crifò" "Camilla" "USA" "University of Washington, Seattle" "Yes" "2017-12-01T20:00:00.000Z"
"Crim" "Haley" "USA" "Bates College" "Yes" "2017-12-01T20:00:00.000Z"
"Crispo" "Erika" "USA" "Pace University" "Yes" "2017-12-01T20:00:00.000Z"
"Cristian" "Quispe" "Honduras" "Escuela Agrícola Panamericana Zamorano" "Yes" "2017-12-01T20:00:00.000Z"
"Cristiano" "Robson" "Brazil" "Universidade do Estado de Mato Grosso" "Yes" "2017-12-01T20:00:00.000Z"
"Crnobrna" "Brian" "Peru" "Arizona State University" "Yes" "2017-12-01T20:00:00.000Z"
"Crocetta" "Fabio" "Italy" "Stazione Zoologica Anton Dohrn" "Yes" "2017-12-02T10:47:01.916Z"
"Crofts" "Stephanie B." "USA" "UIUC" "Yes" "2017-12-01T20:00:00.000Z"
"Cronberg" "Nils" "Sweden" "Lund University" "Yes" "2017-12-03T09:43:36.222Z"
"Crottini" "Angelica" "Portugal" "Cibio/Inbio University of Porto" "Yes" "2017-12-01T20:00:00.000Z"
"Cruickshank" "Sam" "Switzerland" "University of Zurich" "Yes" "2017-12-03T12:32:49.552Z"
"Cruz" "Paulina" "Ecuador" "Universidad San Francisco de Quito USFQ" "No" "2017-12-01T20:00:00.000Z"
"Cuervo" "Andrés M." "Colombia" "Instituto de Investigación de Recursos Biológicos Alexander von Humboldt" "Yes" "2017-12-01T20:00:00.000Z"
"Culebras" "Jaime" "Spain" "Photo Wildlife Tours" "Yes" "2017-12-01T20:00:00.000Z"
"Culley" "Theresa M" "USA" "University of Cincinnati" "Yes" "2017-12-01T20:00:00.000Z"
"Cunha Almeida" "Francisca" "Argentina" "Universidade de Buenos Aires" "Yes" "2017-12-01T20:00:00.000Z"
"Cunha Filho" "Clayton" "Brazil" "Universidade Federal do Ceará" "Yes" "2017-12-04T17:15:32.695Z"
"Cupertino-Eisenlohr" "Mônica A." "Brazil" "Universidade de Brasília/Embrapa Cenargen" "Yes" "2017-12-01T20:00:00.000Z"
"Curran" "Michael" "USA" "University of Wyoming" "Yes" "2017-12-01T20:00:00.000Z"
"Curry" "Robert L." "USA" "Villanova University" "Yes" "2017-12-01T20:00:00.000Z"
"Curry Rogers" "Kristina A." "USA" "Macalester College" "Yes" "2017-12-01T20:00:00.000Z"
"Cushman" "Susan" "USA" "Hobart & William Smith Colleges" "Yes" "2017-12-01T20:00:00.000Z"
"Cyrille" "Claudel" "Germany" "Biozentrum Klein Flottbek und Botanischer Garten" "Yes" "2017-12-01T20:00:00.000Z"
"Czarnecki" "Greg" "USA" "PA Dept. of Conservation and Natural Resources" "No" "2017-12-01T20:00:00.000Z"
"D'Bastiani" "Elvira" "Brazil" "Universidade Federal do Paraná" "Yes" "2017-12-01T20:00:00.000Z"
"D'Elía" "Guillermo" "Chile" "Universidad Austral de Chile" "Yes" "2017-12-01T20:00:00.000Z"
"D'Hertefeldt" "Tina" "Sweden" "Lund University" "Yes" "2017-12-01T20:00:00.000Z"
"d'Udekem d'Acoz" "Cédric" "Belgium" "Royal Belgian Institute of Natural Sciences" "Yes" "2017-12-01T20:00:00.000Z"
"Dagilis" "Andrius J." "USA" "University of Texas at Austin" "Yes" "2017-12-01T20:00:00.000Z"
"Dahl" "Mikael" "Sweden" "University of Gothenburg" "Yes" "2017-12-01T20:00:00.000Z"
"Dahl" "Åslög EM" "Sweden" "University of Gothenburg, Biology and Environmental Sciences" "Yes" "2017-12-01T20:00:00.000Z"
"Dahlgren" "Thomas G." "Norway" "Uni Research" "No" "2017-12-01T20:00:00.000Z"
"Dainton" "Katrina" "UK" "Forest Research" "No" "2017-12-01T20:00:00.000Z"
"Dal Pesco" "Federica" "Germany" "German Primate Center" "Yes" "2017-12-01T20:00:00.000Z"
"Dalla Rosa" "Luciano" "Brasil" "Federal University of Rio Grande" "Yes" "2017-12-12T15:59:44.091Z"
"Dalosto" "Marcelo M." "Brazil" "Universidade Federal de Santa Maria" "Yes" "2017-12-01T20:00:00.000Z"
"Daly" "Marymegan" "USA" "Ohio State University" "Yes" "2017-12-01T20:00:00.000Z"
"Dalziell" "Anastasia H." "USA/Australia" "University of Wollongong/Cornell University" "Yes" "2017-12-01T20:00:00.000Z"
"Damacena" "Maria Ionaria Santos" "Brazil" "Universidade do Estado de Mato Grosso" "Yes" "2017-12-01T20:00:00.000Z"
"Dambros" "Cristian S." "Brazil" "Universidade Federal de Santa Maria" "Yes" "2017-12-01T20:00:00.000Z"
"Danby" "Ryan" "Canada" "Queen's University" "Yes" "2017-12-01T20:00:00.000Z"
"Darnell" "Cynthia L." "USA" "Duke University" "Yes" "2017-12-01T20:00:00.000Z"
"Das" "Delip K." "Bangladesh" "Jagannath University, Dhaka" "Yes" "2017-12-01T20:00:00.000Z"
"Daskalaki" "Evangelia " "Sweden" "-" "Yes" "2017-12-02T18:34:12.556Z"
"Daut" "Elizabeth F." "USA" "Socio-Environmental Synthesis Center" "No" "2017-12-01T20:00:00.000Z"
"Dauwe" "Steven" "Belgium" "-" "Yes" "2017-12-03T09:28:01.814Z"
"Davenport" "Mary Ann Bellinda" "Germany" "Dresden University of Technology" "No" "2017-12-01T20:00:00.000Z"
"David" "Kyle T." "USA" "Auburn Univeristy" "Yes" "2017-12-01T20:00:00.000Z"
"David" "Solomon R." "USA" "Nicholls State University" "Yes" "2017-12-01T20:00:00.000Z"
"Davidson" "Ana D." "USA" "Colorado State University" "Yes" "2017-12-01T20:00:00.000Z"
"Davis" "Charles" "USA" "Harvard University" "Yes" "2017-12-01T20:00:00.000Z"
"Davis" "Mark" "USA" "Illinois Natural History Survey" "Yes" "2017-12-02T00:14:41.653Z"
"Davis" "Matthew P." "USA" "St. Cloud State University" "Yes" "2017-12-01T20:00:00.000Z"
"Davis" "Drew R." "USA" "University of South Dakota" "Yes" "2017-12-01T20:00:00.000Z"
"Davis" "Richard E" "USA" "University of Utah" "Yes" "2017-12-01T20:00:00.000Z"
"Davranoglou" "Leonidas-Romanos" "UK" "Department of Zoology, University of Oxford" "Yes" "2017-12-01T20:00:00.000Z"
"Davydov" "I. Iakov" "Switzerland" "University of Lausanne" "Yes" "2017-12-01T20:00:00.000Z"
"Dawson" "Michael N" "USA/UK" "University of California, Merced" "Yes" "2017-12-01T20:00:00.000Z"
"Day" "Allan A" "USA" "University of Louisville" "No" "2017-12-01T20:00:00.000Z"
"Dayananda" "Salindra Kasun" "Sri Lanka" "Foundation for Nature Conservation and Preservation" "Yes" "2017-12-09T02:00:42.193Z"
"De Alban" "Jose Don T." "Singapore" "National University of Singapore" "Yes" "2017-12-01T20:00:00.000Z"
"De Baets" "Kenneth" "Germany" "Friedrich-Alexander Universität Erlangen-Nürnberg" "Yes" "2017-12-01T20:00:00.000Z"
"de Bivort" "Benjamin L" "USA" "Harvard University" "Yes" "2017-12-01T20:00:00.000Z"
"De Block" "Petra" "Belgium" "Botanic Garden Meise" "Yes" "2017-12-04T08:16:55.326Z"
"De Boer" "Hugo" "Norway" "University of Oslo" "Yes" "2017-12-01T20:00:00.000Z"
"de Guinea" "Miguel" "UK" "Oxford Brookes University" "Yes" "2017-12-01T20:00:00.000Z"
"de Guttry" "Christian" "Switzerland" "Univeristy of Lausanne" "Yes" "2017-12-03T08:35:52.586Z"
"De Jesus" "Christina" "USA" "University of Rhode Island" "Yes" "2017-12-03T16:11:59.646Z"
"de la Sancha" "Noé U." "USA" "Chicago State University/ The Field Museum" "Yes" "2017-12-01T20:00:00.000Z"
"De La Torre" "Gabriel Massaccesi" "Brazil" "Universidade Federal do Paraná" "Yes" "2017-12-01T20:00:00.000Z"
"De Laender" "Frederik" "Belgium" "University of Namur" "Yes" "2017-12-01T20:00:00.000Z"
"de Lara" "Maria Carolina Ramos" "Brazil" "Universidade do Estado de Mato Grosso" "Yes" "2017-12-01T20:00:00.000Z"
"De León" "Luis Fernando" "USA" "University of Massachusetts Boston" "Yes" "2017-12-01T20:00:00.000Z"
"De Lisle" "Stephen" "Sweden" "Lund University" "Yes" "2017-12-02T16:04:58.448Z"
"de Looper" "Liesbeth" "Netherlands" "-" "No" "2017-12-01T20:00:00.000Z"
"De Marco" "Paulo" "Brazil" "Universidade Federal de Goiás" "Yes" "2017-12-01T20:00:00.000Z"
"de Oliveira" "Guilherme" "Brazil" "Universidade Federal do Recôncavo da Bahia / INCT EECBio" "Yes" "2017-12-01T20:00:00.000Z"
"de Santana" "C David" "USA" "NMNH-Smithsonian Institution" "Yes" "2017-12-01T20:00:00.000Z"
"de Vienne" "Damien" "France" "CNRS, LBBE, Université Lyon 1" "Yes" "2017-12-01T20:00:00.000Z"
"de Vos" "Asha" "Sri Lanka" "Oceanswell" "Yes" "2017-12-02T06:21:30.629Z"
"de Vos" "Jurriaan M." "Switzerland" "University of Basel" "Yes" "2017-12-01T20:00:00.000Z"
"De Wit" "Pierre" "Sweden" "University of Gothenburg" "Yes" "2017-12-01T20:00:00.000Z"
"Deans" "Andrew R." "USA" "Frost Entomological Museum, Penn State University, University Park, PA" "Yes" "2017-12-01T20:00:00.000Z"
"Debat" "Humberto J" "Argentina" "National Institute of Agricultural Technology" "Yes" "2017-12-01T20:00:00.000Z"
"DeBry" "Ronald" "USA" "University of Cincinnati" "Yes" "2017-12-01T20:00:00.000Z"
"DeCarlo" "Anjanette" "USA" "Aromatic Plant Research Center" "Yes" "2017-12-01T20:00:00.000Z"
"Dechaud" "Corentin" "France" "Ecole Normale Supérieure de Lyon" "Yes" "2017-12-01T20:00:00.000Z"
"Decker" "Carolyn" "USA" "-" "Yes" "2017-12-02T19:58:18.941Z"
"Defolie" "Charlotte P" "Germany" "German Primate Center & University of Göttingen" "Yes" "2017-12-01T20:00:00.000Z"
"Degrassi" "Allyson L" "USA" "University of New Hampshire" "Yes" "2017-12-01T20:00:00.000Z"
"Deichmann" "Jessica" "USA" "Smithsonian Conservation Biology Instute" "Yes" "2017-12-01T20:00:00.000Z"
"Deimel" "Caroline" "Germany" "Max Planck Institute for Ornithology" "Yes" "2017-12-02T17:45:43.814Z"
"del Moral" "Roger" "USA" "University of Washington" "No" "2017-12-01T20:00:00.000Z"
"Delapieve" "Maria Laura S." "Brazil" "Pontifical Catholic University of Rio Grande do Sul" "Yes" "2017-12-01T20:00:00.000Z"
"Delfino" "Massimo" "Italy" "University of Turin" "Yes" "2017-12-01T20:00:00.000Z"
"Delgado Jaramillo" "Mariana" "Brazil" "Universidade Federal de Pernambuco" "Yes" "2017-12-01T20:00:00.000Z"
"Dell" "Anthony I." "USA" "National Great Rivers Research and Education CEnter" "Yes" "2017-12-01T20:00:00.000Z"
"Dellapé" "Pablo" "Argentina" "Museo de La Plata" "Yes" "2017-12-01T20:00:00.000Z"
"Delrieu-Trottin" "Erwan" "Chile" "Universidad Austral de Chile" "Yes" "2017-12-01T20:00:00.000Z"
"Delsuc" "Frédéric" "France" "CNRS University of Montpellier" "Yes" "2017-12-01T20:00:00.000Z"
"DeLuycker" "Anneke M" "USA" "Smithsonian-Mason School of Conservation" "Yes" "2017-12-01T20:00:00.000Z"
"Dembeck" "Lauren" "USA" "-" "Yes" "2017-12-03T19:35:39.580Z"
"Demboski" "John" "USA" "Denver Museum of Nature & Science" "Yes" "2017-12-01T20:00:00.000Z"
"Dembowski" "Edward" "USA" "East Carolina University" "No" "2017-12-01T20:00:00.000Z"
"Demos" "Terrence C" "USA" "Field Museum of Natural History" "Yes" "2017-12-01T20:00:00.000Z"
"Dena" "Simone" "Brazil" "Universidade Estadual de Campinas, Unicamp" "Yes" "2017-12-01T20:00:00.000Z"
"Dénes" "Francisco V." "Canada" "University of Alberta" "Yes" "2017-12-01T20:00:00.000Z"
"DeNeve Weeks" "Danaan L." "USA" "University of California Merced" "Yes" "2017-12-01T20:00:00.000Z"
"Denkinger" "Judith" "Ecuador" "USFQ" "Yes" "2017-12-01T20:00:00.000Z"
"Dennis" "Stuart" "Switzerland" "Eawag" "Yes" "2017-12-03T13:09:50.624Z"
"Dennis " "Jonason " "Sweden" "Stockholm unversity" "Yes" "2017-12-02T17:18:29.843Z"
"Dentinger" "Bryn T. M." "USA" "Natural History Museum of Utah & Department of Biology, University of Utah" "Yes" "2017-12-01T20:00:00.000Z"
"Denton" "Robert" "USA" "University of Connecticut" "No" "2017-12-01T20:00:00.000Z"
"dePamphilis" "Claude W." "USA" "Pennsylvania State University" "Yes" "2017-12-01T20:00:00.000Z"
"Dergam" "Jorge" "Brazil" "Universidade Federal de Vicosa" "Yes" "2017-12-03T09:13:24.504Z"
"Derting" "Terry" "USA" "Murray State University" "Yes" "2017-12-01T20:00:00.000Z"
"Després-Einspenner" "Marie-Lyne" "Germany" "Max Planck Institute for Evolutionary Anthropology" "Yes" "2017-12-01T20:00:00.000Z"
"Devides Castello" "Ana Carolina" "Brazil" "UNESP Botucatu" "Yes" "2017-12-02T14:09:01.851Z"
"Devos" "Nicolas" "USA" "Duke University" "No" "2017-12-01T20:00:00.000Z"
"deVries" "Maya" "USA" "Scripps Institution of Oceanography, UC San Diego" "Yes" "2017-12-01T22:10:18.270Z"
"Dexter" "Kyle Graham" "USA/UK" "University of Edinburgh / currently Harvard University" "Yes" "2017-12-01T20:00:00.000Z"
"Di Cola" "Valeria" "Switzerland" "University of Lausanne" "Yes" "2017-12-01T20:00:00.000Z"
"Di Dario" "Fabio" "Brazil" "Universidade Federal do Rio de Janeiro" "Yes" "2017-12-01T20:00:00.000Z"
"Di Gianvincenzo" "Fabiana" "Denmark" "Natural History Museum of Denmark" "Yes" "2017-12-01T20:00:00.000Z"
"Diamond" "Sara" "USA" "University of Texas" "Yes" "2017-12-01T20:00:00.000Z"
"Diana" "Liverman" "USA" "University of Arizona" "Yes" "2017-12-02T18:00:02.783Z"
"Dias" "Paula" "France" "CNRS" "Yes" "2017-12-02T23:30:39.293Z"
"Diaz" "Milton Hugo" "USA" "University of Florida" "Yes" "2017-12-01T20:00:00.000Z"
"Diaz-Nieto" "Juan F" "Colombia" "Universidad EAFIT" "Yes" "2017-12-01T20:00:00.000Z"
"Diazgranados" "Mauricio" "UK" "Royal Botanic Gardens, Kew" "Yes" "2017-12-01T20:00:00.000Z"
"Dibner" "Reilly" "USA" "University of Wyoming" "Yes" "2017-12-01T20:00:00.000Z"
"Dick" "Alexandra E" "USA" "Sterling College, Vermont" "No" "2017-12-01T20:00:00.000Z"
"Dick" "Christopher" "USA" "University of Michigan" "Yes" "2017-12-01T20:00:00.000Z"
"Dicks" "Kara" "UK" "Queen's University Belfast" "Yes" "2017-12-01T20:00:00.000Z"
"Dietrich" "Jörg" "Germany" "XTINCT / PanoramaStreetline" "No" "2017-12-01T22:09:33.261Z"
"Diggle" "Pamela" "USA" "University of Connecticut" "No" "2017-12-01T20:00:00.000Z"
"Dijkstra" "Klaas-Douwe B." "Netherlands" "Naturalis Biodiversity Center" "Yes" "2017-12-02T15:16:34.601Z"
"Dillman" "Casey B" "USA" "Cornell University" "No" "2017-12-01T20:00:00.000Z"
"Diluzio" "Matthew S." "USA" "Sterling College" "No" "2017-12-01T20:00:00.000Z"
"Dines" "James P." "USA" "Natural History Museum of Los Angeles County" "No" "2017-12-01T20:00:00.000Z"
"Diniz-Filho" "José Alexandre" "Brazil" "Universidade Federal de Goiás / INCT EECBio" "Yes" "2017-12-01T20:00:00.000Z"
"Diogo" "Ivan" "Brazil" "UNICAMP " "Yes" "2017-12-02T15:03:18.225Z"
"DiRenzo" "Graziella" "USA" "University of California, Santa Barbara" "Yes" "2017-12-01T20:00:00.000Z"
"Dirzo" "Rodolfo" "USA" "Stanford University" "No" "2017-12-01T20:00:00.000Z"
"Dismukes" "Wade" "USA" "Iowa State University" "Yes" "2017-12-01T22:30:01.672Z"
"Doak " "Daniel " "USA" "Cu Boulder" "Yes" "2017-12-05T19:56:10.659Z"
"Doan" "Tiffany" "USA" "New College of Florida" "Yes" "2017-12-02T16:03:36.815Z"
"Dobkowski" "Katie" "USA" "University of Washington/Friday Harbor Labs" "Yes" "2017-12-01T20:00:00.000Z"
"Dodd" "Dr. Ken" "USA" "University of Florida" "Yes" "2017-12-05T01:59:21.497Z"
"Doherty" "Tim S." "Australia" "Deakin University" "Yes" "2017-12-01T20:00:00.000Z"
"Doleck" "Tenzing D." "USA" "City College of New York" "Yes" "2017-12-02T17:44:16.319Z"
"Doll" "Andrew" "USA" "Denver Museum of Nature & Science" "Yes" "2017-12-01T20:00:00.000Z"
"Domingos" "Maicom D. M." "Brazil" "Universidade do Estado de Mato Grosso" "Yes" "2017-12-01T20:00:00.000Z"
"Domingues" "Estel Francisca" "Brazil" "Universidade do Estado de Mato Grosso" "Yes" "2017-12-01T20:00:00.000Z"
"Donadío" "Sabina" "Argentina" "Instituto de Botánica Darwinion" "Yes" "2017-12-01T20:00:00.000Z"
"DoNascimiento" "Carlos" "Colombia" "Instituto de Investigación de Recursos Biológicos Alexander von Humboldt" "Yes" "2017-12-01T20:00:00.000Z"
"Dondoni" "Regiane" "Brazil" "da Costa" "Yes" "2017-12-01T20:00:00.000Z"
"Donihue" "Colin M." "USA" "Harvard University" "Yes" "2017-12-01T20:00:00.000Z"
"Donnelly" "Maureen A" "USA" "Florida International University" "No" "2017-12-01T20:00:00.000Z"
"Donovan" "Victoria M." "USA" "University of Nebraska" "Yes" "2017-12-01T20:00:00.000Z"
"Dooley" "Helen" "USA" "University of Maryland" "Yes" "2017-12-03T15:42:05.475Z"
"Dorca" "Andressa Hilário" "Brazil" "Universidade do Estado de Mato Grosso" "Yes" "2017-12-01T20:00:00.000Z"
"Dornburg" "Alex" "USA" "North Carolina Museum of Natural Sciences" "Yes" "2017-12-01T20:00:00.000Z"
"Dornelas" "Maria" "UK" "University of Sy Andrews" "No" "2017-12-01T20:00:00.000Z"
"Dornhege" "Mareike C" "Japan" "Sophia University" "Yes" "2017-12-01T20:00:00.000Z"
"Doty" "Anna C" "USA" "Arkansas State University" "Yes" "2017-12-01T20:00:00.000Z"
"Doublet" "Vincent" "UK" "University of Edinburgh" "Yes" "2017-12-01T20:00:00.000Z"
"Dougherty" "Paul J." "USA" "University of Wyoming" "Yes" "2017-12-01T20:00:00.000Z"
"Douglas" "Michael W." "USA" "National Oceanic and Atmospheric Adminis (ret)" "No" "2017-12-01T20:00:00.000Z"
"Douglas" "Norman" "USA" "University of Florida" "Yes" "2017-12-01T20:00:00.000Z"
"Douglas" "Rodríguez Olarte" "Venezuela" "Universidad Centroccidental Lisandro Alvarado" "Yes" "2017-12-02T23:37:13.225Z"
"Dove" "Alistair" "USA" "Georgia Aquarium" "Yes" "2017-12-01T20:00:00.000Z"
"Dowell" "Jordan A." "USA" "University of Central Florida" "No" "2017-12-01T20:00:00.000Z"
"Dowler" "Robert C." "USA" "Angelo State University" "Yes" "2017-12-01T20:00:00.000Z"
"Doyle-Capitman" "Catherine" "USA" "Cornell University" "Yes" "2017-12-01T20:00:00.000Z"
"Drake" "Donald R." "USA" "University of Hawaii at Manoa" "Yes" "2017-12-01T20:00:00.000Z"
"Draper" "Alison" "USA" "Trinity College, Hartford, CT" "Yes" "2017-12-01T20:00:00.000Z"
"Draper Munt" "David" "Portugal" "Universidade de Lisboa" "Yes" "2017-12-01T20:00:00.000Z"
"Dray" "Stéphane" "France" "Université Lyon 1, CNRS" "Yes" "2017-12-01T20:00:00.000Z"
"Drea" "Christine" "USA" "Duke University" "No" "2017-12-01T20:00:00.000Z"
"Dreelin" "R. Andrew" "USA" "Cornell University" "Yes" "2017-12-01T20:00:00.000Z"
"Driscoll" "Heather" "USA" "Norwich University" "Yes" "2017-12-02T17:55:45.640Z"
"Droual" "Gabin" "France" "IUEM" "Yes" "2017-12-11T08:20:11.631Z"
"Drouilly" "Marine" "South Africa" "Institute for Communities and Widlife in Africa, University of Cape Town" "Yes" "2017-12-01T20:00:00.000Z"
"Drummond" "Leandro O." "Brazil" "Universidade Federal do Rio de Janeiro" "Yes" "2017-12-01T20:00:00.000Z"
"Duarte" "Leandro" "Brazil" "Universidade Federal do Rio Grande do Sul" "Yes" "2017-12-01T20:00:00.000Z"
"Duarte Marin" "Sebastian" "Colombia" "Universidad del Quindio, Armenia" "Yes" "2017-12-01T20:00:00.000Z"
"Duchardt" "Courtney" "USA" "University of Wyoming" "Yes" "2017-12-01T21:32:30.204Z"
"Duckett" "Catherine N" "USA" "Monmouth University" "Yes" "2017-12-01T20:00:00.000Z"
"Dudas" "Kolja O." "Germany" "University of Hamburg, Biocentre Klein Flottbek" "Yes" "2017-12-01T20:00:00.000Z"
"Dudgeon" "Steven R." "USA" "California State Univeristy, Northridge" "Yes" "2017-12-01T20:00:00.000Z"
"Dudle" "Dana A." "USA" "DePauw University" "Yes" "2017-12-01T20:00:00.000Z"
"Dudney" "Joan" "USA" "UC Berkeley" "Yes" "2017-12-01T20:54:58.141Z"
"Dueker" "Brittany" "USA" "Unversity of Nebraska-Lincoln" "Yes" "2017-12-01T20:00:00.000Z"
"Dufour" "Monique" "USA" "Virginia Tech" "No" "2017-12-01T20:00:00.000Z"
"Duggan" "Jennifer" "USA" "California State University, Monterey Bay" "Yes" "2017-12-01T22:20:39.221Z"
"Duke" "Clifford" "Brazil" "Ecological Society of America" "Yes" "2017-12-01T20:00:00.000Z"
"Dumbacher" "John P" "USA" "California Academy of Sciences" "Yes" "2017-12-01T20:00:00.000Z"
"Duncan" "Neil" "USA" "American Museum of Natural History" "Yes" "2017-12-01T20:00:00.000Z"
"Dunham" "Amy" "USA" "Rice University" "Yes" "2017-12-02T03:23:57.053Z"
"Dunn" "Regan" "USA" "Field Museum of Natural History" "Yes" "2017-12-01T20:00:00.000Z"
"Dunster" "Gideon P." "USA" "University of Washington, Seattle" "Yes" "2017-12-01T20:00:00.000Z"
"Dunthorn" "Micah" "Germany" "University of Kaiserslautern " "Yes" "2017-12-02T14:22:00.074Z"
"Duong" "Michelle" "USA" "Yale University" "Yes" "2017-12-01T20:00:00.000Z"
"Dupraz" "Franck" "France" "Groupe d'Etudes des cétacés de Méditerranée" "Yes" "2017-12-01T20:00:00.000Z"
"Dureuil" "Manuel" "Canada" "Dalhousie University, Sharks of the Atlantic Research and Conservation Centre" "Yes" "2017-12-01T20:00:00.000Z"
"Durieu" "Benoit" "Belgium" "Université de Liège" "No" "2017-12-01T20:00:00.000Z"
"Durso" "Andrew M." "Germany" "Max Planck Institute for Biogeochemistry" "Yes" "2017-12-01T20:00:00.000Z"
"Dury" "Guillaume J." "USA" "Indiana University Bloomington" "Yes" "2017-12-01T20:00:00.000Z"
"Dustan" "Phillip" "USA" "College of Charleston" "No" "2017-12-01T20:00:00.000Z"
"Dutta" "Trishna" "Germany" "University of Göttingen" "Yes" "2017-12-01T20:00:00.000Z"
"Dyson" "Karen" "USA" "University of Washington" "Yes" "2017-12-01T20:00:00.000Z"
"Earl" "Julia E." "USA" "Louisiana Tech University" "Yes" "2017-12-01T20:00:00.000Z"
"Eaton" "Deren" "USA" "Columbia University" "Yes" "2017-12-01T20:00:00.000Z"
"Ebersbach" "Jana" "Canada" "University of Saskatchewan" "Yes" "2017-12-03T17:19:21.449Z"
"Echeverry" "Maria" "Colombia" "Universidad Javeriana" "Yes" "2017-12-03T13:29:37.019Z"
"Eckstein" "Bárbara" "Brazil" "Embrapa - Cenargen" "Yes" "2017-12-01T20:00:00.000Z"
"Economo" "Evan" "Japan" "Okinawa Institute of Science and Technology (OIST)" "Yes" "2017-12-01T20:00:00.000Z"
"Edelman" "Andrew" "USA" "University of West Georgia" "Yes" "2017-12-01T22:11:25.271Z"
"Edler" "Katarina" "Sweden" "-" "No" "2017-12-01T21:18:25.374Z"
"Edler" "Daniel" "Sweden" "Gothenburg Global Biodiversity Centre" "Yes" "2017-12-01T20:00:00.000Z"
"Edman" "Lars" "-" "-" "No" "2017-12-02T22:56:02.267Z"
"Edmison" "Nicole R" "USA" "Smithsonian National Museum of Natural History" "Yes" "2017-12-01T20:00:00.000Z"
"Edmonds" "Devin A." "USA" "Illinois Natural History Survey" "Yes" "2017-12-01T20:00:00.000Z"
"Edris" "Wade" "USA" "Penn State College of Medicine" "No" "2017-12-01T20:00:00.000Z"
"Edwards" "Scott V." "USA" "Harvard University" "No" "2017-12-01T20:00:00.000Z"
"Edwards" "Christine E." "USA" "Missouri Botanical Garden" "Yes" "2017-12-01T20:00:00.000Z"
"Edwards" "Danielle" "USA" "University of California, Merced" "Yes" "2017-12-01T20:00:00.000Z"
"Edwards" "Erika J" "USA" "Yale University" "Yes" "2017-12-01T20:00:00.000Z"
"Egardt" "Jenny" "Sweden" "Gothenburg university" "Yes" "2017-12-02T15:32:11.536Z"
"Eggleston" "Rory" "USA" "University of Texas Rio Grande Valley" "Yes" "2017-12-01T20:00:00.000Z"
"Égüez" "Gabriela" "Ecuador" "USFQ" "No" "2017-12-01T20:00:00.000Z"
"Ehlers" "Sierra" "USA" "University of Texas" "No" "2017-12-01T21:43:43.568Z"
"Ehrlich" "Paul R." "USA" "Stanford University" "Yes" "2017-12-01T20:00:00.000Z"
"Ehrlich" "Anne H." "USA" "Stanford University" "No" "2017-12-01T20:00:00.000Z"
"Eipper" "Scott C" "Australia" "Nature 4 You" "Yes" "2017-12-02T06:44:34.970Z"
"Eisen" "Michael" "USA" "University of California, Berkeley" "Yes" "2017-12-01T20:00:00.000Z"
"Eisen" "Jonathan A." "USA" "University of California, Davis" "Yes" "2017-12-01T20:00:00.000Z"
"Eisenlohr" "Pedro V." "Brazil" "Universidade do Estado de Mato Grosso" "Yes" "2017-12-01T20:00:00.000Z"
"Eiting" "Thomas P." "USA" "University of Utah" "Yes" "2017-12-01T20:00:00.000Z"
"Eizirik" "Eduardo" "Brazil" "Pontifical Catholic University of Rio Grande do Sul" "Yes" "2017-12-01T20:00:00.000Z"
"Ek" "Anna-Carin" "Sweden" "Gothenburg Botanical Garden" "No" "2017-12-01T20:00:00.000Z"
"Ekblom" "Robert" "Sweden" "Uppsala University" "Yes" "2017-12-01T20:00:00.000Z"
"Ekernas" "L. Stefan" "USA" "U.S. Geological Survey" "Yes" "2017-12-01T20:00:00.000Z"
"Eklund" "Johanna" "Finland" "University of Helsinki" "Yes" "2017-12-04T07:07:57.945Z"
"Eklund" "Rolf" "Sweden" "Lund University" "No" "2017-12-02T20:09:47.847Z"
"Eklund" "Laura" "USA" "California Academy of Sciences" "Yes" "2017-12-01T20:00:00.000Z"
"Ekman" "Stefan" "Sweden" "Museum of Evolution, Uppsala University" "Yes" "2017-12-01T20:00:00.000Z"
"Ekroos" "Johan" "Sweden" "Lund University" "Yes" "2017-12-01T20:00:00.000Z"
"Ekvall" "Helen" "Sweden" "Gothenburg Botanical Garden" "No" "2017-12-01T20:00:00.000Z"
"El Adli" "Joseph J." "USA" "University of Michigan" "Yes" "2017-12-01T20:00:00.000Z"
"Elahi" "Robin" "USA" "Stanford University" "Yes" "2017-12-01T20:00:00.000Z"
"Elbroch" "Mark" "USA" "Panthera" "Yes" "2017-12-01T20:00:00.000Z"
"Elías" "Diego J." "Guatemala" "Louisiana State University" "Yes" "2017-12-01T20:00:00.000Z"
"Elias-Costa" "Agustín" "Argentina" "Museo Argentino de Ciencias Naturales \\"Bernardino Rivadavia\\" - CONICET" "Yes" "2017-12-01T20:00:00.000Z"
"Elizondo" "Claudia" "Uruguay" "Instituto de Investigaciones Biológicas Clemente Estable" "Yes" "2017-12-01T20:00:00.000Z"
"Ellis" "Ryan, J." "Australia" "Western Australian Museum" "Yes" "2017-12-01T20:00:00.000Z"
"Ellis" "Vincenzo A" "Sweden" "Lund University" "Yes" "2017-12-01T20:00:00.000Z"
"Ellis" "Erle C" "USA" "University of Maryland, Baltimore County" "Yes" "2017-12-01T20:00:00.000Z"
"Ellis" "Hugh" "USA" "University of San Diego" "Yes" "2017-12-01T20:00:00.000Z"
"Ellis Soto" "Diego" "Germany" "Max Planck Institute for Ornithology/Yale University" "Yes" "2017-12-01T20:00:00.000Z"
"Ellwood" "Elizabeth" "USA" "Natural History Museum of Los Angeles County" "Yes" "2017-12-01T20:00:00.000Z"
"Emel" "Sarah L" "USA" "University of Massachusetts Amherst" "Yes" "2017-12-01T20:00:00.000Z"
"Emery" "Nate" "USA" "Michigan State University" "Yes" "2017-12-01T20:00:00.000Z"
"Emke" "Vrasdonk" "Sweden" "Chalmers University of Technology" "Yes" "2017-12-01T20:00:00.000Z"
"Emlen" "Douglas" "USA" "University of Montana" "Yes" "2017-12-01T20:00:00.000Z"
"Emmons" "Louise H" "USA" "Smithsonian Institution" "Yes" "2017-12-01T20:00:00.000Z"
"English" "Holly M" "UK" "Swansea University" "Yes" "2017-12-01T20:00:00.000Z"
"Enns" "Joanna L." "Canada" "University of British Columbia" "No" "2017-12-01T20:00:00.000Z"
"Enoksson" "Bodil" "Sweden" "Department of Biology, Lund University" "Yes" "2017-12-01T20:00:00.000Z"
"Entiauspe-Neto" "Omar M." "Brazil" "Universidade Federal do Rio Grande" "Yes" "2017-12-01T20:00:00.000Z"
"Erb" "Liesl" "USA" "Warren Wilson College, Asheville, NC" "Yes" "2017-12-01T20:00:00.000Z"
"Eribo" "Broderick" "USA" "Howard University" "Yes" "2017-12-02T13:02:56.883Z"
"Eriksson" "Jonna S." "Sweden" "University of Gothenburg" "Yes" "2017-12-01T20:00:00.000Z"
"Eriksson" "Mats" "Sweden" "Uppsala University" "No" "2017-12-01T20:00:00.000Z"
"Erkens" "Roy H.J." "Netherlands" "Maastricht Science Programme, Maastricht University" "Yes" "2017-12-01T20:00:00.000Z"
"Ernst" "Kacey" "USA" "University of Arizona" "Yes" "2017-12-01T20:00:00.000Z"
"Erritzøe" "Johannes" "Denmark" "House of Bird Research" "No" "2017-12-01T20:00:00.000Z"
"Erséus" "Christer" "Sweden" "University of Gothenburg" "Yes" "2017-12-01T20:00:00.000Z"
"Erwin" "Terry L." "USA" "Smithsonian Institution" "Yes" "2017-12-01T20:00:00.000Z"
"Escalante" "Tania" "Mexico" "Universidad nacional Autonoma de Mexico" "Yes" "2017-12-01T20:00:00.000Z"
"Escalona" "Moisés" "Venezuela" "Universidad de Los Andes" "Yes" "2017-12-01T20:00:00.000Z"
"Escobar" "Ana Lucía" "Colombia" "Universidad EAFIT" "Yes" "2017-12-01T20:00:00.000Z"
"Escobar" "Luis E." "USA" "Virginia Polytechnic Institute and State University" "Yes" "2017-12-01T20:00:00.000Z"
"Eserman" "Lauren" "USA" "Louisiana State University" "Yes" "2017-12-02T15:30:52.070Z"
"Espeland" "Marianne" "Germany" "Zoological Research Museum Alexander Koenig" "Yes" "2017-12-01T20:00:00.000Z"
"Espindola" "Anahi" "USA" "University of Idaho" "Yes" "2017-12-01T20:00:00.000Z"
"Espinoza-Paredes" "Pedro" "Peru" "Universidad Nacional de San Marcos" "Yes" "2017-12-02T13:21:57.405Z"
"Esposito" "Lauren A." "USA" "California Academy of Sciences" "Yes" "2017-12-01T20:00:00.000Z"