-
Notifications
You must be signed in to change notification settings - Fork 5
/
name_variants.yaml
15969 lines (15969 loc) · 445 KB
/
name_variants.yaml
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
- canonical: {first: M. B., last: Masud}
comment: uni0408
id: M B-Masud
- canonical: {first: M. N., last: Khaliq}
comment: uni0478
id: M N-Khaliq
- canonical: {first: Neil, last: McIntyre}
comment: uni0224
id: Neil-McIntyre
- canonical: {first: Kevin S., last: McCann}
comment: uni0009
id: Kevin S-McCann
- canonical: {first: Anling, last: Liu}
comment: uni0233
id: Anling-Liu
- canonical: {first: Stefan, last: "H\xE4rer"}
comment: uni0184
id: "Stefan-H\xE4rer"
- canonical: {first: R. L., last: Rothwell}
comment: uni0012
id: R L-Rothwell
- canonical: {first: Graham R., last: Hillman}
comment: uni0010
id: Graham R-Hillman
- canonical: {first: Emily Kaitlin, last: McCann}
comment: uni0002
id: Emily Kaitlin-McCann
- canonical: {first: Sonya, last: Kleywegt}
comment: uni0426
id: Sonya-Kleywegt
- canonical: {first: Willemijn M., last: Appels}
comment: uni1427
id: Willemijn M-Appels
- canonical: {first: Anna, last: Coles}
comment: uni0006
id: Anna-Coles
- canonical: {first: Julian C., last: Brimelow}
comment: uni0143
id: Julian C-Brimelow
- canonical: {first: William R., last: Burrows}
comment: uni0005
id: William R-Burrows
- canonical: {first: Oleg, last: Sheremet}
comment: uni0645
id: Oleg-Sheremet
- canonical: {first: Thuan, last: Chu}
comment: uni1428
id: Thuan-Chu
- canonical: {first: Kwok Pan, last: Chun}
comment: uni0770
id: Kwok Pan-Chun
- canonical: {first: Juha M., last: Metsaranta}
comment: uni0010
id: Juha M-Metsaranta
- canonical: {first: Babak, last: Farjad}
comment: uni0424
id: Babak-Farjad
- canonical: {first: Anil, last: Gupta}
comment: uni1429
id: Anil-Gupta
- canonical: {first: Danielle J., last: Marceau}
comment: uni0007
id: Danielle J-Marceau
- canonical: {first: "Jos\xE9-Luis", last: Guerrero}
comment: uni0651
id: "Jos\xE9-Luis-Guerrero"
- canonical: {first: Patricia, last: Pernica}
comment: uni0003
id: Patricia-Pernica
- canonical: {first: Murray, last: Mackay}
comment: uni0005
id: Murray-Mackay
- canonical: {first: K.-E., last: Lindenschmidt}
comment: uni0003
id: K-E-Lindenschmidt
- canonical: {first: Anthony, last: Liu}
comment: uni0849
id: Anthony-Liu
- canonical: {first: Sudesh, last: Boodoo}
comment: uni0005
id: Sudesh-Boodoo
- canonical: {first: Ron, last: Goodson}
comment: uni0005
id: Ron-Goodson
- canonical: {first: C. E., last: Meek}
comment: uni0001
id: C E-Meek
- canonical: {first: Glen J. Van Der, last: Kraak}
comment: uni0009
id: Glen J Van Der-Kraak
- canonical: {first: Gerald R., last: Tetreault}
comment: uni0005
id: Gerald R-Tetreault
- canonical: {first: Jana, last: Sillmann}
comment: uni0064
id: Jana-Sillmann
- canonical: {first: Thordis L., last: Thorarinsdottir}
comment: uni0076
id: Thordis L-Thorarinsdottir
- canonical: {first: Noel, last: Keenlyside}
comment: uni0874
id: Noel-Keenlyside
- canonical: {first: Nathalie, last: Schaller}
comment: uni1430
id: Nathalie-Schaller
- canonical: {first: Gabriele C., last: Hegerl}
comment: uni0081
id: Gabriele C-Hegerl
- canonical: {first: Sonia I., last: Seneviratne}
comment: uni0035
id: Sonia I-Seneviratne
- canonical: {first: Robert, last: Vautard}
comment: uni0808
id: Robert-Vautard
- canonical: {first: Peter, last: Stott}
comment: uni0289
id: Peter-Stott
- canonical: {first: David J., last: Karoly}
comment: uni0066
id: David J-Karoly
- canonical: {first: Marc F. P., last: Bierkens}
comment: uni0123
id: Marc F P-Bierkens
- canonical: {first: Ad de, last: Roo}
comment: uni1431
id: Ad de-Roo
- canonical: {first: Paul A., last: Dirmeyer}
comment: uni0429
id: Paul A-Dirmeyer
- canonical: {first: Megan, last: Konar}
comment: uni0079
id: Megan-Konar
- canonical: {first: Albert I. J. M. van, last: Dijk}
comment: uni0039
id: Albert I J M van-Dijk
- canonical: {first: H.A.J. van, last: Lanen}
comment: uni0039
id: HAJ van-Lanen
- canonical: {first: Charles J, last: "V\xF6r\xF6smarty"}
comment: uni1432
id: "Charles J-V\xF6r\xF6smarty"
- canonical: {first: Niko, last: Wanders}
comment: uni0123
id: Niko-Wanders
- canonical: {first: Justin, last: Adams}
comment: uni1433
id: Justin-Adams
- canonical: {first: Anne, last: Walker}
comment: uni1434
id: Anne-Walker
- canonical: {first: Gerard, last: Kieley}
comment: uni0000
id: Gerard-Kieley
- canonical: {first: Eric A., last: Sproles}
comment: uni1435
id: Eric A-Sproles
- canonical: {first: Marc, last: Pons}
comment: uni1436
id: Marc-Pons
- canonical: {first: Lahoucine, last: Hanich}
comment: uni0757
id: Lahoucine-Hanich
- canonical: {first: Abdelghani, last: Boudhar}
comment: uni1426
id: Abdelghani-Boudhar
- canonical: {first: N. P., last: Molotch}
comment: uni0019
id: N P-Molotch
- canonical: {first: James O., last: Sickman}
comment: uni0581
id: James O-Sickman
- canonical: {first: Nathan, last: Bossa}
comment: uni1437
id: Nathan-Bossa
- canonical: {first: Alexis W., last: Carpenter}
comment: uni1439
id: Alexis W-Carpenter
- canonical: {first: Naresh, last: Kumar}
comment: uni0039
id: Naresh-Kumar
- canonical: {first: Mark R., last: Wiesner}
comment: uni0198
id: Mark R-Wiesner
- canonical: {first: M. Jim, last: Hendry}
comment: uni0001
id: M Jim-Hendry
- canonical: {first: Elco, last: Luijendijk}
comment: uni1440
id: Elco-Luijendijk
- canonical: {first: Scott, last: Jasechko}
comment: uni0165
id: Scott-Jasechko
- canonical: {first: Blake, last: Woroniuk}
comment: uni0001
id: Blake-Woroniuk
- canonical: {first: Kristl, last: Tipton}
comment: uni0001
id: Kristl-Tipton
- canonical: {first: Stephen E., last: Grasby}
comment: uni0260
id: Stephen E-Grasby
- canonical: {first: Pertti, last: "Ala\u2010aho"}
comment: uni0814
id: "Pertti-Ala\u2010aho"
- canonical: {first: Philip A., last: Wookey}
comment: uni1441
id: Philip A-Wookey
- canonical: {first: Lorna E., last: Street}
comment: uni0081
id: Lorna E-Street
- canonical: {first: George H., last: Allen}
comment: uni0324
id: George H-Allen
- canonical: {first: Faisal, last: Hossain}
comment: uni0055
id: Faisal-Hossain
- canonical: {first: Sally, last: Archibald}
comment: uni1442
id: Sally-Archibald
- canonical: {first: Caroline E. R., last: Lehmann}
comment: uni1443
id: Caroline E R-Lehmann
- canonical: {first: Claire M., last: Belcher}
comment: uni1444
id: Claire M-Belcher
- canonical: {first: William J., last: Bond}
comment: uni0683
id: William J-Bond
- canonical: {first: Ross A., last: Bradstock}
comment: uni1445
id: Ross A-Bradstock
- canonical: {first: Anne-Laure, last: Daniau}
comment: uni0036
id: Anne-Laure-Daniau
- canonical: {first: Kyle G., last: Dexter}
comment: uni0081
id: Kyle G-Dexter
- canonical: {first: Elisabeth J., last: Forrestel}
comment: uni0196
id: Elisabeth J-Forrestel
- canonical: {first: Michelle, last: Greve}
comment: uni0695
id: Michelle-Greve
- canonical: {first: Tianhua, last: He}
comment: uni1446
id: Tianhua-He
- canonical: {first: Steven I., last: Higgins}
comment: uni0428
id: Steven I-Higgins
- canonical: {first: William A., last: Hoffmann}
comment: uni0136
id: William A-Hoffmann
- canonical: {first: Byron B., last: Lamont}
comment: uni1447
id: Byron B-Lamont
- canonical: {first: Daniel J., last: McGlinn}
comment: uni1448
id: Daniel J-McGlinn
- canonical: {first: Glenn R., last: Moncrieff}
comment: uni0683
id: Glenn R-Moncrieff
- canonical: {first: Colin P., last: Osborne}
comment: uni0249
id: Colin P-Osborne
- canonical: {first: Juli G., last: Pausas}
comment: uni1438
id: Juli G-Pausas
- canonical: {first: Owen, last: Price}
comment: uni1424
id: Owen-Price
- canonical: {first: Brad S., last: Ripley}
comment: uni0726
id: Brad S-Ripley
- canonical: {first: Dylan W., last: Schwilk}
comment: uni0728
id: Dylan W-Schwilk
- canonical: {first: Marcelo Fragomeni, last: Simon}
comment: uni0738
id: Marcelo Fragomeni-Simon
- canonical: {first: Guido R. van der, last: Werf}
comment: uni0039
id: Guido R van der-Werf
- canonical: {first: Amy E., last: Zanne}
comment: uni1412
id: Amy E-Zanne
- canonical: {first: "Jos\xE9 R.", last: Bicudo}
comment: uni0479
id: "Jos\xE9 R-Bicudo"
- canonical: {first: Pam, last: Law}
comment: uni0703
id: Pam-Law
- canonical: {first: Susan A., last: Andrews}
comment: uni0022
id: Susan A-Andrews
- canonical: {first: Carol, last: Miller}
comment: uni0207
id: Carol-Miller
- canonical: {first: "J\xE9r\xF4me", last: Mathieu}
comment: uni1423
id: "J\xE9r\xF4me-Mathieu"
- canonical: {first: Pablo, last: Gamazo}
comment: uni0357
id: Pablo-Gamazo
- canonical: {first: Chris J., last: Johnson}
comment: uni0028
id: Chris J-Johnson
- canonical: {first: "Martin\u2010Hugues", last: "St\u2010Laurent"}
comment: uni0410
id: "Martin\u2010Hugues-St\u2010Laurent"
- canonical: {first: Agnieszka, last: Barszcz}
comment: uni0005
id: Agnieszka-Barszcz
- canonical: {first: Mitchell, last: Krafczek}
comment: uni0009
id: Mitchell-Krafczek
- canonical: {first: Daniel, last: Clewley}
comment: uni0472
id: Daniel-Clewley
- canonical: {first: J., last: Whitcomb}
comment: uni0720
id: J-Whitcomb
- canonical: {first: Ruzbeh, last: Akbar}
comment: uni1401
id: Ruzbeh-Akbar
- canonical: {first: Mahta, last: Moghaddam}
comment: uni1402
id: Mahta-Moghaddam
- canonical: {first: Heather, last: McNarin}
comment: uni0025
id: Heather-McNarin
- canonical: {first: Sytze de, last: Bruin}
comment: uni0039
id: Sytze de-Bruin
- canonical: {first: "Kate\u0159ina", last: "Havr\xE1nkov\xE1"}
comment: uni0071
id: "Kate\u0159ina-Havr\xE1nkov\xE1"
- canonical: {first: Lenka, last: "Krupkov\xE1"}
comment: uni0071
id: "Lenka-Krupkov\xE1"
- canonical: {first: Vernon, last: Bevan}
comment: uni0002
id: Vernon-Bevan
- canonical: {first: Margot, last: Chapuis}
comment: uni0036
id: Margot-Chapuis
- canonical: {first: John C, last: Parish}
comment: uni1403
id: John C-Parish
- canonical: {first: William J., last: Snodgrass}
comment: uni1404
id: William J-Snodgrass
- canonical: {first: Thomas, last: Baker}
comment: uni1405
id: Thomas-Baker
- canonical: {first: Justin, last: Straker}
comment: uni0017
id: Justin-Straker
- canonical: {first: Stacey Lynne, last: Strilesky}
comment: uni0077
id: Stacey Lynne-Strilesky
- canonical: {first: Tim, last: Vogel}
comment: uni0483
id: Tim-Vogel
- canonical: {first: Terrance A., last: Fonstad}
comment: uni0001
id: Terrance A-Fonstad
- canonical: {first: "No\xE9mie", last: Neverre}
comment: uni0534
id: "No\xE9mie-Neverre"
- canonical: {first: Carlos M., last: Ordens}
comment: uni0224
id: Carlos M-Ordens
- canonical: {first: Maria Teresa Condesso de, last: Melo}
comment: uni0533
id: Maria Teresa Condesso de-Melo
- canonical: {first: Rodrigo, last: Campos-Ruiz}
comment: uni0012
id: Rodrigo-Campos-Ruiz
- canonical: {first: Mark, last: Taylor}
comment: uni0919
id: Mark-Taylor
- canonical: {first: Felix C.C., last: Chan}
comment: uni0004
id: Felix CC-Chan
- canonical: {first: M. R., last: Pejam}
comment: uni0004
id: M R-Pejam
- canonical: {first: Janelle, last: Trant}
comment: uni0004
id: Janelle-Trant
- canonical: {first: Michelle, last: Kula}
comment: uni0004
id: Michelle-Kula
- canonical: {first: Rachel A., last: Skubel}
comment: uni0202
id: Rachel A-Skubel
- canonical: {first: Lianguo, last: Chen}
comment: uni0918
id: Lianguo-Chen
- canonical: {first: James C.W., last: Lam}
comment: uni0530
id: James CW-Lam
- canonical: {first: Chen-Yan, last: Hu}
comment: uni0928
id: Chen-Yan-Hu
- canonical: {first: Mirabelle M.P., last: Tsui}
comment: uni0972
id: Mirabelle MP-Tsui
- canonical: {first: Qi, last: Wang}
comment: uni0163
id: Qi-Wang
- canonical: {first: Patrick T.I., last: Lam}
comment: uni0270
id: Patrick TI-Lam
- canonical: {first: Michael, last: Abraha}
comment: uni0016
id: Michael-Abraha
- canonical: {first: Thomas L., last: "O\u2019Halloran"}
comment: uni0264
id: "Thomas L-O\u2019Halloran"
- canonical: {first: Christian, last: Dold}
comment: uni0041
id: Christian-Dold
- canonical: {first: Shannon, last: Brown}
comment: uni0009
id: Shannon-Brown
- canonical: {first: Jerry L., last: Hatfield}
comment: uni0520
id: Jerry L-Hatfield
- canonical: {first: John M., last: Baker}
comment: uni0176
id: John M-Baker
- canonical: {first: James R., last: Cober}
comment: uni0002
id: James R-Cober
- canonical: {first: Laura L. Van, last: Eerd}
comment: uni0009
id: Laura L Van-Eerd
- canonical: {first: Mattia, last: Stagnaro}
comment: uni0427
id: Mattia-Stagnaro
- canonical: {first: Luca Giovanni, last: Lanza}
comment: uni1406
id: Luca Giovanni-Lanza
- canonical: {first: "H\xE5kan", last: Rydin}
comment: uni0263
id: "H\xE5kan-Rydin"
- canonical: {first: Fia, last: Bengtsson}
comment: uni0000
id: Fia-Bengtsson
- canonical: {first: Nicholas, last: Boncek}
comment: uni0415
id: Nicholas-Boncek
- canonical: {first: Luca, last: Bragazza}
comment: uni0265
id: Luca-Bragazza
- canonical: {first: "Zhao\u2010Jun", last: Bu}
comment: uni0416
id: "Zhao\u2010Jun-Bu"
- canonical: {first: S. J. M., last: Caporn}
comment: uni1407
id: S J M-Caporn
- canonical: {first: Ellen, last: Dorrepaal}
comment: uni0872
id: Ellen-Dorrepaal
- canonical: {first: "\u041E. \u0412.", last: "\u0413\u0430\u043B\u0430\u043D\u0438\
\u043D\u0430"}
comment: uni0495
id: "\u041E \u0412-\u0413\u0430\u043B\u0430\u043D\u0438\u043D\u0430"
- canonical: {first: Anna, last: Ganeva}
comment: uni0000
id: Anna-Ganeva
- canonical: {first: David P., last: Gillikin}
comment: uni0415
id: David P-Gillikin
- canonical: {first: Irina, last: Goia}
comment: uni1408
id: Irina-Goia
- canonical: {first: N. D., last: Goncharova}
comment: uni1409
id: N D-Goncharova
- canonical: {first: Michal, last: "H\xE1jek"}
comment: uni0447
id: "Michal-H\xE1jek"
- canonical: {first: Akira, last: Haraguchi}
comment: uni1410
id: Akira-Haraguchi
- canonical: {first: Martin, last: "Jirou\u0161ek"}
comment: uni0443
id: "Martin-Jirou\u0161ek"
- canonical: {first: Katarzyna, last: "Kajuka\u0142o"}
comment: uni0555
id: "Katarzyna-Kajuka\u0142o"
- canonical: {first: Edgar, last: Karofeld}
comment: uni0419
id: Edgar-Karofeld
- canonical: {first: Natalia G., last: Koronatova}
comment: uni0334
id: Natalia G-Koronatova
- canonical: {first: Natalia P., last: Kosykh}
comment: uni0334
id: Natalia P-Kosykh
- canonical: {first: Juul, last: Limpens}
comment: uni0039
id: Juul-Limpens
- canonical: {first: Jinze, last: Ma}
comment: uni1400
id: Jinze-Ma
- canonical: {first: Rayna, last: Natcheva}
comment: uni1411
id: Rayna-Natcheva
- canonical: {first: "Maria\u200B", last: Noskova}
comment: uni0000
id: "Maria\u200B-Noskova"
- canonical: {first: Kyle, last: Pilkington}
comment: uni0415
id: Kyle-Pilkington
- canonical: {first: Sean M., last: Robinson}
comment: uni1413
id: Sean M-Robinson
- canonical: {first: David, last: Singer}
comment: uni1414
id: David-Singer
- canonical: {first: Hans K., last: "Sten\xF8ien"}
comment: uni0421
id: "Hans K-Sten\xF8ien"
- canonical: {first: Kai, last: Vellak}
comment: uni1415
id: Kai-Vellak
- canonical: {first: Anouk, last: Verheyden}
comment: uni0415
id: Anouk-Verheyden
- canonical: {first: Steven K., last: Rice}
comment: uni0415
id: Steven K-Rice
- canonical: {first: Daniel, last: Itenfisu}
comment: uni0885
id: Daniel-Itenfisu
- canonical: {first: Marco A., last: "Hern\xE1ndez-Henr\xEDquez"}
comment: uni0028
id: "Marco A-Hern\xE1ndez-Henr\xEDquez"
- canonical: {first: Mark P., last: Taylor}
comment: uni1416
id: Mark P-Taylor
- canonical: {first: Tyler, last: Veness}
comment: uni0006
id: Tyler-Veness
- canonical: {first: Marc, last: Olefs}
comment: uni0649
id: Marc-Olefs
- canonical: {first: Cody Lee, last: David}
comment: uni0001
id: Cody Lee-David
- canonical: {first: R., last: Lemke}
comment: uni0025
id: R-Lemke
- canonical: {first: Richard E., last: Farrell}
comment: uni0001
id: Richard E-Farrell
- canonical: {first: Eric, last: Stofferahn}
comment: uni0865
id: Eric-Stofferahn
- canonical: {first: P. C., last: Griffith}
comment: uni0288
id: P C-Griffith
- canonical: {first: Sarah, last: Chadburn}
comment: uni0205
id: Sarah-Chadburn
- canonical: {first: Abhishek, last: Chatterjee}
comment: uni0019
id: Abhishek-Chatterjee
- canonical: {first: C. S. R., last: Neigh}
comment: uni0063
id: C S R-Neigh
- canonical: {first: Yongkang, last: Xue}
comment: uni0109
id: Yongkang-Xue
- canonical: {first: Felix, last: Nwaishi}
comment: uni0641
id: Felix-Nwaishi
- canonical: {first: R. M., last: Petrone}
comment: uni0002
id: R M-Petrone
- canonical: {first: Lide, last: Gu}
comment: uni0050
id: Lide-Gu
- canonical: {first: Wanli, last: Yan}
comment: uni0962
id: Wanli-Yan
- canonical: {first: Donald K., last: Atwood}
comment: uni0085
id: Donald K-Atwood
- canonical: {first: H. V., last: Gupta}
comment: uni0029
id: H V-Gupta
- canonical: {first: Jessica E., last: Halofsky}
comment: uni0955
id: Jessica E-Halofsky
- canonical: {first: Sheri Anne, last: Andrews-Key}
comment: uni0001
id: Sheri Anne-Andrews-Key
- canonical: {first: Harry W., last: Nelson}
comment: uni0017
id: Harry W-Nelson
- canonical: {first: David L., last: Peterson}
comment: uni0324
id: David L-Peterson
- canonical: {first: Kristen, last: Schmitt}
comment: uni0085
id: Kristen-Schmitt
- canonical: {first: Christopher W., last: Swanston}
comment: uni0207
id: Christopher W-Swanston
- canonical: {first: Tim, last: Williamson}
comment: uni1418
id: Tim-Williamson
- canonical: {first: Alexandra, last: Mozil}
comment: uni0007
id: Alexandra-Mozil
- canonical: {first: Seyyed Ebrahim Hashemi, last: Garmdareh}
comment: uni0655
id: Seyyed Ebrahim Hashemi-Garmdareh
- canonical: {first: Raheleh, last: Malekian}
comment: uni1419
id: Raheleh-Malekian
- canonical: {first: Ali, last: Madani}
comment: uni1420
id: Ali-Madani
- canonical: {first: Robert J., last: Gordon}
comment: uni1421
id: Robert J-Gordon
- canonical: {first: Yanping, last: He}
comment: uni0725
id: Yanping-He
- canonical: {first: Da, last: Chen}
comment: uni0272
id: Da-Chen
- canonical: {first: Yibo, last: Zhou}
comment: uni0962
id: Yibo-Zhou
- canonical: {first: Kexin, last: Xu}
comment: uni0459
id: Kexin-Xu
- canonical: {first: Ronghua, last: Yang}
comment: uni0458
id: Ronghua-Yang
- canonical: {first: Sondra, last: Eger}
comment: uni1422
id: Sondra-Eger
- canonical: {first: Md. Anaytul, last: Islam}
comment: uni0000
id: Md Anaytul-Islam
- canonical: {first: Md. Moksedul, last: Islam}
comment: uni0000
id: Md Moksedul-Islam
- canonical: {first: Lynn M., last: Johnston}
comment: uni0010
id: Lynn M-Johnston
- canonical: {first: Viatcheslav, last: Kharin}
comment: uni0005
id: Viatcheslav-Kharin
- canonical: {first: P., last: Marsh}
comment: uni0006
id: P-Marsh
- canonical: {first: "Beno\xEEt", last: Montpetit}
comment: uni0005
id: "Beno\xEEt-Montpetit"
- canonical: {first: Henning, last: Buddenbaum}
comment: uni0299
id: Henning-Buddenbaum
- canonical: {first: Fernando, last: Camacho}
comment: uni0571
id: Fernando-Camacho
- canonical: {first: Joachim, last: Hill}
comment: uni0299
id: Joachim-Hill
- canonical: {first: Jennifer, last: Jensen}
comment: uni0152
id: Jennifer-Jensen
- canonical: {first: Zhili, last: Liu}
comment: uni0959
id: Zhili-Liu
- canonical: {first: Arndt, last: Piayda}
comment: uni0266
id: Arndt-Piayda
- canonical: {first: Yonghua, last: Qu}
comment: uni0569
id: Yonghua-Qu
- canonical: {first: Shawn, last: Serbin}
comment: uni0063
id: Shawn-Serbin
- canonical: {first: Svein, last: Solberg}
comment: uni0144
id: Svein-Solberg
- canonical: {first: Francesco, last: Vuolo}
comment: uni0145
id: Francesco-Vuolo
- canonical: {first: J., last: McDonnell}
comment: uni0003
id: J-McDonnell
- canonical: {first: Marc, last: Schwientek}
comment: uni0271
id: Marc-Schwientek
- canonical: {first: Rhoswen, last: Leonard}
comment: uni0218
id: Rhoswen-Leonard
- canonical: {first: Li, last: Dai}
comment: uni0657
id: Li-Dai
- canonical: {first: Biwu, last: Liu}
comment: uni0347
id: Biwu-Liu
- canonical: {first: Zijie, last: Zhang}
comment: uni1449
id: Zijie-Zhang
- canonical: {first: Ying, last: Peng}
comment: uni0644
id: Ying-Peng
- canonical: {first: Wendi, last: Fang}
comment: uni0104
id: Wendi-Fang
- canonical: {first: Florian, last: Altermatt}
comment: uni0122
id: Florian-Altermatt
- canonical: {first: Trevor Q., last: Murdock}
comment: uni0005
id: Trevor Q-Murdock
- canonical: {first: Kevin, last: Anderson}
comment: uni0810
id: Kevin-Anderson
- canonical: {first: Budong, last: Qian}
comment: uni0025
id: Budong-Qian
- canonical: {first: Bruce C., last: Forbes}
comment: uni0784
id: Bruce C-Forbes
- canonical: {first: Donald A., last: Walker}
comment: uni0021
id: Donald A-Walker
- canonical: {first: Gang, last: Mo}
comment: uni0254
id: Gang-Mo
- canonical: {first: Haobo, last: Lyu}
comment: uni0110
id: Haobo-Lyu
- canonical: {first: Kaighin A., last: McColl}
comment: uni0193
id: Kaighin A-McColl
- canonical: {first: Xinlu, last: Li}
comment: uni0358
id: Xinlu-Li
- canonical: {first: T. A., last: Black}
comment: uni0017
id: T A-Black
- canonical: {first: Jouni, last: Pulliainen}
comment: uni0020
id: Jouni-Pulliainen
- canonical: {first: Kimmo, last: Rautiainen}
comment: uni0020
id: Kimmo-Rautiainen
- canonical: {first: Hui, last: Lu}
comment: uni0219
id: Hui-Lu
- canonical: {first: Dara, last: Entekhabi}
comment: uni0246
id: Dara-Entekhabi
- canonical: {first: Sannan Zahid, last: Mansoor}
comment: uni0002
id: Sannan Zahid-Mansoor
- canonical: {first: Sana, last: Louie}
comment: uni0002
id: Sana-Louie
- canonical: {first: Ana T., last: Lima}
comment: uni0321
id: Ana T-Lima
- canonical: {first: Tara G., last: Martin}
comment: uni0017
id: Tara G-Martin
- canonical: {first: Laura, last: Kehoe}
comment: uni0124
id: Laura-Kehoe
- canonical: {first: Iadine, last: "Chad\xE8s"}
comment: uni0665
id: "Iadine-Chad\xE8s"
- canonical: {first: Scott, last: Wilson}
comment: uni0490
id: Scott-Wilson
- canonical: {first: Robin G., last: Bloom}
comment: uni0005
id: Robin G-Bloom
- canonical: {first: Stephen K., last: Davis}
comment: uni0005
id: Stephen K-Davis
- canonical: {first: Ryan J., last: Fisher}
comment: uni0408
id: Ryan J-Fisher
- canonical: {first: Jeff, last: Keith}
comment: uni1425
id: Jeff-Keith
- canonical: {first: Katherine R., last: Mehl}
comment: uni0408
id: Katherine R-Mehl
- canonical: {first: Beatriz Prieto, last: Diaz}
comment: uni0408
id: Beatriz Prieto-Diaz
- canonical: {first: Mark, last: Wayland}
comment: uni0005
id: Mark-Wayland
- canonical: {first: Troy I., last: Wellicome}
comment: uni0005
id: Troy I-Wellicome
- canonical: {first: Karl P., last: Zimmer}
comment: uni0005
id: Karl P-Zimmer
- canonical: {first: Paul A., last: Smith}
comment: uni0005
id: Paul A-Smith
- canonical: {first: Bilal, last: Filali}
comment: uni1450
id: Bilal-Filali
- canonical: {first: F.R., last: Boone}
comment: uni0360
id: FR-Boone
- canonical: {first: Kristyn M., last: Mayner}
comment: uni0004
id: Kristyn M-Mayner
- canonical: {first: Fiona H., last: Dickson}
comment: uni0017
id: Fiona H-Dickson
- canonical: {first: J. von, last: Buttlar}
comment: uni0032
id: J von-Buttlar
- canonical: {first: Jakob, last: Zscheischler}
comment: uni0082
id: Jakob-Zscheischler
- canonical: {first: Anja, last: Rammig}
comment: uni0184
id: Anja-Rammig
- canonical: {first: Sebastian, last: Sippel}
comment: uni0295
id: Sebastian-Sippel
- canonical: {first: Olaf, last: Menzer}
comment: uni0165
id: Olaf-Menzer
- canonical: {first: A., last: Raschi}
comment: uni0037
id: A-Raschi
- canonical: {first: Miguel D., last: Mahecha}
comment: uni0295
id: Miguel D-Mahecha
- canonical: {first: Michelle E., last: Miro}
comment: uni0663
id: Michelle E-Miro
- canonical: {first: Getachew Adem, last: Mohammed}
comment: uni0636
id: Getachew Adem-Mohammed
- canonical: {first: Ehsan Sotoodeh, last: Mollashahi}
comment: uni0001
id: Ehsan Sotoodeh-Mollashahi
- canonical: {first: Md. Sami, last: Uddin}
comment: uni0057
id: Md Sami-Uddin
- canonical: {first: Philippe, last: Naveau}
comment: uni0149
id: Philippe-Naveau
- canonical: {first: "Aur\xE9lien", last: Ribes}
comment: uni1477
id: "Aur\xE9lien-Ribes"
- canonical: {first: Alexis, last: Hannart}
comment: uni0057
id: Alexis-Hannart
- canonical: {first: Alexandre, last: Tuel}
comment: uni0970
id: Alexandre-Tuel
- canonical: {first: Pascal, last: Yiou}
comment: uni0186
id: Pascal-Yiou
- canonical: {first: Jilmarie, last: Stephens}
comment: uni0221
id: Jilmarie-Stephens
- canonical: {first: J Ignacio de Ulibarri, last: Perez}
comment: uni0000
id: J Ignacio de Ulibarri-Perez
- canonical: {first: Bruno, last: Denave}
comment: uni1479
id: Bruno-Denave
- canonical: {first: Evan R., last: DeLancey}
comment: uni0717
id: Evan R-DeLancey
- canonical: {first: C., last: Doche}
comment: uni0058
id: C-Doche
- canonical: {first: Steven, last: Hvenegaard}
comment: uni1480
id: Steven-Hvenegaard
- canonical: {first: John K., last: "Pattison\u2010Williams"}
comment: uni0012
id: "John K-Pattison\u2010Williams"
- canonical: {first: Shane, last: Gabor}
comment: uni0197
id: Shane-Gabor
- canonical: {first: Matthew R., last: Lennon}
comment: uni0007
id: Matthew R-Lennon
- canonical: {first: David, last: Frank}
comment: uni1481
id: David-Frank
- canonical: {first: Vinicio, last: Carraro}
comment: uni0274
id: Vinicio-Carraro
- canonical: {first: Angela Luisa, last: Prendin}
comment: uni0041
id: Angela Luisa-Prendin
- canonical: {first: Lea, last: Schneider}
comment: uni0043
id: Lea-Schneider
- canonical: {first: Greg A., last: "Baron\u2010Gafford"}
comment: uni0029
id: "Greg A-Baron\u2010Gafford"
- canonical: {first: Lars, last: Dietrich}
comment: uni0561
id: Lars-Dietrich
- canonical: {first: R. L., last: Minor}
comment: uni0029
id: R L-Minor
- canonical: {first: Maxwell G., last: Wightman}
comment: uni1482
id: Maxwell G-Wightman
- canonical: {first: Julian, last: Petford}
comment: uni0944
id: Julian-Petford
- canonical: {first: Miguel A., last: Nacenta}
comment: uni0075
id: Miguel A-Nacenta
- canonical: {first: Gabrielle, last: Ferguson}
comment: uni0258
id: Gabrielle-Ferguson
- canonical: {first: Tatianna M., last: Lozier}
comment: uni0002
id: Tatianna M-Lozier
- canonical: {first: I. P., last: "O\u2019Halloran"}
comment: uni0009
id: "I P-O\u2019Halloran"
- canonical: {first: Gilian, last: Opolko}
comment: uni0006
id: Gilian-Opolko
- canonical: {first: Christopher J. Van, last: Esbroeck}
comment: uni0002
id: Christopher J Van-Esbroeck
- canonical: {first: Brad D., last: Lee}
comment: uni0961
id: Brad D-Lee
- canonical: {first: Helen R., last: Powley}
comment: uni0472
id: Helen R-Powley
- canonical: {first: Michael D., last: Krom}
comment: uni0166
id: Michael D-Krom
- canonical: {first: A. J., last: Purdy}
comment: uni0954
id: A J-Purdy
- canonical: {first: Gregory, last: Halverson}
comment: uni0019
id: Gregory-Halverson
- canonical: {first: Kevin, last: Tu}
comment: uni1483
id: Kevin-Tu
- canonical: {first: Yiheng, last: Qin}
comment: uni1484
id: Yiheng-Qin
- canonical: {first: Si, last: Pan}
comment: uni1485
id: Si-Pan
- canonical: {first: M. M. R., last: Howlader}
comment: uni0004
id: M M R-Howlader
- canonical: {first: Raja, last: Ghosh}
comment: uni1486
id: Raja-Ghosh
- canonical: {first: Shurong, last: Dong}
comment: uni0180
id: Shurong-Dong
- canonical: {first: "Chih\u2010Hung", last: Chen}
comment: uni1487
id: "Chih\u2010Hung-Chen"
- canonical: {first: Xinci, last: Li}
comment: uni1488
id: Xinci-Li
- canonical: {first: Danielle, last: Brandow}
comment: uni0002
id: Danielle-Brandow
- canonical: {first: Denis, last: Dieme}
comment: uni0049
id: Denis-Dieme
- canonical: {first: Rhona M., last: Hanning}
comment: uni0002
id: Rhona M-Hanning
- canonical: {first: H. K., last: Beaudoing}
comment: uni0228
id: H K-Beaudoing