-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathdata.txt
1740 lines (1305 loc) · 57.1 KB
/
data.txt
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
('St. Louis Cardinals', 'San Diego Padres')
Most picked: mattcarpenter572761 with 524 picks
Least picked: billgreif115123 with 1 picks
('Texas Rangers', 'Colorado Rockies')
Most picked: jongray592351 with 333 picks
Least picked: eddiebutler572750 with 1 picks
('Atlanta Braves', 'Milwaukee Brewers')
Most picked: williamcontreras661388 with 605 picks
Least picked: eddieperez120407 with 1 picks
('Boston Red Sox', 'Detroit Tigers')
Most picked: eduardorodriguez593958 with 428 picks
Least picked: j.d.martinez502110 with 1 picks
('Atlanta Braves', 'Cincinnati Reds')
Most picked: adamduvall594807 with 311 picks
Least picked: mikestanton122681 with 1 picks
('Miami Marlins', 'Washington Nationals')
Most picked: joshbell605137 with 228 picks
Least picked: brettcarroll448276 with 1 picks
('Tampa Bay Rays', 'Minnesota Twins')
Most picked: nelsoncruz443558 with 267 picks
Least picked: midrecummings112937 with 1 picks
('Houston Astros', 'St. Louis Cardinals')
Most picked: lanceberkman204020 with 457 picks
Least picked: scipiospinks122601 with 1 picks
('Philadelphia Phillies', 'San Diego Padres')
Most picked: johnkruk117339 with 155 picks
Least picked: rodrigolopez150438 with 1 picks
('Tampa Bay Rays', 'St. Louis Cardinals')
Most picked: randyarozarena668227 with 899 picks
Least picked: mikedifelice113358 with 1 picks
('Minnesota Twins', 'Seattle Mariners')
Most picked: nelsoncruz443558 with 361 picks
Least picked: stevebraun111404 with 1 picks
('New York Yankees', 'Toronto Blue Jays')
Most picked: joshdonaldson518626 with 961 picks
Least picked: cliffjohnson116573 with 1 picks
('Toronto Blue Jays', 'Minnesota Twins')
Most picked: joseberrios621244 with 581 picks
Least picked: jaimegarcia448802 with 1 picks
('Houston Astros', 'Atlanta Braves')
Most picked: charliemorton450203 with 486 picks
Least picked: kylefarnsworth150035 with 1 picks
('Minnesota Twins', 'Atlanta Braves')
Most picked: eddierosario592696 with 520 picks
Least picked: johnryanmurphy571974 with 1 picks
('Atlanta Braves', 'St. Louis Cardinals')
Most picked: marcellozuna542303 with 799 picks
Least picked: jorgesosa407901 with 1 picks
('Boston Red Sox', 'Minnesota Twins')
Most picked: davidortiz120074 with 923 picks
Least picked: garygaetti114508 with 1 picks
('New York Mets', 'St. Louis Cardinals')
Most picked: keithhernandez115826 with 344 picks
Least picked: billpulsipher120802 with 1 picks
('Baltimore Orioles', 'Miami Marlins')
Most picked: jeffconine112559 with 149 picks
Least picked: jimmyyacabonis642231 with 1 picks
('Tampa Bay Rays', 'Oakland Athletics')
Most picked: josecanseco111962 with 139 picks
Least picked: adampiatt276516 with 1 picks
('Baltimore Orioles', 'Washington Nationals')
Most picked: mattwieters446308 with 250 picks
Least picked: stevekline117157 with 1 picks
('Toronto Blue Jays', 'Chicago White Sox')
Most picked: markbuehrle279824 with 253 picks
Least picked: luisandujar110279 with 1 picks
('Los Angeles Angels', 'Seattle Mariners')
Most picked: chonefiggins408210 with 184 picks
Least picked: toddcruz112907 with 1 picks
('Tampa Bay Rays', 'Kansas City Royals')
Most picked: jamesshields448306 with 151 picks
Least picked: natekarns501992 with 1 picks
('Atlanta Braves', 'Colorado Rockies')
Most picked: bradhand543272 with 217 picks
Least picked: juliantavarez123118 with 1 picks
('Tampa Bay Rays', 'Atlanta Braves')
Most picked: charliemorton450203 with 621 picks
Least picked: tonygraffanino115017 with 1 picks
('Chicago Cubs', 'St. Louis Cardinals')
Most picked: willsoncontreras575929 with 1064 picks
Least picked: josemartinez500874 with 1 picks
('New York Yankees', 'Seattle Mariners')
Most picked: ichirosuzuki400085 with 806 picks
Least picked: toddwilliams124343 with 1 picks
('New York Yankees', 'Los Angeles Dodgers')
Most picked: joeygallo608336 with 962 picks
Least picked: wilsonbetemit400140 with 1 picks
('Cleveland Guardians', 'Atlanta Braves')
Most picked: eddierosario592696 with 432 picks
Least picked: ryanlavarnway543432 with 1 picks
('Miami Marlins', 'Cincinnati Reds')
Most picked: johnnycueto456501 with 242 picks
Least picked: kevingregg276514 with 1 picks
('Chicago White Sox', 'Oakland Athletics')
Most picked: liamhendriks521230 with 294 picks
Least picked: stanbahnsen110434 with 1 picks
('Boston Red Sox', 'Arizona Diamondbacks')
Most picked: jdmartinez502110 with 521 picks
Least picked: vicentepadilla218894 with 1 picks
('New York Yankees', 'Chicago Cubs')
Most picked: anthonyrizzo519203 with 1768 picks
Least picked: bobbyshantz122060 with 1 picks
('St. Louis Cardinals', 'Colorado Rockies')
Most picked: nolanarenado571448 with 1297 picks
Least picked: larrybigbie406933 with 1 picks
('New York Yankees', 'San Diego Padres')
Most picked: mattcarpenter572761 with 497 picks
Least picked: paulquantrill120824 with 1 picks
('Houston Astros', 'New York Mets')
Most picked: justinverlander434378 with 1969 picks
Least picked: peteharnisch115487 with 1 picks
('New York Yankees', 'St. Louis Cardinals')
Most picked: harrisonbader664056 with 1303 picks
Least picked: markreynolds448602 with 1 picks
('Boston Red Sox', 'New York Mets')
Most picked: tommypham502054 with 262 picks
Least picked: jimdwyer113673 with 1 picks
('Toronto Blue Jays', 'Kansas City Royals')
Most picked: whitmerrifield593160 with 843 picks
Least picked: patborders111232 with 1 picks
('Detroit Tigers', 'Seattle Mariners')
Most picked: eugeniosuarez553993 with 69 picks
Least picked: tonybernazard110918 with 1 picks
('Seattle Mariners', 'Pittsburgh Pirates')
Most picked: carlossantana467793 with 417 picks
Least picked: bobbylafromboise489039 with 1 picks
('Minnesota Twins', 'Texas Rangers')
Most picked: joeygallo608336 with 511 picks
Least picked: philnevin119732 with 1 picks
('New York Mets', 'Washington Nationals')
Most picked: maxscherzer453286 with 1151 picks
Least picked: scottstrickland232994 with 1 picks
('Atlanta Braves', 'Chicago Cubs')
Most picked: dansbyswanson621020 with 1230 picks
Least picked: toddhollandsworth116075 with 1 picks
('Philadelphia Phillies', 'Cincinnati Reds')
Most picked: nickcastellanos592206 with 808 picks
Least picked: johndenny113272 with 1 picks
('Seattle Mariners', 'Washington Nationals')
Most picked: randyjohnson116615 with 244 picks
Least picked: dennismartinez118371 with 1 picks
('Los Angeles Angels', 'New York Mets')
Most picked: eduardoescobar500871 with 465 picks
Least picked: johnbuck407833 with 1 picks
('Cleveland Guardians', 'San Francisco Giants')
Most picked: kennylofton117863 with 128 picks
Least picked: bobnieman119791 with 1 picks
('Atlanta Braves', 'New York Mets')
Most picked: tomglavine114849 with 573 picks
Least picked: danaeveland445968 with 1 picks
('Kansas City Royals', 'Philadelphia Phillies')
Most picked: carlossantana467793 with 143 picks
Least picked: josedejesus113213 with 1 picks
('New York Yankees', 'New York Mets')
Most picked: darrylstrawberry122864 with 388 picks
Least picked: kellystinnett122803 with 1 picks
('New York Yankees', 'Los Angeles Angels')
Most picked: giourshela570482 with 377 picks
Least picked: stevebarber110550 with 1 picks
('Los Angeles Dodgers', 'San Diego Padres')
Most picked: mannymachado592518 with 1323 picks
Least picked: budnorris502032 with 1 picks
('Los Angeles Angels', 'Atlanta Braves')
Most picked: raiseliglesias628452 with 473 picks
Least picked: hoytwilhelm124261 with 1 picks
('New York Yankees', 'Houston Astros')
Most picked: gerritcole543037 with 1714 picks
Least picked: peteincaviglia116386 with 1 picks
('Philadelphia Phillies', 'Los Angeles Dodgers')
Most picked: treaturner607208 with 1586 picks
Least picked: aloliver119983 with 1 picks
('Cleveland Guardians', 'New York Mets')
Most picked: franciscolindor596019 with 1285 picks
Least picked: wilsonramos467092 with 1 picks
('Kansas City Royals', 'Milwaukee Brewers')
Most picked: lorenzocain456715 with 519 picks
Least picked: mikeboddicker111139 with 1 picks
('New York Mets', 'Los Angeles Dodgers')
Most picked: maxscherzer453286 with 1180 picks
Least picked: donaase110003 with 1 picks
('Cleveland Guardians', 'Kansas City Royals')
Most picked: carlossantana467793 with 466 picks
Least picked: tedpower120728 with 1 picks
('Kansas City Royals', 'Los Angeles Angels')
Most picked: mikemoustakas519058 with 394 picks
Least picked: blakewood502028 with 1 picks
('New York Mets', 'Chicago Cubs')
Most picked: javierbaez595879 with 1114 picks
Least picked: ronnycedeno430592 with 1 picks
('New York Yankees', 'Atlanta Braves')
Most picked: andruwjones116662 with 387 picks
Least picked: lyleoverbay407489 with 1 picks
('Tampa Bay Rays', 'San Francisco Giants')
Most picked: evanlongoria446334 with 887 picks
Least picked: damianmoss150305 with 1 picks
('Toronto Blue Jays', 'San Francisco Giants')
Most picked: brandonbelt474832 with 633 picks
Least picked: aloliver119983 with 1 picks
('Toronto Blue Jays', 'Los Angeles Dodgers')
Most picked: hyunjinryu547943 with 617 picks
Least picked: josecruzjr112903 with 1 picks
('Tampa Bay Rays', 'Toronto Blue Jays')
Most picked: kevinkiermaier595281 with 1009 picks
Least picked: danaeveland445968 with 1 picks
('Detroit Tigers', 'Atlanta Braves')
Most picked: robbiegrossman543257 with 180 picks
Least picked: patdobson113410 with 1 picks
('Toronto Blue Jays', 'New York Mets')
Most picked: chrisbassitt605135 with 391 picks
Least picked: dominicleone608678 with 1 picks
('Los Angeles Angels', 'Milwaukee Brewers')
Most picked: hunterrenfroe592669 with 601 picks
Least picked: donniemoore119292 with 1 picks
('Atlanta Braves', 'Los Angeles Dodgers')
Most picked: freddiefreeman518692 with 1696 picks
Least picked: jimjohnson462382 with 1 picks
('Colorado Rockies', 'San Francisco Giants')
Most picked: krisbryant592178 with 805 picks
Least picked: dustanmohr407380 with 1 picks
('Los Angeles Dodgers', 'San Francisco Giants')
Most picked: jocpederson592626 with 911 picks
Least picked: hankbehrman110804 with 1 picks
('New York Yankees', 'Miami Marlins')
Most picked: giancarlostanton519317 with 1496 picks
Least picked: paulquantrill120824 with 1 picks
('Oakland Athletics', 'Atlanta Braves')
Most picked: mattolson621566 with 1019 picks
Least picked: kurtabbott110011 with 1 picks
('Chicago White Sox', 'Houston Astros')
Most picked: joseabreu547989 with 876 picks
Least picked: brettmyers408206 with 1 picks
('Milwaukee Brewers', 'San Diego Padres')
Most picked: joshhader623352 with 871 picks
Least picked: russellbranyan137140 with 1 picks
('Detroit Tigers', 'Miami Marlins')
Most picked: miguelcabrera408234 with 1089 picks
Least picked: markredman150230 with 1 picks
('Cleveland Guardians', 'St. Louis Cardinals')
Most picked: andrewmiller453192 with 291 picks
Least picked: ronvillone123725 with 1 picks
('Kansas City Royals', 'Washington Nationals')
Most picked: michaelataylor572191 with 293 picks
Least picked: scottservice122012 with 1 picks
('Miami Marlins', 'Philadelphia Phillies')
Most picked: jeansegura516416 with 722 picks
Least picked: naterobertson425146 with 1 picks
('Washington Nationals', 'San Diego Padres')
Most picked: juansoto665742 with 1413 picks
Least picked: joshwilson425543 with 1 picks
('New York Yankees', 'Chicago White Sox')
Most picked: andrewbenintendi643217 with 600 picks
Least picked: carlosmay118468 with 1 picks
('New York Yankees', 'Tampa Bay Rays')
Most picked: wadeboggs111153 with 432 picks
Least picked: vidalnuno573064 with 1 picks
('Houston Astros', 'Philadelphia Phillies')
Most picked: hectorneris593576 with 365 picks
Least picked: humbertoquintero279827 with 1 picks
('Los Angeles Angels', 'St. Louis Cardinals')
Most picked: albertpujols405395 with 1424 picks
Least picked: bobduliba113611 with 1 picks
('Arizona Diamondbacks', 'San Francisco Giants')
Most picked: madisonbumgarner518516 with 664 picks
Least picked: alanembree113833 with 1 picks
('St. Louis Cardinals', 'Arizona Diamondbacks')
Most picked: paulgoldschmidt502671 with 1318 picks
Least picked: randychoate329092 with 1 picks
('New York Yankees', 'Oakland Athletics')
Most picked: jasongiambi114739 with 609 picks
Least picked: curtblefary111096 with 1 picks
('San Diego Padres', 'San Francisco Giants')
Most picked: taylorrogers573124 with 220 picks
Least picked: stevereed121002 with 1 picks
('New York Yankees', 'Philadelphia Phillies')
Most picked: didigregorius544369 with 928 picks
Least picked: stanjavier116506 with 1 picks
('Cleveland Guardians', 'Philadelphia Phillies')
Most picked: clifflee117599 with 408 picks
Least picked: ezequielcarrera485567 with 1 picks
('Toronto Blue Jays', 'Arizona Diamondbacks')
Most picked: daultonvarsho662139 with 461 picks
Least picked: lourdesgurrieljr.666971 with 1 picks
('New York Yankees', 'Pittsburgh Pirates')
Most picked: gerritcole543037 with 1144 picks
Least picked: leemazzilli118499 with 1 picks
('New York Yankees', 'Arizona Diamondbacks')
Most picked: randyjohnson116615 with 1192 picks
Least picked: jonathanalbaladejo452293 with 1 picks
('Los Angeles Angels', 'Philadelphia Phillies')
Most picked: brandonmarsh669016 with 585 picks
Least picked: toddfrohwirth114458 with 1 picks
('Miami Marlins', 'New York Mets')
Most picked: davidrobertson502085 with 429 picks
Least picked: billyhamilton571740 with 1 picks
('New York Yankees', 'Minnesota Twins')
Most picked: joeygallo608336 with 618 picks
Least picked: corygearrin518715 with 1 picks
('New York Yankees', 'Washington Nationals')
Most picked: lukevoit572228 with 374 picks
Least picked: ronvillone123725 with 1 picks
('Seattle Mariners', 'St. Louis Cardinals')
Most picked: koltenwong543939 with 499 picks
Least picked: jefffassero114032 with 1 picks
('New York Mets', 'San Diego Padres')
Most picked: tommypham502054 with 329 picks
Least picked: henryblanco111072 with 1 picks
('Baltimore Orioles', 'New York Mets')
Most picked: jamesmccann543510 with 428 picks
Least picked: hobielandrith117456 with 1 picks
('Minnesota Twins', 'Houston Astros')
Most picked: carloscorrea621043 with 1140 picks
Least picked: philnevin119732 with 1 picks
('Washington Nationals', 'Chicago Cubs')
Most picked: kyleschwarber656941 with 577 picks
Least picked: stevensouzajr519306 with 1 picks
('Detroit Tigers', 'Los Angeles Angels')
Most picked: michaellorenzen547179 with 209 picks
Least picked: donlee117602 with 1 picks
('Boston Red Sox', 'Houston Astros')
Most picked: christianvazquez543877 with 704 picks
Least picked: bradpeacock502748 with 1 picks
('Tampa Bay Rays', 'Houston Astros')
Most picked: josesiri642350 with 539 picks
Least picked: lukescott432928 with 1 picks
('Washington Nationals', 'St. Louis Cardinals')
Most picked: lanethomas657041 with 204 picks
Least picked: jefffassero114032 with 1 picks
('Chicago White Sox', 'Atlanta Braves')
Most picked: craigkimbrel518886 with 204 picks
Least picked: rossdetwiler446321 with 1 picks
('Tampa Bay Rays', 'Texas Rangers')
Most picked: nathaniellowe663993 with 231 picks
Least picked: freddyguzman430686 with 1 picks
('Detroit Tigers', 'Houston Astros')
Most picked: justinverlander434378 with 1455 picks
Least picked: gustriandos123464 with 1 picks
('Cleveland Guardians', 'Houston Astros')
Most picked: michaelbrantley488726 with 460 picks
Least picked: jimgentile114696 with 1 picks
('Miami Marlins', 'St. Louis Cardinals')
Most picked: marcellozuna542303 with 689 picks
Least picked: wadeleblanc453281 with 1 picks
('Boston Red Sox', 'New York Yankees')
Most picked: baberuth121578 with 1141 picks
Least picked: alanembree113833 with 1 picks
('Houston Astros', 'Texas Rangers')
Most picked: nolanryan121597 with 1153 picks
Least picked: cjnitkowski119809 with 1 picks
('Boston Red Sox', 'Chicago White Sox')
Most picked: chrissale519242 with 733 picks
Least picked: tonypena120370 with 1 picks
('Chicago Cubs', 'San Diego Padres')
Most picked: yudarvish506433 with 626 picks
Least picked: marvellwynne124636 with 1 picks
('Chicago White Sox', 'Chicago Cubs')
Most picked: nickmadrigal663611 with 385 picks
Least picked: moedrabowsky113539 with 1 picks
('Chicago Cubs', 'Los Angeles Dodgers')
Most picked: codybellinger641355 with 1852 picks
Least picked: royhenshaw115794 with 1 picks
('Miami Marlins', 'Chicago Cubs')
Most picked: jorgesoler624585 with 547 picks
Least picked: colinrea607067 with 1 picks
('Detroit Tigers', 'Texas Rangers')
Most picked: maxscherzer453286 with 506 picks
Least picked: johnnygrubb115205 with 1 picks
('Boston Red Sox', 'Los Angeles Dodgers')
Most picked: mookiebetts605141 with 1076 picks
Least picked: j.d.martinez502110 with 1 picks
('Texas Rangers', 'Arizona Diamondbacks')
Most picked: maxscherzer453286 with 268 picks
Least picked: dennysreyes121096 with 1 picks
('Los Angeles Angels', 'San Diego Padres')
Most picked: brandondrury592273 with 354 picks
Least picked: craiglefferts117628 with 1 picks
('Kansas City Royals', 'Chicago Cubs')
Most picked: aroldischapman547973 with 490 picks
Least picked: tomgoodwin114961 with 1 picks
('Baltimore Orioles', 'New York Yankees')
Most picked: aaronhicks543305 with 746 picks
Least picked: curtblefary111096 with 1 picks
('Houston Astros', 'Milwaukee Brewers')
Most picked: zackgreinke425844 with 224 picks
Least picked: edwinmaysonet446474 with 1 picks
('Toronto Blue Jays', 'Miami Marlins')
Most picked: josereyes408314 with 178 picks
Least picked: tomkoehler543408 with 1 picks
('Seattle Mariners', 'Miami Marlins')
Most picked: ichirosuzuki400085 with 561 picks
Least picked: ronvillone123725 with 1 picks
('Oakland Athletics', 'San Diego Padres')
Most picked: seanmanaea640455 with 302 picks
Least picked: olliebrown111581 with 1 picks
('Baltimore Orioles', 'Chicago Cubs')
Most picked: treymancini641820 with 785 picks
Least picked: stevebarber110550 with 1 picks
('Boston Red Sox', 'Cleveland Guardians')
Most picked: mannyramirez120903 with 459 picks
Least picked: mickeyvernon123711 with 1 picks
('Milwaukee Brewers', 'Los Angeles Dodgers')
Most picked: zackgreinke425844 with 231 picks
Least picked: jimmywynn124634 with 1 picks
('Houston Astros', 'San Francisco Giants')
Most picked: hunterpence452254 with 313 picks
Least picked: jackiebrandt111388 with 1 picks
('St. Louis Cardinals', 'San Francisco Giants')
Most picked: carlosbeltran136860 with 139 picks
Least picked: rogerconnor112589 with 1 picks
('Atlanta Braves', 'Miami Marlins')
Most picked: jorgesoler624585 with 835 picks
Least picked: javiervazquez134320 with 1 picks
('Cleveland Guardians', 'Oakland Athletics')
Most picked: cococrisp424825 with 189 picks
Least picked: jimgentile114696 with 1 picks
('Oakland Athletics', 'Arizona Diamondbacks')
Most picked: starlingmarte516782 with 128 picks
Least picked: mikefetters114097 with 1 picks
('Los Angeles Angels', 'Washington Nationals')
Most picked: anthonyrendon543685 with 1084 picks
Least picked: ramonortiz150009 with 1 picks
('Cleveland Guardians', 'Minnesota Twins')
Most picked: jimthome123272 with 225 picks
Least picked: wilsonramos467092 with 1 picks
('Baltimore Orioles', 'Houston Astros')
Most picked: treymancini641820 with 860 picks
Least picked: rayknight117191 with 1 picks
('Kansas City Royals', 'Arizona Diamondbacks')
Most picked: zackgreinke425844 with 887 picks
Least picked: emiliobonifacio466988 with 1 picks
('Tampa Bay Rays', 'San Diego Padres')
Most picked: blakesnell605483 with 805 picks
Least picked: ryanwebb444436 with 1 picks
('Los Angeles Angels', 'Oakland Athletics')
Most picked: reggiejackson116439 with 168 picks
Least picked: mikemagnante118141 with 1 picks
('Houston Astros', 'Seattle Mariners')
Most picked: randyjohnson116615 with 350 picks
Least picked: wadeleblanc453281 with 1 picks
('Minnesota Twins', 'Milwaukee Brewers')
Most picked: paulmolitor119236 with 303 picks
Least picked: rickdempsey113264 with 1 picks
('Kansas City Royals', 'Houston Astros')
Most picked: zackgreinke425844 with 1086 picks
Least picked: jimyork124676 with 1 picks
('Cleveland Guardians', 'Colorado Rockies')
Most picked: nolanjones666134 with 139 picks
Least picked: alanembree113833 with 1 picks
('Minnesota Twins', 'Oakland Athletics')
Most picked: joshdonaldson518626 with 311 picks
Least picked: keithatherton110362 with 1 picks
('Toronto Blue Jays', 'Houston Astros')
Most picked: georgespringer543807 with 1256 picks
Least picked: johnmayberry118480 with 1 picks
('Chicago White Sox', 'Detroit Tigers')
Most picked: magglioordonez120044 with 267 picks
Least picked: lerrinlagrow117410 with 1 picks
('Chicago White Sox', 'Washington Nationals')
Most picked: adameaton594809 with 354 picks
Least picked: mattthornton407819 with 1 picks
('Baltimore Orioles', 'Kansas City Royals')
Most picked: jordanlyles543475 with 157 picks
Least picked: toddcruz112907 with 1 picks
('New York Yankees', 'Milwaukee Brewers')
Most picked: ccsabathia282332 with 680 picks
Least picked: tonyfernandez114079 with 1 picks
('Miami Marlins', 'Milwaukee Brewers')
Most picked: christianyelich592885 with 971 picks
Least picked: joseurena570632 with 1 picks
('Tampa Bay Rays', 'Milwaukee Brewers')
Most picked: willyadames642715 with 631 picks
Least picked: lukemaile571912 with 1 picks
('Tampa Bay Rays', 'Chicago Cubs')
Most picked: benzobrist450314 with 584 picks
Least picked: joselobaton446653 with 1 picks
('Kansas City Royals', 'Texas Rangers')
Most picked: aroldischapman547973 with 646 picks
Least picked: gregcadaret111854 with 1 picks
('New York Mets', 'Arizona Diamondbacks')
Most picked: eduardoescobar500871 with 404 picks
Least picked: jakehager606993 with 1 picks
('Los Angeles Angels', 'Chicago Cubs')
Most picked: tommylastella600303 with 232 picks
Least picked: danbriggs111462 with 1 picks
('Houston Astros', 'Arizona Diamondbacks')
Most picked: zackgreinke425844 with 493 picks
Least picked: chrissnyder430965 with 1 picks
('Boston Red Sox', 'Kansas City Royals')
Most picked: andrewbenintendi643217 with 783 picks
Least picked: joefoy114368 with 1 picks
('Cleveland Guardians', 'Washington Nationals')
Most picked: joshbell605137 with 507 picks
Least picked: rossgrimsley115171 with 1 picks
('Detroit Tigers', 'Philadelphia Phillies')
Most picked: nickcastellanos592206 with 457 picks
Least picked: lilstoner122834 with 1 picks
('Toronto Blue Jays', 'Chicago Cubs')
Most picked: marcusstroman573186 with 823 picks
Least picked: josemolina150040 with 1 picks
('Detroit Tigers', 'New York Mets')
Most picked: javierbaez595879 with 801 picks
Least picked: bubbatrammell123438 with 1 picks
('Los Angeles Angels', 'Colorado Rockies')
Most picked: cjcron543068 with 774 picks
Least picked: renegonzales114922 with 1 picks
('Pittsburgh Pirates', 'St. Louis Cardinals')
Most picked: davidfreese501896 with 285 picks
Least picked: juniorfernandez658551 with 1 picks
('Tampa Bay Rays', 'Colorado Rockies')
Most picked: cjcron543068 with 155 picks
Least picked: c.j.cron543068 with 1 picks
('Boston Red Sox', 'Atlanta Braves')
Most picked: adamduvall594807 with 644 picks
Least picked: bobbythomson123308 with 1 picks
('Detroit Tigers', 'Oakland Athletics')
Most picked: yoeniscespedes493316 with 164 picks
Least picked: buddygroom115183 with 1 picks
('Kansas City Royals', 'Atlanta Braves')
Most picked: jorgesoler624585 with 583 picks
Least picked: robertohernandez115832 with 1 picks
('Detroit Tigers', 'Pittsburgh Pirates')
Most picked: austinmeadows640457 with 161 picks
Least picked: davejohnson116578 with 1 picks
('New York Yankees', 'Texas Rangers')
Most picked: joeygallo608336 with 656 picks
Least picked: donslaught122317 with 1 picks
('Seattle Mariners', 'Atlanta Braves')
Most picked: robinsoncano429664 with 179 picks
Least picked: mattwisler605538 with 1 picks
('Cincinnati Reds', 'St. Louis Cardinals')
Most picked: scottrolen121409 with 357 picks
Least picked: bretttomko123387 with 1 picks
('Atlanta Braves', 'San Francisco Giants')
Most picked: jocpederson592626 with 674 picks
Least picked: billmckechnie118766 with 1 picks
('Oakland Athletics', 'Pittsburgh Pirates')
Most picked: starlingmarte516782 with 242 picks
Least picked: chrisresop434592 with 1 picks
('Milwaukee Brewers', 'Pittsburgh Pirates')
Most picked: andrewmccutchen457705 with 807 picks
Least picked: neftalifeliz491703 with 1 picks
('Chicago White Sox', 'Arizona Diamondbacks')
Most picked: ajpollock572041 with 209 picks
Least picked: kyledrabek475138 with 1 picks
('Toronto Blue Jays', 'Colorado Rockies')
Most picked: troytulowitzki453064 with 700 picks
Least picked: lancepainter120183 with 1 picks
('Boston Red Sox', 'Texas Rangers')
Most picked: nathaneovaldi543135 with 555 picks
Least picked: brandonsnyder474319 with 1 picks
('Houston Astros', 'Oakland Athletics')
Most picked: tonykemp643393 with 365 picks
Least picked: jimcorsi112704 with 1 picks
('Toronto Blue Jays', 'Texas Rangers')
Most picked: marcussemien543760 with 945 picks
Least picked: victorcruz112908 with 1 picks
('Boston Red Sox', 'Pittsburgh Pirates')
Most picked: richhill448179 with 606 picks
Least picked: johnnygooch114940 with 1 picks
('Boston Red Sox', 'St. Louis Cardinals')
Most picked: jonlester452657 with 277 picks
Least picked: felipelopez150479 with 1 picks
('Toronto Blue Jays', 'St. Louis Cardinals')
Most picked: pauldejong657557 with 415 picks
Least picked: coreypatterson279913 with 1 picks
('Washington Nationals', 'Arizona Diamondbacks')
Most picked: maxscherzer453286 with 312 picks
Least picked: ryanchurch425508 with 1 picks
('Minnesota Twins', 'Washington Nationals')
Most picked: nelsoncruz443558 with 244 picks
Least picked: luisayala425646 with 1 picks
('Milwaukee Brewers', 'Colorado Rockies')
Most picked: brentsuter608718 with 120 picks
Least picked: brettanderson474463 with 1 picks
('Philadelphia Phillies', 'Washington Nationals')
Most picked: bryceharper547180 with 1331 picks
Least picked: grantjackson116428 with 1 picks
('Pittsburgh Pirates', 'San Diego Padres')
Most picked: joshbell605137 with 305 picks
Least picked: bobowchinko120132 with 1 picks
('Houston Astros', 'Los Angeles Angels')
Most picked: nolanryan121597 with 608 picks
Least picked: bobelinsky110812 with 1 picks
('Chicago White Sox', 'Pittsburgh Pirates')
Most picked: joshharrison543281 with 200 picks
Least picked: halrhyne121132 with 1 picks
('Oakland Athletics', 'San Francisco Giants')
Most picked: barryzito217096 with 509 picks
Least picked: corbanjoseph543377 with 1 picks
('New York Yankees', 'Cincinnati Reds')
Most picked: aroldischapman547973 with 794 picks
Least picked: gregcadaret111854 with 1 picks
('Pittsburgh Pirates', 'Arizona Diamondbacks')
Most picked: starlingmarte516782 with 293 picks
Least picked: johnmcdonald150348 with 1 picks
('Colorado Rockies', 'San Diego Padres')
Most picked: juricksonprofar595777 with 475 picks
Least picked: jasonmarquis150302 with 1 picks
('Boston Red Sox', 'Los Angeles Angels')
Most picked: hunterrenfroe592669 with 600 picks
Least picked: mikeeasler113701 with 1 picks
('Chicago White Sox', 'St. Louis Cardinals')
Most picked: lancelynn458681 with 363 picks
Least picked: kipwells150337 with 1 picks
('Oakland Athletics', 'Washington Nationals')
Most picked: seandoolittle448281 with 463 picks
Least picked: frednorman119837 with 1 picks
('Toronto Blue Jays', 'Philadelphia Phillies')
Most picked: royhalladay136880 with 1055 picks
Least picked: joaquinbenoit276542 with 1 picks
('Oakland Athletics', 'Colorado Rockies')
Most picked: mattholliday407812 with 164 picks
Least picked: gregsmith460105 with 1 picks
('Toronto Blue Jays', 'Pittsburgh Pirates')
Most picked: josebautista430832 with 317 picks
Least picked: benitosantiago121693 with 1 picks
('Atlanta Braves', 'San Diego Padres')
Most picked: gregmaddux118120 with 184 picks
Least picked: patdobson113410 with 1 picks
('Toronto Blue Jays', 'Atlanta Braves')
Most picked: joshdonaldson518626 with 473 picks
Least picked: miguelbatista110683 with 1 picks
('New York Mets', 'Philadelphia Phillies')
Most picked: zackwheeler554430 with 462 picks
Least picked: davidnewhan209315 with 1 picks
('Chicago White Sox', 'Miami Marlins')
Most picked: jakeburger669394 with 360 picks
Least picked: odrisamerdespaigne628333 with 1 picks
('Toronto Blue Jays', 'Milwaukee Brewers')
Most picked: rowdytellez642133 with 568 picks
Least picked: jeremyjeffress502026 with 1 picks
('Philadelphia Phillies', 'Milwaukee Brewers')
Most picked: andrewmccutchen457705 with 482 picks
Least picked: jeffjuden116785 with 1 picks
('Baltimore Orioles', 'Pittsburgh Pirates')
Most picked: adamfrazier624428 with 324 picks
Least picked: yamaiconavarro501605 with 1 picks
('Boston Red Sox', 'Oakland Athletics')
Most picked: johnnydamon113028 with 377 picks
Least picked: alsimmons122240 with 1 picks
('New York Yankees', 'Kansas City Royals')
Most picked: aroldischapman547973 with 878 picks
Least picked: mikearmstrong110326 with 1 picks
('Milwaukee Brewers', 'St. Louis Cardinals')
Most picked: koltenwong543939 with 731 picks
Least picked: tylerwebb643778 with 1 picks
('Houston Astros', 'Los Angeles Dodgers')
Most picked: zackgreinke425844 with 526 picks
Least picked: randywolf150116 with 1 picks
('Cleveland Guardians', 'Arizona Diamondbacks')
Most picked: trevorbauer545333 with 246 picks
Least picked: jorgejulio406402 with 1 picks
('Minnesota Twins', 'Los Angeles Angels')
Most picked: toriihunter116338 with 272 picks
Least picked: blakeparker453284 with 1 picks
('Boston Red Sox', 'Tampa Bay Rays')
Most picked: davidprice456034 with 442 picks
Least picked: chadbradford136268 with 1 picks
('Chicago White Sox', 'Los Angeles Dodgers')
Most picked: joekelly523260 with 596 picks
Least picked: calabrams110026 with 1 picks
('Kansas City Royals', 'Pittsburgh Pirates')
Most picked: carlossantana467793 with 579 picks
Least picked: genegarber114577 with 1 picks
('Kansas City Royals', 'New York Mets')
Most picked: carlosbeltran136860 with 255 picks
Least picked: glendonrusch121556 with 1 picks
('Toronto Blue Jays', 'San Diego Padres')
Most picked: robertoalomar110183 with 87 picks
Least picked: chrisgomez114909 with 1 picks
('Minnesota Twins', 'Los Angeles Dodgers')
Most picked: joeygallo608336 with 786 picks
Least picked: bobbydarwin113059 with 1 picks
('Toronto Blue Jays', 'Oakland Athletics')
Most picked: mattchapman656305 with 738 picks
Least picked: daverevering121092 with 1 picks
('Texas Rangers', 'San Diego Padres')
Most picked: yudarvish506433 with 546 picks
Least picked: mikehargrove115474 with 1 picks
('Cleveland Guardians', 'Milwaukee Brewers')
Most picked: ccsabathia282332 with 409 picks
Least picked: jamieeasterly113711 with 1 picks
('Minnesota Twins', 'Miami Marlins')
Most picked: luisarraez650333 with 730 picks
Least picked: loganforsythe523253 with 1 picks
('Baltimore Orioles', 'Los Angeles Angels')
Most picked: marktrumbo444432 with 360 picks
Least picked: parkerbridwell592170 with 1 picks
('Minnesota Twins', 'San Diego Padres')
Most picked: nelsoncruz443558 with 355 picks
Least picked: timmelville543532 with 1 picks
('Atlanta Braves', 'Pittsburgh Pirates')
Most picked: charliemorton450203 with 261 picks
Least picked: davidross424325 with 1 picks
('Tampa Bay Rays', 'Pittsburgh Pirates')
Most picked: chrisarcher502042 with 524 picks
Least picked: erikbedard407853 with 1 picks
('Toronto Blue Jays', 'Cleveland Guardians')
Most picked: edwinencarnacion429665 with 305 picks
Least picked: maurogozzo115000 with 1 picks
('Tampa Bay Rays', 'Cleveland Guardians')
Most picked: coreykluber446372 with 210 picks
Least picked: rickwhite124184 with 1 picks
('Oakland Athletics', 'Texas Rangers')
Most picked: marcussemien543760 with 553 picks
Least picked: bretttomko123387 with 1 picks
('New York Yankees', 'Colorado Rockies')
Most picked: djlemahieu518934 with 913 picks
Least picked: joeharvey642840 with 1 picks
('Seattle Mariners', 'Arizona Diamondbacks')
Most picked: randyjohnson116615 with 707 picks
Least picked: jackcust400091 with 1 picks
('Tampa Bay Rays', 'Philadelphia Phillies')
Most picked: zacheflin621107 with 476 picks
Least picked: marlonanderson136724 with 1 picks
('Boston Red Sox', 'San Diego Padres')
Most picked: xanderbogaerts593428 with 1323 picks
Least picked: clameredith448592 with 1 picks
('Baltimore Orioles', 'Chicago White Sox')
Most picked: haroldbaines110456 with 128 picks
Least picked: jerryadair110042 with 1 picks
('Boston Red Sox', 'Colorado Rockies')
Most picked: trevorstory596115 with 1064 picks
Least picked: juliantavarez123118 with 1 picks
('Chicago White Sox', 'Kansas City Royals')
Most picked: andrewbenintendi643217 with 443 picks
Least picked: cheslorcuthbert596144 with 1 picks
('Miami Marlins', 'Pittsburgh Pirates')
Most picked: jacobstallings607732 with 332 picks
Least picked: arquimedescaminero491708 with 1 picks
('Boston Red Sox', 'Cincinnati Reds')
Most picked: bronsonarroyo276520 with 373 picks
Least picked: brucechen136600 with 1 picks
('Detroit Tigers', 'Chicago Cubs')
Most picked: javierbaez595879 with 1158 picks
Least picked: halmanders118228 with 1 picks
('Detroit Tigers', 'San Diego Padres')
Most picked: iankinsler435079 with 97 picks
Least picked: sidmonge119249 with 1 picks
('Washington Nationals', 'Milwaukee Brewers')
Most picked: lukevoit572228 with 181 picks
Least picked: tommymilone543548 with 1 picks
('Baltimore Orioles', 'Boston Red Sox')
Most picked: stevepearce456665 with 281 picks
Least picked: darnellmcdonald150021 with 1 picks
('Oakland Athletics', 'Chicago Cubs')
Most picked: jonlester452657 with 192 picks
Least picked: tommydavis113112 with 1 picks
('Cincinnati Reds', 'Pittsburgh Pirates')
Most picked: kevinnewman621028 with 181 picks
Least picked: lloydmcclendon118576 with 1 picks