-
Notifications
You must be signed in to change notification settings - Fork 0
/
college.csv
We can't make this file beautiful and searchable because it's too large.
4577 lines (4577 loc) · 838 KB
/
college.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
,active_from,active_to,birth_date,college,height,name,position,url,weight,NBA__3ptapg,NBA__3ptpct,NBA__3ptpg,NBA_efgpct,NBA_fg%,NBA_fg_per_game,NBA_fga_per_game,NBA_ft%,NBA_ft_per_g,NBA_fta_p_g,NBA_g_played,NBA_ppg,NCAA__3ptapg,NCAA__3ptpct,NCAA__3ptpg,NCAA_efgpct,NCAA_fgapg,NCAA_fgpct,NCAA_fgpg,NCAA_ft,NCAA_ftapg,NCAA_ftpg,NCAA_games,NCAA_ppg
0,1991,1995,"June 24, 1968",Duke University,6-10,Alaa Abdelnaby,F-C,/players/a/abdelal01.html,240,0.0,.000,0.0,.502,.502,2.4,4.8,.701,0.9,1.3,256,5.7,0.0,,0.0,,5.6,.599,3.3,.728,2.5,1.8,134,8.5
1,1969,1978,"April 7, 1946",Iowa State University,6-9,Zaid Abdul-Aziz,C-F,/players/a/abdulza01.html,235,,,,,.428,3.5,8.2,.728,2.0,2.8,505,9.0,,,,,,,,,,,,
2,1970,1989,"April 16, 1947","University of California, Los Angeles",7-2,Kareem Abdul-Jabbar,C,/players/a/abdulka01.html,225,0.0,.056,0.0,.559,.559,10.2,18.1,.721,4.3,6.0,1560,24.6,,,,,16.8,.639,10.7,.628,7.9,5.0,88,26.4
3,1991,2001,"March 9, 1969",Louisiana State University,6-1,Mahmoud Abdul-Rauf,G,/players/a/abdulma02.html,162,2.3,.354,0.8,.472,.442,6.0,13.6,.905,1.8,2.0,586,14.6,7.2,.372,2.7,,21.9,.474,10.4,.863,6.4,5.5,64,29.0
4,1998,2003,"November 3, 1974","University of Michigan, San Jose State University",6-6,Tariq Abdul-Wahad,F,/players/a/abdulta01.html,223,0.3,.237,0.1,.422,.417,3.1,7.3,.703,1.6,2.2,236,7.8,,,,,,,,,,,,
5,1997,2008,"December 11, 1976",University of California,6-9,Shareef Abdur-Rahim,F,/players/a/abdursh01.html,225,0.6,.297,0.2,.479,.472,6.5,13.9,.810,4.8,6.0,830,18.1,0.8,.381,0.3,,14.2,.518,7.4,.683,8.9,6.1,28,21.1
6,1977,1981,"May 6, 1954",Indiana University,6-7,Tom Abernethy,F,/players/a/abernto01.html,220,0.0,.000,0.0,.492,.492,2.3,4.6,.747,1.0,1.4,319,5.6,,,,,4.5,.533,2.4,.689,1.7,1.1,110,5.9
7,1957,1957,"July 27, 1932",Western Kentucky University,6-3,Forest Able,G,/players/a/ablefo01.html,180,,,,,.000,0.0,2.0,,0.0,0.0,1,0.0,,,,,,,,,,,,
8,1947,1948,"February 9, 1919",Salem International University,6-3,John Abramovic,F,/players/a/abramjo01.html,195,,,,,.237,3.6,15.3,.686,2.3,3.3,56,9.5,,,,,,,,,,,,
9,2017,2018,"August 1, 1993",,6-6,Alex Abrines,G-F,/players/a/abrinal01.html,190,3.3,.379,1.2,.533,.393,1.7,4.4,.871,0.6,0.7,142,5.3,,,,,,,,,,,,
10,2006,2009,"January 21, 1983",Pepperdine University,6-5,Alex Acker,G,/players/a/ackeral01.html,185,0.8,.320,0.3,.413,.370,1.1,3.1,.500,0.2,0.3,30,2.7,3.3,.411,1.4,,11.2,.457,5.1,.823,3.5,2.9,88,14.5
11,1954,1954,"September 4, 1930",Long Island University,6-0,Don Ackerman,G,/players/a/ackerdo01.html,183,,,,,.222,0.5,2.3,.536,0.5,1.0,28,1.5,,,,,,,,,,,,
12,1988,1993,"November 15, 1962",Oral Roberts University,6-11,Mark Acres,F-C,/players/a/acresma01.html,220,0.0,.538,0.0,.509,.506,1.4,2.7,.665,0.8,1.2,375,3.6,,,,,12.9,.564,7.3,.696,5.7,4.0,110,18.5
13,1968,1968,"January 11, 1942",Hillsdale College,6-6,Bud Acton,F,/players/a/actonbu01.html,210,,,,,.392,1.3,3.2,.655,0.8,1.3,23,3.3,,,,,,,,,,,,
14,2013,2018,"October 6, 1990",Baylor University,6-7,Quincy Acy,F,/players/a/acyqu01.html,240,1.5,.355,0.5,.516,.446,1.8,4.0,.761,0.9,1.2,325,5.0,0.1,.429,0.0,,6.0,.602,3.6,.708,3.6,2.5,139,9.8
15,1976,1988,"July 19, 1954",University of Oklahoma,6-9,Alvan Adams,C-F,/players/a/adamsal01.html,210,0.0,.133,0.0,.498,.498,5.8,11.6,.788,2.5,3.2,988,14.1,,,,,18.0,.539,9.7,.702,5.6,3.9,73,23.4
16,1971,1977,"November 27, 1947",Northwestern University,6-6,Don Adams,F,/players/a/adamsdo01.html,210,0.1,.000,0.0,.402,.402,3.5,8.7,.741,1.8,2.5,523,8.8,,,,,,,,,,,,
17,1973,1975,"May 15, 1949",Gardner-Webb University,6-5,George Adams,F-G,/players/a/adamsge01.html,210,0.1,.235,0.0,.499,.497,3.3,6.7,.794,1.0,1.3,215,7.7,,,,,,,,,,,,
18,2007,2009,"June 20, 1984",University of Arizona,6-4,Hassan Adams,G,/players/a/adamsha01.html,220,0.0,.000,0.0,.534,.534,1.1,2.0,.643,0.4,0.6,73,2.5,1.9,.311,0.6,,11.6,.499,5.8,.704,2.7,1.9,130,14.0
19,2015,2016,"July 8, 1994","University of California, Los Angeles",6-5,Jordan Adams,G,/players/a/adamsjo01.html,209,0.8,.385,0.3,.457,.402,1.2,2.9,.607,0.5,0.9,32,3.2,4.3,.331,1.4,,11.6,.467,5.4,.839,5.0,4.2,69,16.4
20,1986,1996,"January 19, 1963",Boston College,5-10,Michael Adams,G,/players/a/adamsmi01.html,162,4.4,.332,1.5,.475,.415,5.0,12.0,.849,3.3,3.9,653,14.7,,,,,11.3,.470,5.3,.750,4.3,3.2,119,13.9
21,2014,2018,"July 20, 1993",University of Pittsburgh,7-0,Steven Adams,C,/players/a/adamsst01.html,255,0.0,.000,0.0,.585,.585,3.6,6.1,.566,1.6,2.8,385,8.7,0.0,,0.0,,5.5,.571,3.1,.443,2.2,1.0,32,7.2
22,1987,1997,"July 22, 1964",Syracuse University,6-7,Rafael Addison,F-G,/players/a/addisra01.html,215,0.6,.282,0.2,.466,.449,2.4,5.4,.772,0.7,0.9,379,5.8,,,,,11.6,.534,6.2,.763,3.3,2.5,126,14.9
23,2018,2018,"July 18, 1997",University of Kentucky,6-10,Bam Adebayo,C-F,/players/a/adebaba01.html,243,0.1,.000,0.0,.508,.508,2.5,5.0,.711,1.8,2.6,67,6.9,0.0,,0.0,,7.5,.599,4.5,.653,6.2,4.1,38,13.0
24,1969,1975,"June 16, 1946",Loyola Marymount University,6-1,Rick Adelman,G,/players/a/adelmri01.html,175,,,,,.415,3.0,7.2,.713,1.8,2.5,462,7.7,,,,,,,,,,,,
25,2011,2015,"February 10, 1986",University of Connecticut,6-7,Jeff Adrien,F,/players/a/adrieje01.html,245,0.0,.000,0.0,.474,.474,1.7,3.6,.628,1.2,1.9,153,4.6,0.0,.333,0.0,,8.8,.515,4.5,.606,4.9,3.0,133,12.1
26,2008,2018,"October 15, 1985","University of California, Los Angeles",6-5,Arron Afflalo,G,/players/a/afflaar01.html,210,2.9,.386,1.1,.514,.449,3.9,8.7,.825,1.8,2.2,761,10.8,5.4,.373,2.0,,10.9,.457,5.0,.781,3.6,2.8,104,14.8
27,2007,2011,"February 9, 1984",Michigan State University,6-5,Maurice Ager,G,/players/a/agerma01.html,202,0.5,.250,0.1,.368,.339,0.8,2.3,.566,0.4,0.6,82,2.1,4.3,.380,1.6,,9.6,.441,4.2,.775,3.2,2.5,124,12.5
28,1982,1994,"December 10, 1959",DePaul University,6-6,Mark Aguirre,F-G,/players/a/aguirma01.html,232,1.4,.312,0.4,.498,.484,7.8,16.1,.741,4.0,5.4,923,20.0,,,,,18.2,.546,9.9,.768,6.8,5.2,87,25.1
29,2008,2012,"May 27, 1984",Missouri State University,6-2,Blake Ahearn,G,/players/a/ahearbl01.html,190,2.5,.298,0.7,.364,.273,1.1,4.1,.970,1.7,1.7,19,4.6,5.2,.408,2.1,,8.9,.423,3.7,.946,3.6,3.4,129,13.0
30,1982,1995,"March 17, 1959",Brigham Young University,6-4,Danny Ainge,G,/players/a/aingeda01.html,175,2.5,.378,1.0,.519,.469,4.5,9.5,.846,1.6,1.9,1042,11.5,,,,,15.9,.526,8.4,.816,5.1,4.2,118,20.9
31,1968,1968,"September 21, 1944",Michigan State University,6-7,Matthew Aitch,F,/players/a/aitchma01.html,230,0.0,.000,0.0,.405,.405,2.2,5.5,.675,1.2,1.7,45,5.6,,,,,,,,,,,,
32,2009,2017,"May 6, 1988",,7-2,Alexis Ajinca,C,/players/a/ajincal01.html,248,0.1,.286,0.0,.507,.503,2.2,4.4,.797,0.9,1.1,293,5.3,,,,,,,,,,,,
33,1967,1969,"July 31, 1944",Morehead State University,6-10,Henry Akin,C-F,/players/a/akinhe01.html,225,1.0,.000,0.0,.350,.350,1.5,4.2,.676,0.5,0.8,88,3.5,,,,,,,,,,,,
34,2013,2013,"February 10, 1986","Washington State University, California State University, Fullerton",5-11,Josh Akognon,G,/players/a/akognjo01.html,185,0.7,.500,0.3,.625,.500,0.7,1.3,,0.0,0.0,3,1.7,7.6,.372,2.8,,12.3,.408,5.0,.871,2.7,2.3,119,15.2
35,2011,2012,"March 21, 1988",Florida State University,7-1,Solomon Alabi,C,/players/a/alabiso01.html,251,0.0,,0.0,.314,.314,0.6,2.0,.700,0.3,0.4,26,1.5,0.0,.000,0.0,,6.6,.534,3.5,.745,2.9,2.1,77,9.1
36,1987,1991,"December 11, 1963",Duke University,6-8,Mark Alarie,F,/players/a/alarima01.html,217,0.4,.252,0.1,.483,.475,3.2,6.7,.775,1.0,1.3,325,7.5,0.1,.000,0.0,,11.3,.550,6.2,.797,4.5,3.6,133,16.1
37,1960,1961,"October 8, 1936","California State University, Fresno",6-9,Gary Alcorn,C,/players/a/alcorga01.html,225,,,,,.293,1.3,4.5,.598,0.7,1.2,78,3.3,,,,,,,,,,,,
38,2015,2015,"August 9, 1991",,6-10,Furkan Aldemir,F-C,/players/a/aldemfu01.html,240,0.1,.000,0.0,.513,.513,1.0,1.9,.481,0.3,0.7,41,2.3,,,,,,,,,,,,
39,2011,2018,"October 31, 1988",University of Kansas,6-11,Cole Aldrich,C,/players/a/aldrico01.html,250,0.0,,0.0,.527,.527,1.3,2.4,.738,0.5,0.7,338,3.1,0.0,,0.0,,6.1,.574,3.5,.729,3.2,2.3,111,9.4
40,2007,2018,"July 19, 1985",University of Texas at Austin,6-11,LaMarcus Aldridge,F-C,/players/a/aldrila01.html,260,0.4,.289,0.1,.493,.489,7.9,16.1,.806,3.5,4.4,867,19.4,0.0,,0.0,,8.9,.586,5.2,.649,4.7,3.0,53,13.5
41,1985,1985,"February 26, 1959","University of Kentucky, University of Connecticut",6-11,Chuck Aleksinas,C,/players/a/aleksch01.html,260,0.0,.000,0.0,.478,.478,2.2,4.6,.733,0.7,1.0,74,5.1,,,,,6.8,.561,3.8,.721,3.5,2.5,96,10.1
42,2016,2016,"November 16, 1995",University of Kansas,6-8,Cliff Alexander,F,/players/a/alexacl01.html,245,0.0,,0.0,.500,.500,0.6,1.3,,0.0,0.0,8,1.3,0.0,,0.0,,4.6,.566,2.6,.671,2.8,1.9,28,7.1
43,1996,2005,"June 22, 1973",University of Virginia,6-1,Cory Alexander,G,/players/a/alexaco01.html,185,2.2,.354,0.8,.468,.389,1.9,4.9,.756,0.9,1.1,307,5.5,5.0,.336,1.7,,12.6,.427,5.4,.693,3.8,2.7,85,15.1
44,2001,2003,"April 27, 1977","University of Virginia, California State University, Fresno",6-5,Courtney Alexander,G,/players/a/alexaco02.html,205,0.6,.339,0.2,.435,.422,3.5,8.3,.813,1.8,2.2,187,9.0,4.1,.362,1.5,,15.8,.456,7.2,.767,3.9,3.0,112,18.9
45,1994,1994,"November 1, 1969",University of South Florida,6-7,Gary Alexander,F,/players/a/alexaga01.html,240,0.0,,0.0,.571,.571,0.7,1.3,.333,0.3,0.8,11,1.7,,,,,,,,,,,,
46,2009,2010,"December 26, 1986",West Virginia University,6-8,Joe Alexander,F,/players/a/alexajo01.html,230,0.7,.340,0.2,.442,.410,1.5,3.7,.698,0.9,1.3,67,4.2,2.1,.295,0.6,,10.0,.447,4.5,.765,3.3,2.5,82,12.1
47,1992,2002,"August 31, 1969",Iowa State University,6-9,Victor Alexander,C-F,/players/a/alexavi01.html,265,0.2,.286,0.1,.522,.518,3.8,7.4,.634,1.1,1.8,286,8.9,0.0,.000,0.0,,11.5,.611,7.0,.635,4.8,3.0,111,17.0
48,1988,1991,"November 23, 1964",Indiana University,6-2,Steve Alford,G,/players/a/alforst01.html,183,0.6,.324,0.2,.487,.459,1.7,3.8,.870,0.8,0.9,169,4.4,5.9,.530,3.1,,13.5,.533,7.2,.898,4.8,4.3,125,19.5
49,1968,1968,,New Mexico State University,6-8,Bill Allen,C-F,/players/a/allenbi01.html,205,0.1,1.000,0.1,.432,.429,3.2,7.4,.586,1.5,2.6,38,7.9,,,,,,,,,,,,
50,1969,1969,"July 17, 1946",Marshall University,6-9,Bob Allen,F,/players/a/allenbo01.html,205,,,,,.326,0.5,1.6,.556,0.7,1.3,27,1.8,,,,,,,,,,,,
51,2018,2018,"April 21, 1998",University of Texas at Austin,6-10,Jarrett Allen,F-C,/players/a/allenja01.html,234,0.2,.333,0.1,.590,.584,3.2,5.5,.772,1.6,2.1,70,8.1,0.2,.000,0.0,,9.6,.566,5.4,.564,4.5,2.5,33,13.4
52,1996,1997,"January 28, 1973",University of Pennsylvania,6-4,Jerome Allen,G,/players/a/allenje01.html,184,1.1,.317,0.3,.411,.350,1.0,2.8,.630,0.6,0.9,117,2.9,4.8,.343,1.6,,11.1,.417,4.6,.722,3.8,2.8,109,13.7
53,2018,2018,"January 15, 1993",University of Arizona,6-3,Kadeem Allen,G,/players/a/allenka01.html,192,0.5,.000,0.0,.143,.143,0.1,0.9,.750,0.2,0.3,16,0.4,1.8,.400,0.7,,6.6,.459,3.0,.725,3.1,2.3,68,9.1
54,2012,2017,"February 4, 1989",Temple University,6-9,Lavoy Allen,F-C,/players/a/allenla01.html,260,0.0,.133,0.0,.472,.471,2.1,4.5,.682,0.5,0.7,388,4.8,0.5,.288,0.1,,8.2,.534,4.4,.671,2.4,1.6,135,10.5
55,1970,1979,"September 26, 1947","University of California, Los Angeles",6-2,Lucius Allen,G,/players/a/allenlu01.html,175,,,,,.463,5.5,11.9,.760,2.3,3.1,702,13.4,,,,,,,,,,,,
56,2002,2011,"June 27, 1978",Villanova University,6-10,Malik Allen,F-C,/players/a/allenma01.html,255,0.0,.188,0.0,.440,.439,2.2,4.9,.778,0.5,0.7,478,4.9,0.0,,0.0,,6.7,.514,3.4,.696,3.0,2.1,127,8.9
57,1989,1990,"January 26, 1965",Florida State University,6-8,Randy Allen,F,/players/a/allenra01.html,220,0.1,.000,0.0,.442,.442,1.6,3.7,.533,0.3,0.6,70,3.6,0.1,.000,0.0,,10.5,.491,5.1,.615,3.6,2.2,115,12.5
58,1997,2014,"July 20, 1975",University of Connecticut,6-5,Ray Allen,G,/players/a/allenra02.html,205,5.7,.400,2.3,.530,.452,6.6,14.6,.894,3.4,3.8,1300,18.9,5.1,.448,2.3,,14.3,.487,7.0,.779,3.5,2.8,101,19.0
59,2005,2018,"January 11, 1982","Butler County Community College, Oklahoma State University",6-4,Tony Allen,G-F,/players/a/allento01.html,213,0.5,.282,0.2,.487,.475,3.2,6.6,.709,1.7,2.3,820,8.1,2.2,.347,0.8,,11.5,.477,5.5,.682,5.2,3.5,67,15.3
60,1972,1972,"February 8, 1949",University of Miami,6-6,Willie Allen,F,/players/a/allenwi01.html,230,0.0,,0.0,.308,.308,0.6,1.9,.833,0.7,0.9,7,1.9,,,,,,,,,,,,
61,1972,1972,"October 2, 1949","University of Nevada, Las Vegas",6-6,Odis Allison,F,/players/a/allisod01.html,195,,,,,.218,0.5,2.2,.541,0.9,1.7,36,1.9,,,,,,,,,,,,
62,2008,2008,"February 2, 1981","University of Utah, Weber State University",6-11,Lance Allred,C,/players/a/allrela01.html,250,0.0,,0.0,.250,.250,0.3,1.3,.500,0.3,0.7,3,1.0,0.1,.429,0.1,,7.1,.481,3.4,.718,3.9,2.8,95,9.7
63,1981,1981,"September 12, 1958","University of California, Los Angeles",6-9,Darrell Allums,F,/players/a/allumda01.html,220,0.0,.000,0.0,.343,.343,1.0,3.0,.591,0.6,1.0,22,2.7,,,,,2.7,.488,1.3,.688,1.6,1.1,92,3.8
64,2008,2012,"February 2, 1985",Rice University,6-6,Morris Almond,G,/players/a/almonmo01.html,225,0.6,.292,0.2,.412,.381,1.1,3.0,.743,0.7,0.9,38,3.1,2.9,.435,1.3,,10.5,.492,5.2,.824,4.2,3.5,121,15.1
65,1995,1997,"August 20, 1972",Duquesne University,6-11,Derrick Alston,F,/players/a/alstode01.html,225,0.1,.143,0.0,.490,.489,2.3,4.7,.487,0.8,1.7,139,5.4,0.0,.333,0.0,,11.6,.561,6.5,.576,6.4,3.7,114,16.7
66,2000,2010,"July 24, 1976","California State University, Fresno",6-2,Rafer Alston,G,/players/a/alstora01.html,171,4.2,.354,1.5,.461,.383,3.7,9.5,.729,1.3,1.8,671,10.1,5.9,.337,2.0,,9.4,.401,3.8,.758,2.0,1.5,33,11.0
67,1999,1999,"April 23, 1973",Liberty University,6-10,Peter Aluma,C,/players/a/alumape01.html,260,0.0,,0.0,.500,.500,0.5,1.0,,0.0,0.0,2,1.0,0.0,.000,0.0,,10.1,.528,5.3,.666,5.7,3.8,119,14.4
68,1996,2003,"November 26, 1970","Vanderbilt University, Pennsylvania State University",6-10,John Amaechi,C-F,/players/a/amaecjo01.html,270,0.0,.077,0.0,.403,.403,2.3,5.6,.671,1.7,2.6,294,6.2,0.6,.304,0.2,,7.8,.514,4.0,.690,6.6,4.5,108,12.7
69,1996,1997,"November 23, 1971",Southern Illinois University,6-8,Ashraf Amaya,F,/players/a/amayaas01.html,230,0.0,.500,0.0,.457,.455,1.6,3.4,.633,1.3,2.1,85,4.5,0.4,.229,0.1,,9.4,.567,5.3,.659,5.8,3.8,128,14.6
70,2011,2018,"September 21, 1990",Wake Forest University,6-9,Al-Farouq Aminu,F,/players/a/aminual01.html,220,2.2,.337,0.7,.478,.422,2.8,6.6,.726,1.2,1.7,587,7.5,1.7,.238,0.4,,10.6,.476,5.0,.687,5.7,3.9,62,14.4
71,2007,2016,"December 7, 1982","University of Nevada, Las Vegas",6-9,Lou Amundson,F,/players/a/amundlo01.html,220,0.0,.000,0.0,.474,.474,1.5,3.2,.444,0.6,1.4,428,3.7,0.0,.000,0.0,,5.4,.535,2.9,.503,3.0,1.5,120,7.2
72,1960,1960,"August 24, 1937",Michigan State University,6-3,Bob Anderegg,F-G,/players/a/anderbo01.html,200,,,,,.385,1.7,4.3,.548,0.7,1.3,33,4.0,,,,,,,,,,,,
73,2002,2017,"July 7, 1978",Blinn College,6-10,Chris Andersen,F-C,/players/a/anderch01.html,245,0.1,.221,0.0,.535,.532,1.9,3.6,.654,1.5,2.3,695,5.4,,,,,,,,,,,,
74,2010,2011,"June 23, 1980",,6-11,David Andersen,C,/players/a/anderda03.html,245,1.0,.347,0.3,.478,.440,2.0,4.5,.674,0.6,0.9,103,4.9,,,,,,,,,,,,
75,2006,2017,"October 16, 1982",Michigan State University,6-6,Alan Anderson,G-F,/players/a/anderal01.html,220,2.9,.344,1.0,.484,.405,2.6,6.3,.816,1.2,1.5,330,7.3,1.0,.366,0.4,,6.1,.503,3.0,.831,3.6,3.0,126,9.5
76,1968,1970,"July 6, 1945",Canisius College,6-2,Andrew Anderson,G,/players/a/anderan01.html,184,0.3,.159,0.1,.413,.410,4.1,10.1,.755,2.4,3.2,194,10.7,,,,,,,,,,,,
77,2010,2010,"June 5, 1985",University of Memphis,6-6,Antonio Anderson,G,/players/a/anderan02.html,215,0.0,,0.0,.333,.333,1.0,3.0,,0.0,0.0,1,2.0,3.0,.308,0.9,,6.9,.418,2.9,.648,2.8,1.8,150,8.5
78,1968,1971,"September 7, 1944",Saint Joseph's University,6-2,Cliff Anderson,G-F,/players/a/andercl01.html,200,0.0,,0.0,.354,.354,0.9,2.5,.585,1.3,2.2,84,3.0,,,,,,,,,,,,
79,1968,1969,"February 15, 1943",Augsburg College,6-10,Dan Anderson,C,/players/a/anderda01.html,230,0.0,,0.0,.481,.481,4.9,10.2,.727,2.4,3.4,140,12.2,,,,,,,,,,,,
80,1975,1976,"January 1, 1951",University of Southern California,6-2,Dan Anderson,G,/players/a/anderda02.html,185,,,,,.472,1.4,3.0,.846,0.8,1.0,95,3.7,,,,,,,,,,,,
81,1998,2008,"July 18, 1974","Ohio State University, University of Kentucky",6-5,Derek Anderson,G,/players/a/anderde01.html,194,3.1,.341,1.0,.463,.408,3.9,9.6,.853,3.0,3.6,615,12.0,2.5,.364,0.9,,8.5,.482,4.1,.805,4.0,3.2,99,12.4
82,1983,1983,"December 28, 1960","University of Kentucky, University of Southern California",6-3,Dwight Anderson,G,/players/a/anderdw01.html,185,0.0,,0.0,.500,.500,1.4,2.8,.700,1.4,2.0,5,4.2,,,,,12.4,.488,6.0,.725,5.8,4.2,79,16.3
83,1993,1994,"May 26, 1970",Indiana University,6-9,Eric Anderson,F,/players/a/anderer01.html,220,0.1,1.000,0.1,.371,.343,0.4,1.3,.593,0.6,1.0,27,1.6,0.4,.396,0.2,,9.4,.515,4.8,.734,4.4,3.2,131,13.1
84,1988,1998,"June 22, 1964",University of Houston,6-10,Greg Anderson,F-C,/players/a/andergr01.html,230,0.0,.087,0.0,.492,.492,3.0,6.0,.557,1.4,2.5,680,7.3,0.0,,0.0,,10.0,.550,5.5,.576,4.4,2.5,123,13.5
85,1983,1985,"September 23, 1960",Bradley University,6-8,J.J. Anderson,F,/players/a/anderjj01.html,195,0.1,.000,0.0,.465,.465,1.9,4.2,.558,0.9,1.6,157,4.8,,,,,17.1,.467,8.0,.715,4.5,3.2,122,19.2
86,2011,2016,"March 25, 1989",Oklahoma State University,6-6,James Anderson,G-F,/players/a/anderja01.html,213,2.5,.321,0.8,.488,.411,2.1,5.2,.755,0.7,0.9,247,5.8,5.9,.375,2.2,,12.6,.460,5.8,.797,5.2,4.2,101,17.9
87,1976,1977,"October 9, 1953",West Virginia University,6-5,Jerome Anderson,G,/players/a/anderje01.html,195,,,,,.490,1.0,2.1,.694,0.5,0.7,49,2.6,,,,,,,,,,,,
88,2016,2018,"November 19, 1993",University of Virginia,6-6,Justin Anderson,G,/players/a/anderju01.html,228,2.2,.296,0.7,.487,.419,2.0,4.8,.782,1.0,1.3,167,5.7,2.8,.357,1.0,,6.8,.430,2.9,.752,2.7,2.0,98,8.9
89,1992,2005,"October 9, 1970",Georgia Institute of Technology,6-0,Kenny Anderson,G,/players/a/anderke01.html,168,1.8,.346,0.6,.449,.421,4.7,11.1,.790,2.6,3.3,858,12.6,4.6,.374,1.7,,18.2,.473,8.6,.787,5.1,4.0,65,23.0
90,1979,1979,"May 12, 1955",University of Missouri,6-7,Kim Anderson,F,/players/a/anderki01.html,200,,,,,.312,1.1,3.7,.536,0.7,1.3,21,3.0,,,,,,,,,,,,
91,2015,2018,"September 20, 1993","University of California, Los Angeles",6-9,Kyle Anderson,F-G,/players/a/anderky01.html,230,0.6,.336,0.2,.501,.477,1.9,4.0,.734,0.8,1.1,255,4.9,1.4,.375,0.5,,9.4,.452,4.3,.736,4.3,3.1,71,12.2
92,1989,1989,"March 23, 1966",Drexel University,5-11,Michael Anderson,G,/players/a/andermi01.html,184,0.2,.143,0.0,.420,.417,2.0,4.9,.695,1.6,2.3,36,5.7,2.8,.401,1.1,,13.1,.478,6.3,.736,8.3,6.1,115,19.2
93,1990,2002,"January 20, 1968",University of Illinois at Urbana-Champaign,6-6,Nick Anderson,F-G,/players/a/anderni01.html,205,3.7,.356,1.3,.500,.446,5.5,12.4,.667,2.1,3.1,800,14.4,1.0,.361,0.4,,12.7,.553,7.0,.657,3.9,2.6,69,17.0
94,1983,1990,"November 19, 1960","University of California, Santa Barbara",6-10,Richard Anderson,F-C,/players/a/anderri01.html,240,1.1,.333,0.4,.446,.412,2.2,5.4,.762,0.7,0.9,407,5.6,,,,,11.2,.454,5.1,.718,3.1,2.2,100,12.5
95,1985,1994,"October 15, 1958","California State University, Fresno",6-7,Ron Anderson,F-G,/players/a/anderro01.html,215,0.6,.287,0.2,.479,.471,4.4,9.4,.814,1.6,2.0,664,10.6,0.0,.000,0.0,,12.7,.560,7.1,.802,3.4,2.7,68,16.9
96,2009,2018,"May 6, 1988",University of California,6-10,Ryan Anderson,F,/players/a/anderry01.html,240,5.5,.382,2.1,.525,.423,4.4,10.4,.855,1.9,2.2,622,12.8,4.7,.396,1.8,,13.1,.484,6.3,.841,5.0,4.2,66,18.7
97,1997,2006,"December 31, 1973",University of Georgia,6-6,Shandon Anderson,F-G,/players/a/andersh01.html,208,1.4,.316,0.4,.492,.457,2.8,6.1,.739,1.4,1.9,719,7.4,1.4,.291,0.4,,9.9,.498,4.9,.634,4.1,2.6,118,12.9
98,1989,1997,"January 8, 1967",University of Georgia,6-7,Willie Anderson,G-F,/players/a/anderwi01.html,190,0.7,.266,0.2,.479,.471,5.1,10.7,.786,1.9,2.4,555,12.2,1.7,.324,0.5,,10.2,.501,5.1,.784,2.6,2.1,107,12.6
99,1970,1970,"January 11, 1946",Creighton University,6-7,Wally Anderzunas,C-F,/players/a/anderwa01.html,220,,,,,.392,1.5,3.8,.630,0.7,1.0,44,3.6,,,,,,,,,,,,
100,2006,2006,"March 12, 1986",,7-2,Martynas Andriuskevicius,C,/players/a/andrima01.html,240,0.0,,0.0,.000,.000,0.0,0.2,,0.0,0.0,6,0.0,,,,,,,,,,,,
101,1955,1955,"November 1, 1930",Missouri State University,6-7,Don Anielak,F,/players/a/anieldo01.html,190,,,,,.000,0.0,4.0,.750,3.0,4.0,1,3.0,,,,,,,,,,,,
102,2018,2018,"October 22, 1998","University of California, Los Angeles",6-10,Ike Anigbogu,F-C,/players/a/anigbik01.html,252,0.0,,0.0,.444,.444,0.4,0.9,.833,0.5,0.6,10,1.3,0.0,,0.0,,3.5,.564,2.0,.535,1.5,0.8,29,4.7
103,1990,1992,"February 8, 1967",University of Alabama,6-7,Michael Ansley,F,/players/a/anslemi01.html,225,0.0,,0.0,.513,.513,2.6,5.0,.722,1.7,2.4,149,6.9,0.1,.200,0.0,,9.5,.577,5.5,.713,3.7,2.6,128,13.7
104,1998,2000,"January 1, 1975",,7-0,Chris Anstey,C,/players/a/anstech01.html,249,0.2,.138,0.0,.416,.413,2.0,4.7,.755,1.3,1.7,155,5.2,,,,,,,,,,,,
105,2014,2018,"December 6, 1994",,6-11,Giannis Antetokounmpo,F-G,/players/a/antetgi01.html,222,1.5,.285,0.4,.524,.507,6.3,12.4,.746,4.2,5.6,392,17.2,,,,,,,,,,,,
106,2016,2016,"July 17, 1992",,6-7,Thanasis Antetokounmpo,F,/players/a/antetth01.html,205,0.5,.000,0.0,.750,.750,1.5,2.0,,0.0,0.0,2,3.0,,,,,,,,,,,,
107,2004,2018,"May 29, 1984",Syracuse University,6-8,Carmelo Anthony,F,/players/a/anthoca01.html,240,3.7,.348,1.3,.482,.449,8.6,19.2,.812,5.6,6.9,1052,24.1,4.7,.337,1.6,,17.5,.453,7.9,.706,6.8,4.8,35,22.2
108,1992,2002,"November 15, 1967","University of Portland, University of Nevada, Las Vegas",6-0,Greg Anthony,G,/players/a/anthogr01.html,176,2.3,.349,0.8,.467,.403,2.5,6.3,.733,1.4,1.9,757,7.3,3.3,.379,1.2,,9.7,.437,4.3,.707,4.0,2.8,138,12.6
109,2008,2017,"August 9, 1982","University of Nevada, Las Vegas",6-9,Joel Anthony,C,/players/a/anthojo01.html,245,0.0,,0.0,.513,.513,0.8,1.6,.662,0.5,0.8,490,2.2,0.0,,0.0,,2.6,.573,1.5,.561,1.2,0.7,68,3.7
110,2014,2015,"July 29, 1982",,6-11,Pero Antic,C-F,/players/a/anticpe01.html,260,3.0,.314,1.0,.483,.392,2.0,5.2,.730,1.2,1.7,113,6.3,,,,,,,,,,,,
111,2018,2018,"July 17, 1997",Indiana University,6-8,OG Anunoby,F,/players/a/anunoog01.html,232,2.7,.366,1.0,.573,.469,2.2,4.7,.629,0.5,0.9,72,5.9,1.5,.365,0.5,,4.8,.563,2.7,.522,1.8,0.9,50,6.8
112,2016,2016,"February 13, 1992",Michigan State University,6-1,Keith Appling,G,/players/a/applike01.html,185,0.6,.000,0.0,.250,.250,0.4,1.6,1.000,0.4,0.4,5,1.2,2.9,.334,1.0,,8.0,.431,3.5,.748,3.7,2.7,142,10.6
113,2005,2007,"August 12, 1980",Brigham Young University,6-11,Rafael Araujo,C,/players/a/araujra01.html,280,0.0,.250,0.0,.406,.405,1.1,2.8,.679,0.5,0.8,139,2.8,0.7,.268,0.2,,10.4,.567,5.9,.691,4.5,3.1,62,15.1
114,1962,1962,"February 17, 1936",Iowa State University,6-4,Stacey Arceneaux,F,/players/a/arcenst01.html,210,,,,,.393,3.1,8.0,.462,0.9,1.9,7,7.1,,,,,,,,,,,,
115,2003,2004,"March 29, 1980",University of Illinois at Urbana-Champaign,6-11,Robert Archibald,F,/players/a/archiro01.html,250,0.0,,0.0,.283,.283,0.3,1.2,.429,0.5,1.1,44,1.2,0.0,.000,0.0,,3.5,.570,2.0,.681,3.2,2.2,130,6.2
116,1971,1984,"September 2, 1948",University of Texas at El Paso,6-1,Tiny Archibald,G,/players/a/architi01.html,150,0.3,.224,0.1,.468,.467,6.7,14.4,.810,5.3,6.6,876,18.8,,,,,13.8,.507,7.0,.785,7.7,6.0,73,20.0
117,2018,2018,"March 26, 1994",Villanova University,6-3,Ryan Arcidiacono,G,/players/a/arcidry01.html,188,1.1,.292,0.3,.500,.387,0.5,1.4,.833,0.2,0.3,22,1.6,5.1,.358,1.8,,8.5,.397,3.4,.800,3.2,2.6,144,11.1
118,1971,1978,"September 19, 1948",University of Cincinnati,6-8,Jim Ard,F-C,/players/a/ardji01.html,215,0.1,.235,0.0,.403,.402,1.7,4.3,.662,0.9,1.4,431,4.4,,,,,,,,,,,,
119,2002,2012,"January 6, 1982",University of Arizona,6-3,Gilbert Arenas,G,/players/a/arenagi01.html,191,5.6,.351,2.0,.482,.421,6.7,16.0,.803,5.2,6.5,552,20.7,4.2,.361,1.5,,12.1,.466,5.6,.738,4.0,3.0,70,15.8
120,2005,2018,"June 30, 1985","University of California, Los Angeles",6-8,Trevor Ariza,F,/players/a/arizatr01.html,215,3.9,.354,1.4,.503,.425,3.8,8.9,.723,1.6,2.2,941,10.5,3.0,.237,0.7,,10.0,.426,4.3,.504,4.5,2.3,25,11.6
121,1951,1962,"April 9, 1928",Villanova University,6-4,Paul Arizin,F-G,/players/a/arizipa01.html,190,,,,,.421,7.9,18.7,.810,7.0,8.7,713,22.8,,,,,6.6,1.083,7.1,.745,7.6,5.7,80,20.0
122,1988,1988,"July 20, 1965",Niagara University,6-9,Joe Arlauckas,F,/players/a/arlaujo01.html,230,0.0,,0.0,.326,.326,1.6,4.8,.750,0.7,0.9,9,3.8,0.3,.250,0.1,,12.1,.507,6.1,.644,3.2,2.1,112,14.4
123,1990,2000,"September 9, 1967",University of Iowa,6-2,B.J. Armstrong,G,/players/a/armstbj01.html,175,1.4,.425,0.6,.513,.477,3.8,8.0,.856,1.6,1.9,747,9.8,3.0,.443,1.3,,9.1,.492,4.5,.831,3.7,3.1,130,13.1
124,1957,1957,"June 17, 1933",Michigan State University,6-8,Bob Armstrong,C-F,/players/a/armstbo01.html,220,,,,,.297,0.6,1.9,.500,0.3,0.6,19,1.5,,,,,,,,,,,,
125,2002,2004,"June 16, 1980",Pepperdine University,6-5,Brandon Armstrong,G,/players/a/armstbr01.html,188,0.7,.333,0.2,.395,.352,0.9,2.7,.600,0.1,0.2,108,2.2,5.6,.391,2.2,,15.1,.439,6.6,.824,3.2,2.7,65,18.1
126,1949,1951,"November 1, 1918",Indiana University,5-11,Curly Armstrong,G-F,/players/a/armstcu01.html,170,,,,,.295,2.3,7.7,.692,2.3,3.3,153,6.8,,,,,,,,,,,,
127,1995,2008,"June 22, 1968",Fayetteville State University,6-0,Darrell Armstrong,G,/players/a/armstda01.html,170,3.3,.334,1.1,.480,.409,3.2,7.7,.871,1.7,2.0,840,9.2,,,,,,,,,,,,
128,2007,2014,"November 11, 1984",University of Connecticut,6-11,Hilton Armstrong,F-C,/players/a/armsthi01.html,235,0.0,.286,0.0,.502,.501,1.2,2.4,.582,0.6,1.1,292,3.0,0.0,.333,0.0,,3.1,.563,1.7,.578,2.1,1.2,131,4.7
129,1978,1979,"October 5, 1955",Duke University,6-3,Tate Armstrong,G,/players/a/armstta01.html,175,,,,,.454,1.7,3.8,.800,0.3,0.4,92,3.8,,,,,,,,,,,,
130,1956,1956,"December 30, 1933",Pennsylvania State University,6-5,Jesse Arnelle,F,/players/a/arnelje01.html,220,,,,,.317,1.7,5.3,.623,1.4,2.2,31,4.7,,,,,,,,,,,,
131,1964,1966,"December 19, 1938",University of Texas at Austin,6-2,Jay Arnette,G,/players/a/arnetja01.html,175,,,,,.365,1.4,3.9,.760,0.9,1.1,114,3.7,,,,,,,,,,,,
132,1970,1974,"November 3, 1947",University of Notre Dame,6-5,Bob Arnzen,F,/players/a/arnzebo01.html,205,0.1,.200,0.0,.466,.465,1.7,3.7,.800,0.5,0.7,111,4.0,,,,,,,,,,,,
133,2002,2011,"July 30, 1979",Florida International University,6-2,Carlos Arroyo,G,/players/a/arroyca01.html,202,0.7,.338,0.2,.459,.438,2.5,5.7,.806,1.4,1.7,569,6.6,,,,,,,,,,,,
134,2009,2018,"March 25, 1988",University of Kansas,6-9,Darrell Arthur,F,/players/a/arthuda01.html,235,0.9,.352,0.3,.470,.444,2.7,6.2,.765,0.7,0.9,503,6.5,0.2,.118,0.0,,8.7,.541,4.7,.676,2.7,1.8,78,11.3
135,1970,1970,"August 15, 1947",Tulane University,6-4,John Arthurs,G,/players/a/arthujo01.html,185,,,,,.343,1.1,3.2,.733,1.0,1.4,11,3.2,,,,,,,,,,,,
136,2018,2018,"January 12, 1993",University of Pittsburgh,6-7,Jamel Artis,G-F,/players/a/artisja01.html,213,2.1,.296,0.6,.493,.435,2.3,5.3,.600,0.5,0.8,13,5.7,3.3,.378,1.3,,9.1,.470,4.3,.759,3.6,2.7,135,12.6
137,2011,2018,"July 4, 1986",,7-0,Omer Asik,C,/players/a/asikom01.html,255,0.0,.000,0.0,.528,.528,2.0,3.8,.551,1.2,2.3,469,5.3,,,,,,,,,,,,
138,1988,1998,"February 28, 1966",University of Memphis,6-6,Vincent Askew,G-F,/players/a/askewvi01.html,210,0.5,.300,0.2,.494,.479,2.6,5.4,.754,1.7,2.3,467,7.1,1.2,.381,0.5,,8.9,.492,4.4,.751,3.2,2.4,103,11.4
139,1991,1999,"December 15, 1967",University of Alabama,6-7,Keith Askins,G-F,/players/a/askinke01.html,197,1.6,.355,0.6,.483,.401,1.4,3.5,.717,0.5,0.6,486,3.8,2.1,.400,0.8,,5.2,.446,2.3,.658,1.7,1.1,128,6.7
140,1954,1954,"February 15, 1928",Alliance College,6-2,Don Asmonga,G,/players/a/asmondo01.html,185,,,,,.133,0.3,2.1,1.000,0.1,0.1,7,0.7,,,,,,,,,,,,
141,1956,1958,"September 21, 1931",Indiana State University,6-2,Dick Atha,G,/players/a/athadi01.html,190,,,,,.393,1.2,3.1,.795,0.7,0.9,43,3.2,,,,,,,,,,,,
142,2000,2010,"August 14, 1974",University of South Florida,5-11,Chucky Atkins,G,/players/a/atkinch01.html,160,3.7,.364,1.3,.489,.412,3.6,8.7,.772,1.4,1.8,696,9.9,6.1,.362,2.2,,11.6,.410,4.7,.737,3.9,2.9,111,14.6
143,1961,1971,"November 7, 1936",North Carolina Agricultural and Technical State University,6-0,Al Attles,G,/players/a/attleal01.html,175,,,,,.451,3.5,7.8,.632,1.9,3.0,711,8.9,,,,,,,,,,,,
144,1947,1947,"May 18, 1916",Michigan State University,5-10,Chet Aubuchon,G,/players/a/aubucch01.html,137,,,,,.253,0.8,3.0,.543,0.6,1.2,30,2.2,,,,,,,,,,,,
145,1992,2006,"August 1, 1968","University of Nevada, Las Vegas",6-8,Stacey Augmon,F-G,/players/a/augmost01.html,205,0.1,.152,0.0,.470,.469,3.0,6.5,.728,1.9,2.6,1001,8.0,1.6,.420,0.7,,9.4,.555,5.2,.677,4.1,2.8,145,13.9
146,2009,2018,"November 10, 1987",University of Texas at Austin,6-0,D.J. Augustin,G,/players/a/augusdj01.html,183,3.3,.376,1.3,.488,.406,3.1,7.7,.863,2.1,2.5,724,9.6,4.1,.402,1.6,,12.2,.443,5.4,.808,5.5,4.4,73,16.9
147,2007,2008,"February 27, 1984",University of Illinois at Urbana-Champaign,6-10,James Augustine,F,/players/a/augusja01.html,235,0.0,,0.0,.514,.514,0.7,1.4,.500,0.1,0.3,27,1.6,0.1,.333,0.0,,6.3,.617,3.9,.687,3.3,2.3,137,10.1
148,1992,2002,"August 18, 1969",Arizona State University,6-10,Isaac Austin,C,/players/a/austiis01.html,255,0.1,.176,0.0,.448,.446,3.0,6.7,.670,1.6,2.4,432,7.6,0.0,.000,0.0,,10.3,.559,5.8,.637,5.4,3.4,61,15.0
149,1967,1968,"August 31, 1944",Boston College,6-0,Johnny Austin,G,/players/a/austijo01.html,170,0.3,.000,0.0,.375,.375,2.5,6.7,.731,2.5,3.5,45,7.6,,,,,,,,,,,,
150,1984,1984,"July 15, 1961",Rice University,6-9,Ken Austin,F,/players/a/austike01.html,205,0.0,,0.0,.462,.462,0.9,1.9,,0.0,0.0,7,1.7,,,,,8.6,.486,4.2,.590,3.4,2.0,91,10.3
151,1993,2000,"October 18, 1969",Seton Hall University,6-9,Anthony Avent,F,/players/a/aventan01.html,235,0.0,.000,0.0,.403,.403,2.3,5.7,.686,0.9,1.4,352,5.6,0.0,,0.0,,7.9,.527,4.2,.701,3.4,2.4,100,10.7
152,1974,1978,"July 22, 1952",Pepperdine University,6-1,Bird Averitt,G,/players/a/averibi01.html,170,1.0,.249,0.2,.412,.405,4.8,11.8,.743,2.4,3.3,366,12.1,,,,,,,,,,,,
153,2000,2002,"August 8, 1979",Duke University,6-2,William Avery,G,/players/a/averywi01.html,197,1.1,.255,0.3,.378,.330,1.0,2.9,.714,0.5,0.6,142,2.7,4.0,.369,1.5,,8.7,.470,4.1,.784,2.8,2.2,74,11.9
154,1971,1982,"February 22, 1948",Santa Clara University,6-10,Dennis Awtrey,C,/players/a/awtrede01.html,235,0.0,,0.0,.459,.459,1.9,4.1,.652,1.0,1.6,733,4.8,,,,,13.3,.578,7.7,.715,6.4,4.6,84,19.9
155,2012,2014,"April 1, 1985",,6-10,Gustavo Ayon,C,/players/a/ayongu01.html,250,0.0,.000,0.0,.536,.536,2.1,3.9,.504,0.5,1.0,135,4.7,,,,,,,,,,,,
156,2010,2016,"April 29, 1987",Arizona State University,6-9,Jeff Ayres,F,/players/p/pendeje02.html,240,0.0,.400,0.0,.555,.553,1.2,2.2,.776,0.5,0.6,237,2.9,0.1,.000,0.0,,8.4,.580,4.8,.764,3.8,2.9,126,12.6
157,2007,2012,"December 16, 1983",University of Kentucky,6-5,Kelenna Azubuike,G,/players/a/azubuke01.html,220,2.5,.409,1.0,.519,.459,3.9,8.4,.770,1.8,2.3,208,10.5,2.6,.373,1.0,,7.5,.485,3.6,.752,2.3,1.7,97,10.0
158,2014,2014,"February 14, 1990","Pennsylvania State University, Iowa State University",6-5,Chris Babb,G,/players/b/babbch01.html,225,1.9,.222,0.4,.367,.267,0.6,2.1,,0.0,0.0,14,1.6,4.7,.359,1.7,,6.2,.377,2.3,.733,1.2,0.9,130,7.2
159,2011,2018,"June 20, 1989","University of Nevada, Reno",6-9,Luke Babbitt,F,/players/b/babbilu01.html,225,2.6,.402,1.0,.532,.408,1.7,4.2,.747,0.3,0.4,381,4.8,2.6,.421,1.1,,13.6,.480,6.5,.893,5.8,5.2,68,19.4
160,1991,1992,"November 23, 1968",Tennessee Technological University,7-0,Milos Babic,C-F,/players/b/babicmi01.html,240,0.0,,0.0,.375,.375,0.6,1.5,.650,0.6,1.0,21,1.8,0.1,.286,0.0,,10.3,.468,4.8,.667,3.8,2.6,80,12.2
161,1949,1949,"July 10, 1924",Fordham University,6-2,Johnny Bach,F-G,/players/b/bachjo01.html,180,,,,,.286,1.0,3.5,.680,1.5,2.2,34,3.5,,,,,,,,,,,,
162,2018,2018,"August 30, 1995",Florida State University,6-6,Dwayne Bacon,G,/players/b/bacondw01.html,222,0.8,.256,0.2,.404,.375,1.4,3.6,.800,0.4,0.5,53,3.3,4.1,.312,1.3,,13.5,.449,6.1,.733,4.2,3.1,69,16.5
163,1973,1973,"July 5, 1948",University of Louisville,6-3,Henry Bacon,G,/players/b/baconhe01.html,205,0.2,.200,0.0,.372,.366,1.3,3.5,.603,0.9,1.6,47,3.5,,,,,,,,,,,,
164,1953,1957,"December 9, 1927",Eastern Kentucky University,6-4,Jim Baechtold,F-G,/players/b/baechji01.html,205,,,,,.388,3.5,9.0,.783,2.8,3.5,321,9.7,,,,,,,,,,,,
165,2001,2003,"February 7, 1980",,7-1,Dalibor Bagaric,C,/players/b/bagarda01.html,255,0.0,.000,0.0,.361,.361,1.0,2.8,.559,0.6,1.1,95,2.6,,,,,,,,,,,,
166,1983,1994,"April 23, 1960",Boston College,6-0,John Bagley,G,/players/b/baglejo01.html,185,0.7,.241,0.2,.448,.437,3.5,8.1,.779,1.5,1.9,665,8.7,,,,,13.2,.496,6.5,.778,6.2,4.8,91,17.9
167,1982,1982,"April 23, 1958",Tuskegee University,7-0,Carl Bailey,C,/players/b/baileca01.html,210,0.0,,0.0,1.000,1.000,1.0,1.0,,0.0,0.0,1,2.0,,,,,,,,,,,,
168,1975,1980,"February 18, 1951",University of Texas at El Paso,6-5,Gus Bailey,G-F,/players/b/bailegu01.html,185,0.1,1.000,0.1,.408,.406,1.1,2.6,.510,0.5,1.0,147,2.6,,,,,8.7,.511,4.4,.595,5.8,3.5,76,12.3
169,1980,1988,"May 21, 1957",Rutgers University,6-9,James Bailey,F-C,/players/b/baileja01.html,220,0.0,.077,0.0,.484,.484,3.4,7.1,.703,1.9,2.8,595,8.8,,,,,12.8,.545,7.0,.655,4.2,2.8,122,16.7
170,1984,1999,"April 7, 1961",North Carolina State University,6-11,Thurl Bailey,F-C,/players/b/baileth01.html,215,0.0,.114,0.0,.473,.473,5.1,10.8,.812,2.5,3.1,928,12.8,0.4,.667,0.3,,9.7,.513,5.0,.745,2.9,2.1,123,12.1
171,1999,2000,"November 19, 1975","University of California, Los Angeles",6-6,Toby Bailey,G,/players/b/baileto01.html,213,0.2,.200,0.0,.414,.407,1.3,3.1,.692,0.7,1.1,73,3.3,3.9,.341,1.3,,11.5,.459,5.3,.667,3.7,2.5,129,14.3
172,2015,2016,"December 7, 1990",University of New Mexico,6-9,Cameron Bairstow,F-C,/players/b/bairsca01.html,250,0.1,.200,0.0,.306,.296,0.4,1.5,.846,0.3,0.4,36,1.2,0.0,.333,0.0,,6.0,.517,3.1,.717,4.2,3.0,134,9.2
173,1976,1976,"December 25, 1953",University of Hawaii,6-9,Jimmie Baker,F,/players/b/bakerji01.html,220,0.0,,0.0,.200,.200,0.6,3.0,.000,0.0,0.4,5,1.2,,,,,,,,,,,,
174,1999,1999,"November 11, 1969",Ohio State University,6-1,LaMark Baker,G,/players/b/bakerla01.html,175,0.0,,0.0,.000,.000,0.0,1.0,,0.0,0.0,1,0.0,0.3,.192,0.1,,7.5,.508,3.8,.676,4.3,2.9,92,10.6
175,2005,2005,"July 28, 1979",Oklahoma State University,6-1,Maurice Baker,G,/players/b/bakerma01.html,175,0.0,,0.0,.000,.000,0.0,0.2,,0.0,0.0,5,0.0,4.6,.391,1.8,,11.7,.481,5.6,.819,4.0,3.3,59,16.4
176,1947,1947,"February 17, 1923",,6-0,Norm Baker,G,/players/b/bakerno01.html,180,,,,,.000,0.0,0.3,,0.0,0.0,4,0.0,,,,,,,,,,,,
177,2017,2018,"March 30, 1993",Wichita State University,6-4,Ron Baker,G,/players/b/bakerro01.html,220,1.5,.286,0.4,.431,.370,1.3,3.4,.696,0.6,0.9,81,3.5,5.3,.369,2.0,,9.7,.433,4.2,.801,3.5,2.8,124,13.2
178,1994,2006,"November 23, 1971",University of Hartford,6-11,Vin Baker,F,/players/b/bakervi01.html,232,0.2,.215,0.0,.487,.485,5.9,12.2,.638,3.1,4.8,791,15.0,2.2,.300,0.7,,16.2,.475,7.7,.637,6.2,4.0,112,20.0
179,2017,2018,"March 29, 1996",Vanderbilt University,6-4,Wade Baldwin,G,/players/b/baldwwa01.html,202,0.7,.259,0.2,.387,.361,1.2,3.4,.783,0.9,1.2,39,3.6,2.9,.422,1.2,,8.0,.431,3.4,.800,4.4,3.5,68,11.6
180,2007,2012,"July 14, 1984",University of South Carolina,6-8,Renaldo Balkman,F,/players/b/balkmre01.html,208,0.3,.172,0.0,.518,.510,1.7,3.3,.542,0.7,1.2,221,4.0,0.5,.291,0.2,,5.5,.553,3.0,.533,2.2,1.2,104,7.4
181,1991,1991,"April 16, 1968",University of North Carolina at Charlotte,6-8,Cedric Ball,F,/players/b/ballce01.html,210,0.0,,0.0,.375,.375,0.4,1.1,1.000,0.3,0.3,7,1.1,0.0,.000,0.0,,6.7,.569,3.8,.599,4.3,2.6,88,10.2
182,2018,2018,"October 27, 1997","University of California, Los Angeles",6-6,Lonzo Ball,G,/players/b/balllo01.html,190,5.7,.305,1.7,.440,.360,3.9,10.8,.451,0.6,1.4,52,10.2,5.4,.412,2.2,,9.5,.551,5.3,.673,2.7,1.8,36,14.6
183,1978,1989,"January 29, 1955",University of Oregon,6-7,Greg Ballard,F,/players/b/ballagr01.html,215,0.4,.338,0.1,.477,.472,5.3,11.1,.787,1.8,2.3,802,12.4,,,,,11.5,.510,5.9,.778,5.4,4.2,115,15.9
184,1947,1947,"June 21, 1921",Pennsylvania State University,6-4,Herschel Baltimore,F,/players/b/baltihe01.html,195,,,,,.202,0.9,4.5,.464,0.6,1.2,58,2.4,,,,,,,,,,,,
185,1982,1987,"May 15, 1959",Duke University,6-7,Gene Banks,F-G,/players/b/banksge01.html,215,0.1,.043,0.0,.539,.539,4.6,8.5,.730,2.2,3.0,468,11.3,,,,,12.6,.531,6.7,.722,4.8,3.4,124,16.8
186,2004,2011,"November 19, 1981","University of Nevada, Las Vegas",6-2,Marcus Banks,G,/players/b/banksma01.html,200,1.1,.327,0.4,.469,.432,2.1,4.9,.768,1.3,1.7,348,5.9,3.1,.330,1.0,,12.2,.495,6.0,.731,6.8,5.0,63,18.1
187,1971,1971,"August 26, 1947",Western Kentucky University,6-10,Walker Banks,C,/players/b/bankswa01.html,205,0.0,,0.0,.500,.500,1.1,2.1,.412,0.4,1.1,16,2.6,,,,,,,,,,,,
188,1985,1991,"April 1, 1960","Indiana State University, Saint Augustine's College",6-9,Ken Bannister,F-C,/players/b/bannike01.html,235,0.0,.000,0.0,.488,.488,2.3,4.8,.492,1.3,2.6,253,5.9,,,,,,,,,,,,
189,1974,1982,"December 3, 1951",Saint Joseph's University,6-9,Mike Bantom,F-C,/players/b/bantomi01.html,200,0.1,.200,0.0,.468,.468,4.9,10.4,.692,2.4,3.4,706,12.1,,,,,16.5,.476,7.8,.697,6.3,4.4,84,20.0
190,1957,1957,"June 27, 1927","California State University, Los Angeles",6-6,John Barber,F,/players/b/barbejo01.html,210,,,,,.250,0.4,1.6,.500,0.6,1.2,5,1.4,,,,,,,,,,,,
191,2004,2017,"November 28, 1982",,6-3,Leandro Barbosa,G,/players/b/barbole01.html,194,3.0,.387,1.2,.526,.459,4.0,8.7,.821,1.5,1.8,850,10.6,,,,,,,,,,,,
192,1992,1996,"April 5, 1968",University of Illinois at Urbana-Champaign,6-5,Steve Bardo,G,/players/b/bardost01.html,190,0.3,.100,0.0,.335,.329,0.8,2.6,.696,0.5,0.7,33,2.2,1.0,.455,0.5,,5.6,.439,2.4,.701,2.4,1.7,129,7.0
193,2007,2018,"June 26, 1984",Northeastern University,6-0,J.J. Barea,G,/players/b/bareajo01.html,185,2.8,.354,1.0,.486,.424,3.4,8.0,.798,1.1,1.4,764,8.9,7.0,.321,2.3,,17.1,.404,6.9,.764,5.5,4.2,113,20.3
194,2007,2016,"October 26, 1985",,7-0,Andrea Bargnani,F-C,/players/b/bargnan01.html,245,3.2,.354,1.1,.486,.439,5.3,12.1,.824,2.5,3.0,550,14.3,,,,,,,,,,,,
195,1950,1952,"January 15, 1921",University of Kentucky,6-2,Cliff Barker,G,/players/b/barkecl01.html,185,,,,,.316,1.3,4.3,.662,1.0,1.6,149,3.7,,,,,,,,,,,,
196,1977,1979,"March 11, 1955",University of Hawaii,6-11,Tom Barker,C-F,/players/b/barketo01.html,225,,,,,.422,2.6,6.0,.692,1.4,2.1,98,6.5,,,,,,,,,,,,
197,1985,2000,"February 20, 1963",Auburn University,6-6,Charles Barkley,F,/players/b/barklch01.html,252,1.9,.266,0.5,.558,.541,7.9,14.5,.735,5.9,8.1,1073,22.1,,,,,8.9,.626,5.6,.652,4.5,3.0,84,14.1
198,2001,2002,"February 21, 1978",St. John's University,6-1,Erick Barkley,G,/players/b/barkler01.html,177,0.6,.267,0.1,.378,.356,1.2,3.3,.900,0.3,0.4,27,2.9,5.0,.328,1.6,,12.3,.396,4.9,.727,4.4,3.2,65,14.6
199,1952,1955,"March 31, 1923","University of California, Los Angeles",6-6,Don Barksdale,F-C,/players/b/barksdo01.html,200,,,,,.370,3.9,10.5,.660,3.3,5.0,262,11.0,,,,,,,,,,,,
200,2013,2018,"May 30, 1992",University of North Carolina,6-8,Harrison Barnes,F,/players/b/barneha02.html,210,2.8,.367,1.0,.499,.451,5.0,11.0,.789,2.1,2.7,463,13.1,4.4,.349,1.5,,13.6,.430,5.8,.734,4.3,3.1,75,16.3
201,1969,1969,"July 25, 1945",Northeastern University,6-3,Harry Barnes,F,/players/b/barneha01.html,205,,,,,.281,0.8,2.9,.538,0.3,0.6,22,2.0,,,,,,,,,,,,
202,1965,1971,"April 13, 1941",University of Texas at El Paso,6-8,Jim Barnes,C-F,/players/b/barneji01.html,210,,,,,.429,3.4,7.9,.684,2.0,2.9,454,8.8,,,,,,,,,,,,
203,1975,1980,"July 27, 1952",Providence College,6-8,Marvin Barnes,F-C,/players/b/barnema01.html,210,0.1,.214,0.0,.481,.481,6.7,13.8,.691,2.7,3.9,315,16.0,,,,,16.8,.515,8.7,.670,5.0,3.4,89,20.7
204,2004,2017,"March 9, 1980","University of California, Los Angeles",6-7,Matt Barnes,F,/players/b/barnema02.html,226,3.2,.335,1.1,.513,.436,3.0,6.9,.745,1.1,1.5,929,8.2,1.6,.314,0.5,,7.1,.469,3.3,.566,2.9,1.7,121,8.8
205,1960,1974,"October 2, 1936",Tennessee State University,6-4,Dick Barnett,G-F,/players/b/barnedi01.html,190,,,,,.456,6.2,13.6,.761,3.4,4.5,971,15.8,,,,,,,,,,,,
206,1967,1977,"July 7, 1944",University of Oregon,6-4,Jim Barnett,G-F,/players/b/barneji02.html,170,,,,,.435,4.5,10.4,.797,2.6,3.2,732,11.7,,,,,,,,,,,,
207,1976,1976,"January 29, 1953",University of Akron,6-3,Nathaniel Barnett,G,/players/b/barnena01.html,175,0.1,.000,0.0,.462,.462,1.0,2.2,.375,0.3,0.7,12,2.3,,,,,,,,,,,,
208,1963,1972,"March 20, 1938",Tennessee State University,6-1,John Barnhill,G,/players/b/barnhjo01.html,180,2.8,.236,0.7,.416,.406,3.4,8.5,.658,1.6,2.4,589,8.6,,,,,,,,,,,,
209,1977,1977,"July 15, 1953",Washington State University,6-4,Norton Barnhill,G,/players/b/barnhno01.html,205,,,,,.333,0.5,1.5,,0.0,0.0,4,1.0,,,,,,,,,,,,
210,1950,1954,"May 11, 1924",University of Notre Dame,6-4,Leo Barnhorst,F-G,/players/b/barnhle01.html,190,,,,,.368,3.9,10.7,.665,1.5,2.3,344,9.4,,,,,,,,,,,,
211,1947,1947,"August 8, 1918",Pennsylvania State University,6-3,John Barr,F,/players/b/barrjo01.html,205,,,,,.283,2.1,7.6,.595,0.8,1.4,58,5.1,,,,,,,,,,,,
212,1973,1977,"October 19, 1950",Duquesne University,6-3,Mike Barr,G,/players/b/barrmi01.html,180,0.1,.333,0.0,.482,.479,2.5,5.1,.753,0.9,1.3,307,5.9,,,,,,,,,,,,
213,1971,1971,"June 19, 1944",Duquesne University,6-4,Moe Barr,G,/players/b/barrmo01.html,195,,,,,.403,0.8,2.0,.846,0.4,0.4,31,2.0,,,,,,,,,,,,
214,2005,2008,"February 21, 1982",Seton Hall University,5-10,Andre Barrett,G,/players/b/barrean01.html,172,1.0,.246,0.3,.405,.369,1.3,3.6,.727,0.4,0.5,67,3.3,5.7,.351,2.0,,12.4,.415,5.1,.773,3.9,3.0,122,15.3
215,1954,1956,"August 27, 1929",Kansas State University,6-3,Ernie Barrett,G-F,/players/b/barreer01.html,180,,,,,.369,2.0,5.5,.748,0.8,1.1,131,4.9,,,,,,,,,,,,
216,1970,1973,"September 5, 1943",West Virginia University Institute of Technology,6-2,Mike Barrett,G,/players/b/barremi01.html,155,1.6,.310,0.5,.461,.440,5.2,11.8,.746,2.4,3.3,187,13.4,,,,,,,,,,,,
217,2006,2015,"August 14, 1981",University of Memphis,7-0,Earl Barron,C,/players/b/barroea01.html,250,0.1,.167,0.0,.373,.371,1.8,4.9,.702,0.9,1.3,140,4.6,0.2,.174,0.0,,5.9,.479,2.8,.685,3.2,2.2,128,7.8
218,1990,2004,"April 13, 1967",Boston College,5-11,Dana Barros,G,/players/b/barroda01.html,163,3.1,.411,1.3,.536,.460,3.9,8.4,.858,1.5,1.7,850,10.5,7.4,.432,3.2,,14.6,.473,6.9,.841,4.0,3.4,119,19.7
219,1996,2009,"December 31, 1971",Oregon State University,6-6,Brent Barry,G,/players/b/barrybr01.html,185,3.8,.405,1.5,.570,.460,3.2,6.9,.823,1.4,1.7,912,9.3,3.5,.345,1.2,,8.4,.480,4.0,.794,3.5,2.8,108,12.1
220,1998,2000,"February 17, 1973",Georgia Institute of Technology,6-5,Drew Barry,G,/players/b/barrydr01.html,191,1.1,.381,0.4,.534,.417,0.7,1.7,.774,0.4,0.5,60,2.2,4.1,.369,1.5,,7.8,.447,3.5,.778,2.8,2.2,117,10.7
221,1993,2006,"July 25, 1969","University of the Pacific, Georgia Institute of Technology",6-4,Jon Barry,G,/players/b/barryjo01.html,195,2.0,.392,0.8,.524,.434,1.9,4.5,.848,1.1,1.2,821,5.7,5.7,.371,2.1,,12.1,.421,5.1,.717,2.9,2.1,94,14.4
222,1966,1980,"March 28, 1944",University of Miami,6-7,Rick Barry,F,/players/b/barryri01.html,205,2.0,.297,0.6,.460,.456,9.5,20.9,.893,5.6,6.3,1020,24.8,,,,,20.3,.522,10.6,.847,10.2,8.6,77,29.8
223,1950,1951,"October 8, 1925",North Carolina State University,6-5,Ed Bartels,F,/players/b/barteed01.html,195,,,,,.251,1.4,5.7,.538,1.3,2.5,32,4.2,,,,,,,,,,,,
224,1972,1972,"September 29, 1948",Oregon State University,7-0,Vic Bartolome,C,/players/b/bartovi01.html,230,,,,,.254,0.4,1.6,.800,0.1,0.1,38,0.9,,,,,,,,,,,,
225,2013,2018,"January 6, 1991",University of Memphis,6-6,Will Barton,G,/players/b/bartowi01.html,175,2.9,.339,1.0,.491,.434,3.8,8.8,.791,1.7,2.2,393,10.4,3.6,.299,1.1,,12.0,.471,5.7,.733,3.7,2.7,70,15.2
226,2006,2006,"February 15, 1983",University of North Carolina at Charlotte,6-5,Eddie Basden,G,/players/b/basdeed01.html,215,0.4,.143,0.1,.419,.405,0.8,1.9,.800,0.4,0.5,19,2.1,1.0,.353,0.4,,6.3,.491,3.1,.687,3.6,2.5,118,9.0
227,1976,1976,"November 10, 1951",Temple University,6-7,Jerry Baskerville,F,/players/b/baskeje01.html,190,,,,,.308,0.4,1.2,.625,0.5,0.8,21,1.2,,,,,,,,,,,,
228,2006,2017,"April 30, 1985",Louisiana State University,6-8,Brandon Bass,F,/players/b/bassbr01.html,250,0.1,.207,0.0,.500,.499,3.4,6.8,.832,1.9,2.3,758,8.7,0.8,.378,0.3,,9.5,.540,5.1,.780,5.8,4.6,59,15.1
229,1974,1980,"April 1, 1951",University of Georgia,6-8,Tim Bassett,F-C,/players/b/basseti01.html,225,0.1,.286,0.0,.424,.423,2.6,6.1,.588,1.0,1.8,473,6.2,,,,,12.7,.497,6.3,.542,3.2,1.7,52,14.4
230,2003,2009,"May 29, 1975",University of Michigan,6-9,Maceo Baston,F,/players/b/bastoma01.html,215,0.1,.375,0.0,.625,.616,1.0,1.6,.740,0.7,0.9,105,2.7,0.0,.000,0.0,,6.0,.627,3.7,.648,4.9,3.2,126,10.6
231,2002,2004,"November 20, 1975",,6-11,Mengke Bateer,C,/players/b/bateeme01.html,290,0.3,.333,0.1,.407,.391,1.3,3.4,.744,0.6,0.8,46,3.4,,,,,,,,,,,,
232,1980,1983,"May 31, 1956",Kentucky State University,6-4,Billy Ray Bates,G,/players/b/batesbi01.html,210,0.6,.303,0.2,.483,.474,4.8,10.1,.796,2.0,2.5,187,11.7,,,,,,,,,,,,
233,2006,2007,"September 2, 1983",,6-10,Esteban Batista,F-C,/players/b/batises01.html,270,0.0,.000,0.0,.438,.438,0.6,1.4,.617,0.5,0.9,70,1.7,,,,,,,,,,,,
234,2003,2003,"November 21, 1977",Arizona State University,6-8,Mike Batiste,F,/players/b/batismi01.html,225,1.1,.222,0.2,.441,.422,2.6,6.2,.784,0.9,1.2,75,6.4,2.0,.301,0.6,,11.9,.497,5.9,.654,3.5,2.3,76,14.7
235,1998,2012,"February 11, 1976",Texas Tech University,6-11,Tony Battie,C-F,/players/b/battito01.html,230,0.1,.162,0.0,.490,.488,2.6,5.2,.690,0.9,1.4,837,6.1,0.4,.278,0.1,,7.7,.545,4.2,.649,3.3,2.1,87,10.7
236,2002,2014,"September 9, 1978",Duke University,6-8,Shane Battier,F,/players/b/battish01.html,220,3.3,.384,1.3,.529,.437,3.1,7.0,.743,1.2,1.6,977,8.6,4.1,.416,1.7,,8.9,.500,4.5,.777,3.8,3.0,146,13.6
237,1986,1995,"November 9, 1962",Rutgers University,6-2,John Battle,G,/players/b/battljo01.html,175,0.4,.273,0.1,.471,.464,3.4,7.2,.793,1.9,2.4,612,8.7,1.3,.342,0.4,,9.6,.488,4.7,.707,3.6,2.5,114,11.9
238,1990,1993,"October 10, 1964","Northern Illinois University, University of Illinois at Urbana-Champaign",6-6,Kenny Battle,F,/players/b/battlke01.html,210,0.2,.133,0.0,.508,.504,1.8,3.6,.725,1.0,1.4,134,4.7,0.3,.500,0.1,,11.6,.569,6.6,.686,6.6,4.5,123,17.8
239,1983,1984,"March 26, 1956",University of Notre Dame,6-10,Dave Batton,C,/players/b/battoda01.html,240,0.1,.000,0.0,.448,.448,1.6,3.5,.471,0.1,0.3,58,3.2,,,,,8.6,.533,4.6,.699,2.1,1.4,114,10.6
240,1975,1975,"May 9, 1951",University of Cincinnati,6-4,Lloyd Batts,G-F,/players/b/battsll01.html,185,2.5,.286,0.7,.397,.366,4.3,11.7,.617,1.0,1.6,58,10.3,,,,,,,,,,,,
241,2009,2018,"December 14, 1988",,6-8,Nicolas Batum,F-G,/players/b/batumni01.html,200,4.6,.355,1.6,.516,.434,4.3,9.9,.839,1.9,2.2,691,12.0,,,,,,,,,,,,
242,1970,1974,"June 17, 1946",Temple University,6-5,Johnny Baum,F,/players/b/baumjo01.html,200,0.0,.000,0.0,.480,.480,2.6,5.4,.758,1.0,1.3,244,6.1,,,,,,,,,,,,
243,1947,1947,"October 7, 1918",Ohio University,5-10,Frankie Baumholtz,G,/players/b/baumhfr01.html,170,,,,,.298,5.7,19.0,.776,2.7,3.5,45,14.0,,,,,,,,,,,,
244,2003,2006,"January 27, 1979",University of Maryland,6-8,Lonny Baxter,F,/players/b/baxtelo01.html,260,0.0,.200,0.0,.467,.466,1.5,3.3,.657,0.9,1.3,162,3.9,0.0,.600,0.0,,9.3,.553,5.2,.600,5.2,3.1,138,13.5
245,2009,2018,"August 20, 1988",University of Arizona,6-3,Jerryd Bayless,G,/players/b/bayleje01.html,200,2.3,.366,0.9,.474,.414,3.0,7.2,.824,1.7,2.1,552,8.5,4.8,.407,2.0,,12.6,.458,5.8,.839,7.4,6.2,30,19.7
246,1959,1972,"September 16, 1934","Albertson College of Idaho, Seattle University",6-5,Elgin Baylor,F,/players/b/bayloel01.html,225,,,,,.431,10.3,23.8,.780,6.8,8.7,846,27.4,,,,,23.2,.498,11.6,.784,10.4,8.1,54,31.2
247,1968,1968,"July 28, 1942",University of Tennessee,6-6,Howard Bayne,F,/players/b/bayneho01.html,235,0.1,.143,0.0,.361,.360,1.9,5.2,.538,1.1,2.1,69,4.9,,,,,,,,,,,,
248,2013,2018,"December 9, 1986",Washington State University,6-10,Aron Baynes,C,/players/b/baynear01.html,260,0.1,.120,0.0,.504,.503,2.2,4.3,.801,1.0,1.3,374,5.3,0.0,.333,0.0,,5.9,.546,3.2,.698,3.2,2.3,122,8.7
249,1995,1995,"March 16, 1965",,6-2,Sergei Bazarevich,G,/players/b/bazarse01.html,168,0.6,.167,0.1,.523,.500,1.1,2.2,.778,0.7,0.9,10,3.0,,,,,,,,,,,,
250,2013,2018,"July 1, 1989",Old Dominion University,6-5,Kent Bazemore,G-F,/players/b/bazemke01.html,201,2.7,.360,1.0,.493,.422,3.0,7.0,.718,1.3,1.9,416,8.2,2.1,.334,0.7,,8.3,.447,3.7,.581,3.5,2.0,140,10.1
251,1951,1951,"January 25, 1929",West Virginia University,6-3,Ed Beach,F,/players/b/beached01.html,200,,,,,.211,0.7,3.2,.667,0.5,0.8,12,1.8,,,,,,,,,,,,
252,2013,2018,"June 28, 1993",University of Florida,6-5,Bradley Beal,G,/players/b/bealbr01.html,207,5.4,.394,2.1,.515,.446,6.9,15.5,.796,2.7,3.4,404,18.7,5.0,.339,1.7,,10.6,.445,4.7,.769,4.7,3.6,37,14.8
253,1968,1968,"April 27, 1942",Norfolk State University,6-9,Al Beard,C,/players/b/beardal01.html,200,0.0,,0.0,.522,.522,1.0,1.9,.545,0.5,0.9,12,2.5,,,,,,,,,,,,
254,1970,1979,"May 4, 1947",University of Louisville,6-3,Butch Beard,G,/players/b/beardbu01.html,185,,,,,.487,3.6,7.4,.771,2.1,2.7,605,9.3,,,,,,,,,,,,
255,1950,1951,"December 2, 1927",University of Kentucky,5-10,Ralph Beard,G,/players/b/beardra01.html,175,,,,,.366,5.9,16.2,.770,4.0,5.2,126,15.9,,,,,,,,,,,,
256,1968,1971,"September 23, 1945",Southern Methodist University,6-5,Charles Beasley,G-F,/players/b/beaslch01.html,190,0.4,.238,0.1,.463,.456,3.4,7.4,.864,2.6,3.0,281,9.4,,,,,,,,,,,,
257,2004,2004,"May 17, 1980","Midland College, University of North Dakota",6-10,Jerome Beasley,F,/players/b/beaslje01.html,237,0.0,,0.0,.333,.333,0.5,1.5,,0.0,0.0,2,1.0,,,,,,,,,,,,
258,1968,1974,"February 5, 1944",Texas A&M University,6-9,John Beasley,F-C,/players/b/beasljo01.html,225,0.5,.316,0.2,.499,.491,5.5,11.2,.831,2.5,3.0,506,13.7,,,,,,,,,,,,
259,2017,2018,"November 26, 1996",Florida State University,6-5,Malik Beasley,G,/players/b/beaslma01.html,196,1.3,.336,0.4,.496,.422,1.3,3.0,.698,0.4,0.5,84,3.3,4.2,.387,1.6,,11.6,.471,5.4,.813,3.8,3.1,34,15.6
260,2009,2018,"January 9, 1989",Kansas State University,6-9,Michael Beasley,F,/players/b/beaslmi01.html,235,1.4,.353,0.5,.486,.464,5.2,11.1,.761,1.8,2.4,581,12.7,2.9,.379,1.1,,17.5,.532,9.3,.774,8.5,6.5,33,26.2
261,1963,1975,"October 25, 1939",Prairie View A&M University,6-9,Zelmo Beaty,C,/players/b/beatyze01.html,225,0.0,.154,0.0,.494,.494,6.4,13.0,.771,4.2,5.5,889,17.1,,,,,,,,,,,,
262,2010,2013,"February 24, 1988",,6-0,Rodrigue Beaubois,G,/players/b/beaubro01.html,170,2.2,.325,0.7,.496,.439,2.8,6.3,.810,0.8,1.0,182,7.1,,,,,,,,,,,,
263,1968,1977,"January 25, 1945",University of Denver,6-9,Byron Beck,C-F,/players/b/beckby01.html,225,0.1,.295,0.0,.505,.505,4.9,9.8,.811,1.6,2.0,747,11.5,,,,,,,,,,,,
264,1996,1999,"May 27, 1971","South Plains College, University of Arkansas",6-1,Corey Beck,G,/players/b/beckco01.html,190,0.1,.600,0.0,.459,.451,1.1,2.3,.684,0.6,0.9,88,2.7,0.6,.468,0.3,,5.0,.498,2.5,.670,4.1,2.7,103,7.9
265,1954,1961,"December 11, 1931",University of Pennsylvania,6-4,Ernie Beck,G-F,/players/b/becker01.html,190,,,,,.383,2.5,6.5,.762,1.3,1.7,371,6.3,,,,,,,,,,,,
266,1968,1973,"January 12, 1942",Arizona State University,6-7,Arthur Becker,F,/players/b/beckear01.html,205,0.1,.321,0.0,.481,.480,5.1,10.6,.835,2.2,2.7,414,12.5,,,,,,,,,,,,
267,1947,1947,"February 24, 1917",Duquesne University,6-1,Moe Becker,G-F,/players/b/beckemo01.html,185,,,,,.196,1.6,8.3,.500,0.5,1.0,43,3.8,,,,,,,,,,,,
268,1968,1971,"June 26, 1944",Stanford University,6-7,Bob Bedell,F,/players/b/bedelbo01.html,205,0.2,.190,0.0,.426,.423,3.3,7.7,.774,1.8,2.4,269,8.4,,,,,,,,,,,,
269,1987,1993,"December 14, 1963",University of Memphis,7-0,William Bedford,C,/players/b/bedfowi01.html,225,0.1,.318,0.0,.419,.416,1.7,4.1,.605,0.6,1.0,238,4.1,,,,,9.7,.567,5.5,.626,3.4,2.1,93,13.2
270,1947,1949,"June 2, 1916",Long Island University,6-6,Hank Beenders,C-F,/players/b/beendha01.html,185,,,,,.265,3.1,11.8,.687,2.2,3.1,111,8.4,,,,,,,,,,,,
271,1974,1980,"January 14, 1951",University of Minnesota,6-9,Ron Behagen,F-C,/players/b/behagro01.html,185,0.0,,0.0,.425,.425,4.1,9.7,.754,2.0,2.7,388,10.3,,,,,14.9,.473,7.1,.706,4.7,3.3,40,17.4
272,1952,1952,"February 3, 1929",Bradley University,6-7,Elmer Behnke,C,/players/b/behnkel01.html,210,,,,,.273,1.5,5.5,.571,1.0,1.8,4,4.0,,,,,,,,,,,,
273,2008,2018,"March 25, 1986",,6-5,Marco Belinelli,G-F,/players/b/belinma01.html,210,3.7,.377,1.4,.511,.427,3.5,8.2,.841,1.5,1.8,722,9.9,,,,,,,,,,,,
274,2002,2011,"March 12, 1979",Michigan State University,6-3,Charlie Bell,G,/players/b/bellch01.html,200,3.2,.361,1.2,.488,.412,3.2,7.7,.769,1.0,1.3,376,8.5,2.6,.343,0.9,,8.5,.439,3.7,.782,2.8,2.2,140,10.5
275,1974,1976,"June 2, 1951",Drake University,6-5,Dennis Bell,F,/players/b/bellde01.html,185,,,,,.374,1.2,3.2,.535,0.4,0.7,63,2.8,,,,,,,,,,,,
276,2018,2018,"January 7, 1995",University of Oregon,6-9,Jordan Bell,F,/players/b/belljo01.html,224,0.1,.000,0.0,.628,.628,2.1,3.3,.682,0.5,0.8,56,4.6,0.2,.188,0.0,,5.4,.610,3.3,.630,1.8,1.2,105,7.8
277,2001,2012,"September 19, 1976","Boston University, Florida International University",6-5,Raja Bell,G,/players/b/bellra01.html,204,3.3,.406,1.4,.514,.434,3.7,8.4,.799,1.2,1.6,706,9.9,,,,,,,,,,,,
278,2004,2004,"November 10, 1980",Boston College,6-1,Troy Bell,G,/players/b/belltr01.html,180,0.7,.000,0.0,.222,.222,0.7,3.0,1.000,0.5,0.5,6,1.8,6.6,.372,2.5,,14.7,.424,6.2,.868,7.6,6.6,122,21.6
279,1960,1961,"September 13, 1932",North Carolina State University,6-0,Whitey Bell,G,/players/b/bellwh01.html,180,,,,,.379,2.1,5.6,.630,0.8,1.3,36,5.1,,,,,,,,,,,,
280,1962,1975,"July 24, 1939",Indiana University,6-11,Walt Bellamy,C,/players/b/bellawa01.html,225,,,,,.516,7.6,14.7,.632,4.9,7.8,1043,20.1,,,,,15.3,.517,7.9,.654,7.2,4.7,70,20.6
281,2017,2018,"July 4, 1994",Saint Joseph's University,6-6,DeAndre' Bembry,F,/players/b/bembrde01.html,210,0.8,.250,0.2,.470,.443,1.5,3.5,.511,0.4,0.7,63,3.7,3.8,.312,1.2,,12.6,.457,5.7,.628,4.9,3.1,101,15.7
282,1954,1957,"November 18, 1930",University of Illinois at Urbana-Champaign,6-3,Irv Bemoras,F-G,/players/b/bemorir01.html,185,,,,,.347,2.4,6.8,.672,1.6,2.4,131,6.3,,,,,,,,,,,,
283,1975,1976,"July 23, 1950",Jacksonville University,6-4,Leon Benbow,G,/players/b/benbole01.html,185,,,,,.394,2.2,5.6,.759,1.0,1.4,115,5.5,,,,,,,,,,,,
284,2017,2018,"November 17, 1997",,7-1,Dragan Bender,F,/players/b/bendedr01.html,225,3.4,.341,1.2,.486,.374,1.9,5.2,.695,0.3,0.5,124,5.3,,,,,,,,,,,,
285,2000,2010,"January 30, 1981",,6-11,Jonathan Bender,F,/players/b/bendejo01.html,202,1.1,.340,0.4,.458,.417,1.9,4.7,.763,1.3,1.7,262,5.5,,,,,,,,,,,,
286,2015,2015,"August 1, 1991","Georgetown University, Towson University",6-8,Jerrelle Benimon,F,/players/b/benimje01.html,245,0.0,,0.0,,,0.0,0.0,,0.0,0.0,2,0.0,0.9,.327,0.3,,6.6,.522,3.5,.686,4.2,2.9,128,10.1
287,1986,2000,"November 22, 1964",Creighton University,7-0,Benoit Benjamin,C,/players/b/benjabe01.html,250,0.0,.048,0.0,.497,.497,4.4,9.0,.721,2.5,3.5,807,11.4,,,,,12.2,.562,6.9,.720,5.5,4.0,89,17.7
288,1999,2003,"February 24, 1978",Oregon State University,6-6,Corey Benjamin,G,/players/b/benjaco01.html,200,1.3,.289,0.4,.425,.390,2.1,5.3,.652,0.9,1.4,153,5.5,4.4,.305,1.3,,13.0,.491,6.4,.688,4.9,3.4,48,17.5
289,2014,2017,"March 14, 1993","University of Nevada, Las Vegas",6-8,Anthony Bennett,F,/players/b/bennean01.html,245,0.9,.261,0.2,.420,.392,1.7,4.2,.670,0.8,1.2,151,4.4,2.7,.375,1.0,,10.8,.533,5.8,.701,5.1,3.5,35,16.1
290,1995,1997,"February 13, 1970",University of Notre Dame,6-0,Elmer Bennett,G,/players/b/benneel01.html,170,0.5,.273,0.1,.372,.340,0.8,2.2,.722,0.6,0.9,21,2.3,2.1,.351,0.7,,9.8,.443,4.3,.717,3.7,2.6,124,12.0
291,1996,2000,"August 1, 1973",Arizona State University,6-6,Mario Bennett,F,/players/b/bennema01.html,235,0.0,.333,0.0,.536,.534,1.6,3.1,.511,0.7,1.3,68,4.0,0.8,.294,0.2,,10.6,.587,6.2,.530,5.8,3.1,87,15.7
292,1976,1982,"January 4, 1955",University of Pittsburgh,6-7,Mel Bennett,F,/players/b/benneme01.html,200,0.0,.000,0.0,.382,.382,2.4,6.2,.609,2.2,3.5,204,6.9,,,,,9.1,.413,3.8,.682,3.8,2.6,29,10.1
293,1969,1969,"August 4, 1943",Winston-Salem State University,6-3,Spider Bennett,G,/players/b/bennesp01.html,190,0.4,.240,0.1,.390,.382,2.5,6.5,.648,2.4,3.7,59,7.5,,,,,,,,,,,,
294,1993,1995,"June 1, 1969",University of Wisconsin-Green Bay,6-0,Tony Bennett,G,/players/b/benneto01.html,175,1.1,.335,0.4,.464,.412,1.5,3.5,.732,0.3,0.4,152,3.5,,,,,,,,,,,,
295,1990,1992,"February 9, 1965",University of Kentucky,6-7,Winston Bennett,F,/players/b/bennewi01.html,210,0.0,.000,0.0,.425,.425,1.9,4.4,.694,1.0,1.4,136,4.8,0.1,.500,0.0,,8.0,.484,3.9,.713,3.9,2.8,133,10.5
296,1992,2001,"May 9, 1968",University of Alabama,6-8,David Benoit,F,/players/b/benoida01.html,220,1.3,.319,0.4,.472,.438,2.7,6.2,.795,1.2,1.5,492,7.0,0.3,.435,0.2,,8.7,.511,4.4,.750,2.2,1.6,66,10.6
297,2012,2012,"August 13, 1988",Oakland University,6-11,Keith Benson,C,/players/b/bensoke02.html,240,0.0,,0.0,.000,.000,0.0,0.3,,0.0,0.0,3,0.0,0.2,.379,0.1,,9.1,.558,5.1,.679,5.7,3.9,135,14.1
298,1978,1988,"December 27, 1954",Indiana University,6-10,Kent Benson,C,/players/b/bensoke01.html,235,0.1,.206,0.0,.494,.493,3.8,7.7,.757,1.5,2.0,680,9.1,,,,,11.8,.536,6.3,.715,3.6,2.6,114,15.3
299,2017,2017,"March 29, 1995",Providence College,6-9,Ben Bentil,F,/players/b/bentibe01.html,235,0.3,.000,0.0,.000,.000,0.0,1.0,,0.0,0.0,3,0.0,2.7,.324,0.9,,10.2,.455,4.7,.761,4.8,3.6,69,13.8
300,1950,1950,"November 22, 1926",Marquette University,5-11,Gene Berce,G-F,/players/b/bercege01.html,175,,,,,.313,1.7,5.3,.000,0.0,1.7,3,3.3,,,,,,,,,,,,
301,1957,1957,"July 16, 1932",University of Utah,6-8,Gary Bergen,C,/players/b/bergega01.html,210,,,,,.273,0.5,1.8,1.000,0.3,0.3,6,1.3,,,,,,,,,,,,
302,1970,1970,"April 2, 1945",Weber State University,6-8,Larry Bergh,F,/players/b/berghla01.html,210,0.1,.000,0.0,.408,.408,2.5,6.0,.697,1.2,1.7,20,6.1,,,,,,,,,,,,
303,1989,1989,"October 6, 1964","Oregon State University, San Jose State University",6-8,Ricky Berry,F,/players/b/berryri01.html,205,2.5,.406,1.0,.507,.450,4.0,8.9,.789,2.0,2.6,64,11.0,,,,,,,,,,,,
304,1987,1989,"May 14, 1964",St. John's University,6-8,Walter Berry,F,/players/b/berrywa01.html,215,0.0,.200,0.0,.540,.539,5.9,10.9,.638,2.3,3.7,205,14.1,,,,,13.5,.581,7.9,.708,6.1,4.3,71,20.1
305,2017,2018,"November 12, 1992",,6-10,Davis Bertans,F,/players/b/bertada01.html,210,3.0,.386,1.1,.577,.439,1.8,4.2,.819,0.5,0.6,142,5.3,,,,,,,,,,,,
306,1979,1980,"November 29, 1956",California University of Pennslyvania,5-11,Del Beshore,G,/players/b/beshode01.html,165,0.4,.385,0.1,.372,.352,1.3,3.6,.667,0.8,1.3,69,3.5,,,,,,,,,,,,
307,1996,2005,"July 12, 1972",Georgia Institute of Technology,5-11,Travis Best,G,/players/b/besttr01.html,182,1.1,.345,0.4,.460,.431,2.8,6.6,.835,1.6,1.9,708,7.6,5.3,.393,2.1,,12.4,.456,5.7,.809,3.9,3.2,124,16.6
308,2013,2018,"July 12, 1988",University of Arkansas,6-1,Patrick Beverley,G,/players/b/beverpa01.html,185,4.4,.376,1.7,.515,.413,3.4,8.1,.767,1.0,1.3,302,9.4,5.2,.382,2.0,,9.7,.420,4.1,.730,3.9,2.8,70,13.0
309,2015,2015,"December 2, 1992",New Mexico State University,7-5,Sim Bhullar,C,/players/b/bhullsi01.html,360,0.0,,0.0,.500,.500,0.3,0.7,,0.0,0.0,3,0.7,0.0,,0.0,,6.4,.633,4.1,.496,4.2,2.1,65,10.2
310,1968,1968,"June 8, 1945",University of Connecticut,6-2,Wesley Bialosuknia,G,/players/b/bialowe01.html,185,1.0,.397,0.4,.443,.418,3.4,8.1,.780,1.5,1.9,70,8.7,,,,,,,,,,,,
311,1957,1966,"March 26, 1932",Bowling Green State University,6-3,Al Bianchi,G,/players/b/biancal01.html,185,,,,,.374,3.2,8.6,.707,1.6,2.3,687,8.1,,,,,,,,,,,,
312,1947,1947,"January 14, 1922",Long Island University,5-11,Hank Biasatti,G,/players/b/biasaha01.html,175,,,,,.400,0.3,0.8,.500,0.3,0.7,6,1.0,,,,,,,,,,,,
313,1973,1981,"November 24, 1949","University of California, Los Angeles",6-1,Henry Bibby,G,/players/b/bibbyhe01.html,185,0.9,.293,0.3,.428,.424,3.2,7.5,.782,2.1,2.7,675,8.6,,,,,12.8,.443,5.7,.823,3.7,3.1,90,14.4
314,1999,2012,"May 13, 1978",University of Arizona,6-1,Mike Bibby,G,/players/b/bibbymi01.html,190,4.0,.379,1.5,.497,.436,5.4,12.4,.802,2.4,2.9,1001,14.7,5.3,.390,2.1,,11.4,.456,5.2,.730,3.9,2.9,69,15.4
315,1969,1969,"August 12, 1945",North Carolina State University,6-1,Ed Biedenbach,G,/players/b/biedeed01.html,175,,,,,.000,0.0,0.9,.667,0.6,0.9,7,0.6,,,,,,,,,,,,
316,2005,2014,"April 2, 1986",,6-11,Andris Biedrins,C,/players/b/biedran01.html,240,0.0,.000,0.0,.594,.594,2.8,4.7,.500,0.7,1.5,516,6.3,,,,,,,,,,,,
317,1956,1956,,Valparaiso University,6-7,Don Bielke,C,/players/b/bielkdo01.html,240,,,,,.556,0.7,1.3,.571,0.6,1.0,7,2.0,,,,,,,,,,,,
318,1976,1979,"December 26, 1953",University of Pennsylvania,6-7,Bob Bigelow,F-G,/players/b/bigelbo01.html,215,,,,,.414,1.0,2.3,.732,0.6,0.8,94,2.5,,,,,,,,,,,,
319,1975,1975,"August 31, 1952",Duquesne University,6-9,Lionel Billingy,F-C,/players/b/billili01.html,215,0.0,.000,0.0,.427,.427,3.3,7.6,.650,2.0,3.1,46,8.5,,,,,,,,,,,,
320,1998,2014,"September 25, 1976",University of Colorado,6-3,Chauncey Billups,G,/players/b/billuch01.html,202,4.5,.387,1.8,.495,.415,4.5,10.9,.894,4.3,4.8,1043,15.2,5.7,.382,2.2,,13.1,.413,5.4,.857,6.5,5.6,55,18.5
321,1967,1978,"November 24, 1943",Syracuse University,6-3,Dave Bing,G,/players/b/bingda01.html,180,,,,,.441,7.7,17.5,.775,4.9,6.3,901,20.3,,,,,19.4,.495,9.6,.764,7.3,5.6,76,24.8
322,1987,1987,"March 26, 1961",North Carolina Agricultural and Technical State University,6-8,Joe Binion,F,/players/b/biniojo01.html,235,0.0,,0.0,.400,.400,0.4,0.9,.600,0.5,0.9,11,1.3,,,,,14.4,.502,7.2,.666,6.1,4.0,116,18.5
323,2018,2018,"September 28, 1992","University of Pittsburgh, University of Nevada, Las Vegas",6-9,Khem Birch,C-F,/players/b/birchkh01.html,220,0.0,,0.0,.521,.521,1.6,3.0,.689,0.8,1.1,40,3.9,0.0,,0.0,,5.7,.531,3.0,.668,4.2,2.8,69,8.9
324,2018,2018,"July 3, 1994",University of California,6-6,Jabari Bird,G,/players/b/birdja01.html,197,0.5,.400,0.2,.684,.632,1.1,1.7,.333,0.3,0.8,11,2.6,4.4,.371,1.6,,8.9,.442,3.9,.753,1.6,1.2,114,10.8
325,1959,1959,"February 2, 1935",University of Kentucky,6-6,Jerry Bird,F,/players/b/birdje01.html,210,,,,,.375,1.1,2.9,1.000,0.1,0.1,11,2.3,,,,,,,,,,,,
326,1980,1992,"December 7, 1956",Indiana State University,6-9,Larry Bird,F,/players/b/birdla01.html,220,1.9,.376,0.7,.514,.496,9.6,19.3,.886,4.4,5.0,897,24.3,,,,,23.0,.533,12.3,.822,7.0,5.8,94,30.3
327,1978,1989,"December 9, 1955",University of Houston,6-3,Otis Birdsong,G,/players/b/birdsot01.html,190,0.3,.274,0.1,.509,.506,7.7,15.2,.655,2.6,3.9,696,18.0,,,,,18.5,.547,10.1,.712,5.8,4.1,116,24.4
328,1949,1949,"June 4, 1922",Washington State University,6-3,Gale Bishop,F,/players/b/bishoga01.html,195,,,,,.325,3.0,9.3,.651,2.3,3.5,56,8.3,,,,,,,,,,,,
329,2012,2018,"August 28, 1992",,6-9,Bismack Biyombo,C-F,/players/b/biyombi01.html,255,0.0,.000,0.0,.511,.511,1.9,3.6,.566,1.2,2.2,527,5.0,,,,,,,,,,,,
330,2016,2018,"May 9, 1988",,6-10,Nemanja Bjelica,F,/players/b/bjeline01.html,240,2.5,.373,0.9,.546,.451,2.3,5.0,.752,0.6,0.8,190,6.1,,,,,,,,,,,,
331,1986,1990,"March 26, 1962",Indiana University,7-1,Uwe Blab,C,/players/b/blabuw01.html,252,0.0,,0.0,.433,.433,0.8,1.8,.608,0.6,0.9,235,2.1,,,,,8.5,.543,4.6,.639,3.5,2.3,118,11.5
332,1949,1952,"June 15, 1921",University of Kansas,6-5,Charlie Black,F-C,/players/b/blackch01.html,200,,,,,.283,3.2,11.3,.601,2.8,4.6,136,9.2,,,,,,,,,,,,
333,1981,1981,"November 12, 1957",Saint Joseph's University,6-5,Norman Black,G,/players/b/blackno01.html,185,0.0,,0.0,.300,.300,1.0,3.3,.250,0.7,2.7,3,2.7,,,,,14.7,.466,6.8,.667,4.4,2.9,104,16.6
334,2015,2018,"November 22, 1991","University of Memphis, University of Kansas",6-9,Tarik Black,C-F,/players/b/blackta01.html,250,0.1,.083,0.0,.551,.551,2.0,3.6,.584,0.9,1.5,218,4.9,0.0,.000,0.0,,5.3,.614,3.3,.555,3.3,1.8,135,8.4
335,1971,1971,"July 9, 1941",South Dakota State University,6-10,Tom Black,C,/players/b/blackto01.html,220,,,,,.402,1.7,4.2,.648,0.8,1.2,71,4.2,,,,,,,,,,,,
336,1982,1994,"February 26, 1959",Kansas State University,6-6,Rolando Blackman,G,/players/b/blackro01.html,190,0.7,.343,0.2,.501,.493,7.0,14.3,.840,3.7,4.4,980,18.0,,,,,12.1,.517,6.2,.717,3.9,2.8,121,15.2
337,1993,1993,"June 27, 1970",Monmouth University,6-6,Alex Blackwell,F,/players/b/blackal01.html,250,0.1,.000,0.0,.333,.333,0.5,1.6,.750,0.2,0.3,27,1.3,0.2,.286,0.0,,13.9,.553,7.7,.780,6.3,4.9,86,20.3
338,1985,1985,"March 27, 1963",University of Wisconsin,6-6,Cory Blackwell,F,/players/b/blackco01.html,210,0.0,.000,0.0,.367,.367,1.5,4.0,.509,0.5,0.9,60,3.4,,,,,14.9,.456,6.8,.700,4.8,3.3,83,16.9
339,1995,1995,"February 25, 1968",Dartmouth College,6-0,James Blackwell,G,/players/b/blackja01.html,190,0.0,,0.0,.615,.615,0.6,1.0,.667,0.2,0.2,13,1.4,1.6,.333,0.5,,9.4,.437,4.1,.765,4.5,3.4,91,12.2
340,1988,1988,"February 15, 1965",Temple University,6-4,Nate Blackwell,G,/players/b/blackna01.html,170,1.1,.182,0.2,.390,.366,1.5,4.1,.833,0.5,0.6,10,3.7,3.9,.405,1.6,,11.2,.433,4.8,.828,3.3,2.7,129,13.2
341,2010,2016,"April 22, 1989",University of Pittsburgh,6-7,DeJuan Blair,F-C,/players/b/blairde01.html,270,0.0,.000,0.0,.524,.524,2.9,5.6,.608,0.9,1.5,424,6.8,0.0,,0.0,,9.6,.568,5.5,.614,4.3,2.7,72,13.6
342,2004,2016,"February 26, 1980",University of Maryland,6-3,Steve Blake,G,/players/b/blakest01.html,172,3.1,.383,1.2,.501,.401,2.4,5.9,.779,0.6,0.7,870,6.5,3.5,.381,1.3,,6.8,.401,2.7,.771,2.0,1.5,138,8.3
343,2018,2018,"October 4, 1996",Louisiana State University,6-4,Antonio Blakeney,G,/players/b/blakean01.html,197,2.7,.288,0.8,.423,.371,2.8,7.5,.769,1.6,2.1,19,7.9,4.7,.347,1.6,,11.7,.444,5.2,.736,3.8,2.8,64,14.8
344,2007,2007,"September 8, 1983",Iowa State University,6-0,Will Blalock,G,/players/b/blalowi01.html,205,0.4,.200,0.1,.317,.300,0.6,2.1,1.000,0.4,0.4,14,1.8,2.9,.365,1.1,,10.0,.421,4.2,.719,2.9,2.1,93,11.6
345,1962,1962,"November 12, 1939",College of the Holy Cross,6-1,George Blaney,G,/players/b/blanege01.html,175,,,,,.380,1.5,3.9,.529,0.3,0.5,36,3.3,,,,,,,,,,,,
346,1991,1993,"September 9, 1966","University of Virginia, University of Texas at Austin",6-4,Lance Blanks,G,/players/b/blankla01.html,190,0.5,.253,0.1,.472,.436,0.8,1.9,.667,0.3,0.4,142,2.0,4.8,.360,1.7,,10.5,.429,4.5,.729,3.8,2.8,104,13.3
347,1993,1993,"April 21, 1966",Louisiana State University,6-7,Ricky Blanton,F,/players/b/blantri01.html,215,0.0,,0.0,.429,.429,1.5,3.5,,0.0,0.0,2,3.0,1.8,.411,0.7,,8.5,.532,4.5,.729,3.1,2.3,129,11.6
348,2006,2014,"August 22, 1986",,6-11,Andray Blatche,F,/players/b/blatcan01.html,235,0.4,.237,0.1,.472,.467,4.1,8.8,.725,1.8,2.4,564,10.1,,,,,,,,,,,,
349,1990,2002,"March 20, 1967","Midland College, University of Oklahoma",6-0,Mookie Blaylock,G,/players/b/blaylmo01.html,180,4.3,.336,1.4,.465,.409,5.3,12.9,.736,1.4,1.9,889,13.5,6.0,.379,2.3,,15.2,.457,6.9,.668,2.9,1.9,74,18.1
350,2011,2018,"December 9, 1989",University of Kentucky,6-1,Eric Bledsoe,G,/players/b/bledser01.html,205,2.9,.337,1.0,.495,.449,4.8,10.8,.798,3.1,3.9,490,13.8,3.5,.383,1.3,,8.4,.462,3.9,.667,3.3,2.2,37,11.3
351,1951,1951,"June 25, 1926",University of Arizona,6-2,Leon Blevins,G,/players/b/blevile01.html,160,,,,,.250,0.5,2.0,.000,0.0,0.5,2,1.0,,,,,,,,,,,,
352,1967,1976,"April 16, 1944",University of Southern California,6-9,John Block,F-C,/players/b/blockjo01.html,207,,,,,.433,4.3,10.0,.778,3.2,4.1,597,11.9,,,,,,,,,,,,
353,1948,1949,"January 14, 1915",Temple University,6-6,Mike Bloom,F-C,/players/b/bloommi01.html,190,,,,,.255,2.2,8.8,.713,2.3,3.3,93,6.8,,,,,,,,,,,,
354,1994,2004,"January 4, 1969",University of Cincinnati,6-9,Corie Blount,F,/players/b/blounco01.html,240,0.0,.115,0.0,.471,.471,1.5,3.2,.587,0.6,1.0,644,3.6,,,,,,,,,,,,
355,2001,2009,"November 30, 1975",University of Pittsburgh,7-0,Mark Blount,C,/players/b/blounma01.html,230,0.2,.359,0.1,.508,.504,3.3,6.6,.723,1.4,2.0,605,8.2,0.0,.500,0.0,,5.2,.466,2.4,.518,3.0,1.6,56,6.4
356,2014,2018,"July 17, 1992",Marquette University,6-4,Vander Blue,G,/players/b/blueva01.html,200,1.3,.154,0.2,.333,.308,1.2,3.9,.333,0.4,1.2,10,3.0,1.8,.277,0.5,,7.7,.429,3.3,.704,3.0,2.1,106,9.3
357,1982,1982,"September 23, 1958",Oregon State University,6-4,Ray Blume,G,/players/b/blumera01.html,185,0.4,.222,0.1,.468,.459,2.1,4.5,.643,0.4,0.6,49,4.6,,,,,8.9,.539,4.8,.770,2.5,2.0,111,11.6
358,1950,1953,"February 25, 1924",Temple University,6-0,Nelson Bobb,G,/players/b/bobbne01.html,170,,,,,.350,1.6,4.5,.612,1.5,2.4,227,4.6,,,,,,,,,,,,
359,2005,2005,"October 22, 1979",University of Cincinnati,6-4,Tony Bobbitt,G,/players/b/bobbito01.html,190,1.0,.500,0.5,.500,.400,1.0,2.5,,0.0,0.0,2,2.5,5.7,.375,2.2,,8.8,.423,3.7,.839,1.6,1.3,59,10.9
360,1959,1965,"July 8, 1933",University of Dayton,6-4,Bucky Bockhorn,G,/players/b/bockhbu01.html,200,,,,,.403,4.7,11.8,.748,2.0,2.6,474,11.5,,,,,,,,,,,,
361,1969,1978,"August 23, 1945",University of Tennessee,7-0,Tom Boerwinkle,C,/players/b/boerwto01.html,265,,,,,.453,2.9,6.5,.675,1.4,2.0,635,7.2,,,,,,,,,,,,
362,2004,2014,"May 12, 1980",University of Kentucky,6-5,Keith Bogans,G-F,/players/b/boganke01.html,215,3.0,.353,1.1,.489,.394,2.2,5.6,.716,0.9,1.2,671,6.3,5.5,.342,1.9,,11.4,.437,5.0,.688,3.5,2.4,135,14.2
363,2018,2018,"August 18, 1992",,6-6,Bogdan Bogdanovic,G,/players/b/bogdabo01.html,205,4.2,.396,1.7,.534,.449,4.4,9.9,.840,1.3,1.6,76,11.9,,,,,,,,,,,,
364,2015,2018,"April 18, 1989",,6-8,Bojan Bogdanovic,G-F,/players/b/bogdabo02.html,216,4.3,.378,1.6,.538,.452,4.3,9.5,.863,1.9,2.2,318,12.1,,,,,,,,,,,,
365,1988,2001,"January 9, 1965",Wake Forest University,5-3,Muggsy Bogues,G,/players/b/boguemu01.html,136,0.4,.278,0.1,.467,.458,3.2,7.0,.827,1.2,1.4,889,7.7,2.7,.443,1.2,,6.9,.473,3.2,.749,2.0,1.5,119,8.3
366,2006,2018,"November 28, 1984",University of Utah,7-0,Andrew Bogut,C,/players/b/bogutan01.html,260,0.0,.120,0.0,.535,.535,4.3,8.0,.556,1.2,2.1,694,9.8,0.5,.361,0.2,,10.9,.603,6.6,.674,4.7,3.2,68,16.6
367,1998,2001,"May 29, 1973","University of Arizona, University of Tennessee, Auburn University at Montgomery",6-9,Etdrick Bohannon,F,/players/b/bohanet01.html,220,0.0,,0.0,.429,.429,0.3,0.8,.679,0.7,1.1,26,1.4,,,,,,,,,,,,
368,1986,1995,"October 16, 1962",University of Bridgeport,7-7,Manute Bol,C,/players/b/bolma01.html,200,0.3,.210,0.1,.420,.407,1.1,2.6,.561,0.4,0.6,624,2.6,,,,,,,,,,,,
369,1954,1954,"August 21, 1931",Georgetown University,6-5,Bill Bolger,F,/players/b/bolgebi01.html,205,,,,,.407,1.2,3.0,.615,0.4,0.7,20,2.8,,,,,,,,,,,,
370,2017,2018,"January 28, 1994",Weber State University,6-9,Joel Bolomboy,F,/players/b/bolomjo01.html,235,0.3,.200,0.1,.568,.545,0.7,1.2,.500,0.3,0.7,18,1.7,0.7,.371,0.3,,7.2,.528,3.8,.713,5.0,3.6,130,11.4
371,1958,1958,"October 29, 1931",University of Minnesota,6-4,Doug Bolstorff,G,/players/b/bolstdo01.html,195,,,,,.400,0.7,1.7,,0.0,0.0,3,1.3,,,,,,,,,,,,
372,1962,1962,"July 1, 1935",University of Illinois at Urbana-Champaign,6-8,George Bon Salle,F,/players/b/bonsage01.html,220,,,,,.250,0.7,2.7,,0.0,0.0,3,1.3,,,,,,,,,,,,
373,1978,1978,"July 27, 1954",University of Louisville,6-2,Phil Bond,G,/players/b/bondph01.html,175,,,,,.333,0.3,0.9,,0.0,0.0,7,0.6,,,,,,,,,,,,
374,1993,1995,"February 1, 1969",University of Minnesota,6-5,Walter Bond,G,/players/b/bondwa01.html,200,0.9,.299,0.3,.434,.409,2.2,5.3,.767,1.1,1.5,153,5.7,0.9,.256,0.2,,6.2,.480,3.0,.635,1.7,1.1,103,7.3
375,1997,1997,"April 27, 1970","University of Nevada, Las Vegas",6-4,Dexter Boney,G,/players/b/boneyde01.html,185,0.8,.167,0.1,.342,.316,0.8,2.4,.750,0.8,1.0,8,2.4,3.3,.373,1.2,,11.2,.504,5.6,.619,4.2,2.6,56,15.1
376,1965,1968,"May 31, 1942",University of Cincinnati,6-5,Ron Bonham,F,/players/b/bonharo01.html,192,0.0,.000,0.0,.388,.388,2.1,5.4,.824,1.9,2.4,118,6.1,,,,,,,,,,,,
377,1991,1996,"June 8, 1968",Saint Louis University,6-8,Anthony Bonner,F,/players/b/bonnean01.html,215,0.1,.125,0.0,.469,.468,2.8,5.9,.590,1.4,2.3,318,6.9,0.1,.333,0.0,,10.8,.539,5.8,.634,5.0,3.2,133,14.8
378,2005,2016,"April 5, 1980",University of Florida,6-10,Matt Bonner,F,/players/b/bonnema01.html,235,2.4,.414,1.0,.570,.464,2.2,4.8,.780,0.4,0.5,792,5.8,3.2,.395,1.3,,8.8,.503,4.4,.740,2.5,1.9,131,12.0
379,1970,1970,"July 20, 1945",Cheyney University of Pennsylvania,6-10,Butch Booker,C,/players/b/bookebu01.html,230,0.1,.000,0.0,.492,.492,2.5,5.1,.556,0.8,1.5,12,5.8,,,,,,,,,,,,
380,2016,2018,"October 30, 1996",University of Kentucky,6-6,Devin Booker,G,/players/b/bookede01.html,206,5.2,.365,1.9,.485,.426,6.9,16.1,.849,4.2,4.9,208,19.8,3.7,.411,1.5,,7.6,.470,3.6,.828,1.7,1.4,38,10.0
381,1996,1997,"August 20, 1972",University of Missouri,6-1,Melvin Booker,G,/players/b/bookeme01.html,185,1.8,.268,0.5,.448,.400,1.9,4.8,.871,0.8,1.0,32,5.2,3.7,.392,1.5,,9.7,.466,4.5,.789,3.9,3.1,125,13.6
382,2011,2018,"November 25, 1987",Clemson University,6-8,Trevor Booker,F,/players/b/booketr01.html,228,0.5,.307,0.1,.529,.516,2.9,5.6,.636,1.0,1.5,531,6.9,0.5,.324,0.2,,9.2,.559,5.1,.624,3.9,2.4,134,12.9
383,2007,2010,"November 21, 1984",University of Connecticut,6-10,Josh Boone,F-C,/players/b/boonejo01.html,237,0.0,,0.0,.544,.544,2.2,4.1,.445,0.8,1.8,256,5.2,0.0,,0.0,,6.4,.578,3.7,.559,3.4,1.9,103,9.3
384,1969,1981,"September 6, 1946",Idaho State University,6-2,Ron Boone,G-F,/players/b/boonero01.html,200,0.6,.304,0.2,.466,.461,6.6,14.2,.837,3.5,4.2,1041,16.8,,,,,17.3,.444,7.7,.713,6.6,4.7,61,20.0
385,2000,2009,"May 7, 1976",Pennsylvania State University,6-11,Calvin Booth,C,/players/b/boothca01.html,230,0.0,.222,0.0,.452,.451,1.3,2.9,.748,0.7,0.9,366,3.3,0.1,.091,0.0,,8.6,.507,4.4,.707,3.6,2.5,114,11.3
386,1998,1999,"October 9, 1974",University of Maryland,6-6,Keith Booth,F,/players/b/boothke01.html,226,0.2,.091,0.0,.328,.325,1.1,3.5,.563,0.6,1.1,45,2.9,0.8,.210,0.2,,10.2,.456,4.7,.699,6.5,4.6,126,14.1
387,1961,1971,"April 26, 1937",Kansas State University,6-8,Bob Boozer,F,/players/b/boozebo01.html,215,,,,,.462,5.7,12.3,.761,3.5,4.6,874,14.8,,,,,,,,,,,,
388,2003,2015,"November 20, 1981",Duke University,6-9,Carlos Boozer,F-C,/players/b/boozeca01.html,258,0.0,.071,0.0,.521,.521,6.8,13.0,.722,2.6,3.7,861,16.2,0.0,.000,0.0,,8.7,.631,5.5,.741,5.3,3.9,101,14.9
389,2004,2005,"September 13, 1980",Stanford University,7-0,Curtis Borchardt,C,/players/b/borchcu01.html,240,0.0,.000,0.0,.421,.421,1.2,2.7,.742,0.8,1.1,83,3.1,0.6,.375,0.2,,6.6,.534,3.5,.691,4.2,2.9,66,10.2
390,1949,1950,"June 29, 1927",Muhlenberg College,6-5,Jake Bornheimer,F-C,/players/b/bornhja01.html,200,,,,,.295,1.6,5.5,.671,1.3,1.9,75,4.6,,,,,,,,,,,,
391,2000,2000,"September 20, 1972",,6-8,Lazaro Borrell,F,/players/b/borrela01.html,220,0.2,.000,0.0,.444,.444,1.6,3.7,.545,0.4,0.6,17,3.6,,,,,,,,,,,,
392,1951,1951,"July 25, 1924",Temple University,6-8,Ike Borsavage,C-F,/players/b/borsaik01.html,220,,,,,.351,1.1,3.1,.667,0.5,0.8,24,2.7,,,,,,,,,,,,
393,1950,1954,"March 11, 1927",University of Denver,6-5,Vince Boryla,F,/players/b/borylvi01.html,210,,,,,.371,4.2,11.2,.816,2.9,3.5,285,11.2,,,,,,,,,,,,
394,2004,2016,"March 24, 1984",Georgia Institute of Technology,6-11,Chris Bosh,F-C,/players/b/boshch01.html,235,1.0,.335,0.3,.506,.494,7.0,14.1,.799,5.0,6.3,893,19.2,1.5,.478,0.7,,9.7,.560,5.4,.730,5.6,4.1,31,15.6
395,1978,1978,"January 28, 1953",New Mexico State University,6-7,Jim Bostic,F,/players/b/bostiji01.html,225,,,,,.545,3.0,5.5,.400,0.5,1.3,4,6.5,,,,,,,,,,,,
396,1980,1980,"May 18, 1956",University of Maryland,6-8,Lawrence Boston,F,/players/b/bostola01.html,225,0.0,,0.0,.462,.462,1.8,4.0,.615,0.6,1.0,13,4.3,,,,,9.3,.576,5.3,.686,2.3,1.6,82,12.3
397,1976,1984,"October 2, 1953","South Carolina State University, University of South Carolina",6-9,Tom Boswell,F-C,/players/b/bosweto01.html,220,0.1,.545,0.1,.534,.533,3.0,5.6,.724,1.7,2.3,366,7.7,,,,,14.5,.504,7.3,.688,4.1,2.8,80,17.5
398,2018,2018,"January 11, 1993",University of Oregon,6-10,Chris Boucher,F,/players/b/bouchch01.html,182,1.0,.000,0.0,.000,.000,0.0,1.0,,0.0,0.0,1,0.0,3.2,.344,1.1,,8.2,.532,4.3,.641,3.4,2.2,69,12.0
399,2002,2004,"May 20, 1978",Georgetown University,7-0,Ruben Boumtje-Boumtje,C,/players/b/boumtru01.html,257,0.0,,0.0,.368,.368,0.3,0.9,.556,0.3,0.6,44,1.0,0.0,.000,0.0,,7.0,.485,3.4,.664,4.2,2.8,101,9.6
400,1950,1953,"March 6, 1925",Western Michigan University,6-4,Don Boven,F-G,/players/b/bovendo01.html,210,,,,,.339,2.9,8.5,.706,3.3,4.7,195,9.0,,,,,,,,,,,,
401,2000,2002,"March 31, 1977",Old Dominion University,6-10,Cal Bowdler,F,/players/b/bowdlca01.html,245,0.1,.182,0.0,.407,.404,1.1,2.8,.768,0.7,0.9,142,3.0,1.2,.264,0.3,,6.8,.451,3.1,.625,3.5,2.2,118,8.6
402,1997,2009,"June 14, 1971","California State University, Fullerton",6-7,Bruce Bowen,F,/players/b/bowenbr01.html,185,2.4,.393,0.9,.494,.409,2.2,5.5,.575,0.7,1.2,873,6.1,1.5,.283,0.4,,8.8,.433,3.8,.695,4.9,3.4,101,11.4
403,2000,2010,"November 20, 1975",University of Iowa,6-7,Ryan Bowen,F,/players/b/bowenry01.html,215,0.1,.206,0.0,.462,.456,1.1,2.4,.693,0.4,0.6,507,2.6,0.4,.375,0.2,,5.8,.575,3.3,.685,3.4,2.4,120,9.1
404,1968,1970,"July 7, 1940",Grambling State University,6-8,Tommie Bowens,F-C,/players/b/bowento01.html,220,0.0,.200,0.0,.409,.409,2.2,5.5,.661,0.9,1.3,211,5.4,,,,,,,,,,,,
405,1989,1998,"November 9, 1963",University of Oklahoma,6-6,Anthony Bowie,G-F,/players/b/bowiean01.html,190,0.5,.318,0.1,.487,.475,2.7,5.7,.824,0.8,1.0,461,6.4,,,,,11.0,.509,5.6,.787,2.7,2.2,72,13.4
406,1985,1995,"March 17, 1961",University of Kentucky,7-1,Sam Bowie,C-F,/players/b/bowiesa01.html,235,0.2,.302,0.1,.456,.452,4.2,9.2,.748,2.5,3.3,511,10.9,,,,,9.6,.522,5.0,.735,4.5,3.3,96,13.4
407,1968,1968,"March 21, 1939",University of Tennessee,6-10,Orbie Bowling,C,/players/b/bowlior01.html,215,0.0,,0.0,.321,.321,0.8,2.5,.250,0.3,1.1,11,1.9,,,,,,,,,,,,
408,2000,2002,"June 11, 1973","Providence College, University of Pennsylvania",6-5,Ira Bowman,G,/players/b/bowmair01.html,195,0.1,.000,0.0,.636,.636,0.4,0.6,.500,0.1,0.1,17,0.9,1.2,.348,0.4,,6.6,.502,3.3,.681,3.4,2.3,98,9.4
409,1967,1972,"March 19, 1943",Wichita State University,6-10,Nate Bowman,C,/players/b/bowmana01.html,230,0.1,.000,0.0,.388,.388,1.2,3.1,.529,0.4,0.8,261,2.9,,,,,,,,,,,,
410,1996,1997,"September 2, 1973",University of Colorado,6-5,Donnie Boyce,G,/players/b/boycedo01.html,196,0.8,.250,0.2,.384,.349,1.0,2.9,.500,0.4,0.9,30,2.6,3.9,.308,1.2,,15.4,.421,6.5,.666,6.7,4.5,107,18.6
411,1979,1979,"May 21, 1954",University of Detroit Mercy,6-1,Dennis Boyd,G,/players/b/boydde01.html,175,,,,,.250,0.6,2.4,,0.0,0.0,5,1.2,,,,,,,,,,,,
412,1973,1978,"June 13, 1950",Oregon State University,6-2,Freddie Boyd,G,/players/b/boydfr01.html,180,,,,,.414,3.6,8.6,.667,1.4,2.1,327,8.5,,,,,,,,,,,,
413,1975,1975,"March 25, 1952",Boston University,6-5,Ken Boyd,F,/players/b/boydke01.html,195,,,,,.538,1.2,2.2,.455,0.8,1.8,6,3.2,,,,,,,,,,,,
414,1999,2012,"June 2, 1976",Eastern Michigan University,5-5,Earl Boykins,G,/players/b/boykiea01.html,135,1.7,.348,0.6,.455,.417,3.2,7.6,.876,1.9,2.2,652,8.9,4.2,.353,1.5,,14.2,.439,6.2,.803,5.2,4.2,122,18.1
415,1950,1951,"July 24, 1922",St. John's University,6-10,Harry Boykoff,C,/players/b/boykoha01.html,225,,,,,.400,3.8,9.5,.765,2.5,3.3,109,10.1,,,,,,,,,,,,
416,1979,1981,"May 17, 1957",University of San Francisco,6-6,Winford Boynes,G-F,/players/b/boynewi01.html,185,0.0,.000,0.0,.435,.435,3.4,7.8,.783,1.6,2.0,177,8.4,,,,,14.6,.530,7.8,.825,4.1,3.4,90,18.9
417,2007,2007,"March 7, 1983","University of California, Los Angeles",6-6,Cedric Bozeman,G,/players/b/bozemce01.html,207,0.6,.154,0.1,.308,.282,0.5,1.7,.333,0.1,0.3,23,1.1,1.3,.321,0.4,,5.9,.435,2.6,.584,1.8,1.0,106,6.6
418,1973,1975,"August 1, 1950",University of Tulsa,6-1,Steve Bracey,G,/players/b/bracest01.html,175,,,,,.466,2.6,5.6,.684,0.9,1.3,187,6.1,,,,,,,,,,,,
419,2011,2012,"October 9, 1987",Iowa State University,6-10,Craig Brackins,F,/players/b/brackcr01.html,230,0.8,.214,0.2,.296,.265,0.8,2.9,.500,0.1,0.1,17,1.8,2.5,.292,0.7,,13.4,.445,6.0,.726,4.7,3.4,96,16.0
420,1965,1971,"July 26, 1942",Ohio State University,6-8,Gary Bradds,F,/players/b/braddga01.html,210,0.1,.056,0.0,.475,.475,4.4,9.2,.798,3.5,4.4,254,12.2,,,,,,,,,,,,
421,1982,1982,"October 30, 1959",Villanova University,6-6,Alex Bradley,F,/players/b/bradlal02.html,215,0.0,.000,0.0,.524,.524,1.4,2.6,.604,0.7,1.2,39,3.5,,,,,11.0,.505,5.6,.803,4.5,3.6,111,14.7
422,1978,1980,"October 16, 1953",Texas Southern University,6-6,Alonzo Bradley,F,/players/b/bradlal01.html,190,0.0,1.000,0.0,.419,.418,1.9,4.4,.703,0.7,1.0,99,4.4,,,,,,,,,,,,
423,2011,2018,"November 26, 1990",University of Texas at Austin,6-2,Avery Bradley,G,/players/b/bradlav01.html,180,3.5,.366,1.3,.496,.439,5.0,11.3,.772,1.1,1.4,459,12.3,3.3,.375,1.2,,10.8,.432,4.7,.545,1.9,1.1,34,11.6
424,1968,1968,"June 16, 1941",,5-11,Bill Bradley,G,/players/b/bradlbi02.html,165,0.3,.167,0.1,.324,.318,1.4,4.4,.911,0.9,1.0,58,3.8,,,,,,,,,,,,
425,1968,1977,"July 28, 1943",Princeton University,6-5,Bill Bradley,F-G,/players/b/bradlbi01.html,205,,,,,.448,5.3,11.8,.840,1.8,2.2,742,12.4,,,,,,,,,,,,
426,1982,1984,"May 16, 1959",University of Wyoming,6-5,Charles Bradley,G,/players/b/bradlch01.html,215,0.0,.000,0.0,.416,.416,1.2,2.8,.585,0.8,1.4,110,3.2,,,,,12.0,.533,6.4,.632,6.8,4.3,102,17.1
427,1980,1989,"March 19, 1957",University of North Carolina,6-6,Dudley Bradley,G-F,/players/b/bradldu01.html,195,0.6,.293,0.2,.458,.440,2.0,4.6,.730,1.0,1.3,600,5.2,,,,,4.0,.456,1.8,.552,1.2,0.7,120,4.4
428,1974,1976,"March 16, 1952",Northern Illinois University,6-8,Jim Bradley,F,/players/b/bradlji01.html,215,0.1,.000,0.0,.429,.429,2.9,6.9,.727,1.1,1.5,98,7.0,,,,,,,,,,,,
429,1950,1950,"September 24, 1928",Oklahoma State University,6-3,Joe Bradley,G,/players/b/bradljo01.html,175,,,,,.269,0.8,2.9,.395,0.3,0.8,46,1.9,,,,,,,,,,,,
430,2002,2006,"April 18, 1979","University of Kentucky, Villanova University",6-10,Michael Bradley,F-C,/players/b/bradlmi01.html,245,0.1,.143,0.0,.479,.477,1.3,2.6,.511,0.3,0.5,173,2.8,0.3,.353,0.1,,6.5,.677,4.4,.541,3.6,1.9,100,10.9
431,1994,2005,"March 22, 1972",Brigham Young University,7-6,Shawn Bradley,C,/players/b/bradlsh01.html,235,0.0,.103,0.0,.457,.457,3.3,7.1,.716,1.6,2.2,832,8.1,0.0,1.000,0.0,,10.6,.518,5.5,.692,5.4,3.8,34,14.8
432,2018,2018,"January 8, 1998",University of North Carolina,6-11,Tony Bradley,F-C,/players/b/bradlto01.html,240,0.1,.000,0.0,.273,.273,0.3,1.2,1.000,0.2,0.2,9,0.9,0.0,,0.0,,4.7,.573,2.7,.619,2.8,1.7,38,7.1
433,1997,1997,"September 27, 1968",,6-10,Mark Bradtke,C-F,/players/b/bradtma01.html,265,0.0,,0.0,.431,.431,0.7,1.6,.692,0.3,0.4,36,1.6,,,,,,,,,,,,
434,1996,1996,"March 24, 1970",Providence College,6-8,Marques Bragg,F,/players/b/braggma01.html,230,0.0,,0.0,.450,.450,1.0,2.3,.561,0.4,0.8,53,2.5,0.0,,0.0,,6.0,.564,3.4,.486,4.0,1.9,105,8.8
435,2004,2005,"May 15, 1976",Xavier University,6-8,Torraye Braggs,F,/players/b/braggto01.html,245,0.0,,0.0,.475,.475,0.9,1.8,.667,0.4,0.5,22,2.1,0.0,.000,0.0,,8.6,.550,4.7,.727,5.4,3.9,59,13.4
436,2000,2000,"January 10, 1977",University of Arizona,6-10,A.J. Bramlett,C,/players/b/bramlaj01.html,227,0.0,,0.0,.190,.190,0.5,2.6,,0.0,0.0,8,1.0,0.0,.000,0.0,,6.5,.525,3.4,.548,3.3,1.8,127,8.6
437,1987,1990,"November 17, 1963",University of Maryland,6-7,Adrian Branch,F-G,/players/b/brancad01.html,185,0.3,.231,0.1,.461,.455,2.5,5.6,.744,1.3,1.7,130,6.4,,,,,12.8,.486,6.2,.748,4.9,3.7,123,16.2
438,2000,2016,"March 11, 1979",Duke University,6-8,Elton Brand,F,/players/b/brandel01.html,275,0.0,.095,0.0,.501,.500,6.2,12.5,.736,3.4,4.7,1058,15.9,0.0,,0.0,,9.7,.612,5.9,.672,6.5,4.4,60,16.2
439,1992,2002,"May 20, 1970",University of Oregon,5-11,Terrell Brandon,G,/players/b/brandte01.html,180,1.5,.355,0.5,.471,.448,5.4,12.0,.873,2.5,2.8,724,13.8,3.7,.380,1.4,,16.8,.484,8.1,.810,5.5,4.5,57,22.2
440,1950,1955,"May 28, 1925",Michigan State University,6-5,Bob Brannum,F-C,/players/b/brannbo01.html,215,,,,,.344,2.6,7.6,.652,2.0,3.1,338,7.3,,,,,,,,,,,,
441,1982,1983,"September 24, 1958",Southern Methodist University,6-10,Brad Branson,C-F,/players/b/bransbr01.html,220,0.0,.000,0.0,.422,.422,2.1,5.0,.725,1.2,1.7,72,5.4,,,,,15.8,.448,7.1,.748,2.5,1.9,54,16.4
442,1966,1968,"January 7, 1942",Elon University,6-7,Jesse Branson,F,/players/b/bransje01.html,195,0.1,.222,0.0,.428,.427,4.5,10.6,.702,4.0,5.7,83,13.1,,,,,,,,,,,,
443,1953,1953,"February 3, 1931",New York University,6-1,Jim Brasco,G,/players/b/brascji01.html,170,,,,,.266,1.3,4.7,.794,1.4,1.7,20,3.9,,,,,,,,,,,,
444,1978,1986,"October 17, 1955",Stanford University,6-2,Mike Bratz,G,/players/b/bratzmi01.html,185,1.1,.305,0.3,.426,.407,2.7,6.6,.830,1.3,1.6,586,7.0,,,,,10.5,.467,4.9,.780,3.2,2.5,80,12.3
445,1948,1962,"September 25, 1927",Colgate University,6-5,Carl Braun,G-F,/players/b/braunca01.html,180,,,,,.383,5.0,13.0,.804,3.6,4.4,788,13.5,,,,,,,,,,,,
446,1995,1998,"September 19, 1970",University of Wyoming,6-7,Tim Breaux,F,/players/b/breauti01.html,215,0.7,.297,0.2,.406,.369,1.1,2.9,.635,0.6,0.9,102,2.9,2.4,.358,0.9,,9.5,.464,4.4,.678,4.1,2.8,121,12.5
447,2003,2004,"September 19, 1980",St. Bonaventure University,6-2,J.R. Bremer,G,/players/b/bremejr01.html,185,3.6,.333,1.2,.441,.344,2.1,6.2,.748,1.0,1.3,100,6.5,6.0,.333,2.0,,12.2,.403,4.9,.752,4.8,3.6,112,15.5
448,1959,1959,"September 23, 1936",University of North Carolina,6-6,Pete Brennan,F,/players/b/brennpe01.html,205,,,,,.302,0.8,2.7,.560,0.9,1.6,16,2.5,,,,,,,,,,,,
449,1955,1955,"August 6, 1930",Villanova University,6-3,Tom Brennan,F,/players/b/brennto01.html,195,,,,,.455,0.5,1.0,,0.0,0.0,11,0.9,,,,,,,,,,,,
450,1984,1994,"October 11, 1960",University of Minnesota,7-3,Randy Breuer,C,/players/b/breuera01.html,230,0.0,.000,0.0,.467,.467,2.8,6.0,.628,1.2,1.9,681,6.8,,,,,10.0,.570,5.7,.729,4.8,3.5,119,14.9
451,2008,2018,"March 5, 1986",University of Florida,6-9,Corey Brewer,F-G,/players/b/breweco01.html,186,2.2,.283,0.6,.464,.425,3.4,7.9,.713,1.5,2.1,781,8.9,2.6,.356,0.9,,8.2,.480,4.0,.708,3.6,2.5,108,11.3
452,2002,2005,"November 19, 1980",Auburn University,6-4,Jamison Brewer,G,/players/b/breweja01.html,184,0.6,.250,0.1,.415,.372,0.6,1.7,.393,0.2,0.5,54,1.6,1.0,.220,0.2,,4.5,.456,2.1,.527,2.5,1.3,58,5.7
453,1974,1982,"December 3, 1951",University of Minnesota,6-9,Jim Brewer,F-C,/players/b/breweji01.html,210,0.1,.077,0.0,.448,.448,2.5,5.7,.571,0.8,1.3,703,5.8,,,,,13.2,.412,5.4,.605,4.3,2.6,75,13.5
454,1979,1986,"September 16, 1955",University of Arkansas,6-4,Ron Brewer,G,/players/b/brewero01.html,180,0.3,.248,0.1,.462,.459,5.0,10.9,.824,1.9,2.3,501,11.9,,,,,11.4,.566,6.5,.754,3.9,2.9,91,15.8
455,2007,2014,"March 20, 1985",University of Arkansas,6-7,Ronnie Brewer,G-F,/players/b/brewero02.html,220,0.7,.254,0.2,.505,.490,3.1,6.3,.675,1.5,2.2,502,7.8,3.4,.340,1.2,,11.9,.462,5.5,.671,5.4,3.6,90,15.7
456,2002,2010,"October 2, 1979",,7-2,Primoz Brezec,C,/players/b/brezepr01.html,252,0.0,.167,0.0,.498,.498,3.0,5.9,.701,1.2,1.8,342,7.2,,,,,,,,,,,,
457,1950,1956,"May 1, 1923",Louisiana State University,6-1,Frankie Brian,G,/players/b/brianfr01.html,180,,,,,.340,4.0,11.9,.821,4.2,5.1,438,12.3,,,,,,,5.7,,,3.9,36,15.3
458,1985,1997,"August 14, 1959",Pennsylvania State University,6-9,Frank Brickowski,F-C,/players/b/brickfr01.html,240,0.2,.324,0.1,.524,.519,3.9,7.6,.740,2.1,2.8,731,10.0,,,,,6.2,.538,3.3,.757,2.5,1.9,101,8.5
459,1976,1987,"September 17, 1953",University of Louisville,6-5,Junior Bridgeman,F-G,/players/b/bridgju01.html,210,0.3,.244,0.1,.477,.475,5.7,11.9,.846,2.2,2.6,849,13.6,,,,,11.8,.517,6.1,.770,4.3,3.3,87,15.5
460,1963,1975,"April 4, 1939",University of Kansas,6-6,Bill Bridges,F-C,/players/b/bridgbi01.html,228,,,,,.442,4.5,10.2,.693,2.9,4.1,926,11.9,,,,,12.0,.401,4.8,.653,5.5,3.6,78,13.2
461,1947,1947,"September 22, 1923",University of Charleston,6-2,Al Brightman,F,/players/b/brighal01.html,195,,,,,.256,3.8,15.0,.627,2.1,3.3,58,9.8,,,,,,,,,,,,
462,1947,1947,"December 31, 1923",Dartmouth College,6-4,Aud Brindley,F,/players/b/brindau01.html,175,,,,,.286,1.2,4.1,.857,0.5,0.6,12,2.8,,,,,,,,,,,,
463,1970,1975,"June 15, 1947",University of Toledo,6-5,John Brisker,F-G,/players/b/briskjo01.html,210,2.5,.321,0.8,.467,.453,8.1,17.8,.834,4.0,4.8,331,20.7,,,,,,,,,,,,
464,1974,1983,"August 23, 1951",Virginia Polytechnic Institute and State University,6-7,Allan Bristow,F-G,/players/b/bristal01.html,210,0.2,.281,0.0,.462,.460,3.0,6.6,.801,1.8,2.2,695,7.8,,,,,18.7,.476,8.9,.705,7.6,5.4,78,23.1
465,1968,1968,"April 18, 1944",Johnson C. Smith University,6-4,Tyrone Britt,G,/players/b/brittty01.html,190,,,,,.382,1.2,3.1,.667,0.2,0.3,11,2.5,,,,,,,,,,,,
466,1978,1978,"August 31, 1952",University of Michigan,6-2,Wayman Britt,G,/players/b/brittwa01.html,185,,,,,.300,0.4,1.4,.750,0.4,0.6,7,1.3,,,,,,,,,,,,
467,1986,1987,"June 21, 1963",University of South Carolina,7-0,Mike Brittain,C,/players/b/brittmi01.html,235,0.0,,0.0,.500,.500,0.7,1.4,.524,0.3,0.6,38,1.7,,,,,6.0,.447,2.7,.701,2.3,1.6,109,7.0
468,1981,1981,"August 29, 1958",Texas A&M University,6-4,Dave Britton,G,/players/b/brittda01.html,180,0.0,,0.0,.667,.667,1.0,1.5,,0.0,0.0,2,2.0,,,,,9.5,.448,4.3,.687,3.8,2.6,67,11.1
469,2010,2012,"March 20, 1987",University of Washington,6-7,Jon Brockman,F,/players/b/brockjo01.html,255,0.0,.000,0.0,.488,.488,0.8,1.6,.618,0.6,0.9,150,2.1,0.0,.000,0.0,,10.3,.534,5.5,.612,4.6,2.8,131,13.8
470,1982,1983,"February 24, 1958",West Virginia Wesleyan College,6-4,Jim Brogan,G,/players/b/brogaji01.html,185,0.4,.267,0.1,.454,.444,2.1,4.8,.748,0.8,1.0,121,5.1,,,,,,,,,,,,
471,2017,2018,"December 11, 1992",University of Virginia,6-5,Malcolm Brogdon,G,/players/b/brogdma01.html,215,2.9,.393,1.1,.531,.470,4.4,9.3,.872,1.5,1.7,121,11.4,3.7,.365,1.4,,10.3,.430,4.4,.876,3.5,3.1,136,13.3
472,1975,1978,"January 11, 1954",University of Notre Dame,6-4,Gary Brokaw,G,/players/b/brokaga01.html,178,,,,,.446,3.0,6.8,.713,1.9,2.7,241,8.0,,,,,,,,,,,,
473,1949,1950,"May 11, 1920",West Texas A&M University,6-4,Price Brookfield,F-G,/players/b/brookpr01.html,185,,,,,.283,3.1,10.8,.739,1.7,2.3,61,7.8,,,,,,,,,,,,
474,1971,1971,,Temple University,6-4,Clarence Brookins,F,/players/b/brookcl01.html,190,0.1,.000,0.0,.308,.308,1.0,3.3,.417,0.6,1.5,8,2.6,,,,,,,,,,,,
475,2008,2018,"January 14, 1985",University of Oregon,6-0,Aaron Brooks,G,/players/b/brookaa01.html,161,3.4,.370,1.3,.488,.413,3.5,8.5,.837,1.4,1.7,644,9.7,4.8,.374,1.8,,10.1,.430,4.3,.834,3.2,2.7,115,13.1
476,2018,2018,"January 22, 1996",University of Oregon,6-6,Dillon Brooks,F-G,/players/b/brookdi01.html,220,3.2,.357,1.1,.499,.437,4.0,9.2,.735,1.4,1.9,80,10.6,3.4,.362,1.2,,11.4,.472,5.4,.794,3.5,2.8,109,14.8
477,1992,1994,"October 12, 1969",University of Louisiana at Lafayette,6-6,Kevin Brooks,F,/players/b/brookke01.html,200,0.5,.200,0.1,.415,.401,1.4,3.4,.859,0.5,0.6,126,3.3,,,,,,,,,,,,
478,2012,2018,"January 26, 1989",Providence College,6-5,MarShon Brooks,G-F,/players/b/brookma01.html,200,1.5,.355,0.5,.489,.451,3.1,7.0,.755,1.3,1.8,169,8.2,4.2,.333,1.4,,11.2,.464,5.2,.739,3.6,2.6,113,14.4
479,1981,1988,"August 17, 1958",La Salle University,6-7,Michael Brooks,F,/players/b/brookmi01.html,220,0.1,.152,0.0,.486,.486,5.2,10.8,.714,2.3,3.2,319,12.8,,,,,,,,,,,,
480,1989,1998,"July 31, 1965","Texas Christian University, University of California, Irvine",5-11,Scott Brooks,G,/players/b/brooksc01.html,165,1.1,.372,0.4,.503,.450,1.8,4.0,.849,0.8,1.0,680,4.9,5.8,.418,2.4,,8.7,.475,4.1,.852,3.2,2.7,85,12.6
481,2007,2009,"May 12, 1981",DePaul University,6-9,Andre Brown,F,/players/b/brownan01.html,245,0.0,.000,0.0,.516,.516,1.1,2.1,.500,0.4,0.9,75,2.6,0.0,.000,0.0,,8.3,.502,4.2,.523,4.5,2.3,107,10.7
482,2016,2018,"October 10, 1992",Stanford University,6-7,Anthony Brown,F-G,/players/b/brownan02.html,210,2.4,.286,0.7,.407,.328,1.4,4.3,.850,0.4,0.5,41,3.9,3.8,.403,1.5,,8.4,.428,3.6,.751,2.8,2.1,144,10.8
483,1949,1950,"November 12, 1923",Miami University,6-4,Bob Brown,F,/players/b/brownbo01.html,205,,,,,.358,3.8,10.7,.689,2.5,3.6,82,10.1,,,,,,,,,,,,
484,2009,2018,"September 24, 1984","California State University, Fullerton",6-2,Bobby Brown,G,/players/b/brownbo02.html,175,1.9,.317,0.6,.446,.379,1.7,4.5,.806,0.3,0.4,158,4.4,7.0,.377,2.6,,13.9,.428,6.0,.789,2.9,2.3,116,16.9
485,1990,2002,"February 29, 1968",North Carolina State University,6-7,Chucky Brown,F,/players/b/brownch01.html,214,0.1,.227,0.0,.494,.491,2.5,5.0,.699,1.0,1.4,694,5.9,0.3,.250,0.1,,7.8,.557,4.3,.667,2.8,1.9,128,10.6
486,2002,2005,"June 28, 1979",Syracuse University,6-9,Damone Brown,F,/players/b/brownda02.html,200,0.4,.286,0.1,.352,.336,1.1,3.3,.667,0.5,0.7,39,2.8,0.8,.225,0.2,,8.7,.497,4.3,.742,2.7,2.0,113,10.9
487,1949,1949,"March 14, 1923",Humboldt State University,6-2,Darrell Brown,F,/players/b/brownda01.html,175,,,,,.333,0.7,2.0,.000,0.0,0.7,3,1.3,,,,,,,,,,,,
488,1991,2002,"November 29, 1968",Jacksonville University,6-1,Dee Brown,G,/players/b/brownde01.html,160,2.8,.357,1.0,.488,.436,4.2,9.6,.825,1.8,2.1,608,11.1,2.2,.366,0.8,,11.3,.482,5.4,.763,3.0,2.3,108,13.9
489,2007,2009,"August 17, 1984",University of Illinois at Urbana-Champaign,6-0,Dee Brown,G,/players/b/brownde03.html,185,0.8,.250,0.2,.384,.340,0.7,2.2,.643,0.4,0.6,68,2.1,6.1,.360,2.2,,11.0,.422,4.7,.725,2.4,1.7,137,13.2
490,2010,2012,"September 8, 1987",Xavier University,6-7,Derrick Brown,F,/players/b/brownde04.html,225,0.2,.317,0.1,.525,.515,2.1,4.0,.637,1.0,1.6,171,5.2,1.2,.415,0.5,,6.5,.573,3.7,.718,3.3,2.4,106,10.3
491,2003,2010,"December 30, 1978",University of Texas at San Antonio,6-5,Devin Brown,G,/players/b/brownde02.html,220,1.9,.338,0.6,.452,.401,2.5,6.3,.776,1.5,2.0,465,7.2,5.2,.309,1.6,,14.7,.411,6.1,.733,6.2,4.6,105,18.3
492,2002,2002,"May 17, 1979",Indian Hills Community College,7-0,Ernest Brown,C,/players/b/browner01.html,244,0.0,,0.0,.167,.167,0.3,2.0,.250,0.3,1.3,3,1.0,,,,,,,,,,,,
493,1972,1984,"August 7, 1948",University of Iowa,6-3,Fred Brown,G,/players/b/brownfr01.html,182,0.8,.373,0.3,.482,.478,6.2,13.1,.858,2.0,2.3,963,14.6,,,,,18.6,.501,9.3,.819,5.0,4.1,48,22.7
494,1958,1958,"October 30, 1935",Wayne State University,6-6,George Brown,F,/players/b/brownge01.html,190,,,,,.000,0.0,2.0,.500,1.0,2.0,1,1.0,,,,,,,,,,,,
495,1999,1999,"July 28, 1975",Pepperdine University,6-4,Gerald Brown,G,/players/b/brownge02.html,210,0.3,.300,0.1,.388,.371,1.0,2.7,.786,0.3,0.4,33,2.4,2.3,.369,0.8,,10.9,.462,5.1,.768,3.1,2.4,110,13.3
496,1947,1947,"October 2, 1923",University of Evansville,6-0,Harold Brown,G,/players/b/brownha01.html,155,,,,,.248,1.8,7.1,.632,1.4,2.2,54,4.9,,,,,,,,,,,,
497,2015,2015,"December 18, 1992","University of Oregon, University of Missouri",6-4,Jabari Brown,G,/players/b/brownja01.html,215,3.3,.371,1.2,.479,.412,3.7,8.9,.753,3.4,4.5,19,11.9,5.7,.386,2.2,,11.2,.441,5.0,.782,6.2,4.9,62,17.0
498,2017,2018,"October 24, 1996",University of California,6-7,Jaylen Brown,F-G,/players/b/brownja02.html,225,2.9,.374,1.1,.528,.461,3.8,8.2,.655,1.6,2.4,147,10.2,3.0,.294,0.9,,11.1,.431,4.8,.654,6.4,4.2,34,14.6
499,1974,1980,"December 14, 1951",University of Missouri,6-7,John Brown,F,/players/b/brownjo01.html,220,0.0,,0.0,.453,.453,2.8,6.1,.783,1.9,2.4,486,7.4,,,,,13.8,.526,7.3,.763,6.9,5.2,72,19.7
500,2002,2005,"March 18, 1981",Okaloosa-Walton Community College,6-7,Kedrick Brown,G,/players/b/brownke01.html,222,1.2,.274,0.3,.451,.405,1.4,3.5,.640,0.4,0.6,143,3.6,,,,,,,,,,,,
501,2002,2013,"March 10, 1982",,6-11,Kwame Brown,F,/players/b/brownkw01.html,270,0.0,.111,0.0,.492,.492,2.5,5.1,.570,1.6,2.9,607,6.6,,,,,,,,,,,,
502,1968,1972,"September 14, 1940",University of North Carolina,5-9,Larry Brown,G,/players/b/brownla01.html,160,0.6,.230,0.1,.419,.412,3.7,8.9,.813,3.8,4.6,376,11.2,,,,,,,,,,,,
503,1947,1947,"October 12, 1919",University of Wyoming,6-3,Leon Brown,F,/players/b/brownle01.html,190,,,,,.000,0.0,0.6,,0.0,0.0,5,0.0,,,,,,,,,,,,
504,1981,1981,"February 19, 1955","University of Nevada, Las Vegas",6-11,Lewis Brown,C,/players/b/brownle02.html,225,0.0,,0.0,.000,.000,0.0,1.5,.400,1.0,2.5,2,1.0,,,,,10.5,.481,5.1,.656,1.9,1.3,113,11.4
505,2014,2018,"August 26, 1990",North Carolina State University,6-5,Lorenzo Brown,G,/players/b/brownlo01.html,189,1.0,.149,0.1,.390,.368,1.3,3.4,.684,0.3,0.5,76,3.0,2.1,.305,0.6,,9.5,.429,4.1,.741,3.8,2.8,101,11.6
506,1997,2000,"April 3, 1974",Murray State University,6-3,Marcus Brown,G,/players/b/brownma01.html,185,1.4,.333,0.5,.458,.381,1.2,3.1,.714,0.6,0.8,27,3.4,3.9,.372,1.5,,12.7,.493,6.2,.849,5.8,5.0,118,18.9
507,2015,2018,"January 29, 1992",Oklahoma State University,6-3,Markel Brown,G,/players/b/brownma02.html,190,1.7,.295,0.5,.432,.380,1.8,4.8,.781,1.0,1.3,113,5.2,3.1,.347,1.1,,9.4,.439,4.1,.733,4.1,3.0,134,12.4
508,1987,1997,"July 19, 1963",George Washington University,6-9,Mike Brown,C-F,/players/b/brownmi01.html,257,0.0,.125,0.0,.455,.455,1.8,4.0,.690,1.4,2.0,626,5.0,0.0,,0.0,,12.6,.509,6.4,.653,6.8,4.5,111,17.3
509,1992,1992,"November 3, 1969",Slippery Rock University of Pennsylvania,6-3,Myron Brown,G,/players/b/brownmy01.html,180,0.8,.333,0.3,.750,.667,1.0,1.5,,0.0,0.0,4,2.3,,,,,,,,,,,,
510,1994,2008,"October 14, 1969",Louisiana Tech University,6-11,P.J. Brown,F-C,/players/b/brownpj01.html,225,0.1,.136,0.0,.461,.460,3.5,7.7,.794,2.0,2.5,1089,9.1,0.4,.377,0.2,,8.1,.488,3.9,.654,3.2,2.1,121,10.1
511,1992,2003,"May 22, 1968","University of Houston, New Mexico State University",6-2,Randy Brown,G,/players/b/brownra02.html,190,0.2,.200,0.0,.421,.417,1.9,4.7,.691,0.9,1.3,655,4.8,0.7,.310,0.2,,6.8,.436,3.0,.703,4.2,3.0,117,9.1
512,1990,1990,"July 5, 1965","Mississippi State University, University of Idaho",6-8,Raymond Brown,F,/players/b/brownra01.html,220,0.0,,0.0,.286,.286,0.5,1.8,.000,0.0,0.1,16,1.0,0.2,.385,0.1,,10.5,.517,5.4,.636,3.4,2.1,119,13.1
513,1981,1985,"August 20, 1958",Mississippi State University,6-10,Rickey Brown,C-F,/players/b/brownri01.html,215,0.0,.000,0.0,.464,.464,1.8,3.9,.667,0.7,1.1,340,4.4,,,,,14.8,.487,7.2,.689,3.9,2.7,107,17.2
514,1968,1975,"May 22, 1942",University of Dayton,6-5,Roger Brown,F-G,/players/b/brownro01.html,205,1.6,.321,0.5,.488,.469,6.4,13.6,.791,4.1,5.2,605,17.4,,,,,,,,,,,,
515,1973,1980,"February 23, 1950",University of Kansas,6-11,Roger Brown,C,/players/b/brownro02.html,225,0.0,1.000,0.0,.408,.406,1.0,2.4,.624,0.5,0.7,239,2.4,,,,,7.1,.448,3.2,.551,2.7,1.5,79,7.9
516,2007,2015,"November 29, 1985",Michigan State University,6-4,Shannon Brown,G,/players/b/brownsh01.html,205,2.0,.332,0.7,.468,.420,2.9,7.0,.807,1.1,1.4,408,7.6,3.1,.364,1.1,,9.4,.457,4.3,.831,3.0,2.5,97,12.2
517,1948,1952,"June 27, 1929",,6-3,Stan Brown,F,/players/b/brownst01.html,200,,,,,.306,1.2,3.9,.595,0.6,1.1,34,3.1,,,,,,,,,,,,
518,2018,2018,"February 10, 1995",Southern Methodist University,6-5,Sterling Brown,G,/players/b/brownst02.html,225,1.7,.360,0.6,.492,.412,1.5,3.7,.875,0.4,0.5,52,4.1,2.1,.451,0.9,,5.8,.504,2.9,.770,1.9,1.4,136,8.2
519,2002,2005,"June 3, 1979",McNeese State University,6-2,Tierre Brown,G,/players/b/brownti01.html,189,0.6,.353,0.2,.413,.384,1.5,3.9,.769,0.7,0.9,134,3.9,2.8,.337,1.0,,12.6,.444,5.6,.734,4.5,3.3,110,15.4
520,1985,1992,"July 29, 1960",University of Arkansas,6-6,Tony Brown,F-G,/players/b/brownto01.html,185,0.4,.259,0.1,.446,.437,2.4,5.5,.719,1.1,1.6,360,6.0,,,,,3.9,.572,2.2,.695,1.4,1.0,110,5.4
521,1949,1950,"January 1, 1930",,6-10,Jim Browne,C,/players/b/brownji01.html,235,,,,,.360,0.5,1.4,.483,0.4,0.8,35,1.4,,,,,,,,,,,,
522,1990,1990,"November 13, 1967",DePaul University,6-6,Stanley Brundy,F,/players/b/brundst01.html,210,0.0,,0.0,.500,.500,0.9,1.9,.389,0.4,1.1,16,2.3,0.0,,0.0,,8.7,.627,5.5,.490,2.8,1.4,112,12.3
523,1969,1969,"June 12, 1945",Marquette University,6-6,Brian Brunkhorst,F,/players/b/brunkbr01.html,208,0.0,,0.0,.545,.545,2.0,3.7,.765,4.3,5.7,3,8.3,,,,,,,,,,,,
524,1973,1973,"August 30, 1946",Manhattan College,6-0,George Bruns,G,/players/b/brunsge01.html,160,0.3,.500,0.2,.485,.470,2.4,5.1,.815,1.7,2.1,13,6.6,,,,,,,,,,,,
525,1998,2006,"June 14, 1972",Temple University,6-4,Rick Brunson,G,/players/b/brunsri01.html,190,0.8,.362,0.3,.426,.378,1.2,3.1,.693,0.6,0.8,337,3.2,5.2,.294,1.5,,10.4,.371,3.9,.658,4.2,2.8,124,12.0
526,2017,2018,"March 2, 1993",,6-7,Nicolas Brussino,G-F,/players/b/brussni01.html,195,1.7,.299,0.5,.465,.364,0.9,2.5,.773,0.3,0.4,58,2.6,,,,,,,,,,,,
527,1965,1972,"November 4, 1938",DePaul University,6-1,Em Bryant,G,/players/b/bryanem01.html,175,,,,,.410,2.7,6.5,.690,1.3,1.8,566,6.6,,,,,,,,,,,,
528,1976,1983,"October 19, 1954",La Salle University,6-9,Joe Bryant,F-C,/players/b/bryanjo01.html,185,0.4,.200,0.1,.453,.450,3.5,7.7,.743,1.7,2.3,606,8.7,,,,,17.0,.488,8.3,.715,5.2,3.7,55,20.3
529,1997,2016,"August 23, 1978",,6-6,Kobe Bryant,G-F,/players/b/bryanko01.html,212,4.1,.329,1.4,.482,.447,8.7,19.5,.837,6.2,7.4,1346,25.0,,,,,,,,,,,,
530,1989,2003,"April 25, 1965",Seton Hall University,6-9,Mark Bryant,F-C,/players/b/bryanma01.html,245,0.0,.083,0.0,.500,.500,2.2,4.4,.697,1.0,1.5,797,5.4,0.0,.667,0.0,,11.8,.521,6.2,.705,5.4,3.8,118,16.2
531,2018,2018,"July 31, 1997",Indiana University,6-10,Thomas Bryant,C,/players/b/bryanth01.html,248,0.4,.200,0.1,.500,.455,0.4,0.8,.714,0.4,0.5,13,1.2,1.1,.373,0.4,,7.5,.592,4.4,.718,4.1,3.0,69,12.2
532,1984,1986,"July 14, 1959",University of San Francisco,7-0,Wallace Bryant,C,/players/b/bryanwa01.html,245,0.0,,0.0,.407,.407,1.3,3.2,.573,0.5,0.9,102,3.2,,,,,11.1,.487,5.4,.633,3.4,2.2,118,13.0
533,1990,1990,"August 8, 1964",Texas State University,6-9,Torgeir Bryn,C,/players/b/brynto01.html,250,0.0,,0.0,.000,.000,0.0,0.7,.667,1.3,2.0,3,1.3,,,,,,,,,,,,
534,1976,1976,"July 9, 1953",Manhattan College,6-3,George Bucci,G,/players/b/buccige01.html,200,0.1,.000,0.0,.403,.403,1.5,3.8,.683,0.8,1.2,33,3.9,,,,,,,,,,,,
535,1962,1963,"August 1, 1937",Tennessee State University,6-7,Joe Buckhalter,F,/players/b/buckhjo01.html,210,,,,,.451,2.4,5.2,.627,1.1,1.7,65,5.8,,,,,,,,,,,,
536,1990,1990,"March 17, 1966",University of North Carolina,6-6,Steve Bucknall,G,/players/b/bucknst01.html,215,0.1,.000,0.0,.273,.273,0.5,1.8,.833,0.3,0.3,18,1.3,1.6,.423,0.7,,5.4,.478,2.6,.755,2.4,1.8,130,7.5
537,1962,1963,"August 17, 1938",Jackson State University,6-9,Cleveland Buckner,F-C,/players/b/buckncl01.html,210,,,,,.432,2.4,5.5,.620,1.3,2.0,68,6.0,,,,,,,,,,,,
538,2000,2009,"September 16, 1976",Clemson University,6-4,Greg Buckner,G,/players/b/buckngr01.html,210,1.3,.334,0.4,.498,.450,2.0,4.4,.757,0.7,0.9,570,5.0,1.5,.276,0.4,,11.0,.504,5.6,.665,4.3,2.8,122,14.4
539,1977,1986,"August 20, 1954",Indiana University,6-3,Quinn Buckner,G,/players/b/bucknqu01.html,190,0.1,.184,0.0,.461,.461,3.5,7.7,.657,1.2,1.8,719,8.2,,,,,10.0,.432,4.3,.554,2.3,1.3,120,10.0
540,1961,1965,"October 28, 1938",Wake Forest University,6-6,Dave Budd,F,/players/b/buddda01.html,205,,,,,.460,2.7,5.9,.682,1.6,2.4,353,7.1,,,,,,,,,,,,
541,2010,2016,"May 22, 1988",University of Arizona,6-7,Chase Budinger,F,/players/b/budinch01.html,209,2.9,.352,1.0,.504,.430,2.9,6.8,.797,1.0,1.3,407,7.9,5.0,.383,1.9,,12.8,.469,6.0,.782,4.0,3.1,100,17.0
542,1949,1952,"July 30, 1925",Columbia University,6-5,Walt Budko,F-C,/players/b/budkowa01.html,220,,,,,.342,2.7,7.9,.757,2.6,3.5,253,8.1,,,,,,,,,,,,
543,1991,2002,"June 19, 1968",University of Arizona,6-6,Jud Buechler,F-G,/players/b/buechju01.html,220,1.0,.366,0.4,.492,.433,1.3,3.1,.633,0.3,0.4,720,3.3,0.8,.381,0.3,,6.1,.547,3.4,.743,2.3,1.7,131,8.7
544,2000,2005,"November 2, 1977",Creighton University,6-5,Rodney Buford,G-F,/players/b/buforro01.html,189,1.1,.300,0.3,.436,.412,2.7,6.7,.758,0.6,0.8,230,6.4,4.7,.380,1.8,,14.7,.447,6.6,.753,3.9,2.9,118,17.9
545,1991,2002,"June 5, 1967","University of Colorado, University of Iowa",6-10,Matt Bullard,F,/players/b/bullama01.html,215,2.5,.384,1.0,.521,.418,2.0,4.7,.768,0.4,0.5,615,5.3,2.1,.336,0.7,,9.2,.533,4.9,.768,3.3,2.5,94,12.8
546,2014,2018,"March 16, 1991",University of North Carolina,6-7,Reggie Bullock,G-F,/players/b/bullore01.html,205,2.5,.403,1.0,.558,.448,2.1,4.6,.798,0.3,0.4,209,5.5,4.9,.387,1.9,,8.2,.439,3.6,.720,1.2,0.9,100,9.9
547,1968,1969,"July 29, 1945",Utah State University,7-0,Larry Bunce,C,/players/b/buncela01.html,240,0.0,.000,0.0,.420,.420,3.0,7.1,.716,2.9,4.0,129,8.9,,,,,,,,,,,,
548,1979,1979,"May 15, 1956","California State University, Fullerton",6-6,Greg Bunch,F,/players/b/bunchgr01.html,190,,,,,.346,0.8,2.2,.833,0.8,1.0,12,2.3,,,,,,,,,,,,
549,1953,1953,"July 13, 1930",New York University,6-0,Dick Bunt,G,/players/b/buntdi01.html,170,,,,,.276,1.1,4.0,.708,1.3,1.8,26,3.5,,,,,,,,,,,,
550,1966,1966,"May 5, 1942",University of Michigan,6-7,Bill Buntin,C-F,/players/b/buntibi01.html,250,,,,,.395,2.8,7.1,.615,2.1,3.4,42,7.7,,,,,,,,,,,,
551,1970,1972,"August 26, 1947",University of North Carolina,6-8,Bill Bunting,F-C,/players/b/buntibi02.html,200,0.0,.000,0.0,.421,.421,1.5,3.5,.789,1.3,1.7,145,4.3,,,,,,,,,,,,
552,1976,1978,"February 28, 1953",University of Utah,6-2,Ticky Burden,G,/players/b/burdeti01.html,185,0.5,.222,0.1,.446,.443,5.3,11.9,.736,2.5,3.4,134,13.1,,,,,,,,,,,,
553,2003,2007,"December 14, 1973",Auburn University,6-11,Pat Burke,C-F,/players/b/burkepa01.html,250,0.3,.250,0.1,.417,.408,1.6,3.8,.663,0.5,0.7,127,3.7,0.8,.222,0.2,,7.2,.491,3.5,.631,2.7,1.7,120,8.9
554,2014,2018,"November 12, 1992",University of Michigan,6-1,Trey Burke,G,/players/b/burketr01.html,191,3.8,.339,1.3,.465,.403,4.2,10.5,.791,1.1,1.4,301,10.8,5.0,.367,1.8,,13.3,.450,6.0,.777,4.0,3.1,73,16.9
555,1982,1982,"May 22, 1958",University of Louisville,6-5,Roger Burkman,G,/players/b/burkmro01.html,175,0.2,.000,0.0,.000,.000,0.0,0.7,.833,0.8,1.0,6,0.8,,,,,2.6,.419,1.1,.722,2.0,1.5,120,3.6
556,2012,2018,"July 20, 1991",University of Colorado,6-6,Alec Burks,G,/players/b/burksal01.html,214,1.8,.354,0.6,.466,.426,3.4,7.9,.765,2.3,3.1,364,9.7,2.2,.313,0.7,,12.6,.495,6.2,.804,7.3,5.9,68,19.0
557,2005,2006,"February 25, 1980",University of Memphis,6-1,Antonio Burks,G,/players/b/burksan01.html,200,0.2,.235,0.0,.397,.387,1.0,2.5,.571,0.3,0.5,81,2.3,1.7,.401,0.7,,9.2,.469,4.3,.673,3.0,2.0,91,11.3
558,2006,2006,"April 9, 1979",University of Minnesota,6-3,Kevin Burleson,G,/players/b/burleke01.html,205,1.4,.185,0.3,.307,.250,0.6,2.3,.941,0.4,0.4,39,1.8,3.6,.331,1.2,,6.0,.371,2.2,.751,1.9,1.4,123,7.0
559,1975,1981,"February 24, 1952",North Carolina State University,7-2,Tom Burleson,C,/players/b/burleto01.html,225,0.0,.000,0.0,.445,.445,3.5,7.9,.726,2.4,3.3,446,9.4,,,,,14.8,.516,7.6,.687,5.5,3.8,84,19.0
560,1950,1950,"December 23, 1926",University of Illinois at Urbana-Champaign,6-3,Jack Burmaster,G,/players/b/burmaja01.html,190,,,,,.333,3.9,11.7,.681,2.0,3.0,61,9.8,,,,,,,,,,,,
561,1982,1982,"July 3, 1958",Saint Louis University,6-2,David Burns,G,/players/b/burnsda01.html,180,0.0,,0.0,.438,.438,0.8,1.8,.600,1.0,1.7,9,2.6,,,,,13.5,.548,7.4,.711,6.5,4.6,54,19.4
562,1994,1994,"August 24, 1971",University of Maryland,6-8,Evers Burns,F,/players/b/burnsev01.html,260,0.0,,0.0,.400,.400,1.0,2.4,.522,0.5,1.0,23,2.4,0.0,.250,0.0,,9.7,.499,4.8,.614,3.2,2.0,113,11.6
563,1968,1968,"September 21, 1945",Northwestern University,6-3,Jim Burns,G,/players/b/burnsji01.html,195,0.1,.000,0.0,.375,.375,1.5,4.0,.573,1.4,2.5,36,4.4,,,,,,,,,,,,
564,1994,2001,"January 12, 1971",University of Connecticut,6-7,Scott Burrell,G-F,/players/b/burresc01.html,218,2.4,.373,0.9,.491,.418,2.5,6.1,.723,1.0,1.3,383,6.9,4.0,.357,1.4,,10.7,.426,4.6,.640,4.0,2.6,119,13.1
565,1951,1952,"April 7, 1924",University of Tennessee,6-5,Art Burris,F,/players/b/burriar01.html,220,,,,,.260,0.9,3.6,.627,0.6,1.0,74,2.5,,,,,,,,,,,,
566,1996,1996,"January 18, 1973",University of Virginia,6-8,Junior Burrough,F,/players/b/burroju01.html,242,0.0,,0.0,.376,.376,1.0,2.8,.656,1.0,1.5,61,3.1,0.4,.283,0.1,,13.1,.449,5.9,.673,5.1,3.4,129,15.3
567,1957,1958,"June 29, 1934",University of Kentucky,6-7,Bob Burrow,C-F,/players/b/burrobo01.html,228,,,,,.365,2.0,5.4,.578,1.7,3.0,81,5.7,,,,,,,,,,,,
568,1962,1965,"August 13, 1939",Michigan State University,6-6,Ed Burton,F,/players/b/burtoed01.html,225,,,,,.412,0.9,2.3,.455,0.3,0.7,15,2.2,,,,,,,,,,,,
569,1991,1999,"May 26, 1968",University of Minnesota,6-8,Willie Burton,F-G,/players/b/burtowi01.html,210,1.3,.345,0.4,.452,.424,3.4,8.1,.786,2.9,3.7,316,10.3,1.8,.378,0.7,,10.7,.511,5.5,.749,4.8,3.6,118,15.3
570,1985,1993,"November 5, 1962",Iona College,6-2,Steve Burtt,G,/players/b/burttst01.html,185,0.1,.143,0.0,.428,.426,2.2,5.1,.695,1.4,2.1,101,5.8,,,,,15.9,.522,8.3,.726,6.0,4.4,121,20.9
571,1973,1985,"August 10, 1950",University of Evansville,6-4,Don Buse,G,/players/b/busedo01.html,190,1.3,.330,0.4,.465,.440,2.9,6.5,.779,1.0,1.3,966,7.1,,,,,,,,,,,,
572,1973,1973,"August 30, 1949",University of Denver,6-8,David Bustion,F,/players/b/bustida01.html,215,0.0,,0.0,.436,.436,1.2,2.8,.712,0.9,1.3,47,3.4,,,,,,,,,,,,
573,1962,1966,"February 8, 1936",Pikeville College,6-2,Donnie Butcher,G,/players/b/butchdo01.html,200,,,,,.397,2.2,5.5,.629,1.7,2.7,279,6.1,,,,,,,,,,,,
574,1962,1965,"July 9, 1938",Niagara University,6-2,Al Butler,G,/players/b/butleal01.html,175,,,,,.439,4.0,9.1,.739,1.8,2.4,234,9.8,,,,,,,,,,,,
575,2003,2016,"March 13, 1980",University of Connecticut,6-7,Caron Butler,F,/players/b/butleca01.html,228,2.4,.348,0.8,.469,.434,5.2,12.0,.847,2.8,3.3,881,14.1,1.9,.364,0.7,,13.8,.465,6.4,.768,5.9,4.5,63,18.0
576,1989,1991,"March 11, 1966",Stanford University,6-11,Greg Butler,C,/players/b/butlegr01.html,240,0.1,.000,0.0,.354,.354,0.5,1.4,.714,0.4,0.5,55,1.4,0.1,.500,0.0,,7.2,.503,3.6,.701,2.3,1.6,117,8.9
577,2005,2007,"March 10, 1985",,6-10,Jackie Butler,F-C,/players/b/butleja01.html,250,0.0,,0.0,.539,.539,2.0,3.7,.775,1.0,1.3,69,5.0,,,,,,,,,,,,
578,2012,2018,"September 14, 1989",Marquette University,6-8,Jimmy Butler,F-G,/players/b/butleji01.html,236,2.6,.340,0.9,.490,.452,5.3,11.8,.833,4.8,5.8,456,16.4,0.9,.383,0.3,,7.2,.508,3.7,.773,5.6,4.3,106,12.0
579,1969,1972,"October 22, 1946",University of Memphis,6-2,Mike Butler,G,/players/b/butlemi01.html,170,2.4,.289,0.7,.436,.393,3.2,8.2,.866,1.7,1.9,245,8.8,,,,,,,,,,,,
580,1994,2004,"December 15, 1970","University of California, Los Angeles",6-5,Mitchell Butler,G-F,/players/b/butlemi02.html,210,0.9,.304,0.3,.468,.438,2.0,4.5,.623,1.0,1.6,362,5.2,1.0,.228,0.2,,6.2,.519,3.2,.528,2.3,1.2,130,7.9
581,2003,2016,"May 23, 1979",La Salle University,6-7,Rasual Butler,F-G,/players/b/butlera01.html,215,3.1,.362,1.1,.483,.403,2.8,7.0,.747,0.7,1.0,809,7.5,7.1,.359,2.6,,16.7,.409,6.8,.829,3.7,3.1,110,19.3
582,2014,2018,"March 6, 1989",Marquette University,6-3,Dwight Buycks,G,/players/b/buyckdw01.html,190,1.5,.370,0.6,.449,.402,2.3,5.8,.883,1.1,1.2,49,6.3,2.2,.360,0.8,,6.4,.443,2.9,.687,1.7,1.2,68,7.7
583,2012,2012,"April 25, 1984","University of Virginia, Vanderbilt University",6-7,Derrick Byars,F,/players/b/byarsde01.html,220,3.0,.000,0.0,.273,.273,1.5,5.5,1.000,2.0,2.0,2,5.0,4.0,.397,1.6,,8.5,.463,3.9,.698,2.2,1.5,126,11.0
584,2006,2014,"October 27, 1987",,7-0,Andrew Bynum,C,/players/b/bynuman01.html,285,0.0,.111,0.0,.556,.556,4.6,8.2,.690,2.4,3.4,418,11.5,,,,,,,,,,,,
585,2006,2015,"January 4, 1983","University of Arizona, Georgia Institute of Technology",6-0,Will Bynum,G,/players/b/bynumwi01.html,185,0.9,.272,0.2,.458,.442,3.1,7.0,.799,1.7,2.1,360,8.1,3.9,.310,1.2,,8.1,.385,3.1,.739,2.7,2.0,101,9.4
586,1970,1970,,Temple University,6-7,Walter Byrd,F,/players/b/byrdwa01.html,205,0.0,.000,0.0,.326,.326,0.6,2.0,.294,0.2,0.8,22,1.5,,,,,,,,,,,,
587,1979,1983,"April 30, 1956",Syracuse University,6-7,Marty Byrnes,F,/players/b/byrnema01.html,215,0.3,.326,0.1,.469,.463,2.2,4.8,.736,1.2,1.6,263,5.7,,,,,9.0,.496,4.4,.661,4.1,2.7,100,11.6
588,1947,1951,"February 19, 1923",Seton Hall University,6-3,Tommy Byrnes,F-G,/players/b/byrneto01.html,175,,,,,.299,2.5,8.3,.648,1.5,2.3,264,6.5,,,,,,,,,,,,
589,1947,1947,"June 18, 1922",Long Island University,6-1,Michael Bytzura,F,/players/b/bytzumi01.html,170,,,,,.244,1.5,5.9,.500,0.6,1.2,60,3.5,,,,,,,,,,,,
590,2004,2006,"May 21, 1981",,6-11,Zarko Cabarkapa,F,/players/c/cabarza01.html,235,0.6,.273,0.2,.449,.427,1.6,3.7,.733,1.0,1.3,150,4.3,,,,,,,,,,,,
591,1959,1964,"July 29, 1935",Bradley University,6-7,Barney Cable,F,/players/c/cableba01.html,175,,,,,.420,2.8,6.7,.665,1.0,1.4,362,6.6,,,,,,,,,,,,
592,2015,2018,"September 21, 1995",,6-9,Bruno Caboclo,F,/players/c/cabocbr01.html,218,1.0,.242,0.2,.343,.286,0.6,2.1,.833,0.1,0.2,34,1.6,,,,,,,,,,,,
593,1996,2003,"June 12, 1973",University of Alabama,6-8,Jason Caffey,F,/players/c/caffeja01.html,255,0.0,.000,0.0,.481,.481,2.8,5.7,.637,1.8,2.8,462,7.3,0.2,.222,0.0,,8.1,.509,4.1,.578,3.8,2.2,119,10.4
594,1985,2000,"January 28, 1962",San Diego State University,6-9,Michael Cage,F-C,/players/c/cagemi01.html,224,0.0,.000,0.0,.515,.515,2.9,5.7,.664,1.4,2.2,1140,7.3,,,,,11.1,.548,6.1,.732,6.0,4.4,112,16.5
595,1951,1952,"February 4, 1925",St. John's University,6-1,Gerry Calabrese,G,/players/c/calabge01.html,175,,,,,.348,1.7,4.9,.702,1.3,1.8,104,4.7,,,,,,,,,,,,
596,2014,2015,"February 7, 1989",University of Florida,6-6,Nick Calathes,G,/players/c/calatni01.html,213,0.8,.288,0.2,.468,.441,1.9,4.3,.581,0.5,0.9,129,4.6,4.8,.380,1.8,,11.6,.455,5.3,.715,5.4,3.9,72,16.3
597,2006,2018,"September 28, 1981",,6-3,Jose Calderon,G,/players/c/caldejo01.html,200,2.6,.412,1.1,.545,.474,3.5,7.5,.873,1.1,1.2,844,9.2,,,,,,,,,,,,
598,1990,1998,"July 4, 1966","Southern Methodist University, Lamar University",6-8,Adrian Caldwell,F-C,/players/c/caldwad01.html,265,0.0,.000,0.0,.485,.485,0.8,1.7,.453,0.3,0.7,197,2.0,0.0,,0.0,,5.8,.556,3.2,.428,4.1,1.8,54,8.2
599,1968,1969,"January 28, 1943",Georgia Institute of Technology,6-10,Jim Caldwell,C,/players/c/caldwji01.html,240,0.1,.133,0.0,.426,.425,2.8,6.7,.631,1.4,2.2,137,7.1,,,,,,,,,,,,
600,1965,1975,"November 1, 1941",Arizona State University,6-5,Joe Caldwell,F-G,/players/c/caldwjo01.html,195,0.3,.225,0.1,.467,.466,6.8,14.5,.572,2.6,4.5,782,16.1,,,,,,,,,,,,
601,2014,2018,"February 18, 1993",University of Georgia,6-5,Kentavious Caldwell-Pope,G,/players/c/caldwke01.html,205,4.8,.345,1.7,.487,.410,4.4,10.6,.786,1.7,2.1,386,12.1,6.9,.339,2.3,,12.7,.415,5.3,.752,3.9,2.9,64,15.8
602,1949,1955,"November 4, 1927",City College of San Francisco,6-3,Bill Calhoun,F-G,/players/c/calhobi01.html,180,,,,,.341,2.6,7.8,.702,2.5,3.5,442,7.8,,,,,,,,,,,,
603,1973,1980,"November 1, 1950",University of Pennsylvania,6-7,Corky Calhoun,F,/players/c/calhoco01.html,210,0.0,,0.0,.460,.460,2.2,4.8,.782,0.9,1.2,542,5.3,,,,,9.8,.474,4.6,.759,4.5,3.4,84,12.7
604,1992,1992,"November 18, 1969",University of Michigan,6-1,Demetrius Calip,G,/players/c/calipde01.html,165,0.7,.200,0.1,.250,.222,0.6,2.6,.667,0.3,0.4,7,1.6,2.5,.398,1.0,,7.7,.461,3.5,.724,2.1,1.5,96,9.6
605,1947,1947,"June 2, 1921",Rockhurst University,6-1,Tom Callahan,G,/players/c/callato01.html,180,,,,,.207,0.5,2.2,.417,0.4,0.9,13,1.3,,,,,,,,,,,,
606,1991,1991,"December 12, 1966","Indiana University, University of Kansas",6-6,Rick Calloway,F,/players/c/callori01.html,180,0.0,.000,0.0,.391,.391,1.2,3.0,.696,0.9,1.2,64,3.2,0.2,.421,0.1,,9.9,.529,5.3,.707,3.2,2.3,119,12.9
607,1947,1949,"January 30, 1924",University of Rhode Island,5-10,Ernie Calverley,G,/players/c/calveer01.html,145,,,,,.291,4.6,16.0,.707,2.6,3.7,165,11.9,,,,,,,,,,,,
608,1970,1981,"July 27, 1947",University of Southern California,6-0,Mack Calvin,G,/players/c/calvima01.html,165,0.4,.245,0.1,.451,.447,5.3,11.8,.863,5.5,6.4,755,16.1,,,,,9.6,.468,4.5,.723,4.5,3.3,52,12.3
609,1993,1993,"January 29, 1970",University of Texas at Austin,6-7,Dexter Cambridge,F,/players/c/cambrde01.html,224,0.1,.000,0.0,.484,.484,2.8,5.9,.687,1.3,1.9,53,7.0,1.8,.293,0.5,,11.4,.522,6.0,.711,4.6,3.3,51,15.7
610,1997,2013,"March 22, 1974",University of Massachusetts Amherst,6-11,Marcus Camby,C-F,/players/c/cambyma01.html,220,0.1,.205,0.0,.468,.466,3.9,8.3,.670,1.8,2.6,973,9.5,0.1,.077,0.0,,11.7,.501,5.9,.661,5.1,3.3,92,15.1
611,1991,2005,"July 23, 1968",Clemson University,6-11,Elden Campbell,C,/players/c/campbel01.html,215,0.0,.054,0.0,.460,.460,3.9,8.5,.699,2.6,3.7,1044,10.3,0.1,.300,0.0,,10.9,.562,6.1,.641,4.7,3.0,123,15.3
612,1985,1995,"May 7, 1962",Ohio State University,6-7,Tony Campbell,F-G,/players/c/campbto01.html,215,0.4,.254,0.1,.460,.456,4.6,10.1,.790,2.3,2.9,690,11.6,0.1,.000,0.0,,11.8,.482,5.7,.798,4.2,3.4,104,14.7
613,2014,2018,"May 21, 1991",Murray State University,6-0,Isaiah Canaan,G,/players/c/canaais01.html,201,4.6,.351,1.6,.480,.369,2.7,7.3,.839,1.4,1.7,205,8.4,5.5,.419,2.3,,10.7,.450,4.8,.803,4.5,3.6,132,15.5
614,1970,1974,"April 12, 1947",La Salle University,6-4,Larry Cannon,G,/players/c/cannola01.html,195,0.6,.257,0.1,.415,.411,6.0,14.7,.760,4.5,5.9,213,16.6,,,,,,,,,,,,
615,2015,2018,"May 18, 1994",,6-10,Clint Capela,C,/players/c/capelca01.html,240,0.0,.000,0.0,.630,.630,4.6,7.3,.482,1.4,2.9,227,10.6,,,,,,,,,,,,
616,2011,2011,"May 4, 1988","University of Louisville, University of Texas at El Paso",6-9,Derrick Caracter,F,/players/c/caracde01.html,275,0.0,,0.0,.485,.485,0.8,1.6,.739,0.4,0.6,41,2.0,0.2,.313,0.1,,7.1,.563,4.0,.628,3.6,2.2,79,10.3
617,1969,1973,"December 28, 1944",South Carolina State University,6-7,Frank Card,F,/players/c/cardfr01.html,195,0.1,.176,0.0,.461,.461,3.6,7.9,.632,2.2,3.4,306,9.5,,,,,,,,,,,,
618,2001,2012,"May 2, 1977",Purdue University,6-8,Brian Cardinal,F,/players/c/cardibr01.html,245,1.4,.372,0.5,.482,.408,1.5,3.6,.861,1.2,1.4,456,4.6,2.7,.365,1.0,,8.1,.461,3.8,.761,4.6,3.5,132,12.0
619,1962,1962,"June 7, 1938",DePaul University,5-9,Howie Carl,G,/players/c/carlho01.html,160,,,,,.333,2.2,6.5,.706,1.2,1.6,31,5.5,,,,,,,,,,,,
620,1947,1947,"November 2, 1916",University of California,6-5,Chet Carlisle,F-C,/players/c/carlich01.html,195,,,,,.268,2.0,7.3,.609,1.1,1.8,51,5.0,,,,,,,,,,,,
621,2005,2005,"August 13, 1976","Northwestern University, University of California",6-3,Geno Carlisle,G,/players/c/carlige01.html,180,0.0,,0.0,.667,.667,0.3,0.5,.667,0.7,1.0,6,1.3,5.2,.346,1.8,,13.4,.396,5.3,.766,5.0,3.8,108,16.3
622,1985,1990,"October 27, 1959","University of Maine, University of Virginia",6-5,Rick Carlisle,G,/players/c/carliri01.html,210,0.3,.229,0.1,.435,.422,0.9,2.2,.775,0.3,0.4,188,2.2,,,,,9.1,.532,4.9,.801,3.4,2.8,123,12.5
623,1969,1969,"March 3, 1944",Otterbein College,6-5,Don Carlos,G-F,/players/c/carlodo01.html,210,0.1,.000,0.0,.410,.410,3.7,9.0,.756,3.8,5.1,56,11.2,,,,,,,,,,,,
624,1976,1976,"September 17, 1951",University of Oregon,6-11,Al Carlson,C,/players/c/carlsal01.html,235,,,,,.342,1.0,2.8,.621,0.6,1.0,28,2.6,,,,,,,,,,,,
625,1947,1951,"March 22, 1919",University of Minnesota,6-0,Don Carlson,G-F,/players/c/carlsdo01.html,170,,,,,.330,3.3,10.1,.623,1.4,2.2,180,8.0,,,,,,,,,,,,
626,1955,1955,"August 3, 1932",Bradley University,6-3,Bob Carney,G,/players/c/carnebo01.html,170,,,,,.375,1.3,3.4,.525,1.1,2.1,19,3.6,,,,,,,,,,,,
627,2007,2011,"April 15, 1984",University of Memphis,6-7,Rodney Carney,F,/players/c/carnero01.html,205,2.0,.338,0.7,.485,.422,2.3,5.3,.704,0.8,1.1,299,5.9,6.0,.362,2.2,,11.9,.415,5.0,.717,3.1,2.2,133,14.3
628,1950,1951,"November 6, 1917",East Texas State University,6-5,Bob Carpenter,F-C,/players/c/carpebo01.html,200,,,,,.337,2.6,7.8,.768,2.4,3.1,122,7.7,,,,,,,,,,,,
629,1985,2000,"July 23, 1961",Wichita State University,6-9,Antoine Carr,F-C,/players/c/carran01.html,225,0.0,.130,0.0,.503,.503,3.7,7.4,.780,1.9,2.4,987,9.3,0.2,.600,0.1,,12.2,.557,6.8,.746,4.6,3.4,112,17.0
630,1972,1981,"March 10, 1948",University of Notre Dame,6-4,Austin Carr,G,/players/c/carrau01.html,200,0.1,.154,0.0,.449,.449,6.4,14.2,.804,2.6,3.2,682,15.4,,,,,26.0,.528,13.7,.814,8.7,7.1,74,34.6
631,1996,2001,"March 12, 1974",Southern Illinois University,6-5,Chris Carr,G,/players/c/carrch01.html,207,1.6,.338,0.5,.462,.416,2.5,5.9,.807,1.2,1.5,297,6.7,1.9,.358,0.7,,9.8,.503,4.9,.761,3.8,2.9,93,13.5
632,1999,1999,"December 5, 1975",Texas Tech University,6-3,Cory Carr,G,/players/c/carrco01.html,210,0.7,.167,0.1,.340,.329,1.7,5.1,.750,0.6,0.8,42,4.1,6.2,.366,2.3,,12.8,.428,5.5,.797,4.2,3.3,115,16.6
633,1978,1987,"August 15, 1955",North Carolina State University,6-7,Kenny Carr,F,/players/c/carrke01.html,220,0.1,.079,0.0,.510,.510,4.5,8.9,.684,2.5,3.7,674,11.6,,,,,16.0,.516,8.3,.681,6.0,4.1,86,20.6
634,1976,1985,"January 9, 1951",Guilford College,6-6,M.L. Carr,F-G,/players/c/carrml01.html,205,0.4,.275,0.1,.476,.472,4.0,8.5,.737,1.9,2.6,678,10.0,,,,,,,,,,,,
635,1968,1973,"October 26, 1940",Western Kentucky University,6-3,Darel Carrier,G,/players/c/carrida01.html,185,3.0,.377,1.1,.451,.417,7.0,16.8,.851,4.9,5.8,350,20.0,,,,,,,,,,,,
636,1978,1980,"July 3, 1953",Boston College,6-6,Bob Carrington,G-F,/players/c/carribo01.html,195,0.2,.000,0.0,.428,.428,3.3,7.6,.760,1.7,2.2,82,8.2,,,,,16.0,.517,8.3,.672,4.6,3.1,94,19.7
637,2010,2018,"July 27, 1986","Vanderbilt University, University of Missouri",6-8,DeMarre Carroll,F,/players/c/carrode01.html,215,3.1,.364,1.1,.512,.436,3.2,7.3,.738,1.4,1.9,487,8.9,0.7,.281,0.2,,8.4,.535,4.5,.603,3.5,2.1,134,11.2
638,1981,1991,"July 24, 1958",Purdue University,7-0,Joe Barry Carroll,C-F,/players/c/carrojo01.html,225,0.0,.000,0.0,.474,.474,7.1,15.0,.747,3.4,4.6,705,17.7,,,,,13.0,.546,7.1,.651,5.3,3.5,123,17.7
639,2004,2013,"August 28, 1980",University of Notre Dame,6-6,Matt Carroll,G,/players/c/carroma01.html,212,2.0,.384,0.7,.482,.413,2.2,5.4,.841,1.3,1.6,459,6.6,5.7,.395,2.3,,10.6,.445,4.7,.825,2.7,2.2,133,13.9
640,1997,1997,"November 4, 1969",Virginia Polytechnic Institute and State University,6-10,Jimmy Carruth,C-F,/players/c/carruji01.html,265,0.0,,0.0,.667,.667,0.5,0.8,1.000,0.3,0.3,4,1.3,0.0,,0.0,,3.5,.455,1.6,.452,1.9,0.9,103,4.0
641,2000,2012,"June 16, 1975",University of Hawaii,6-1,Anthony Carter,G,/players/c/cartean01.html,190,0.7,.250,0.2,.423,.404,2.0,4.9,.706,0.7,1.0,623,4.8,3.4,.330,1.1,,14.6,.474,6.9,.714,4.8,3.4,58,18.4
642,1981,1986,"June 11, 1958",Indiana University,6-5,Butch Carter,G,/players/c/cartebu01.html,180,0.5,.307,0.1,.485,.475,3.6,7.5,.788,1.4,1.8,361,8.7,,,,,5.1,.511,2.6,.728,2.0,1.4,114,6.6
643,1970,1977,"February 14, 1945",Mount St. Mary's University,6-3,Fred Carter,G-F,/players/c/cartefr01.html,185,,,,,.425,6.4,15.1,.693,2.4,3.4,611,15.2,,,,,,,,,,,,
644,1968,1976,"January 10, 1944",St. Bonaventure University,6-4,George Carter,F-G,/players/c/cartege01.html,210,0.3,.301,0.1,.449,.445,6.8,15.3,.813,4.4,5.4,479,18.1,,,,,,,,,,,,
645,1984,1985,"October 26, 1961",Louisiana State University,6-5,Howard Carter,G,/players/c/carteho01.html,215,0.3,.227,0.1,.447,.440,2.3,5.1,.774,0.7,0.9,66,5.3,,,,,12.7,.495,6.3,.789,3.3,2.6,128,15.2
646,1950,1950,"July 25, 1924",East Texas State University,6-4,Jake Carter,F-C,/players/c/carteja01.html,195,,,,,.307,1.0,3.1,.679,1.5,2.2,24,3.4,,,,,,,,,,,,
647,2004,2004,"October 12, 1976",Louisiana State University,6-5,Maurice Carter,G,/players/c/cartema01.html,210,1.1,.364,0.4,.371,.314,1.1,3.5,.800,1.6,2.0,10,4.2,4.1,.354,1.5,,10.1,.415,4.2,.688,3.1,2.1,108,12.0
648,1981,1982,"October 10, 1957","University of Hawaii, St. John's University",6-3,Reggie Carter,G,/players/c/cartere01.html,175,0.0,.000,0.0,.388,.388,1.3,3.4,.772,0.9,1.1,135,3.5,,,,,11.9,.472,5.6,.816,4.6,3.8,100,15.1
649,1979,1980,"August 31, 1956",Virginia Military Institute,6-5,Ron Carter,G,/players/c/cartero01.html,190,0.0,,0.0,.429,.429,1.2,2.7,.623,0.6,1.0,59,3.0,,,,,14.5,.518,7.5,.727,5.8,4.2,116,19.2
650,1999,2018,"January 26, 1977",University of North Carolina,6-6,Vince Carter,G-F,/players/c/cartevi01.html,220,4.0,.373,1.5,.488,.437,6.4,14.7,.799,3.4,4.3,1403,17.7,2.6,.368,1.0,,8.5,.547,4.7,.705,2.8,2.0,103,12.3
651,2014,2018,"October 10, 1991",Syracuse University,6-6,Michael Carter-Williams,G,/players/c/cartemi01.html,190,1.9,.250,0.5,.424,.402,4.3,10.7,.707,2.4,3.4,287,11.5,2.1,.307,0.6,,6.8,.398,2.7,.679,3.2,2.2,66,8.2
652,1980,1995,"July 30, 1957",University of San Francisco,7-1,Bill Cartwright,C,/players/c/cartwbi01.html,245,0.0,.000,0.0,.525,.525,4.8,9.2,.771,3.5,4.6,963,13.2,,,,,12.7,.589,7.5,.734,5.6,4.1,111,19.1
653,1969,1969,"July 4, 1941",Oregon State University,6-8,Jay Carty,F,/players/c/cartyja01.html,220,,,,,.382,1.2,3.2,.727,0.3,0.4,28,2.7,,,,,,,,,,,,
654,2018,2018,"February 28, 1994",Texas A&M University,6-5,Alex Caruso,G,/players/c/carusal01.html,186,1.0,.257,0.3,.479,.433,1.2,2.8,.708,0.5,0.7,35,3.1,2.0,.340,0.7,,6.1,.455,2.8,.685,2.5,1.7,137,8.0
655,1977,1977,"March 3, 1952",Bowling Green State University,6-8,Cornelius Cash,F,/players/c/cashco01.html,215,,,,,.391,1.5,3.8,.500,0.5,1.0,6,3.5,,,,,,,,,,,,
656,1973,1973,"November 13, 1950","University of California, Riverside",6-8,Sam Cash,F,/players/c/cashsa01.html,230,0.0,,0.0,.222,.222,0.6,2.6,.706,1.7,2.4,7,2.9,,,,,,,,,,,,
657,1994,2008,"November 18, 1969",Florida State University,6-3,Sam Cassell,G,/players/c/cassesa01.html,185,2.0,.331,0.7,.480,.454,5.7,12.6,.861,3.6,4.2,993,15.7,4.5,.366,1.6,,13.9,.478,6.7,.734,4.6,3.4,66,18.3
658,2010,2018,"June 22, 1988",,6-9,Omri Casspi,F,/players/c/casspom01.html,225,2.3,.369,0.9,.517,.451,3.0,6.6,.678,1.2,1.8,552,8.0,,,,,,,,,,,,
659,1975,1985,"September 2, 1951",Hardin-Simmons University,6-9,Harvey Catchings,C-F,/players/c/catchha01.html,218,0.0,.000,0.0,.435,.435,1.3,2.9,.647,0.7,1.0,725,3.2,,,,,,,,,,,,
660,1986,1993,"August 22, 1963",University of South Alabama,6-8,Terry Catledge,F,/players/c/catlete01.html,220,0.1,.094,0.0,.485,.485,5.0,10.3,.654,2.7,4.1,515,12.7,0.0,,0.0,,15.1,.556,8.4,.663,7.4,4.9,86,21.7
661,1972,1972,"April 18, 1948",University of Notre Dame,6-6,Sid Catlett,F,/players/c/catlesi01.html,230,,,,,.222,0.2,1.0,.222,0.2,1.0,9,0.7,,,,,,,,,,,,
662,1998,2007,"August 26, 1974","University of South Alabama, Iowa State University",6-11,Kelvin Cato,C,/players/c/catoke01.html,255,0.0,.077,0.0,.507,.507,2.1,4.1,.644,1.3,2.0,541,5.5,0.0,.000,0.0,,7.9,.434,3.4,.584,3.8,2.2,79,9.1
663,1982,1986,"August 17, 1958",Auburn University,6-9,Bobby Cattage,F,/players/c/cattabo01.html,250,0.1,.143,0.0,.406,.404,1.1,2.8,.765,0.8,1.1,78,3.1,,,,,8.4,.470,3.9,.698,2.2,1.6,104,9.4
664,2016,2018,"August 18, 1993",University of Kentucky,7-0,Willie Cauley-Stein,F-C,/players/c/caulewi01.html,240,0.1,.188,0.0,.523,.522,3.8,7.4,.640,1.5,2.4,212,9.2,0.0,,0.0,,5.6,.593,3.3,.508,2.8,1.4,105,8.0
665,1991,2001,"May 31, 1968",Temple University,7-0,Duane Causwell,C,/players/c/causwdu01.html,240,0.0,.286,0.0,.508,.507,1.9,3.8,.618,1.1,1.8,541,4.9,0.0,.000,0.0,,5.5,.504,2.8,.624,2.7,1.7,75,7.2
666,2018,2018,"February 9, 1994",George Washington University,6-9,Tyler Cavanaugh,F,/players/c/cavanty01.html,239,2.3,.360,0.8,.546,.441,1.7,3.9,.810,0.4,0.5,39,4.7,3.0,.372,1.1,,8.9,.446,4.0,.820,4.3,3.5,137,12.6
667,1985,1989,"April 30, 1959",Texas Southern University,7-1,Ron Cavenall,C,/players/c/cavenro01.html,230,0.0,,0.0,.337,.337,0.5,1.5,.545,0.4,0.8,58,1.4,,,,,4.9,.486,2.4,.557,1.4,0.8,95,5.5
668,1991,2001,"August 2, 1969","California State University, Fullerton",6-6,Cedric Ceballos,F,/players/c/cebalce01.html,190,1.2,.309,0.4,.518,.500,5.6,11.2,.753,2.7,3.6,609,14.3,2.7,.305,0.8,,18.2,.463,8.4,.671,6.7,4.5,58,22.1
669,2000,2000,"March 6, 1977",Villanova University,6-4,John Celestand,G,/players/c/celesjo01.html,178,0.6,.222,0.1,.356,.333,0.9,2.8,.833,0.3,0.4,16,2.3,3.5,.330,1.2,,8.3,.410,3.4,.731,2.7,2.0,124,9.9
670,1950,1953,"February 12, 1917",,5-11,Al Cervi,G-F,/players/c/cervial01.html,170,,,,,.359,2.0,5.6,.839,3.9,4.6,202,7.9,,,,,,,,,,,,
671,2005,2005,"November 10, 1980",Xavier University,6-0,Lionel Chalmers,G,/players/c/chalmli01.html,180,1.4,.245,0.3,.384,.336,1.2,3.5,.625,0.4,0.7,36,3.1,5.1,.372,1.9,,9.8,.425,4.2,.716,3.4,2.4,123,12.7
672,2009,2018,"May 19, 1986",University of Kansas,6-2,Mario Chalmers,G,/players/c/chalmma01.html,190,3.3,.351,1.2,.498,.417,3.0,7.2,.792,1.7,2.2,644,8.9,3.9,.419,1.6,,8.3,.486,4.0,.767,3.2,2.5,110,12.2
673,1973,1974,"December 16, 1949",University of North Carolina,6-6,Bill Chamberlain,F,/players/c/chambbi01.html,188,0.2,.250,0.0,.413,.410,2.2,5.3,.652,1.0,1.5,78,5.3,,,,,,,,,,,,
674,1960,1973,"August 21, 1936",University of Kansas,7-1,Wilt Chamberlain,C,/players/c/chambwi01.html,275,,,,,.540,12.1,22.5,.511,5.8,11.4,1045,30.1,,,,,22.3,.470,10.5,.619,14.4,8.9,48,29.9
675,1967,1974,"July 18, 1943",University of Utah,6-5,Jerry Chambers,F,/players/c/chambje01.html,185,0.1,.200,0.0,.440,.440,3.5,7.9,.774,1.4,1.8,320,8.3,,,,,,,,,,,,
676,1982,1998,"June 21, 1959",University of Utah,6-10,Tom Chambers,F-C,/players/c/chambto01.html,220,0.7,.307,0.2,.476,.468,6.7,14.2,.807,4.6,5.7,1107,18.1,,,,,10.8,.553,6.0,.665,4.1,2.7,116,14.6
677,1989,1989,"April 5, 1964",Gonzaga University,6-10,Mike Champion,F,/players/c/champmi01.html,230,0.5,.000,0.0,.000,.000,0.0,1.5,,0.0,0.0,2,0.0,0.1,.000,0.0,,3.7,.440,1.6,.647,1.1,0.7,96,3.9
678,2002,2018,"October 2, 1982",,7-1,Tyson Chandler,C,/players/c/chandty01.html,240,0.0,.000,0.0,.596,.596,3.2,5.4,.646,2.2,3.4,1079,8.6,,,,,,,,,,,,
679,2008,2018,"May 10, 1987",DePaul University,6-8,Wilson Chandler,F,/players/c/chandwi01.html,225,3.9,.341,1.3,.501,.445,5.2,11.8,.769,1.7,2.2,588,13.5,2.6,.303,0.8,,11.4,.445,5.1,.659,3.0,2.0,59,12.9
680,1969,1980,"March 22, 1946",University of Houston,6-5,Don Chaney,G,/players/c/chanedo01.html,210,0.1,.200,0.0,.437,.436,3.4,7.8,.776,1.6,2.0,790,8.4,,,,,12.5,.438,5.5,.634,2.6,1.7,90,12.6
681,1950,1950,"February 29, 1920",Louisiana State University,6-3,John Chaney,F-C,/players/c/chanejo01.html,185,,,,,.291,1.6,5.4,.690,1.3,1.8,16,4.4,,,,,,,,,,,,
682,1989,2000,"October 5, 1967",University of Kentucky,6-4,Rex Chapman,G,/players/c/chapmre01.html,185,3.5,.350,1.2,.477,.430,5.6,13.0,.800,2.2,2.8,666,14.6,5.5,.400,2.2,,14.0,.475,6.6,.771,2.8,2.1,61,17.6
683,1969,1972,"June 15, 1945",Western Kentucky University,6-6,Wayne Chapman,G-F,/players/c/chapmwa01.html,190,0.5,.257,0.1,.393,.383,2.7,7.0,.691,1.5,2.1,206,7.0,,,,,,,,,,,,
684,1963,1972,"January 31, 1941",Wake Forest University,6-8,Len Chappell,F-C,/players/c/chapple01.html,240,0.0,,0.0,.452,.452,3.6,8.1,.697,2.0,2.9,670,9.3,,,,,,,,,,,,
685,1974,1978,"July 10, 1951",Fordham University,6-3,Ken Charles,G,/players/c/charlke01.html,180,,,,,.441,3.4,7.6,.789,1.8,2.3,322,8.5,,,,,,,,,,,,
686,1986,1986,"November 25, 1963",North Carolina State University,6-7,Lorenzo Charles,F,/players/c/charllo01.html,225,0.0,,0.0,.557,.557,1.4,2.4,.667,0.7,1.0,36,3.4,,,,,8.4,.553,4.6,.703,4.2,2.9,126,12.2
687,1994,2006,"July 17, 1971",Indiana University,6-7,Calbert Cheaney,G-F,/players/c/cheanca01.html,209,0.8,.298,0.2,.480,.466,4.1,8.8,.691,1.1,1.6,825,9.5,2.6,.438,1.1,,13.8,.559,7.7,.790,4.1,3.3,132,19.8
688,1979,1993,"September 8, 1956",West Texas A&M University,6-1,Maurice Cheeks,G,/players/c/cheekma01.html,180,0.2,.255,0.1,.526,.523,4.5,8.5,.793,2.1,2.7,1101,11.1,,,,,7.6,.568,4.3,.678,4.3,2.9,106,11.6
689,1972,1981,"October 30, 1950",University of California,6-3,Phil Chenier,G,/players/c/cheniph01.html,180,0.3,.400,0.1,.445,.444,7.1,16.0,.806,2.9,3.6,578,17.2,,,,,13.7,.412,5.6,.683,3.3,2.2,51,13.5
690,2015,2015,"February 8, 1991",University of Montana,6-0,Will Cherry,G,/players/c/cherrwi01.html,185,1.1,.222,0.3,.316,.263,0.6,2.4,.500,0.4,0.8,8,1.9,3.1,.285,0.9,,9.8,.430,4.2,.718,4.9,3.5,116,12.8
691,1989,1991,"July 3, 1967",University of Missouri,6-7,Derrick Chievous,F,/players/c/chievde01.html,195,0.2,.242,0.1,.448,.443,2.6,5.8,.755,1.8,2.4,154,7.1,1.0,.455,0.5,,13.2,.522,6.9,.793,7.4,5.9,130,19.8
692,1992,2000,"September 14, 1968",University of North Carolina,6-10,Pete Chilcutt,F-C,/players/c/chilcpe01.html,230,0.8,.381,0.3,.481,.441,1.8,4.1,.696,0.4,0.5,584,4.3,0.4,.345,0.1,,6.5,.534,3.5,.710,1.7,1.2,140,8.2
693,2005,2014,"June 20, 1983",Stanford University,6-8,Josh Childress,G-F,/players/c/childjo01.html,210,0.8,.329,0.3,.542,.522,3.4,6.6,.779,2.0,2.5,391,9.1,3.6,.335,1.2,,10.2,.438,4.5,.755,2.8,2.2,86,12.3
694,1996,1997,"September 21, 1972",Wake Forest University,6-2,Randolph Childress,G,/players/c/childra01.html,188,1.3,.273,0.4,.403,.328,0.8,2.3,.800,0.5,0.7,51,2.4,6.9,.395,2.7,,12.1,.446,5.4,.804,6.0,4.9,120,18.4
695,1995,2003,"November 20, 1967",Boise State University,6-3,Chris Childs,G,/players/c/childch01.html,195,2.0,.344,0.7,.461,.403,2.4,5.9,.816,1.4,1.7,541,6.9,3.3,.422,1.4,,10.3,.443,4.6,.818,3.7,3.0,118,13.6
696,1950,1951,"March 5, 1925",Canisius College,6-2,Leroy Chollet,F,/players/c/chollle01.html,190,,,,,.291,1.1,3.7,.627,0.7,1.2,63,2.9,,,,,,,4.1,,,4.4,25,12.7
697,1973,1982,"November 30, 1949",Marquette University,6-11,Jim Chones,C-F,/players/c/choneji01.html,220,0.0,.000,0.0,.478,.478,5.3,11.2,.680,1.8,2.6,788,12.5,,,,,15.0,.547,8.2,.606,4.4,2.6,50,19.0
698,2017,2018,"July 2, 1997",University of Washington,6-10,Marquese Chriss,F,/players/c/chrisma01.html,233,2.7,.309,0.8,.496,.438,3.2,7.2,.617,1.4,2.2,154,8.5,1.8,.350,0.6,,9.9,.530,5.3,.682,3.8,2.6,34,13.7
699,1955,1955,"August 6, 1930",Fordham University,6-4,Fred Christ,G,/players/c/chrisfr01.html,210,,,,,.278,0.8,3.0,.909,1.7,1.8,6,3.3,,,,,,,,,,,,
700,1951,1955,"June 6, 1927",University of Toledo,6-5,Cal Christensen,F-C,/players/c/chrisca01.html,210,,,,,.330,1.7,5.1,.606,1.8,3.0,291,5.2,,,,,,,,,,,,
701,1970,1974,"May 11, 1946",Grambling State University,6-10,Bob Christian,C,/players/c/chrisbo01.html,255,0.0,,0.0,.485,.485,1.4,2.9,.704,1.0,1.4,248,3.8,,,,,,,,,,,,
702,1993,2007,"May 9, 1970",Pepperdine University,6-6,Doug Christie,G-F,/players/c/chrisdo01.html,200,2.7,.354,1.0,.479,.426,3.9,9.2,.821,2.4,3.0,827,11.2,2.7,.297,0.8,,11.7,.473,5.6,.747,5.5,4.1,87,16.0
703,2014,2014,"September 15, 1986",Temple University,6-5,Dionte Christmas,G,/players/c/chrisdi01.html,205,1.0,.290,0.3,.427,.355,0.7,2.0,.750,0.6,0.8,31,2.3,6.8,.360,2.5,,11.8,.426,5.0,.778,4.2,3.2,130,15.7
704,2016,2017,"December 1, 1991",Syracuse University,6-9,Rakeem Christmas,F,/players/c/chrisra01.html,250,0.0,,0.0,.467,.467,0.7,1.5,.724,0.7,1.0,30,2.1,0.0,.000,0.0,,5.1,.560,2.9,.681,2.4,1.6,142,7.4
705,2017,2017,"November 1, 1992",Xavier University,6-3,Semaj Christon,G,/players/c/chrisse01.html,190,1.0,.190,0.2,.372,.345,1.2,3.5,.548,0.3,0.5,64,2.9,1.2,.338,0.4,,12.3,.462,5.7,.670,6.6,4.4,64,16.2
706,2015,2015,"June 3, 1988",University of California,6-5,Patrick Christopher,G-F,/players/c/chrispa01.html,209,1.0,.000,0.0,.250,.250,0.8,3.0,,0.0,0.0,4,1.5,3.6,.342,1.2,,10.6,.450,4.8,.816,2.4,1.9,134,12.7
707,1968,1970,"February 8, 1944",University of Rhode Island,6-2,Stephen Chubin,G,/players/c/chubist01.html,200,0.2,.196,0.0,.401,.398,4.0,10.1,.820,4.8,5.8,226,12.8,,,,,,,,,,,,
708,1996,1996,"February 20, 1972",Georgetown University,6-6,Robert Churchwell,G-F,/players/c/churcro01.html,195,0.0,,0.0,.375,.375,0.8,2.0,,0.0,0.0,4,1.5,1.0,.369,0.4,,8.7,.444,3.9,.716,2.3,1.7,128,9.8
709,1967,1976,"July 15, 1941",University of Minnesota,6-2,Archie Clark,G,/players/c/clarkar01.html,175,,,,,.480,6.5,13.5,.769,3.4,4.4,725,16.3,,,,,,,,,,,,
710,1984,1985,"August 10, 1960",University of Mississippi,6-4,Carlos Clark,G,/players/c/clarkca01.html,210,0.1,.000,0.0,.407,.407,0.9,2.2,.803,0.6,0.8,93,2.4,,,,,11.0,.547,6.0,.791,4.3,3.4,118,15.4
711,2010,2015,"January 17, 1988",University of Louisville,6-10,Earl Clark,F,/players/c/clarkea01.html,225,1.0,.328,0.3,.439,.403,1.7,4.3,.664,0.6,0.9,261,4.4,1.8,.298,0.5,,8.6,.467,4.0,.640,3.2,2.0,104,10.6
712,2014,2018,"March 7, 1991",Belmont University,6-3,Ian Clark,G,/players/c/clarkia01.html,175,1.8,.344,0.6,.521,.452,2.1,4.6,.784,0.5,0.6,268,5.3,6.0,.425,2.6,,10.6,.484,5.1,.810,2.0,1.6,133,14.4
713,1999,2004,"April 16, 1975","University of Nevada, Las Vegas",6-11,Keon Clark,F-C,/players/c/clarkke01.html,220,0.1,.053,0.0,.500,.500,3.3,6.7,.645,1.5,2.3,353,8.2,0.7,.370,0.3,,10.4,.554,5.8,.638,4.7,3.0,39,14.8
714,1968,1969,"January 5, 1944",Eastern Kentucky University,6-4,Richard Clark,G,/players/c/clarkri01.html,190,0.3,.056,0.0,.297,.296,1.9,6.4,.675,2.4,3.5,58,6.2,,,,,,,,,,,,
715,2016,2016,"July 4, 1992",University of Arkansas,6-7,Coty Clarke,F,/players/c/clarkco01.html,232,0.7,1.000,0.7,.750,.500,0.7,1.3,,0.0,0.0,3,2.0,1.2,.442,0.5,,5.9,.469,2.8,.777,3.2,2.5,65,8.6
716,2015,2018,"June 7, 1992","University of Tulsa, University of Missouri",6-5,Jordan Clarkson,G,/players/c/clarkjo01.html,194,3.7,.337,1.3,.494,.443,5.5,12.4,.806,1.9,2.4,299,14.2,3.2,.322,1.0,,11.6,.440,5.1,.805,5.2,4.2,93,15.4
717,2018,2018,"November 26, 1993",Colorado State University,6-4,Gian Clavell,G,/players/c/clavegi01.html,185,2.1,.400,0.9,.500,.333,0.9,2.6,1.000,0.3,0.3,7,2.9,5.9,.362,2.1,,11.9,.418,5.0,.698,4.4,3.1,70,15.2
718,2013,2015,"August 30, 1988",,6-9,Victor Claver,F,/players/c/clavevi01.html,224,1.5,.293,0.4,.466,.398,1.3,3.1,.585,0.3,0.5,80,3.2,,,,,,,,,,,,
719,1969,1969,"May 15, 1944",University of Michigan,6-4,John Clawson,F,/players/c/clawsjo01.html,200,0.0,,0.0,.476,.476,2.1,4.4,.685,0.5,0.8,70,4.7,,,,,,,,,,,,
720,1996,1996,"December 13, 1970",University of Georgia,7-0,Charles Claxton,C,/players/c/claxtch01.html,265,0.0,,0.0,.500,.500,0.3,0.7,.000,0.0,0.7,3,0.7,0.1,.300,0.0,,7.9,.542,4.3,.493,4.8,2.4,116,11.0
721,2002,2009,"May 8, 1978",Hofstra University,5-11,Speedy Claxton,G,/players/c/claxtsp01.html,166,0.7,.193,0.1,.417,.409,3.4,8.2,.762,2.4,3.2,334,9.3,1.7,.322,0.5,,12.6,.468,5.9,.748,6.1,4.5,119,16.9
722,1972,1980,"September 13, 1949",Ohio State University,6-3,Jim Cleamons,G,/players/c/cleamji01.html,185,0.4,.226,0.1,.461,.460,3.4,7.5,.765,1.4,1.8,652,8.3,,,,,12.9,.542,7.0,.761,5.9,4.5,72,18.5
723,2001,2006,"September 7, 1977",Michigan State University,6-2,Mateen Cleaves,G,/players/c/cleavma01.html,205,0.3,.267,0.1,.399,.389,1.4,3.6,.728,0.8,1.1,167,3.6,3.7,.313,1.2,,10.8,.406,4.4,.738,3.5,2.6,123,12.5
724,1966,1976,"May 1, 1943",Ohio Wesleyan University,6-6,Barry Clemens,F,/players/c/clemeba01.html,210,,,,,.454,2.9,6.3,.756,1.0,1.3,790,6.7,,,,,,,,,,,,
725,2018,2018,"February 2, 1994",Southeast Missouri State University,6-6,Antonius Cleveland,G,/players/c/clevean01.html,195,0.2,.667,0.1,.368,.316,0.4,1.2,.667,0.3,0.4,16,1.1,1.8,.288,0.5,,9.8,.494,4.8,.612,4.4,2.7,121,12.9
726,1951,1958,"October 13, 1922",Xavier University of Louisiana,6-6,Nat Clifton,C-F,/players/c/cliftna01.html,220,,,,,.361,3.8,10.6,.633,2.4,3.7,544,10.0,,,,,,,,,,,,
727,1950,1952,"January 8, 1922",Rice University,6-5,Bill Closs,F-C,/players/c/clossbi01.html,195,,,,,.315,3.3,10.3,.718,2.5,3.4,186,9.0,,,,,,,,,,,,
728,1998,2000,"April 3, 1976",Central Connecticut State University,7-3,Keith Closs,C,/players/c/closske01.html,212,0.0,.000,0.0,.471,.471,1.5,3.3,.606,0.8,1.3,130,3.9,0.6,.233,0.1,,8.9,.533,4.7,.601,3.9,2.3,54,11.9
729,1950,1950,"June 13, 1920",University of Wisconsin,6-2,Paul Cloyd,G-F,/players/c/cloydpa01.html,180,,,,,.269,1.0,3.7,.625,0.7,1.1,7,2.7,,,,,,,,,,,,
730,1947,1947,"September 18, 1917",University of Kentucky,6-10,Bob Cluggish,C,/players/c/cluggbo01.html,235,,,,,.261,1.7,6.6,.571,1.0,1.7,54,4.4,,,,,,,,,,,,
731,1975,1975,"June 10, 1951",Florida State University,6-7,Ben Clyde,F,/players/c/clydebe01.html,198,,,,,.431,1.2,2.9,.778,0.3,0.4,25,2.8,,,,,,,,,,,,
732,1991,1991,"September 2, 1965",University of Minnesota,6-6,Richard Coffey,F,/players/c/cofferi01.html,212,0.0,.000,0.0,.373,.373,0.5,1.4,.545,0.2,0.4,52,1.3,0.0,.000,0.0,,6.8,.516,3.5,.635,1.8,1.2,109,8.2
733,1986,1987,"January 4, 1962","University of Oregon, Eastern Michigan University",6-3,Fred Cofield,G,/players/c/cofiefr01.html,190,0.3,.188,0.1,.403,.395,1.5,3.9,.600,0.2,0.4,50,3.4,,,,,13.2,.471,6.2,.801,2.9,2.3,106,14.7
734,1996,2001,"October 28, 1971",Boise State University,7-0,John Coker,C,/players/c/cokerjo01.html,253,0.0,,0.0,.409,.409,0.7,1.8,.833,0.2,0.2,25,1.6,0.0,,0.0,,9.5,.551,5.2,.592,3.1,1.8,84,12.3
735,2012,2017,"October 13, 1988",Cleveland State University,6-2,Norris Cole,G,/players/c/coleno01.html,175,1.8,.324,0.6,.449,.407,2.8,6.9,.743,0.8,1.1,360,7.0,3.1,.321,1.0,,11.1,.435,4.8,.826,4.2,3.5,140,14.1
736,1987,1994,"November 14, 1961","University of Minnesota, University of Maryland",6-9,Ben Coleman,F,/players/c/colembe01.html,235,0.0,.000,0.0,.516,.516,2.6,5.0,.759,1.4,1.9,227,6.6,,,,,8.5,.548,4.7,.674,3.2,2.1,102,11.5
737,1991,2005,"June 21, 1967",Syracuse University,6-10,Derrick Coleman,F,/players/c/colemde01.html,230,1.4,.295,0.4,.462,.447,5.9,13.2,.769,4.3,5.5,781,16.5,0.4,.291,0.1,,9.5,.568,5.4,.684,6.0,4.1,143,15.0
738,1974,1979,"September 25, 1950",Houston Baptist University,6-8,E.C. Coleman,F,/players/c/colemec01.html,225,,,,,.464,3.1,6.7,.694,1.0,1.4,357,7.2,,,,,,,,,,,,
739,1950,1958,"May 23, 1924",University of Louisville,6-7,Jack Coleman,F-C,/players/c/colemja01.html,195,,,,,.416,4.4,10.7,.695,1.7,2.5,633,10.6,,,,,,,,,,,,
740,1988,1988,"September 27, 1961",Kansas State University,6-8,Norris Coleman,F,/players/c/colemno01.html,210,0.1,.500,0.0,.348,.346,2.3,6.6,.556,0.7,1.2,29,5.3,0.7,.077,0.1,,16.9,.515,8.7,.747,5.3,4.0,47,21.3
741,1991,2004,"April 22, 1968",Virginia Polytechnic Institute and State University,6-1,Bimbo Coles,G,/players/c/colesbi01.html,180,1.1,.267,0.3,.447,.425,3.0,7.0,.811,1.5,1.8,852,7.8,4.0,.324,1.3,,17.6,.429,7.6,.748,6.9,5.2,115,21.6
742,2001,2005,"September 8, 1977","Indiana University, Georgia Institute of Technology",7-0,Jason Collier,C,/players/c/collija02.html,260,0.1,.350,0.0,.460,.455,2.2,4.9,.738,1.0,1.4,151,5.6,1.9,.369,0.7,,10.8,.458,4.9,.711,4.6,3.3,97,13.9
743,1981,1981,"April 14, 1954",St. Thomas University,6-4,Art Collins,G,/players/c/colliar01.html,185,0.1,.000,0.0,.354,.354,1.2,3.4,.667,0.8,1.2,29,3.2,,,,,,,,,,,,
744,1981,1987,"November 28, 1958",Washington State University,6-6,Don Collins,F-G,/players/c/collido02.html,190,0.1,.069,0.0,.485,.485,4.1,8.4,.749,1.7,2.3,303,9.8,,,,,10.3,.560,5.8,.772,4.1,3.2,106,14.7
745,1974,1981,"July 28, 1951",Illinois State University,6-6,Doug Collins,G-F,/players/c/collido01.html,180,0.0,.000,0.0,.501,.501,7.1,14.1,.833,3.8,4.5,415,17.9,,,,,16.5,.704,11.6,.823,7.1,5.9,77,29.1
746,1998,1998,"November 5, 1973",Florida State University,6-4,James Collins,G,/players/c/collija01.html,196,0.9,.450,0.4,.464,.382,0.9,2.4,.571,0.3,0.6,23,2.6,6.1,.372,2.3,,12.8,.450,5.8,.679,3.3,2.2,112,16.0
747,2002,2011,"December 2, 1978",Stanford University,6-11,Jarron Collins,F-C,/players/c/collija03.html,255,0.0,.000,0.0,.455,.455,1.3,2.8,.699,1.3,1.9,542,3.9,0.1,.250,0.0,,5.5,.520,2.9,.669,3.9,2.6,129,8.4
748,2002,2014,"December 2, 1978",Stanford University,7-0,Jason Collins,C,/players/c/collija04.html,255,0.0,.206,0.0,.412,.411,1.2,3.0,.647,1.1,1.6,735,3.6,0.4,.444,0.2,,5.9,.612,3.6,.716,4.8,3.4,73,10.8
749,1971,1972,"November 24, 1946",New Mexico State University,6-2,Jimmy Collins,G,/players/c/colliji01.html,175,,,,,.414,1.6,3.9,.804,0.6,0.8,74,3.8,,,,,,,,,,,,
750,2018,2018,"September 23, 1997",Wake Forest University,6-10,John Collins,F,/players/c/collijo01.html,235,0.6,.333,0.2,.592,.578,4.2,7.3,.724,1.8,2.5,73,10.5,0.0,.000,0.0,,8.2,.601,4.9,.729,4.9,3.6,64,13.4
751,2007,2010,"August 4, 1984",Temple University,6-6,Mardy Collins,G,/players/c/collima01.html,220,0.7,.299,0.2,.405,.380,1.6,4.1,.599,0.6,1.0,189,3.9,5.0,.292,1.5,,14.4,.399,5.7,.624,3.9,2.4,125,15.4
752,2011,2011,"March 18, 1987",University of Kansas,5-11,Sherron Collins,G,/players/c/collish01.html,205,0.5,.200,0.1,.320,.280,0.4,1.3,1.000,0.1,0.1,20,0.9,4.3,.377,1.6,,10.3,.444,4.6,.808,3.0,2.4,143,13.2
753,2018,2018,"November 19, 1997",Gonzaga University,7-0,Zach Collins,C-F,/players/c/colliza01.html,232,1.7,.312,0.5,.461,.401,1.8,4.4,.643,0.4,0.7,64,4.5,0.5,.476,0.3,,5.3,.652,3.5,.743,3.8,2.8,39,10.0
754,2018,2018,"October 3, 1991",Brigham Young University,6-6,Kyle Collinsworth,G-F,/players/c/colliky01.html,210,0.5,.267,0.1,.419,.395,1.1,2.8,.528,0.6,1.2,31,2.9,0.8,.280,0.2,,9.2,.477,4.4,.642,4.9,3.2,140,12.2
755,2010,2018,"August 23, 1987","University of California, Los Angeles",6-0,Darren Collison,G,/players/c/collida01.html,175,2.2,.392,0.9,.516,.472,4.7,9.9,.855,2.4,2.8,631,12.7,2.7,.435,1.2,,8.3,.475,4.0,.851,2.9,2.5,142,11.5
756,2005,2018,"October 26, 1980",University of Kansas,6-10,Nick Collison,F,/players/c/collini01.html,255,0.1,.208,0.0,.536,.534,2.4,4.6,.725,1.0,1.4,908,5.9,0.5,.359,0.2,,10.7,.562,6.0,.624,4.0,2.5,142,14.8
757,1949,1949,"January 23, 1924",Bloomsburg University of Pennsylvania,6-5,Joe Colone,F,/players/c/colonjo01.html,210,,,,,.310,2.3,7.5,.684,0.9,1.3,15,5.5,,,,,,,,,,,,
758,2001,2001,"July 1, 1975","University of Rhode Island, University of North Carolina at Charlotte",6-0,Sean Colson,G,/players/c/colsose01.html,175,0.4,.200,0.1,.271,.250,0.5,1.8,.500,0.2,0.3,13,1.2,4.6,.293,1.4,,10.4,.365,3.8,.820,3.4,2.8,86,11.8
759,1985,1995,"July 24, 1962",New Mexico State University,6-3,Steve Colter,G,/players/c/coltest01.html,165,0.5,.289,0.1,.461,.448,2.5,5.5,.778,1.2,1.6,526,6.3,0.2,.333,0.1,,9.4,.493,4.6,.757,4.2,3.1,107,12.5
760,1969,1975,"October 30, 1946",Virginia Polytechnic Institute and State University,6-2,Glen Combs,G,/players/c/combsgl01.html,185,2.9,.367,1.1,.474,.433,5.7,13.2,.810,4.0,4.9,465,16.5,,,,,,,,,,,,
761,1984,1984,"January 1, 1961",Oklahoma State University,6-8,Leroy Combs,F,/players/c/combsle01.html,210,0.1,.000,0.0,.497,.497,1.7,3.4,.615,1.2,1.9,48,4.5,,,,,10.1,.554,5.6,.669,5.0,3.3,99,14.5
762,1968,1968,"September 15, 1943",Grambling State University,6-5,John Comeaux,F,/players/c/comeajo01.html,193,0.0,,0.0,.429,.429,1.2,2.7,.719,1.0,1.4,23,3.3,,,,,,,,,,,,
763,1988,1989,"August 17, 1964",DePaul University,6-9,Dallas Comegys,F,/players/c/comegda01.html,205,0.0,.000,0.0,.457,.457,2.3,5.0,.682,1.5,2.2,142,6.0,0.0,.000,0.0,,10.0,.514,5.1,.679,5.0,3.4,118,13.7
764,1964,1964,"August 17, 1939",Kansas State University,6-5,Larry Comley,G,/players/c/comlela01.html,210,,,,,.216,0.7,3.1,.563,0.8,1.3,12,2.1,,,,,,,,,,,,
765,1968,1972,"October 17, 1943",Brigham Young University,6-1,Jeffrey Congdon,G,/players/c/congdje01.html,180,1.2,.285,0.3,.402,.377,2.5,6.6,.799,1.2,1.5,306,6.5,,,,,,,,,,,,
766,1953,1964,"November 10, 1930",Washington State University,6-8,Gene Conley,C-F,/players/c/conlege01.html,225,,,,,.371,2.4,6.4,.657,1.1,1.7,351,5.9,,,,,,,4.7,.711,5.6,4.0,32,13.3
767,1968,1968,"January 22, 1944",University of Kentucky,6-3,Larry Conley,G,/players/c/conlela01.html,175,0.0,,0.0,.250,.250,1.0,4.0,,0.0,0.0,1,2.0,,,,,,,,,,,,
768,2008,2018,"October 11, 1987",Ohio State University,6-1,Mike Conley,G,/players/c/conlemi01.html,175,3.4,.377,1.3,.497,.441,5.1,11.6,.814,2.7,3.3,718,14.3,1.8,.304,0.5,,7.9,.518,4.1,.694,3.7,2.6,39,11.3
769,1956,1962,"September 2, 1933",Fordham University,6-5,Ed Conlin,F-G,/players/c/conlied01.html,200,,,,,.370,3.8,10.4,.750,2.4,3.2,486,10.1,,,,,,,,,,,,
770,1992,2000,"January 19, 1968",Providence College,6-10,Marty Conlon,F-C,/players/c/conloma01.html,224,0.2,.200,0.0,.502,.498,2.6,5.1,.735,1.3,1.8,379,6.5,0.9,.333,0.3,,7.3,.505,3.7,.765,4.4,3.4,103,11.0
771,2016,2018,"January 6, 1993",University of Notre Dame,6-5,Pat Connaughton,G,/players/c/connapa01.html,206,1.7,.363,0.6,.513,.419,1.4,3.3,.845,0.3,0.4,153,3.7,5.0,.386,1.9,,8.2,.450,3.7,.777,1.5,1.2,139,10.5
772,1976,1976,"March 20, 1953",University of Kentucky,6-4,Jimmy Conner,G,/players/c/conneji01.html,190,0.1,.000,0.0,.488,.488,1.8,3.6,.759,0.9,1.2,24,4.4,,,,,,,,,,,,
773,1983,1995,"September 17, 1959",Oregon State University,6-4,Lester Conner,G,/players/c/connele01.html,180,0.2,.202,0.0,.456,.453,2.4,5.3,.753,1.5,2.0,687,6.3,,,,,7.5,.506,3.8,.721,4.9,3.6,58,11.1
774,1947,1948,"April 10, 1921",Seton Hall University,6-5,Chuck Connors,F-C,/players/c/connoch01.html,190,,,,,.252,1.9,7.4,.471,0.8,1.6,53,4.5,,,,,,,,,,,,
775,2007,2013,"December 8, 1982",University of Washington,6-2,Will Conroy,G,/players/c/conrowi01.html,195,0.4,.000,0.0,.136,.136,0.2,1.4,.125,0.1,0.5,16,0.4,2.6,.331,0.9,,6.8,.445,3.0,.730,3.2,2.3,121,9.2
776,1991,1996,"March 19, 1967",University of Arizona,6-9,Anthony Cook,F-C,/players/c/cookan01.html,205,0.1,.000,0.0,.439,.439,1.4,3.3,.524,0.7,1.4,116,3.6,0.0,.000,0.0,,8.2,.575,4.7,.645,3.9,2.5,133,12.0
777,1955,1955,"April 26, 1929",Utah State University,6-3,Bert Cook,G-F,/players/c/cookbe01.html,185,,,,,.316,1.1,3.6,.680,0.9,1.4,37,3.2,,,,,,,,,,,,
778,1950,1950,"April 1, 1923",University of Wisconsin,5-10,Bobby Cook,G-F,/players/c/cookbo01.html,155,,,,,.358,4.4,12.2,.790,2.8,3.5,51,11.5,,,,,,,,,,,,
779,2004,2012,"December 4, 1980",University of Illinois at Urbana-Champaign,6-9,Brian Cook,F,/players/c/cookbr01.html,234,1.6,.382,0.6,.502,.439,2.2,4.9,.783,0.5,0.7,421,5.5,2.1,.339,0.7,,9.4,.510,4.8,.793,3.7,2.9,132,13.2
780,2008,2013,"April 28, 1987",Ohio State University,6-5,Daequan Cook,G,/players/c/cookda02.html,205,3.8,.359,1.3,.476,.369,2.3,6.3,.813,0.5,0.6,328,6.4,3.3,.415,1.4,,8.1,.445,3.6,.697,1.7,1.2,39,9.8
781,1981,1989,"August 6, 1958",University of Portland,6-3,Darwin Cook,G,/players/c/cookda01.html,184,0.5,.196,0.1,.458,.453,4.1,8.9,.764,1.3,1.7,612,9.5,,,,,13.1,.489,6.4,.730,3.6,2.6,109,15.3
782,1980,1988,"October 21, 1956",Idaho State University,6-10,Jeff Cook,F-C,/players/c/cookje01.html,215,0.0,.056,0.0,.462,.462,2.1,4.5,.716,1.1,1.5,518,5.3,,,,,6.8,.496,3.4,.678,2.6,1.7,100,8.5
783,1977,1978,"March 21, 1955",University of Kansas,6-8,Norm Cook,F,/players/c/cookno01.html,210,,,,,.373,1.0,2.8,.529,0.3,0.6,27,2.4,,,,,,,,,,,,
784,2004,2005,"January 28, 1982",St. John's University,6-1,Omar Cook,G,/players/c/cookom01.html,190,0.2,.000,0.0,.333,.333,0.8,2.3,.500,0.1,0.3,22,1.7,7.6,.309,2.3,,13.5,.360,4.9,.742,4.4,3.3,29,15.3
785,2017,2018,"March 23, 1993",Duke University,6-2,Quinn Cook,G,/players/c/cookqu01.html,184,2.8,.441,1.2,.584,.494,3.3,6.7,.808,0.5,0.6,46,8.3,4.4,.375,1.7,,8.6,.432,3.7,.853,2.2,1.9,143,11.0
786,2018,2018,"July 1, 1994",University of Dayton,6-5,Charles Cooke,G,/players/c/cookech01.html,196,0.6,.143,0.1,.192,.154,0.2,1.1,.500,0.1,0.2,12,0.5,3.5,.365,1.3,,9.5,.434,4.1,.702,4.6,3.2,123,12.8
787,1986,1986,"September 27, 1963",Saint Mary's College of California,6-8,David Cooke,F,/players/c/cookeda01.html,230,0.0,,0.0,.182,.182,0.3,1.8,.500,0.8,1.7,6,1.5,,,,,7.1,.490,3.5,.646,3.9,2.5,106,9.5
788,1971,1971,"August 14, 1948",Indiana University,6-3,Joe Cooke,G,/players/c/cookejo01.html,175,,,,,.393,1.8,4.7,.814,0.7,0.8,73,4.3,,,,,,,,,,,,
789,2015,2018,"April 4, 1991",University of Notre Dame,6-9,Jack Cooley,F-C,/players/c/cooleja01.html,260,0.0,,0.0,.476,.476,1.0,2.0,.500,0.6,1.2,21,2.5,0.0,.500,0.0,,5.3,.601,3.2,.663,2.8,1.9,123,8.3
790,1951,1956,"September 29, 1926",Duquesne University,6-5,Chuck Cooper,F,/players/c/coopech01.html,210,,,,,.339,2.3,6.7,.743,2.1,2.8,409,6.7,,,,,,,,,,,,
791,1993,1994,"June 25, 1969",University of Southern California,6-1,Duane Cooper,G,/players/c/coopedu01.html,185,0.4,.216,0.1,.422,.402,0.9,2.3,.720,0.4,0.6,88,2.3,2.4,.403,1.0,,4.7,.456,2.1,.604,1.6,1.0,118,6.2
792,1982,1985,"September 1, 1957","Howard University, University of Tulsa, University of Colorado",6-10,Joe Cooper,C-F,/players/c/coopejo01.html,230,0.0,,0.0,.506,.506,1.9,3.7,.543,0.8,1.5,24,4.5,,,,,9.8,.505,4.9,.616,2.8,1.7,111,11.6
793,1979,1990,"April 15, 1956",University of New Mexico,6-5,Michael Cooper,G-F,/players/c/coopemi01.html,170,1.4,.340,0.5,.502,.469,3.5,7.4,.833,1.5,1.8,873,8.9,,,,,12.4,.500,6.2,.737,4.3,3.2,58,15.6
794,1979,1992,"November 16, 1956",University of New Orleans,6-10,Wayne Cooper,C-F,/players/c/coopewa01.html,220,0.1,.146,0.0,.457,.457,3.3,7.2,.736,1.3,1.8,984,7.9,,,,,12.6,.497,6.3,.742,2.6,2.0,81,14.5
795,1992,1992,"October 30, 1964",Marquette University,6-10,Tom Copa,C,/players/c/copato01.html,275,0.0,,0.0,.550,.550,0.7,1.2,.308,0.1,0.4,33,1.5,0.0,,0.0,,6.6,.501,3.3,.627,2.6,1.6,120,8.2
796,2013,2016,"March 17, 1984",University of Colorado,6-9,Chris Copeland,F,/players/c/copelch01.html,239,2.5,.365,0.9,.516,.427,2.1,5.0,.752,0.7,0.9,171,5.8,2.9,.361,1.0,,5.9,.431,2.5,.701,2.0,1.4,113,7.5
797,1980,1982,"December 20, 1955",Rutgers University,6-6,Hollis Copeland,F,/players/c/copelho01.html,180,0.0,.000,0.0,.488,.488,2.1,4.4,.739,0.7,1.0,93,5.0,,,,,12.6,.515,6.5,.619,2.6,1.6,121,14.6
798,1990,1992,"July 16, 1965",Georgia State University,6-6,Lanard Copeland,G,/players/c/copella01.html,190,0.2,.143,0.0,.423,.418,1.2,2.8,.813,0.4,0.5,33,2.7,2.8,.355,1.0,,9.1,.446,4.1,.681,1.8,1.2,89,11.0
799,1986,2001,"December 31, 1962",DePaul University,6-6,Tyrone Corbin,G-F,/players/c/corbity01.html,210,0.6,.299,0.2,.468,.456,3.7,8.1,.791,1.6,2.1,1065,9.2,,,,,8.6,.504,4.4,.764,3.6,2.8,120,11.5
800,1992,1994,"March 28, 1968",North Carolina State University,6-0,Chris Corchiani,G,/players/c/corchch01.html,185,0.7,.269,0.2,.455,.421,1.2,2.8,.816,1.2,1.5,112,3.7,2.5,.408,1.0,,7.9,.463,3.7,.822,3.8,3.2,124,11.5
801,1947,1947,,Oklahoma State Teachers College,6-5,Ken Corley,C,/players/c/corleke01.html,210,,,,,,0.0,0.0,,0.0,0.0,3,0.0,,,,,,,,,,,,
802,1950,1953,"January 1, 1928",Georgetown University,6-0,Ray Corley,G,/players/c/corlera01.html,180,,,,,.304,1.6,5.4,.601,1.1,1.8,102,4.3,,,,,,,,,,,,
803,1979,1991,"April 25, 1956",DePaul University,6-11,Dave Corzine,C,/players/c/corzida01.html,250,0.1,.189,0.0,.485,.484,3.5,7.2,.747,1.6,2.1,891,8.5,,,,,14.5,.492,7.1,.741,3.9,2.9,111,17.1
804,1955,1968,"July 2, 1931",Niagara University,6-1,Larry Costello,G,/players/c/costela01.html,186,,,,,.438,4.4,10.0,.841,3.4,4.1,706,12.2,,,,,4.6,1.211,5.6,.746,5.1,3.8,85,15.0
805,2018,2018,"August 5, 1993",Michigan State University,6-9,Matt Costello,F,/players/c/costema01.html,245,0.0,,0.0,.500,.500,0.5,1.0,,0.0,0.0,4,1.0,0.1,.167,0.0,,4.2,.567,2.4,.713,1.8,1.3,138,6.0
806,2015,2016,"August 11, 1992",Providence College,6-1,Bryce Cotton,G,/players/c/cottobr01.html,165,1.0,.304,0.3,.462,.418,1.4,3.4,.833,0.7,0.8,23,3.8,5.7,.361,2.0,,11.2,.421,4.7,.838,4.5,3.7,130,15.2
807,1950,1950,"October 25, 1924",University of Wyoming,6-7,Jack Cotton,F-C,/players/c/cottoja01.html,200,,,,,.292,1.8,6.1,.509,1.5,3.0,54,5.1,,,,,,,,,,,,
808,1998,1999,"December 14, 1975","California State University, Long Beach",6-5,James Cotton,G,/players/c/cottoja02.html,220,0.4,.000,0.0,.359,.359,0.7,2.1,.778,1.1,1.4,19,2.6,5.3,.369,2.0,,12.7,.442,5.6,.800,6.2,5.0,80,18.2
809,1980,1980,"September 12, 1951",University of California,6-7,John Coughran,F,/players/c/coughjo01.html,225,0.4,.222,0.1,.370,.358,1.2,3.4,.571,0.3,0.6,24,2.8,,,,,12.5,.467,5.8,.699,4.5,3.2,80,14.8
810,1965,1976,"October 16, 1941",Oregon State University,7-0,Mel Counts,C-F,/players/c/countme01.html,230,,,,,.435,3.4,7.8,.764,1.5,2.0,789,8.3,,,,,,,,,,,,
811,1965,1965,"September 21, 1942",Saint Joseph's University,6-1,Steve Courtin,G,/players/c/courtst01.html,188,,,,,.408,1.8,4.3,.810,0.7,0.9,24,4.2,,,,,,,,,,,,
812,1993,1997,"October 17, 1969","Mississippi State University, University of Southern Mississippi",6-8,Joe Courtney,F,/players/c/courtjo01.html,235,0.0,.667,0.0,.437,.433,1.1,2.6,.633,0.5,0.8,96,2.8,0.0,.000,0.0,,4.7,.462,2.2,.685,1.5,1.0,98,5.3
813,2011,2011,"December 18, 1986","Seton Hall University, University of Houston",6-11,Marcus Cousin,C,/players/c/cousima01.html,245,0.0,,0.0,.667,.667,0.5,0.8,,0.0,0.0,4,1.0,0.0,.000,0.0,,3.8,.483,1.9,.745,2.0,1.5,106,5.2
814,2011,2018,"August 13, 1990",University of Kentucky,6-11,DeMarcus Cousins,C-F,/players/c/couside01.html,270,1.7,.338,0.6,.478,.460,7.7,16.7,.737,5.6,7.6,535,21.5,0.2,.167,0.0,,9.7,.558,5.4,.604,7.1,4.3,38,15.1
815,1951,1970,"August 9, 1928",College of the Holy Cross,6-1,Bob Cousy,G,/players/c/cousybo01.html,175,,,,,.375,6.7,17.8,.803,5.0,6.2,924,18.4,,,,,5.6,1.076,6.1,.810,3.8,3.1,117,15.2
816,2014,2018,"December 14, 1990",Tennessee State University,6-9,Robert Covington,F,/players/c/covinro01.html,215,6.5,.359,2.3,.511,.399,4.2,10.5,.821,2.0,2.4,289,12.7,3.7,.422,1.5,,11.1,.476,5.3,.802,3.4,2.7,118,14.8
817,1971,1983,"October 25, 1948",Florida State University,6-9,Dave Cowens,C-F,/players/c/cowenda01.html,230,0.1,.071,0.0,.460,.460,7.5,16.3,.783,2.6,3.4,766,17.6,,,,,14.4,.519,7.5,.679,5.9,4.0,78,19.0
818,1983,1983,"December 29, 1955","Villanova University, University of San Francisco",6-2,Chubby Cox,G,/players/c/coxch01.html,180,0.3,.000,0.0,.351,.351,1.9,5.3,.500,0.4,0.9,7,4.1,,,,,9.8,.426,4.2,.695,2.9,2.0,107,10.4
819,1963,1963,"November 1, 1936",University of Kentucky,6-4,Johnny Cox,G,/players/c/coxjo01.html,180,,,,,.421,3.3,7.8,.704,1.3,1.8,73,7.8,,,,,,,,,,,,
820,1978,1979,"January 27, 1955",University of Louisville,6-6,Wesley Cox,F,/players/c/coxwe01.html,215,,,,,.412,1.6,4.0,.510,1.3,2.6,74,4.6,,,,,,,,,,,,
821,2014,2018,"April 9, 1992",University of California,6-6,Allen Crabbe,G-F,/players/c/crabbal01.html,210,4.0,.393,1.6,.539,.437,3.4,7.7,.846,1.1,1.3,299,9.4,5.6,.382,2.1,,12.2,.446,5.4,.819,3.3,2.7,98,15.7
822,2018,2018,"December 19, 1990",University of South Carolina Upstate,6-6,Torrey Craig,G-F,/players/c/craigto01.html,215,1.6,.293,0.5,.515,.453,1.7,3.7,.629,0.6,0.9,37,4.4,6.9,.330,2.3,,13.8,.413,5.7,.671,3.8,2.6,131,16.2
823,1998,2004,"May 13, 1975",Marquette University,6-9,Chris Crawford,F,/players/c/crawfch01.html,235,0.8,.347,0.3,.462,.437,2.4,5.5,.824,1.5,1.8,252,6.6,2.0,.373,0.8,,7.3,.444,3.2,.721,2.9,2.1,113,9.3
824,1967,1971,"December 23, 1941",St. Bonaventure University,6-4,Freddie Crawford,G-F,/players/c/crawffr01.html,189,,,,,.446,2.8,6.3,.595,1.2,2.1,297,6.8,,,,,,,,,,,,
825,2001,2018,"March 20, 1980",University of Michigan,6-5,Jamal Crawford,G,/players/c/crawfja01.html,200,4.9,.349,1.7,.478,.411,5.2,12.7,.862,2.9,3.3,1260,15.0,5.9,.327,1.9,,15.0,.412,6.2,.784,3.0,2.4,17,16.6
826,2009,2009,"June 17, 1986",University of Kentucky,6-5,Joe Crawford,F,/players/c/crawfjo01.html,210,2.0,.250,0.5,.350,.300,1.5,5.0,1.000,1.0,1.0,2,4.5,4.2,.350,1.5,,9.2,.438,4.0,.702,2.6,1.8,127,11.3
827,2011,2018,"October 23, 1988","Indiana University, Xavier University",6-4,Jordan Crawford,G,/players/c/crawfjo02.html,195,3.7,.318,1.2,.464,.411,4.6,11.2,.826,1.9,2.3,279,12.3,4.4,.384,1.7,,12.4,.455,5.6,.765,3.3,2.6,65,15.5
828,1976,1976,"April 18, 1950",University of Colorado,6-8,Jim Creighton,F,/players/c/creigji01.html,200,,,,,.279,0.4,1.3,.438,0.2,0.5,32,1.0,,,,,,,,,,,,
829,1986,1986,"April 14, 1958",Boston College,7-0,Ron Crevier,C,/players/c/creviro01.html,235,0.0,,0.0,.000,.000,0.0,1.0,.000,0.0,0.7,3,0.0,,,,,1.2,.612,0.7,.393,1.0,0.4,56,1.9
830,1947,1947,"December 31, 1923",Iowa State University,6-3,Hal Crisler,F,/players/c/crislha01.html,215,,,,,.333,0.5,1.5,1.000,0.5,0.5,4,1.5,,,,,,,,,,,,
831,2002,2002,"July 18, 1979",Pennsylvania State University,6-0,Joe Crispin,G,/players/c/crispjo01.html,185,1.9,.385,0.7,.493,.382,1.2,3.2,.923,0.6,0.6,21,3.8,7.0,.348,2.4,,12.7,.382,4.8,.885,4.0,3.5,127,15.6
832,1978,1985,"November 6, 1948",New Mexico State University,5-8,Charlie Criss,G,/players/c/crissch01.html,165,0.4,.179,0.1,.435,.432,3.1,7.3,.831,2.1,2.5,418,8.5,,,,,11.7,.430,5.0,.763,4.4,3.4,61,13.4
833,1969,1969,"June 27, 1946",University of California,5-10,Russell Critchfield,G,/players/c/critcru01.html,150,0.1,.000,0.0,.361,.361,1.1,3.1,.655,1.2,1.8,47,3.4,,,,,,,,,,,,
834,1988,1989,"June 20, 1965",Texas A&M University,6-7,Winston Crite,F,/players/c/critewi01.html,233,0.0,,0.0,.479,.479,1.1,2.3,.760,0.6,0.8,31,2.8,0.0,.000,0.0,,8.9,.562,5.0,.672,4.2,2.8,123,12.8
835,2008,2009,"December 31, 1987",Georgia Institute of Technology,6-5,Javaris Crittenton,G,/players/c/crittja01.html,200,0.5,.231,0.1,.454,.442,2.0,4.6,.638,1.1,1.7,113,5.3,3.2,.356,1.1,,11.0,.450,4.9,.783,4.3,3.4,32,14.4
836,1949,1953,"January 19, 1925",Western Michigan University,6-4,Dillard Crocker,F-G,/players/c/crockdi01.html,205,,,,,.316,2.9,9.1,.706,3.0,4.3,154,8.8,,,,,,,,,,,,
837,1971,1971,"March 17, 1946",University of Tennessee,6-10,Bobby Croft,C,/players/c/croftbo01.html,200,0.0,.000,0.0,.362,.362,2.0,5.6,.652,1.2,1.8,62,5.2,,,,,,,,,,,,
838,1979,1984,"July 4, 1955",University of North Carolina,6-11,Geoff Crompton,C,/players/c/crompge01.html,280,0.0,,0.0,.370,.370,0.5,1.3,.442,0.2,0.5,82,1.2,,,,,3.0,.491,1.5,.455,1.2,0.6,36,3.5
839,1980,1980,"January 4, 1957",University of Tennessee,6-4,Terry Crosby,G,/players/c/crosbte01.html,195,0.0,,0.0,.500,.500,0.5,1.0,1.000,0.5,0.5,4,1.5,,,,,9.0,.495,4.5,.711,2.0,1.4,106,10.3
840,1998,2009,"May 1, 1975",Providence College,6-9,Austin Croshere,F,/players/c/croshau01.html,235,1.9,.340,0.7,.466,.407,2.3,5.6,.861,1.6,1.9,659,6.8,3.6,.340,1.2,,9.3,.440,4.1,.843,3.8,3.2,121,12.6
841,1986,1986,"September 1, 1961",University of Maine,6-10,Jeff Cross,F,/players/c/crossje01.html,240,0.0,,0.0,.250,.250,0.3,1.1,.560,0.7,1.2,21,1.2,,,,,9.3,.524,4.9,.643,5.6,3.6,100,13.4
842,1971,1973,"March 28, 1948",University of San Francisco,6-9,Pete Cross,C-F,/players/c/crosspe01.html,230,,,,,.431,2.2,5.1,.695,1.4,2.0,182,5.8,,,,,,,,,,,,
843,1984,1984,"September 5, 1961",Purdue University,6-10,Russell Cross,C,/players/c/crossru01.html,215,0.0,,0.0,.571,.571,1.4,2.5,.418,0.8,2.0,45,3.7,,,,,10.4,.578,6.0,.628,7.1,4.5,93,16.4
844,1948,1950,"July 4, 1923",University of Pennsylvania,6-1,Chink Crossin,G,/players/c/crossch01.html,165,,,,,.318,2.0,6.2,.711,0.8,1.1,147,4.7,,,,,,,,,,,,
845,1993,2003,"July 15, 1969",University of Virginia,6-1,John Crotty,G,/players/c/crottjo01.html,185,0.8,.384,0.3,.481,.431,1.3,3.0,.837,1.1,1.3,477,4.0,4.0,.346,1.4,,9.8,.415,4.1,.694,4.6,3.2,129,12.8
846,1968,1968,"December 9, 1940",Westminster College of Utah,6-1,Bill Crow,G,/players/c/crowbi01.html,180,0.0,,0.0,.125,.125,1.0,8.0,.250,1.0,4.0,1,3.0,,,,,,,,,,,,
847,1978,1978,"October 22, 1954",Duke University,6-7,Mark Crow,F,/players/c/crowma01.html,210,,,,,.438,2.3,5.3,.700,0.9,1.3,15,5.6,,,,,,,,,,,,
848,1992,1995,"April 13, 1969",Kentucky Wesleyan College,6-5,Corey Crowder,G-F,/players/c/crowdco01.html,214,0.6,.382,0.2,.422,.369,0.8,2.1,.708,0.3,0.4,58,2.1,,,,,,,,,,,,
849,2013,2018,"July 6, 1990",Marquette University,6-6,Jae Crowder,F,/players/c/crowdja01.html,235,3.6,.342,1.2,.512,.430,3.2,7.4,.790,1.5,1.9,461,9.0,4.1,.350,1.4,,10.6,.492,5.2,.683,4.0,2.7,72,14.6
850,1970,1971,"August 2, 1946",University of Tulsa,6-7,Al Cueto,C-F,/players/c/cuetoal01.html,230,0.1,.238,0.0,.407,.404,2.1,5.2,.710,1.1,1.5,149,5.3,,,,,,,,,,,,
851,1980,1991,"July 11, 1956",University of Cincinnati,6-9,Pat Cummings,F-C,/players/c/cummipa01.html,230,0.0,.000,0.0,.497,.497,4.0,8.1,.737,1.6,2.1,683,9.6,,,,,12.6,.581,7.3,.758,3.2,2.4,103,17.1
852,1983,2000,"March 15, 1961",DePaul University,6-9,Terry Cummings,F,/players/c/cummite01.html,220,0.1,.295,0.0,.485,.484,6.8,14.1,.706,2.8,4.0,1183,16.4,,,,,12.2,.530,6.5,.775,4.6,3.5,85,16.4
853,2000,2002,"February 29, 1976",University of Pittsburgh,6-3,Vonteego Cummings,G,/players/c/cummivo01.html,185,1.7,.321,0.5,.423,.383,2.6,6.8,.726,1.2,1.6,199,6.9,3.9,.334,1.3,,12.7,.423,5.4,.699,4.7,3.3,103,15.3
854,1966,1976,"June 3, 1943",University of North Carolina,6-6,Billy Cunningham,F-C,/players/c/cunnibi01.html,210,0.5,.263,0.1,.452,.452,8.0,17.6,.730,5.2,7.1,770,21.2,,,,,20.1,.473,9.5,.628,9.2,5.8,69,24.8
855,2010,2018,"April 22, 1987",Villanova University,6-8,Dante Cunningham,F,/players/c/cunnida01.html,230,0.9,.332,0.3,.495,.469,2.6,5.6,.645,0.6,0.9,649,6.0,0.0,.333,0.0,,7.1,.524,3.7,.693,3.2,2.2,139,9.6
856,1969,1975,"July 11, 1946",Murray State University,6-10,Dick Cunningham,C,/players/c/cunnidi01.html,245,,,,,.406,1.1,2.8,.636,0.5,0.9,358,2.8,,,,,,,,,,,,
857,2013,2016,"May 22, 1991",Oregon State University,6-4,Jared Cunningham,G,/players/c/cunnija01.html,195,0.7,.306,0.2,.402,.347,0.7,2.1,.674,0.7,1.0,84,2.3,2.5,.344,0.9,,8.5,.455,3.9,.754,5.8,4.4,98,13.0
858,1998,1999,"March 25, 1974",Temple University,6-11,William Cunningham,C,/players/c/cunniwi01.html,250,0.0,,0.0,.259,.259,0.3,1.2,.000,0.0,0.1,23,0.6,0.0,,0.0,,2.0,.464,0.9,.490,1.3,0.6,120,2.5
859,1993,1993,"September 26, 1965",,6-10,Radisav Curcic,C,/players/c/curcira01.html,275,0.0,,0.0,.390,.390,0.8,2.1,.722,1.3,1.8,20,2.9,,,,,,,,,,,,
860,1947,1947,"August 1, 1919",University of Rhode Island,6-0,Armand Cure,F,/players/c/curear01.html,198,,,,,.267,0.3,1.3,.667,0.2,0.3,12,0.8,,,,,,,,,,,,
861,1981,1997,"September 3, 1957","Robert Morris University (PA), University of Detroit Mercy",6-9,Earl Cureton,F-C,/players/c/curetea01.html,210,0.0,.000,0.0,.473,.473,2.3,4.8,.538,0.8,1.5,674,5.4,,,,,,,,,,,,
862,1995,2001,"May 29, 1972",Boston College,6-9,Bill Curley,F,/players/c/curlebi01.html,220,0.1,.222,0.0,.446,.444,1.1,2.4,.743,0.5,0.7,147,2.7,0.0,.000,0.0,,10.4,.565,5.9,.780,6.3,4.9,126,16.7
863,1949,1950,"September 9, 1922",University of Notre Dame,6-0,Fran Curran,G,/players/c/currafr01.html,175,,,,,.395,1.3,3.3,.774,2.3,3.0,123,4.9,,,,,,,,,,,,
864,1987,2002,"June 25, 1964",Virginia Polytechnic Institute and State University,6-4,Dell Curry,G,/players/c/curryde01.html,190,2.9,.402,1.1,.513,.457,4.7,10.3,.843,1.1,1.4,1083,11.7,0.2,.571,0.1,,16.0,.505,8.1,.785,3.5,2.7,126,18.9
865,2002,2013,"December 5, 1982",,7-0,Eddy Curry,C,/players/c/curryed01.html,295,0.0,1.000,0.0,.545,.545,4.9,9.0,.642,3.2,4.9,527,12.9,,,,,,,,,,,,
866,2010,2010,"January 7, 1986",Oklahoma State University,6-3,JamesOn Curry,G,/players/c/curryja01.html,190,0.0,,0.0,,,0.0,0.0,,0.0,0.0,1,0.0,4.8,.404,2.0,,10.7,.437,4.7,.758,2.9,2.2,101,13.5
867,1994,2005,"August 22, 1968",Georgia Southern University,6-5,Michael Curry,F-G,/players/c/currymi01.html,210,0.4,.298,0.1,.463,.447,1.6,3.7,.825,1.1,1.3,667,4.5,0.1,.083,0.0,,6.3,.563,3.5,.738,3.1,2.3,119,9.4
868,2014,2017,"August 23, 1990","Liberty University, Duke University",6-2,Seth Curry,G,/players/c/curryse01.html,185,3.7,.432,1.6,.573,.473,3.7,7.9,.844,1.1,1.3,118,10.2,5.9,.394,2.3,,11.2,.431,4.8,.827,3.5,2.9,141,14.9
869,2010,2018,"March 14, 1988",Davidson College,6-3,Stephen Curry,G,/players/c/curryst01.html,190,7.8,.436,3.4,.579,.477,8.0,16.8,.903,3.6,4.0,625,23.1,9.7,.412,4.0,,17.9,.467,8.4,.876,5.3,4.6,104,25.3
870,1996,1996,"June 22, 1970",,7-1,Rastko Cvetkovic,C,/players/c/cvetkra01.html,260,0.1,.000,0.0,.313,.313,0.4,1.1,.000,0.0,0.3,14,0.7,,,,,,,,,,,,
871,1974,1977,"May 8, 1951",Marshall University,6-3,Mike D'Antoni,G,/players/d/dantomi01.html,185,0.1,.000,0.0,.414,.414,1.5,3.5,.735,0.5,0.6,180,3.4,,,,,,,,,,,,
872,1968,1968,"December 27, 1942",New Mexico State University,7-0,Mike Dabich,C,/players/d/dabicmi01.html,242,0.0,,0.0,.667,.667,0.8,1.2,.444,0.4,0.9,10,2.0,,,,,,,,,,,,
873,1952,1952,"January 31, 1926",Duquesne University,6-5,Ed Dahler,F,/players/d/dahleed01.html,190,,,,,.368,1.0,2.7,1.000,0.5,0.5,14,2.5,,,,,,,,,,,,
874,1983,1992,"January 22, 1961",University of San Francisco,6-3,Quintin Dailey,G,/players/d/dailequ01.html,180,0.3,.158,0.0,.456,.454,5.6,12.2,.779,3.0,3.8,528,14.1,,,,,14.3,.551,7.9,.745,6.4,4.7,90,20.5
875,2002,2015,"May 10, 1981",Seton Hall University,6-11,Samuel Dalembert,C,/players/d/dalemsa01.html,255,0.0,.083,0.0,.521,.521,3.2,6.1,.706,1.3,1.9,886,7.7,0.0,,0.0,,5.5,.537,3.0,.539,2.2,1.2,59,7.1
876,1947,1949,"May 24, 1922",Stanford University,6-4,Howie Dallmar,F,/players/d/dallmho01.html,200,,,,,.283,3.6,12.6,.698,2.5,3.6,146,9.6,,,,,,,,,,,,
877,1997,2012,"July 14, 1975",Mississippi State University,6-11,Erick Dampier,C,/players/d/dampier01.html,265,0.0,.125,0.0,.498,.498,2.8,5.7,.626,1.8,2.8,987,7.4,0.0,,0.0,,8.8,.587,5.2,.566,5.1,2.9,93,13.2
878,1968,1979,"November 20, 1944",University of Kentucky,6-0,Louie Dampier,G,/players/d/dampilo01.html,170,3.0,.358,1.1,.474,.444,6.2,14.0,.820,2.6,3.2,960,15.9,,,,,,,,,,,,
879,1970,1982,"November 15, 1947",Norfolk State University,6-6,Bob Dandridge,F-G,/players/d/dandrbo01.html,195,0.2,.167,0.0,.484,.484,7.7,15.9,.780,3.1,4.0,839,18.5,,,,,,,,,,,,
880,1998,2011,"March 19, 1975",Bowling Green State University,6-4,Antonio Daniels,G,/players/d/daniean01.html,195,1.3,.311,0.4,.479,.444,2.6,5.9,.793,2.0,2.5,872,7.6,1.9,.396,0.8,,11.4,.515,5.9,.758,4.8,3.6,111,16.1
881,2005,2005,"April 1, 1982",University of Kentucky,6-8,Erik Daniels,F,/players/d/danieer01.html,214,0.1,.500,0.0,.361,.333,0.3,0.9,,0.0,0.0,21,0.6,0.6,.260,0.1,,6.3,.559,3.5,.611,1.8,1.1,127,8.3
882,1993,1998,"September 4, 1967",Mount San Antonio College,6-7,Lloyd Daniels,G,/players/d/daniell01.html,205,2.4,.316,0.8,.458,.403,2.8,6.9,.743,0.8,1.0,200,7.1,,,,,,,,,,,,
883,2004,2013,"January 7, 1981",Auburn University,6-6,Marquis Daniels,G-F,/players/d/daniema01.html,200,0.8,.235,0.2,.464,.451,3.2,7.2,.721,1.2,1.7,548,7.9,2.0,.296,0.6,,10.8,.496,5.4,.646,3.8,2.4,111,13.8
884,1968,1977,"July 20, 1944",University of New Mexico,6-9,Mel Daniels,C,/players/d/danieme01.html,220,0.1,.088,0.0,.468,.468,7.3,15.6,.657,3.8,5.8,639,18.4,,,,,15.9,.484,7.7,.674,6.7,4.5,77,20.0
885,2014,2018,"July 15, 1991",Virginia Commonwealth University,6-4,Troy Daniels,G,/players/d/danietr01.html,205,4.5,.404,1.8,.550,.401,2.4,6.0,.821,0.5,0.6,241,7.1,5.2,.386,2.0,,6.1,.389,2.4,.782,0.7,0.5,125,7.3
886,1996,1997,"February 26, 1970",,6-5,Sasha Danilovic,G,/players/d/danilsa01.html,200,4.2,.379,1.6,.518,.439,4.4,10.1,.789,2.3,3.0,75,12.8,,,,,,,,,,,,
887,1977,1991,"February 28, 1956",University of Notre Dame,6-5,Adrian Dantley,F-G,/players/d/dantlad01.html,208,0.1,.171,0.0,.540,.540,8.6,15.8,.818,7.2,8.7,955,24.3,,,,,16.6,.562,9.3,.800,8.9,7.2,86,25.8
888,1953,1953,"March 3, 1930",Oklahoma State University,6-7,Pete Darcey,C,/players/d/darcepe01.html,217,,,,,.167,0.3,1.5,.556,0.4,0.8,12,0.9,,,,,,,,,,,,
889,1950,1950,"June 19, 1922",University of Denver,6-1,Jimmy Darden,G,/players/d/dardeji01.html,170,,,,,.321,3.0,9.3,.688,2.1,3.1,26,8.1,,,,,,,,,,,,
890,1968,1970,"July 28, 1944",University of Michigan,6-7,Ollie Darden,F-C,/players/d/dardeol01.html,235,0.0,.182,0.0,.436,.435,3.7,8.4,.695,1.9,2.7,223,9.2,,,,,,,,,,,,
891,1995,1998,"October 10, 1972",George Washington University,7-0,Yinka Dare,C,/players/d/dareyi01.html,265,0.0,,0.0,.396,.396,0.8,2.0,.570,0.6,1.0,110,2.1,0.0,,0.0,,9.8,.544,5.3,.529,6.1,3.2,60,13.8
892,1975,1975,"September 2, 1951",Virginia Commonwealth University,6-5,Jesse Dark,G,/players/d/darkje01.html,210,,,,,.471,1.6,3.3,.550,0.5,0.9,47,3.6,,,,,,,,,,,,
893,1976,1976,"January 1, 1953",San Jose State University,6-10,Rick Darnell,C-F,/players/d/darneri01.html,215,0.0,,0.0,.367,.367,1.0,2.7,.571,0.4,0.6,11,2.4,,,,,,,,,,,,
894,1962,1962,"September 25, 1937",Bowling Green State University,5-10,Jimmy Darrow,G,/players/d/darroji01.html,170,,,,,.200,0.6,3.0,.857,1.2,1.4,5,2.4,,,,,,,,,,,,
895,2014,2015,"November 27, 1987",,6-8,Luigi Datome,F,/players/d/datomlu01.html,215,1.4,.316,0.5,.481,.414,1.4,3.4,.818,0.2,0.2,55,3.4,,,,,,,,,,,,
896,1987,1994,"October 19, 1965",University of North Carolina,7-0,Brad Daugherty,C,/players/d/daughbr01.html,245,0.0,.143,0.0,.532,.532,7.0,13.1,.747,5.0,6.7,548,19.0,0.0,.000,0.0,,9.1,.620,5.6,.700,4.1,2.9,135,14.2
897,1971,1971,,Albany State University,6-3,Mack Daughtry,G,/players/d/daughma01.html,175,0.0,,0.0,.400,.400,1.0,2.5,1.000,1.3,1.3,4,3.3,,,,,,,,,,,,
898,1999,2001,"October 22, 1971",,6-9,Kornel David,F,/players/d/davidko01.html,235,0.0,.000,0.0,.446,.446,1.8,4.1,.817,1.3,1.7,109,5.0,,,,,,,,,,,,
899,2008,2009,"November 15, 1984",University of Alabama,6-10,Jermareo Davidson,F,/players/d/davidje01.html,230,0.0,,0.0,.425,.425,1.3,3.1,.578,0.5,0.9,52,3.1,0.2,.211,0.0,,8.1,.467,3.8,.717,3.5,2.5,126,10.1
900,1949,1955,"January 15, 1920",Seton Hall University,6-1,Bob Davies,G-F,/players/d/daviebo01.html,175,,,,,.378,5.0,13.1,.759,4.4,5.7,462,14.3,,,,,,,4.2,,,2.7,59,11.2
901,2014,2015,"July 25, 1991",Brigham Young University,6-10,Brandon Davies,F,/players/d/daviebr01.html,240,0.6,.227,0.1,.430,.411,1.4,3.4,.644,0.7,1.2,78,3.7,0.1,.333,0.0,,8.6,.522,4.5,.660,5.1,3.4,135,12.4
902,2013,2018,"March 11, 1993",University of Kentucky,6-10,Anthony Davis,F-C,/players/d/davisan02.html,253,1.1,.310,0.3,.527,.518,8.8,17.1,.797,5.4,6.8,408,23.4,0.5,.150,0.1,,8.4,.623,5.3,.709,5.1,3.6,40,14.2
903,1994,2006,"October 31, 1968",University of Texas at El Paso,6-9,Antonio Davis,F-C,/players/d/davisan01.html,215,0.0,.087,0.0,.448,.448,3.5,7.9,.727,3.0,4.1,903,10.0,0.0,.000,0.0,,6.1,.538,3.3,.600,4.3,2.6,122,9.2
904,1947,1947,"March 28, 1921",Oklahoma Baptist University,6-2,Aubrey Davis,G-F,/players/d/davisau01.html,175,,,,,.281,1.8,6.5,.635,1.2,1.9,59,4.9,,,,,,,,,,,,
905,2000,2012,"April 13, 1979","University of California, Los Angeles",6-3,Baron Davis,G,/players/d/davisba01.html,209,5.0,.320,1.6,.465,.409,5.9,14.3,.711,2.8,3.9,835,16.1,3.1,.328,1.0,,9.7,.503,4.9,.631,4.5,2.9,59,13.6
906,1997,2000,"December 26, 1972","University of Kansas, University of Arizona",6-9,Ben Davis,F,/players/d/davisbe01.html,240,0.0,,0.0,.356,.356,0.5,1.5,.462,0.3,0.7,40,1.4,0.0,,0.0,,7.5,.525,3.9,.634,3.9,2.5,86,10.3
907,1947,1947,"October 3, 1920",University of Notre Dame,6-3,Bill Davis,F,/players/d/davisbi01.html,215,,,,,.240,0.7,3.1,.341,0.3,0.9,47,1.8,,,,,,,,,,,,
908,1973,1973,"April 2, 1950",Weber State University,6-7,Bob Davis,F,/players/d/davisbo01.html,215,,,,,.214,0.7,3.1,.667,0.4,0.7,9,1.8,,,,,,,,,,,,
909,1978,1992,"December 17, 1955",University of Maryland,6-3,Brad Davis,G,/players/d/davisbr01.html,180,0.9,.321,0.3,.534,.510,3.1,6.1,.828,1.7,2.1,961,8.2,,,,,8.6,.535,4.6,.799,3.8,3.0,84,12.2
910,1994,1994,"June 21, 1970",Duke University,6-7,Brian Davis,F-G,/players/d/davisbr02.html,200,0.0,.333,0.0,.321,.317,0.6,1.9,.735,0.7,1.0,68,1.9,0.3,.205,0.1,,5.0,.465,2.3,.686,3.0,2.1,141,6.8
911,1982,1990,"October 5, 1958",Vanderbilt University,6-7,Charles Davis,F,/players/d/davisch02.html,215,0.3,.170,0.0,.455,.451,2.3,5.2,.737,0.6,0.8,415,5.3,,,,,12.6,.514,6.5,.754,3.9,2.9,105,16.0
912,1972,1974,"September 7, 1949",Wake Forest University,6-2,Charlie Davis,G,/players/d/davisch01.html,160,,,,,.408,3.5,8.6,.806,1.9,2.4,144,8.9,,,,,,,,,,,,
913,1992,2007,"March 25, 1969",Clemson University,6-11,Dale Davis,F-C,/players/d/davisda01.html,230,0.0,.000,0.0,.530,.530,3.3,6.2,.562,1.4,2.5,1094,8.0,0.0,.000,0.0,,8.9,.588,5.2,.590,5.4,3.2,121,13.6
914,2017,2018,"December 2, 1996",Michigan State University,6-11,Deyonta Davis,C-F,/players/d/davisde01.html,237,0.0,,0.0,.598,.598,1.8,3.1,.649,0.5,0.8,96,4.2,0.0,,0.0,,5.7,.598,3.4,.605,1.1,0.7,35,7.5
915,1973,1977,"October 28, 1949",University of Houston,6-8,Dwight Davis,F,/players/d/davisdw01.html,220,,,,,.423,3.3,7.9,.730,2.0,2.7,340,8.6,,,,,,,,,,,,
916,2011,2018,"June 5, 1989",University of North Carolina,6-10,Ed Davis,F,/players/d/davised01.html,240,0.0,.000,0.0,.565,.565,2.8,4.9,.579,1.1,1.9,557,6.6,0.0,,0.0,,6.3,.548,3.4,.623,3.7,2.3,61,9.2
917,1997,2003,"August 27, 1968",Delaware State University,6-4,Emanual Davis,G,/players/d/davisem01.html,195,2.0,.352,0.7,.471,.394,1.8,4.5,.787,0.6,0.8,226,4.9,5.8,.368,2.1,,12.3,.465,5.7,.725,5.7,4.1,72,17.6
918,2008,2015,"January 1, 1986",Louisiana State University,6-9,Glen Davis,F-C,/players/d/davisgl01.html,289,0.1,.182,0.0,.448,.447,3.1,7.0,.700,1.7,2.4,514,8.0,0.9,.310,0.3,,12.0,.496,6.0,.694,6.5,4.5,95,16.7
919,1979,1980,"January 27, 1956",Florida State University,6-7,Harry Davis,F,/players/d/davisha01.html,220,0.0,,0.0,.436,.436,1.6,3.8,.689,0.7,1.0,44,4.0,,,,,10.1,.584,5.9,.613,3.5,2.2,108,14.0
920,1993,2004,"May 17, 1970",University of North Carolina,6-5,Hubert Davis,G,/players/d/davishu01.html,183,2.4,.441,1.1,.537,.458,3.1,6.7,.837,0.9,1.1,685,8.2,3.3,.435,1.4,,8.2,.498,4.1,.819,2.7,2.2,137,11.8
921,1968,1975,"December 18, 1941",University of Colorado,6-9,Jim Davis,C-F,/players/d/davisji01.html,225,,,,,.461,2.5,5.5,.674,1.6,2.4,597,6.7,,,,,,,,,,,,
922,1977,1986,"October 21, 1955",University of Dayton,6-2,Johnny Davis,G,/players/d/davisjo01.html,170,0.4,.176,0.1,.450,.448,4.9,11.0,.821,3.0,3.7,750,12.9,,,,,16.5,.454,7.5,.763,5.6,4.3,81,19.3
923,2004,2012,"August 10, 1980",University of Wyoming,6-8,Josh Davis,F,/players/d/davisjo02.html,235,1.0,.329,0.3,.450,.373,0.8,2.2,.724,0.3,0.4,67,2.3,1.9,.278,0.5,,9.5,.497,4.7,.642,3.3,2.1,119,12.1
924,1969,1976,"October 11, 1945",North Carolina Central University,6-8,Lee Davis,C-F,/players/d/davisle01.html,235,0.1,.189,0.0,.484,.482,3.3,6.9,.607,1.1,1.8,453,7.8,,,,,,,,,,,,
925,1989,1989,"June 8, 1963",Old Dominion University,6-6,Mark Davis,F-G,/players/d/davisma01.html,195,0.3,.100,0.0,.485,.480,1.5,3.1,.824,0.8,1.0,33,3.8,,,,,7.7,.501,3.9,.751,2.3,1.7,110,9.4
926,1996,2000,"April 26, 1973","Howard College, Texas Tech University",6-7,Mark Davis,G-F,/players/d/davisma02.html,210,0.5,.246,0.1,.455,.442,2.1,4.7,.655,1.2,1.9,230,5.5,2.0,.325,0.6,,13.3,.497,6.6,.639,6.3,4.0,58,17.9
927,1974,1977,"November 9, 1950",St. John's University,6-6,Mel Davis,F,/players/d/davisme01.html,220,,,,,.376,2.3,6.0,.709,0.8,1.1,190,5.3,,,,,,,,,,,,
928,1972,1977,"June 16, 1950",Duquesne University,6-7,Mickey Davis,F-G,/players/d/davismi02.html,195,0.1,.000,0.0,.455,.455,2.0,4.3,.835,1.1,1.3,309,5.0,,,,,,,,,,,,
929,1970,1973,"July 26, 1946",Virginia Union University,6-3,Mike Davis,G,/players/d/davismi01.html,185,0.6,.261,0.2,.425,.424,3.9,9.1,.765,2.4,3.1,242,10.1,,,,,,,,,,,,
930,1983,1983,"August 2, 1956",University of Maryland,6-10,Mike Davis,F,/players/d/davismi03.html,230,0.0,,0.0,.400,.400,0.5,1.3,.600,0.8,1.3,8,1.8,,,,,4.2,.466,2.0,.658,2.5,1.7,45,5.6
931,1981,1981,"July 26, 1958",Tennessee State University,6-7,Monti Davis,F,/players/d/davismo01.html,205,0.0,,0.0,.200,.200,0.5,2.5,.200,0.5,2.5,2,1.5,,,,,12.3,.498,6.1,.644,4.2,2.7,74,16.3
932,2007,2010,"July 21, 1984",Michigan State University,6-11,Paul Davis,C,/players/d/davispa01.html,270,0.0,.000,0.0,.402,.402,1.1,2.7,.732,0.5,0.7,82,2.6,0.4,.271,0.1,,8.8,.538,4.7,.763,4.8,3.7,130,13.2
933,1961,1962,"September 7, 1938",University of Cincinnati,6-4,Ralph Davis,G,/players/d/davisra01.html,180,,,,,.409,3.6,8.9,.677,0.7,1.0,150,8.0,,,,,,,,,,,,
934,1956,1956,"April 22, 1932",St. John's University,6-7,Red Davis,C,/players/d/davisre01.html,220,,,,,.000,0.0,2.0,1.000,0.7,0.7,3,0.7,,,,,,,,,,,,
935,1999,2010,"September 23, 1979",University of Iowa,6-6,Ricky Davis,G,/players/d/davisri01.html,195,2.2,.361,0.8,.480,.446,5.1,11.4,.781,2.5,3.2,736,13.5,2.9,.308,0.9,,12.0,.466,5.6,.698,4.2,2.9,31,15.0
936,1977,1982,"May 1, 1954",Washington State University,6-6,Ron Davis,G-F,/players/d/davisro01.html,198,0.1,.250,0.0,.422,.420,2.0,4.8,.571,1.3,2.3,78,5.3,,,,,12.1,.494,6.0,.670,3.6,2.4,52,14.3
937,1990,2001,"June 17, 1967",Virginia Union University,6-9,Terry Davis,F-C,/players/d/daviste01.html,225,0.0,.158,0.0,.473,.472,2.5,5.3,.605,1.4,2.3,480,6.4,,,,,,,,,,,,
938,1954,1958,"January 5, 1931",Texas A&M University,6-8,Walt Davis,C-F,/players/d/daviswa01.html,205,,,,,.377,1.9,5.1,.695,1.0,1.4,325,4.8,,,,,,,,,,,,
939,1978,1992,"September 9, 1954",University of North Carolina,6-6,Walter Davis,G-F,/players/d/daviswa03.html,193,0.7,.272,0.2,.516,.511,7.9,15.4,.851,3.0,3.6,1033,18.9,,,,,11.9,.531,6.3,.773,3.9,3.0,119,15.7
940,1968,1973,"June 30, 1943",North Carolina Agricultural and Technical State University,6-6,Warren Davis,F-C,/players/d/daviswa02.html,212,0.0,.125,0.0,.480,.480,4.5,9.4,.691,3.1,4.5,447,12.2,,,,,,,,,,,,
941,1971,1971,"August 9, 1945",University of North Texas,6-8,Willie Davis,C,/players/d/daviswi01.html,234,0.0,,0.0,.467,.467,0.9,1.9,.500,0.5,1.0,8,2.3,,,,,,,,,,,,
942,2015,2015,"September 19, 1991",Duke University,6-5,Andre Dawkins,G,/players/d/dawkian01.html,215,1.5,.167,0.3,.250,.167,0.3,1.5,,0.0,0.0,4,0.8,4.0,.407,1.6,,5.4,.433,2.3,.769,1.1,0.9,142,7.1
943,1976,1989,"January 11, 1957",,6-11,Darryl Dawkins,C,/players/d/dawkida01.html,251,0.0,.133,0.0,.572,.572,4.8,8.4,.685,2.4,3.6,726,12.0,,,,,,,,,,,,
944,1987,1995,"September 28, 1963",Duke University,6-2,Johnny Dawkins,G,/players/d/dawkijo01.html,165,1.0,.330,0.3,.474,.456,4.4,9.6,.857,2.0,2.3,541,11.1,1.9,.352,0.7,,15.2,.508,7.7,.790,4.6,3.6,133,19.2
945,1980,1980,"June 10, 1957",Northern Illinois University,6-5,Paul Dawkins,F,/players/d/dawkipa01.html,190,0.1,.200,0.0,.472,.470,2.5,5.3,.688,0.6,0.8,57,5.5,,,,,16.2,.459,7.4,.722,3.4,2.4,101,17.3
946,2016,2016,"February 1, 1993",Michigan State University,6-6,Branden Dawson,F,/players/d/dawsobr01.html,225,0.0,,0.0,.400,.400,0.3,0.8,1.000,0.2,0.2,6,0.8,0.1,.000,0.0,,7.8,.559,4.4,.558,2.4,1.4,130,10.1
947,2012,2012,"July 7, 1984",Midwestern State University,6-9,Eric Dawson,F,/players/d/dawsoer01.html,250,0.0,,0.0,.583,.583,1.8,3.0,.500,0.3,0.5,4,3.8,,,,,,,,,,,,
948,1968,1968,"April 18, 1945",University of Illinois at Urbana-Champaign,6-0,Jimmy Dawson,G,/players/d/dawsoji01.html,175,0.3,.143,0.0,.350,.346,2.2,6.3,.581,1.2,2.0,21,5.6,,,,,,,,,,,,
949,1991,1995,"August 25, 1967",Florida State University,6-7,Tony Dawson,F,/players/d/dawsoto01.html,215,0.7,.500,0.3,.533,.467,1.2,2.5,1.000,0.2,0.2,6,2.8,1.5,.295,0.4,,14.2,.533,7.6,.732,5.2,3.8,60,19.4
950,1993,2001,"January 7, 1970",University of Arkansas,6-6,Todd Day,G-F,/players/d/dayto01.html,188,3.4,.345,1.2,.462,.406,4.2,10.4,.739,2.6,3.6,483,12.3,4.6,.384,1.8,,13.7,.479,6.6,.747,5.3,3.9,127,18.9
951,2010,2015,"June 5, 1988",Gonzaga University,6-11,Austin Daye,F,/players/d/dayeau01.html,220,1.8,.351,0.6,.469,.402,1.9,4.8,.778,0.7,0.9,293,5.2,2.2,.422,0.9,,8.6,.477,4.1,.790,3.1,2.5,67,11.6
952,1984,1988,"November 30, 1960","University of California, Los Angeles",6-8,Darren Daye,F-G,/players/d/dayeda01.html,220,0.1,.118,0.0,.491,.491,2.6,5.3,.681,1.6,2.4,328,6.8,,,,,7.1,.555,4.0,.648,3.3,2.1,114,10.1
953,2013,2014,"June 23, 1987",,6-5,Nando De Colo,G,/players/d/decolna01.html,200,1.1,.363,0.4,.491,.429,1.4,3.3,.835,0.6,0.7,119,3.8,,,,,,,,,,,,
954,1980,1980,"December 6, 1957",University of Utah,6-4,Greg Deane,G,/players/d/deanegr01.html,190,0.1,1.000,0.1,.227,.182,0.3,1.6,.714,0.7,1.0,7,1.4,,,,,8.0,.528,4.2,.741,3.0,2.3,113,10.7
955,1971,1971,"October 5, 1946",Saint Joseph's University,6-1,Billy DeAngelis,G,/players/d/deangbi01.html,180,0.0,,0.0,.500,.500,0.4,0.8,.667,0.5,0.8,8,1.3,,,,,,,,,,,,
956,1963,1974,"October 16, 1940",University of Detroit Mercy,6-6,Dave DeBusschere,F-G,/players/d/debusda01.html,220,,,,,.432,6.5,15.1,.699,3.0,4.3,875,16.1,,,,,24.0,.423,10.1,.612,7.4,4.5,80,24.8
957,1996,2005,"February 1, 1973",University of Florida,6-10,Andrew DeClercq,F-C,/players/d/declean01.html,230,0.0,.000,0.0,.507,.507,1.9,3.8,.621,1.0,1.6,587,4.8,0.1,.333,0.0,,7.4,.531,3.9,.663,3.5,2.3,128,10.2
958,2014,2018,"August 12, 1989",University of Southern California,7-0,Dewayne Dedmon,C,/players/d/dedmode01.html,245,0.5,.355,0.2,.574,.552,2.2,4.0,.692,0.8,1.2,285,5.5,0.1,.000,0.0,,5.8,.520,3.0,.614,1.7,1.1,51,7.1
959,1969,1969,"August 9, 1943",Saint Mary of the Plains College,6-8,Don Dee,F,/players/d/deedo01.html,210,0.0,.000,0.0,.357,.357,2.4,6.7,.747,1.0,1.3,58,5.7,,,,,,,,,,,,
960,1959,1962,"February 22, 1936",Indiana University,6-8,Archie Dees,F-C,/players/d/deesar01.html,205,,,,,.402,3.0,7.5,.794,2.1,2.6,190,8.1,,,,,,,,,,,,
961,1994,1999,"September 12, 1971",Seton Hall University,6-2,Terry Dehere,G,/players/d/deherte01.html,190,2.2,.378,0.8,.473,.411,2.7,6.5,.779,1.8,2.4,402,8.0,6.3,.389,2.5,,13.9,.442,6.1,.822,5.8,4.8,128,19.5
962,1947,1947,"January 24, 1924",Columbia University,6-3,Red Dehnert,F,/players/d/dehnere01.html,175,,,,,.400,0.6,1.5,.333,0.2,0.6,10,1.4,,,,,,,,,,,,
963,2016,2016,"August 21, 1992","University of Southern California, University of Nevada, Las Vegas, Iowa State University",6-6,Bryce Dejean-Jones,G,/players/d/dejeabr01.html,209,2.3,.375,0.9,.493,.406,2.0,4.9,.524,0.8,1.5,14,5.6,3.1,.336,1.0,,8.8,.429,3.8,.684,3.3,2.3,117,10.8
964,2016,2018,"May 6, 1994",University of Wisconsin,6-9,Sam Dekker,F,/players/d/dekkesa01.html,230,1.6,.283,0.5,.529,.477,2.1,4.5,.612,0.5,0.8,151,5.2,3.6,.348,1.3,,9.0,.493,4.4,.695,2.8,2.0,113,12.1
965,1989,2002,"August 9, 1966",North Carolina State University,6-4,Vinny Del Negro,G,/players/d/delnevi01.html,185,0.9,.359,0.3,.495,.475,3.7,7.8,.840,1.4,1.7,771,9.1,2.2,.447,1.0,,6.6,.502,3.3,.825,2.2,1.8,103,9.1
966,2017,2018,"March 11, 1989",Virginia Polytechnic Institute and State University,6-3,Malcolm Delaney,G,/players/d/delanma01.html,190,1.8,.308,0.6,.431,.377,2.0,5.3,.805,1.2,1.5,127,5.7,5.3,.363,1.9,,11.7,.401,4.7,.845,6.3,5.3,136,16.6
967,1992,1999,"April 6, 1969","University of Maryland, University of Arizona",6-9,Bison Dele,F-C,/players/d/delebi01.html,235,0.0,.143,0.0,.528,.528,4.5,8.5,.691,2.0,2.9,413,11.0,0.0,.000,0.0,,8.4,.594,5.0,.691,3.5,2.4,96,12.4
968,2005,2013,"August 29, 1982",,6-6,Carlos Delfino,G,/players/d/delfica01.html,230,3.7,.365,1.3,.494,.401,2.9,7.2,.758,1.0,1.3,507,8.1,,,,,,,,,,,,
969,1997,2006,"January 28, 1974",University of Kentucky,6-1,Tony Delk,G,/players/d/delkto01.html,189,2.5,.343,0.9,.459,.408,3.4,8.4,.769,1.4,1.8,545,9.1,5.4,.397,2.1,,10.8,.474,5.1,.709,2.6,1.8,133,14.2
970,2014,2018,"September 8, 1990",Saint Mary's College of California,6-4,Matthew Dellavedova,G,/players/d/dellama01.html,198,2.6,.388,1.0,.483,.391,2.1,5.5,.839,0.7,0.8,328,6.0,5.6,.378,2.1,,10.5,.415,4.3,.860,4.0,3.4,136,14.2
971,1952,1952,"January 5, 1926",University of Wisconsin-River Falls,6-6,Nate DeLong,C,/players/d/delonna01.html,220,,,,,.476,1.2,2.5,.686,1.4,2.1,17,3.8,,,,,,,,,,,,
972,1989,1989,"January 24, 1966",University of Wyoming,6-5,Fennis Dembo,F,/players/d/dembofe01.html,215,0.1,.000,0.0,.333,.333,0.5,1.4,.800,0.3,0.3,31,1.2,5.5,.396,2.2,,12.6,.506,6.4,.770,5.3,4.0,129,17.9
973,1980,1982,"June 27, 1957",University of Arizona,6-9,Larry Demic,F-C,/players/d/demicla01.html,225,0.0,.000,0.0,.459,.459,1.9,4.2,.580,0.9,1.5,206,4.7,,,,,7.7,.553,4.2,.618,2.9,1.8,76,10.3
974,1994,1997,"February 12, 1970",University of the Pacific,6-3,Dell Demps,G,/players/d/dempsde01.html,205,0.2,.333,0.1,.512,.500,1.1,2.1,.762,0.8,1.1,20,3.0,5.1,.394,2.0,,11.4,.455,5.2,.695,4.0,2.7,115,15.1
975,1955,1959,"July 19, 1929",King's College,6-2,George Dempsey,G,/players/d/dempsge01.html,190,,,,,.407,1.9,4.6,.661,1.2,1.9,315,5.0,,,,,,,,,,,,
976,2005,2018,"April 16, 1985",Duke University,6-9,Luol Deng,F,/players/d/denglu01.html,220,2.2,.332,0.7,.484,.455,5.8,12.7,.770,2.7,3.6,880,15.0,3.0,.360,1.1,,11.9,.476,5.7,.710,3.7,2.6,37,15.1
977,1982,1984,"October 18, 1958",Duke University,6-8,Kenny Dennard,F,/players/d/dennake01.html,220,0.1,.300,0.0,.435,.429,1.1,2.7,.644,0.5,0.8,95,2.8,,,,,7.5,.513,3.9,.588,2.2,1.3,117,9.0
978,1953,1953,"September 19, 1930",Lawrence Technological University,6-2,Blaine Denning,G,/players/d/dennibl01.html,175,,,,,.400,2.0,5.0,1.000,1.0,1.0,1,5.0,,,,,,,,,,,,
979,2012,2013,"September 5, 1985",University of Washington,5-11,Justin Dentmon,G,/players/d/dentmju01.html,185,1.8,.143,0.3,.367,.333,1.3,3.8,.667,0.5,0.8,8,3.3,2.9,.349,1.0,,8.0,.428,3.4,.789,3.6,2.8,133,10.7
980,1972,1977,"February 18, 1949",Duke University,6-10,Randy Denton,C,/players/d/dentora01.html,240,0.0,.214,0.0,.473,.473,4.9,10.4,.779,1.6,2.1,413,11.5,,,,,,,,,,,,
981,1971,1973,"December 19, 1947",St. John's University,6-3,Joe DePre,G,/players/d/deprejo01.html,185,0.1,.200,0.0,.478,.477,2.8,5.8,.735,1.4,1.9,119,7.0,,,,,,,,,,,,
982,1975,1976,"March 11, 1952",Seattle University,6-0,Rod Derline,G,/players/d/derliro01.html,175,,,,,.419,2.0,4.8,.786,0.8,1.0,107,4.8,,,,,,,,,,,,
983,2010,2018,"August 7, 1989",University of Southern California,6-7,DeMar DeRozan,G-F,/players/d/derozde01.html,221,1.7,.289,0.5,.463,.448,7.0,15.6,.827,5.2,6.3,673,19.7,1.0,.167,0.2,,10.5,.523,5.5,.646,4.2,2.7,35,13.9
984,1967,1967,"May 13, 1945",University of Rochester,6-1,Dave Deutsch,G,/players/d/deutsda01.html,170,,,,,.167,0.3,1.9,.450,0.5,1.1,19,1.1,,,,,,,,,,,,
985,1956,1958,"December 21, 1931",George Washington University,6-5,Corky Devlin,G,/players/d/devlico01.html,195,,,,,.366,2.7,7.3,.742,1.8,2.4,210,7.1,,,,,,,,,,,,
986,1951,1951,"February 12, 1922",Clark Atlanta University,6-6,Hank DeZonie,C-F,/players/d/dezonha01.html,215,,,,,.240,1.2,5.0,.714,1.0,1.4,5,3.4,,,,,,,,,,,,
987,2000,2004,"December 20, 1975",Eastern Michigan University,6-4,Derrick Dial,G,/players/d/dialde01.html,184,0.5,.190,0.1,.386,.372,1.3,3.4,.672,0.5,0.7,82,3.1,4.7,.377,1.8,,11.8,.480,5.7,.774,3.1,2.4,122,15.5
988,2017,2018,"September 13, 1996",University of Kansas,6-9,Cheick Diallo,F,/players/d/diallch01.html,220,0.0,,0.0,.547,.547,2.0,3.7,.756,1.0,1.3,67,5.0,0.0,,0.0,,2.1,.569,1.2,.556,1.0,0.6,27,3.0
989,2004,2017,"April 16, 1982",,6-8,Boris Diaw,F-C,/players/d/diawbo01.html,250,1.3,.336,0.4,.524,.493,3.6,7.2,.717,1.0,1.4,1064,8.6,,,,,,,,,,,,
990,2007,2010,"August 29, 1982",Pepperdine University,6-7,Yakhouba Diawara,G-F,/players/d/diawaya01.html,225,2.2,.301,0.7,.450,.357,1.2,3.5,.650,0.4,0.6,187,3.5,2.2,.343,0.8,,11.9,.456,5.4,.650,5.9,3.8,45,15.5
991,2008,2008,"March 4, 1985",University of Miami,6-2,Guillermo Diaz,G,/players/d/diazgu01.html,192,0.2,.000,0.0,.250,.250,0.2,0.7,.600,0.5,0.8,6,0.8,4.9,.380,1.9,,12.4,.448,5.5,.740,3.9,2.9,93,15.9
992,2003,2008,"September 16, 1978","University of Washington, Gonzaga University",6-0,Dan Dickau,G,/players/d/dickada01.html,190,1.8,.341,0.6,.460,.401,2.0,5.1,.831,1.2,1.4,300,5.8,4.8,.462,2.2,,8.7,.451,3.9,.854,3.8,3.3,97,13.3
993,2004,2008,"July 21, 1978","Tyler Junior College, University of Idaho",6-8,Kaniel Dickens,F,/players/d/dickeka01.html,215,0.5,.333,0.2,.475,.400,0.4,1.1,.750,0.2,0.2,19,1.2,0.7,.351,0.2,,6.9,.483,3.3,.630,3.8,2.4,55,9.3
994,1976,1977,"November 27, 1951",University of Charleston,6-4,Henry Dickerson,G,/players/d/dickehe01.html,190,,,,,.366,0.7,1.8,.625,0.7,1.0,23,2.0,,,,,,,,,,,,
995,1999,2003,"June 25, 1975",University of Arizona,6-5,Michael Dickerson,G-F,/players/d/dickemi01.html,190,3.4,.402,1.4,.483,.432,5.8,13.3,.784,2.5,3.2,212,15.4,3.2,.367,1.2,,11.2,.458,5.1,.728,3.2,2.3,130,13.8
996,1975,1975,"December 14, 1951",Boise State University,6-3,Clyde Dickey,G,/players/d/dickecl01.html,185,0.3,.133,0.0,.355,.350,1.2,3.5,.762,0.3,0.4,58,2.8,,,,,,,,,,,,
997,1974,1978,"March 20, 1951",University of Cincinnati,6-7,Derrek Dickey,F,/players/d/dickede01.html,218,,,,,.470,2.7,5.7,.745,0.8,1.1,321,6.1,,,,,,,,,,,,
998,1952,1952,"October 26, 1926",North Carolina State University,6-1,Dick Dickey,G,/players/d/dickedi01.html,175,,,,,.294,0.9,3.0,.681,1.0,1.5,45,2.8,,,,,,,,,,,,