-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnba_players.txt
1097 lines (1094 loc) · 61.3 KB
/
nba_players.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[78062, "Sappleton", "Wayne", "Wayne Sappleton", False],
[203967, "Saric", "Dario", "Dario Saric", True],
[1630846, "Sarr", "Olivier", "Olivier Sarr", True],
[987, "Sasser", "Jason", "Jason Sasser", False],
[2219, "Sasser", "Jeryl", "Jeryl Sasser", False],
[203107, "Satoransky", "Tomas", "Tomas Satoransky", False],
[2261, "Satterfield", "Kenny", "Kenny Satterfield", False],
[78063, "Saul", "Frank", "Frank Saul", False],
[78064, "Sauldsberry", "Woody", "Woody Sauldsberry", False],
[78065, "Saunders", "Fred", "Fred Saunders", False],
[78066, "Savage", "Don", "Don Savage", False],
[2453, "Savovic", "Predrag", "Predrag Savovic", False],
[78067, "Sawyer", "Alan", "Alan Sawyer", False],
[2243, "Scalabrine", "Brian", "Brian Scalabrine", False],
[2637, "Scales", "Alex", "Alex Scales", False],
[78068, "Scales", "Dewayne", "Dewayne Scales", False],
[78069, "Schade", "Frank", "Frank Schade", False],
[78070, "Schadler", "Ben", "Ben Schadler", False],
[78071, "Schaefer", "Herm", "Herm Schaefer", False],
[78072, "Schafer", "Bob", "Bob Schafer", False],
[1630648, "Schakel", "Jordan", "Jordan Schakel", True],
[78073, "Scharnus", "Ben", "Ben Scharnus", False],
[78074, "Schatzman", "Marv", "Marv Schatzman", False],
[78075, "Schaus", "Fred", "Fred Schaus", False],
[7, "Schayes", "Dan", "Dan Schayes", False],
[78076, "Schayes", "Dolph", "Dolph Schayes", False],
[78078, "Schectman", "Ossie", "Ossie Schectman", False],
[88, "Scheffler", "Steve", "Steve Scheffler", False],
[78080, "Scheffler", "Tom", "Tom Scheffler", False],
[78081, "Schellhase", "Dave", "Dave Schellhase", False],
[101195, "Schenscher", "Luke", "Luke Schenscher", False],
[78082, "Scherer", "Herb", "Herb Scherer", False],
[368, "Schintzius", "Dwayne", "Dwayne Schintzius", False],
[78084, "Schlueter", "Dale", "Dale Schlueter", False],
[78085, "Schnellbacher", "Otto", "Otto Schnellbacher", False],
[78086, "Schnittker", "Dick", "Dick Schnittker", False],
[78087, "Schoene", "Russ", "Russ Schoene", False],
[1629678, "Schofield", "Admiral", "Admiral Schofield", True],
[78088, "Scholz", "Dave", "Dave Scholz", False],
[78089, "Schoon", "Milt", "Milt Schoon", False],
[96, "Schrempf", "Detlef", "Detlef Schrempf", False],
[203471, "Schroder", "Dennis", "Dennis Schroder", True],
[78091, "Schultz", "Howie", "Howie Schultz", False],
[78092, "Schulz", "Dick", "Dick Schulz", False],
[78093, "Schweitz", "John", "John Schweitz", False],
[2449, "Scola", "Luis", "Luis Scola", False],
[78094, "Scolari", "Freddie", "Freddie Scolari", False],
[78095, "Scott", "Alvin", "Alvin Scott", False],
[1064, "Scott", "Brent", "Brent Scott", False],
[2, "Scott", "Byron", "Byron Scott", False],
[78097, "Scott", "Charlie", "Charlie Scott", False],
[192, "Scott", "Dennis", "Dennis Scott", False],
[1109, "Scott", "James", "James Scott", False],
[203118, "Scott", "Mike", "Mike Scott", False],
[78100, "Scott", "Ray", "Ray Scott", False],
[1035, "Scott", "Shawnelle", "Shawnelle Scott", False],
[1630286, "Scott", "Trevon", "Trevon Scott", False],
[1630206, "Scrubb", "Jay", "Jay Scrubb", False],
[78102, "Scurry", "Carey", "Carey Scurry", False],
[1631220, "Seabron", "Dereon", "Dereon Seabron", True],
[78103, "Seals", "Bruce", "Bruce Seals", False],
[1578, "Seals", "Shea", "Shea Seals", False],
[907, "Sealy", "Malik", "Malik Sealy", False],
[78105, "Searcy", "Ed", "Ed Searcy", False],
[78106, "Sears", "Ken", "Ken Sears", False],
[78107, "See", "Wayne", "Wayne See", False],
[200757, "Sefolosha", "Thabo", "Thabo Sefolosha", False],
[938, "Seikaly", "Rony", "Rony Seikaly", False],
[78109, "Selbo", "Glen", "Glen Selbo", False],
[202729, "Selby", "Josh", "Josh Selby", False],
[1627782, "Selden", "Wayne", "Wayne Selden", False],
[78110, "Sellers", "Brad", "Brad Sellers", False],
[78111, "Sellers", "Phil", "Phil Sellers", False],
[78112, "Seltz", "Rollie", "Rollie Seltz", False],
[78113, "Selvy", "Frank", "Frank Selvy", False],
[78114, "Seminoff", "Jim", "Jim Seminoff", False],
[200754, "Sene", "Mouhamed", "Mouhamed Sene", False],
[78115, "Senesky", "George", "George Senesky", False],
[1630578, "Sengun", "Alperen", "Alperen Sengun", True],
[202338, "Seraphin", "Kevin", "Kevin Seraphin", False],
[1738, "Sesay", "Ansu", "Ansu Sesay", False],
[201196, "Sessions", "Ramon", "Ramon Sessions", False],
[78116, "Sewell", "Tom", "Tom Sewell", False],
[1629012, "Sexton", "Collin", "Collin Sexton", True],
[78117, "Seymour", "Paul", "Paul Seymour", False],
[78118, "Shaback", "Nick", "Nick Shaback", False],
[1593, "Shackleford", "Charles", "Charles Shackleford", False],
[78120, "Shaeffer", "Carl", "Carl Shaeffer", False],
[78121, "Shaffer", "Lee", "Lee Shaffer", False],
[201203, "Shakur", "Mustafa", "Mustafa Shakur", False],
[1629013, "Shamet", "Landry", "Landry Shamet", True],
[1539, "Shammgod", "God", "God Shammgod", False],
[78123, "Shannon", "Earl", "Earl Shannon", False],
[78124, "Shannon", "Howie", "Howie Shannon", False],
[78125, "Share", "Charlie", "Charlie Share", False],
[78126, "Sharman", "Bill", "Bill Sharman", False],
[1630549, "Sharpe", "Day'Ron", "Day'Ron Sharpe", True],
[1631101, "Sharpe", "Shaedon", "Shaedon Sharpe", True],
[201594, "Sharpe", "Walter", "Walter Sharpe", False],
[1117, "Shasky", "John", "John Shasky", False],
[78128, "Shavlik", "Ron", "Ron Shavlik", False],
[216, "Shaw", "Brian", "Brian Shaw", False],
[1745, "Shaw", "Casey", "Casey Shaw", False],
[1629621, "Shayok", "Marial", "Marial Shayok", False],
[78130, "Shea", "Bob", "Bob Shea", False],
[78131, "Sheffield", "Fred", "Fred Sheffield", False],
[78132, "Shelton", "Craig", "Craig Shelton", False],
[78133, "Shelton", "Lonnie", "Lonnie Shelton", False],
[203129, "Shengelia", "Tornike", "Tornike Shengelia", False],
[1852, "Sheppard", "Jeff", "Jeff Sheppard", False],
[78135, "Sheppard", "Steve", "Steve Sheppard", False],
[78136, "Sherod", "Edmund", "Edmund Sherod", False],
[78653, "Shipp", "Charlie", "Charlie Shipp", False],
[2321, "Shirley", "Paul", "Paul Shirley", False],
[78138, "Short", "Gene", "Gene Short", False],
[78139, "Short", "Purvis", "Purvis Short", False],
[78140, "Shouse", "Dexter", "Dexter Shouse", False],
[78141, "Shrider", "Dick", "Dick Shrider", False],
[78142, "Shue", "Gene", "Gene Shue", False],
[78143, "Shumate", "John", "John Shumate", False],
[202697, "Shumpert", "Iman", "Iman Shumpert", False],
[203144, "Shved", "Alexey", "Alexey Shved", False],
[1627783, "Siakam", "Pascal", "Pascal Siakam", True],
[1626296, "Sibert", "Jordan", "Jordan Sibert", False],
[78144, "Sibert", "Sam", "Sam Sibert", False],
[78145, "Sibley", "Mark", "Mark Sibley", False],
[78146, "Sichting", "Jerry", "Jerry Sichting", False],
[78147, "Siegfried", "Larry", "Larry Siegfried", False],
[78148, "Siewert", "Ralph", "Ralph Siewert", False],
[78149, "Sikma", "Jack", "Jack Sikma", False],
[78150, "Silas", "James", "James Silas", False],
[78151, "Silas", "Paul", "Paul Silas", False],
[202918, "Silas", "Xavier", "Xavier Silas", False],
[202081, "Siler", "Garret", "Garret Siler", False],
[78152, "Silliman", "Mike", "Mike Silliman", False],
[1629735, "Silva", "Chris", "Chris Silva", True],
[101134, "Simien", "Wayne", "Wayne Simien", False],
[1627732, "Simmons", "Ben", "Ben Simmons", True],
[2250, "Simmons", "Bobby", "Bobby Simmons", False],
[200759, "Simmons", "Cedric", "Cedric Simmons", False],
[78153, "Simmons", "Connie", "Connie Simmons", False],
[78154, "Simmons", "Johnny", "Johnny Simmons", False],
[203613, "Simmons", "Jonathon", "Jonathon Simmons", False],
[1628424, "Simmons", "Kobi", "Kobi Simmons", False],
[1489, "Simmons", "Lionel", "Lionel Simmons", False],
[1750, "Simon", "Miles", "Miles Simon", False],
[1630250, "Simonovic", "Marko", "Marko Simonovic", True],
[1629014, "Simons", "Anfernee", "Anfernee Simons", True],
[54, "Simpkins", "Dickey", "Dickey Simpkins", False],
[202067, "Simpson", "Diamon", "Diamon Simpson", False],
[78157, "Simpson", "Ralph", "Ralph Simpson", False],
[1630285, "Simpson", "Zavier", "Zavier Simpson", False],
[1591, "Sims", "Alvin", "Alvin Sims", False],
[78160, "Sims", "Bob", "Bob Sims", False],
[201235, "Sims", "Courtney", "Courtney Sims", False],
[78159, "Sims", "Doug", "Doug Sims", False],
[203156, "Sims", "Henry", "Henry Sims", False],
[1630579, "Sims", "Jericho", "Jericho Sims", True],
[78161, "Sims", "Scott", "Scott Sims", False],
[202713, "Singler", "Kyle", "Kyle Singler", False],
[201606, "Singletary", "Sean", "Sean Singletary", False],
[202698, "Singleton", "Chris", "Chris Singleton", False],
[101189, "Singleton", "James", "James Singleton", False],
[78162, "Singleton", "Mckinley", "Mckinley Singleton", False],
[78163, "Sinicola", "Zeke", "Zeke Sinicola", False],
[1629686, "Sirvydis", "Deividas", "Deividas Sirvydis", False],
[78164, "Sitton", "Charlie", "Charlie Sitton", False],
[203491, "Siva", "Peyton", "Peyton Siva", False],
[101, "Skiles", "Scott", "Scott Skiles", False],
[78167, "Skinner", "Al", "Al Skinner", False],
[1730, "Skinner", "Brian", "Brian Skinner", False],
[78168, "Skinner", "Talvin", "Talvin Skinner", False],
[78169, "Skoog", "Whitey", "Whitey Skoog", False],
[78170, "Slade", "Jeff", "Jeff Slade", False],
[1073, "Slater", "Reggie", "Reggie Slater", False],
[78171, "Slaughter", "Jim", "Jim Slaughter", False],
[78172, "Slaughter", "Jose", "Jose Slaughter", False],
[2447, "Slay", "Tamar", "Tamar Slay", False],
[202388, "Sloan", "Donald", "Donald Sloan", False],
[78173, "Sloan", "Jerry", "Jerry Sloan", False],
[101166, "Slokar", "Uros", "Uros Slokar", False],
[78174, "Sluby", "Tom", "Tom Sluby", False],
[1629346, "Smailagic", "Alen", "Alen Smailagic", False],
[1630606, "Smart", "Javonte", "Javonte Smart", False],
[78175, "Smart", "Keith", "Keith Smart", False],
[203935, "Smart", "Marcus", "Marcus Smart", True],
[78176, "Smawley", "Belus", "Belus Smawley", False],
[78177, "Smiley", "Jack", "Jack Smiley", False],
[78178, "Smith", "Adrian", "Adrian Smith", False],
[78207, "Smith", "Bill", "Bill Smith", False],
[78209, "Smith", "Bill", "Bill Smith", False],
[78202, "Smith", "Bingo", "Bingo Smith", False],
[78203, "Smith", "Bobby", "Bobby Smith", False],
[293, "Smith", "Charles", "Charles Smith", False],
[1520, "Smith", "Charles", "Charles Smith", False],
[78179, "Smith", "Charles", "Charles Smith", False],
[1814, "Smith", "Chris", "Chris Smith", False],
[203147, "Smith", "Chris", "Chris Smith", False],
[78181, "Smith", "Clinton", "Clinton Smith", False],
[200783, "Smith", "Craig", "Craig Smith", False],
[78182, "Smith", "Deb", "Deb Smith", False],
[78183, "Smith", "Derek", "Derek Smith", False],
[78184, "Smith", "Don", "Don Smith", False],
[78185, "Smith", "Donald", "Donald Smith", False],
[2764, "Smith", "Donta", "Donta Smith", False],
[475, "Smith", "Doug", "Doug Smith", False],
[1630696, "Smith", "Dru", "Dru Smith", True],
[78187, "Smith", "Ed", "Ed Smith", False],
[78188, "Smith", "Elmore", "Elmore Smith", False],
[78189, "Smith", "Garfield", "Garfield Smith", False],
[78190, "Smith", "Greg", "Greg Smith", False],
[202962, "Smith", "Greg", "Greg Smith", False],
[202397, "Smith", "Ish", "Ish Smith", True],
[2747, "Smith", "JR", "JR Smith", False],
[2074, "Smith", "Jabari", "Jabari Smith", False],
[1630188, "Smith", "Jalen", "Jalen Smith", True],
[201160, "Smith", "Jason", "Jason Smith", False],
[202536, "Smith", "Jerry", "Jerry Smith", False],
[78191, "Smith", "Jim", "Jim Smith", False],
[693, "Smith", "Joe", "Joe Smith", False],
[2746, "Smith", "Josh", "Josh Smith", False],
[78192, "Smith", "Keith", "Keith Smith", False],
[181, "Smith", "Kenny", "Kenny Smith", False],
[78194, "Smith", "Labradford", "Labradford Smith", False],
[78195, "Smith", "Larry", "Larry Smith", False],
[1910, "Smith", "Leon", "Leon Smith", False],
[63, "Smith", "Michael", "Michael Smith", False],
[78197, "Smith", "Michael", "Michael Smith", False],
[2065, "Smith", "Mike", "Mike Smith", False],
[202701, "Smith", "Nolan", "Nolan Smith", False],
[78198, "Smith", "Otis", "Otis Smith", False],
[78199, "Smith", "Phil", "Phil Smith", False],
[78200, "Smith", "Randy", "Randy Smith", False],
[78201, "Smith", "Reggie", "Reggie Smith", False],
[78204, "Smith", "Robert", "Robert Smith", False],
[203893, "Smith", "Russ", "Russ Smith", False],
[78205, "Smith", "Sammy", "Sammy Smith", False],
[120, "Smith", "Steven", "Steven Smith", False],
[200848, "Smith", "Steven", "Steven Smith", False],
[1478, "Smith", "Stevin", "Stevin Smith", False],
[2604, "Smith", "Theron", "Theron Smith", False],
[380, "Smith", "Tony", "Tony Smith", False],
[78208, "Smith", "Willie", "Willie Smith", False],
[1629015, "Smith", "Zhaire", "Zhaire Smith", False],
[1628372, "Smith Jr.", "Dennis", "Dennis Smith Jr.", True],
[1631095, "Smith Jr.", "Jabari", "Jabari Smith Jr.", True],
[22, "Smits", "Rik", "Rik Smits", False],
[1091, "Smrek", "Mike", "Mike Smrek", False],
[78212, "Smyth", "Joe", "Joe Smyth", False],
[1630270, "Sneed", "Xavier", "Xavier Sneed", False],
[203503, "Snell", "Tony", "Tony Snell", False],
[727, "Snow", "Eric", "Eric Snow", False],
[78213, "Snyder", "Dick", "Dick Snyder", False],
[2745, "Snyder", "Kirk", "Kirk Snyder", False],
[78214, "Sobek", "George", "George Sobek", False],
[78215, "Sobers", "Ricky", "Ricky Sobers", False],
[78216, "Sobie", "Ron", "Ron Sobie", False],
[1631110, "Sochan", "Jeremy", "Jeremy Sochan", True],
[78217, "Sojourner", "Mike", "Mike Sojourner", False],
[2226, "Solomon", "Will", "Will Solomon", False],
[78219, "Somerset", "Willie", "Willie Somerset", False],
[2443, "Songaila", "Darius", "Darius Songaila", False],
[78220, "Sorenson", "Dave", "Dave Sorenson", False],
[203480, "Southerland", "James", "James Southerland", False],
[78221, "Sovran", "Gino", "Gino Sovran", False],
[2776, "Sow", "Pape", "Pape Sow", False],
[1629034, "Spalding", "Ray", "Ray Spalding", False],
[78222, "Spanarkel", "Jim", "Jim Spanarkel", False],
[2779, "Spanoulis", "Vassilis", "Vassilis Spanoulis", False],
[78223, "Sparrow", "Guy", "Guy Sparrow", False],
[600009, "Sparrow", "Rory", "Rory Sparrow", False],
[78225, "Spears", "Odie", "Odie Spears", False],
[78226, "Spector", "Art", "Art Spector", False],
[201578, "Speights", "Marreese", "Marreese Speights", False],
[1629016, "Spellman", "Omari", "Omari Spellman", False],
[78227, "Spencer", "Andre", "Andre Spencer", False],
[771, "Spencer", "Elmore", "Elmore Spencer", False],
[280, "Spencer", "Felton", "Felton Spencer", False],
[78230, "Spicer", "Lou", "Lou Spicer", False],
[78231, "Spitzer", "Craig", "Craig Spitzer", False],
[201168, "Splitter", "Tiago", "Tiago Splitter", False],
[78232, "Spoelstra", "Art", "Art Spoelstra", False],
[84, "Sprewell", "Latrell", "Latrell Sprewell", False],
[78233, "Spriggs", "Larry", "Larry Spriggs", False],
[1630531, "Springer", "Jaden", "Jaden Springer", True],
[78234, "Springer", "Jim", "Jim Springer", False],
[78235, "Spruill", "Jim", "Jim Spruill", False],
[1756, "Stack", "Ryan", "Ryan Stack", False],
[711, "Stackhouse", "Jerry", "Jerry Stackhouse", False],
[78237, "Stacom", "Kevin", "Kevin Stacom", False],
[78238, "Stallworth", "Dave", "Dave Stallworth", False],
[78239, "Stallworth", "Isaac", "Isaac Stallworth", False],
[78240, "Stanczak", "Ed", "Ed Stanczak", False],
[1630199, "Stanley", "Cassius", "Cassius Stanley", False],
[78241, "Stansbury", "Terence", "Terence Stansbury", False],
[317, "Starks", "John", "John Starks", False],
[78243, "Starr", "Keith", "Keith Starr", False],
[203917, "Stauskas", "Nik", "Nik Stauskas", False],
[78244, "Staverman", "Larry", "Larry Staverman", False],
[78245, "Steele", "Larry", "Larry Steele", False],
[1099, "Steigenga", "Matt", "Matt Steigenga", False],
[1735, "Stepania", "Vladimir", "Vladimir Stepania", False],
[203474, "Stephens", "DJ", "DJ Stephens", False],
[78247, "Stephens", "Everette", "Everette Stephens", False],
[78249, "Stephens", "Jack", "Jack Stephens", False],
[1086, "Stephens", "Joe", "Joe Stephens", False],
[202362, "Stephenson", "Lance", "Lance Stephenson", False],
[1627293, "Stepheson", "Alex", "Alex Stepheson", False],
[78250, "Steppe", "Brook", "Brook Steppe", False],
[78251, "Stevens", "Barry", "Barry Stevens", False],
[1630205, "Stevens", "Lamar", "Lamar Stevens", True],
[78252, "Stevens", "Wayne", "Wayne Stevens", False],
[2052, "Stevenson", "DeShawn", "DeShawn Stevenson", False],
[1630597, "Stewart", "DJ", "DJ Stewart", False],
[78253, "Stewart", "Dennis", "Dennis Stewart", False],
[1630191, "Stewart", "Isaiah", "Isaiah Stewart", True],
[1529, "Stewart", "Kebu", "Kebu Stewart", False],
[1125, "Stewart", "Larry", "Larry Stewart", False],
[1565, "Stewart", "Michael", "Michael Stewart", False],
[78256, "Stewart", "Norm", "Norm Stewart", False],
[201880, "Stiemsma", "Greg", "Greg Stiemsma", False],
[78257, "Stipanovich", "Steve", "Steve Stipanovich", False],
[179, "Stith", "Bryant", "Bryant Stith", False],
[78259, "Stith", "Sam", "Sam Stith", False],
[78260, "Stith", "Tom", "Tom Stith", False],
[78261, "Stivrins", "Alex", "Alex Stivrins", False],
[204065, "Stockton", "David", "David Stockton", False],
[304, "Stockton", "John", "John Stockton", False],
[978, "Stojakovic", "Peja", "Peja Stojakovic", False],
[1055, "Stokes", "Ed", "Ed Stokes", False],
[78264, "Stokes", "Greg", "Greg Stokes", False],
[203950, "Stokes", "Jarnell", "Jarnell Stokes", False],
[600016, "Stokes", "Maurice", "Maurice Stokes", False],
[78266, "Stolkey", "Art", "Art Stolkey", False],
[1627754, "Stone", "Diamond", "Diamond Stone", False],
[202933, "Stone", "Julyan", "Julyan Stone", False],
[2852, "Storey", "Awvee", "Awvee Storey", False],
[757, "Stoudamire", "Damon", "Damon Stoudamire", False],
[101136, "Stoudamire", "Salim", "Salim Stoudamire", False],
[2405, "Stoudemire", "Amar'e", "Amar'e Stoudemire", False],
[78267, "Stovall", "Paul", "Paul Stovall", False],
[201199, "Strawberry", "DJ", "DJ Strawberry", False],
[78268, "Strawder", "Joe", "Joe Strawder", False],
[78269, "Stricker", "Bill", "Bill Stricker", False],
[1065, "Strickland", "Erick", "Erick Strickland", False],
[1110, "Strickland", "Mark", "Mark Strickland", False],
[393, "Strickland", "Rod", "Rod Strickland", False],
[78270, "Strickland", "Roger", "Roger Strickland", False],
[78271, "Stroeder", "John", "John Stroeder", False],
[400, "Strong", "Derek", "Derek Strong", False],
[78273, "Strothers", "Lamont", "Lamont Strothers", False],
[78274, "Stroud", "John", "John Stroud", False],
[1629622, "Strus", "Max", "Max Strus", True],
[201155, "Stuckey", "Rodney", "Rodney Stuckey", False],
[78275, "Stump", "Gene", "Gene Stump", False],
[78276, "Stutz", "Stan", "Stan Stutz", False],
[1630591, "Suggs", "Jalen", "Jalen Suggs", True],
[78277, "Suiter", "Gary", "Gary Suiter", False],
[203096, "Sullinger", "Jared", "Jared Sullinger", False],
[201969, "Summers", "DaJuan", "DaJuan Summers", False],
[1628410, "Sumner", "Edmond", "Edmond Sumner", True],
[78654, "Sumpter", "Barry", "Barry Sumpter", False],
[201180, "Sun Yue", "", "Sun Yue", False],
[78278, "Sunderlage", "Don", "Don Sunderlage", False],
[1743, "Sundov", "Bruno", "Bruno Sundov", False],
[78279, "Sundvold", "Jon", "Jon Sundvold", False],
[682, "Sura", "Bob", "Bob Sura", False],
[78280, "Surhoff", "Dick", "Dick Surhoff", False],
[78281, "Suttle", "Dane", "Dane Suttle", False],
[357, "Sutton", "Greg", "Greg Sutton", False],
[78283, "Swain", "Bennie", "Bennie Swain", False],
[1628403, "Swanigan", "Caleb", "Caleb Swanigan", False],
[78284, "Swanson", "Norm", "Norm Swanson", False],
[78285, "Swartz", "Dan", "Dan Swartz", False],
[2552, "Sweetney", "Michael", "Michael Sweetney", False],
[1631306, "Swider", "Cole", "Cole Swider", True],
[2741, "Swift", "Robert", "Robert Swift", False],
[2031, "Swift", "Stromile", "Stromile Swift", False],
[78286, "Swinson", "Aaron", "Aaron Swinson", False],
[1628591, "Sword", "Craig", "Craig Sword", False],
[202377, "Sy", "Pape", "Pape Sy", False],
[78287, "Sydnor", "Wallace", "Wallace Sydnor", False],
[1626208, "Sykes", "Keifer", "Keifer Sykes", False],
[1132, "Sykes", "Larry", "Larry Sykes", False],
[1136, "Szabo", "Brett", "Brett Szabo", False],
[1887, "Szczerbiak", "Wally", "Wally Szczerbiak", False],
[440, "Tabak", "Zan", "Zan Tabak", False],
[2657, "Tabuse", "Yuta", "Yuta Tabuse", False],
[101147, "Taft", "Chris", "Chris Taft", False],
[78291, "Tannenbaum", "Sid", "Sid Tannenbaum", False],
[1434, "Tarlac", "Dragan", "Dragan Tarlac", False],
[78293, "Tarpley", "Roy", "Roy Tarpley", False],
[1630256, "Tate", "Jae'Sean", "Jae'Sean Tate", True],
[78294, "Tatum", "Earl", "Earl Tatum", False],
[1628369, "Tatum", "Jayson", "Jayson Tatum", True],
[204002, "Tavares", "Edy", "Edy Tavares", False],
[78295, "Taylor", "Anthony", "Anthony Taylor", False],
[78296, "Taylor", "Brian", "Brian Taylor", False],
[101182, "Taylor", "Donell", "Donell Taylor", False],
[78298, "Taylor", "Fred", "Fred Taylor", False],
[1627819, "Taylor", "Isaiah", "Isaiah Taylor", False],
[78297, "Taylor", "Jay", "Jay Taylor", False],
[78299, "Taylor", "Jeff", "Jeff Taylor", False],
[203106, "Taylor", "Jeffery", "Jeffery Taylor", False],
[201966, "Taylor", "Jermaine", "Jermaine Taylor", False],
[1511, "Taylor", "Johnny", "Johnny Taylor", False],
[78301, "Taylor", "Leonard", "Leonard Taylor", False],
[1508, "Taylor", "Maurice", "Maurice Taylor", False],
[201446, "Taylor", "Mike", "Mike Taylor", False],
[78302, "Taylor", "Roland", "Roland Taylor", False],
[1630678, "Taylor", "Terry", "Terry Taylor", True],
[203116, "Taylor", "Tyshawn", "Tyshawn Taylor", False],
[78303, "Taylor", "Vince", "Vince Taylor", False],
[78304, "Teagle", "Terry", "Terry Teagle", False],
[201952, "Teague", "Jeff", "Jeff Teague", False],
[203104, "Teague", "Marquis", "Marquis Teague", False],
[203141, "Teletovic", "Mirza", "Mirza Teletovic", False],
[2742, "Telfair", "Sebastian", "Sebastian Telfair", False],
[202066, "Temple", "Garrett", "Garrett Temple", True],
[1628462, "Teodosic", "Milos", "Milos Teodosic", False],
[78305, "Terrell", "Ira", "Ira Terrell", False],
[1629123, "Terrell", "Jared", "Jared Terrell", False],
[78307, "Terry", "Carlos", "Carlos Terry", False],
[78306, "Terry", "Chuck", "Chuck Terry", False],
[78308, "Terry", "Claude", "Claude Terry", False],
[1631207, "Terry", "Dalen", "Dalen Terry", True],
[1629150, "Terry", "Emanuel", "Emanuel Terry", False],
[1891, "Terry", "Jason", "Jason Terry", False],
[1630179, "Terry", "Tyrell", "Tyrell Terry", False],
[1630257, "Teske", "Jon", "Jon Teske", False],
[201934, "Thabeet", "Hasheem", "Hasheem Thabeet", False],
[78309, "Thacker", "Tom", "Tom Thacker", False],
[1628464, "Theis", "Daniel", "Daniel Theis", True],
[78310, "Theus", "Reggie", "Reggie Theus", False],
[78311, "Thibeaux", "Peter", "Peter Thibeaux", False],
[78312, "Thieben", "Bill", "Bill Thieben", False],
[78313, "Thigpen", "Justus", "Justus Thigpen", False],
[78314, "Thirdkill", "David", "David Thirdkill", False],
[203519, "Thomas", "Adonis", "Adonis Thomas", False],
[2873, "Thomas", "Billy", "Billy Thomas", False],
[1630271, "Thomas", "Brodric", "Brodric Thomas", False],
[1630560, "Thomas", "Cam", "Cam Thomas", True],
[1063, "Thomas", "Carl", "Carl Thomas", False],
[78316, "Thomas", "Charles", "Charles Thomas", False],
[2041, "Thomas", "Etan", "Etan Thomas", False],
[78317, "Thomas", "Irving", "Irving Thomas", False],
[202738, "Thomas", "Isaiah", "Isaiah Thomas", False],
[78318, "Thomas", "Isiah", "Isiah Thomas", False],
[1975, "Thomas", "Jamel", "Jamel Thomas", False],
[2839, "Thomas", "James", "James Thomas", False],
[78320, "Thomas", "Jim", "Jim Thomas", False],
[78321, "Thomas", "Joe", "Joe Thomas", False],
[1519, "Thomas", "John", "John Thomas", False],
[1903, "Thomas", "Kenny", "Kenny Thomas", False],
[1629017, "Thomas", "Khyri", "Khyri Thomas", False],
[703, "Thomas", "Kurt", "Kurt Thomas", False],
[202498, "Thomas", "Lance", "Lance Thomas", False],
[202952, "Thomas", "Malcolm", "Malcolm Thomas", False],
[1629744, "Thomas", "Matt", "Matt Thomas", False],
[78322, "Thomas", "Terry", "Terry Thomas", False],
[1501, "Thomas", "Tim", "Tim Thomas", False],
[200748, "Thomas", "Tyrus", "Tyrus Thomas", False],
[202717, "Thompkins", "Trey", "Trey Thompkins", False],
[78323, "Thompson", "Bernard", "Bernard Thompson", False],
[1631, "Thompson", "Billy", "Billy Thompson", False],
[240, "Thompson", "Brooks", "Brooks Thompson", False],
[78325, "Thompson", "Corny", "Corny Thompson", False],
[78326, "Thompson", "David", "David Thompson", False],
[101159, "Thompson", "Dijon", "Dijon Thompson", False],
[78327, "Thompson", "George", "George Thompson", False],
[203138, "Thompson", "Hollis", "Hollis Thompson", False],
[201574, "Thompson", "Jason", "Jason Thompson", False],
[78328, "Thompson", "John", "John Thompson", False],
[78329, "Thompson", "Kevin", "Kevin Thompson", False],
[202691, "Thompson", "Klay", "Klay Thompson", True],
[78, "Thompson", "LaSalle", "LaSalle Thompson", False],
[78331, "Thompson", "Mychal", "Mychal Thompson", False],
[202814, "Thompson", "Mychel", "Mychel Thompson", False],
[78332, "Thompson", "Paul", "Paul Thompson", False],
[78333, "Thompson", "Stephen", "Stephen Thompson", False],
[202684, "Thompson", "Tristan", "Tristan Thompson", False],
[1630550, "Thor", "JT", "JT Thor", True],
[78335, "Thorn", "Rod", "Rod Thorn", False],
[201154, "Thornton", "Al", "Al Thornton", False],
[738, "Thornton", "Bob", "Bob Thornton", False],
[201977, "Thornton", "Marcus", "Marcus Thornton", False],
[1628414, "Thornwell", "Sindarius", "Sindarius Thornwell", False],
[901, "Thorpe", "Otis", "Otis Thorpe", False],
[9, "Threatt", "Sedale", "Sedale Threatt", False],
[600001, "Thurmond", "Nate", "Nate Thurmond", False],
[78340, "Thurston", "Mel", "Mel Thurston", False],
[1629680, "Thybulle", "Matisse", "Matisse Thybulle", True],
[78341, "Tidrick", "Howard", "Howard Tidrick", False],
[78342, "Tieman", "Dan", "Dan Tieman", False],
[1629681, "Tillie", "Killian", "Killian Tillie", False],
[78343, "Tillis", "Darren", "Darren Tillis", False],
[1630214, "Tillman", "Xavier", "Xavier Tillman", True],
[78344, "Tingle", "Jack", "Jack Tingle", False],
[2224, "Tinsley", "Jamaal", "Jamaal Tinsley", False],
[47, "Tisdale", "Wayman", "Wayman Tisdale", False],
[1627861, "Tobey", "Mike", "Mike Tobey", False],
[1630225, "Todd", "Isaiah", "Isaiah Todd", True],
[78346, "Todorovich", "Marko", "Marko Todorovich", False],
[78348, "Tolbert", "Ray", "Ray Tolbert", False],
[78347, "Tolbert", "Tom", "Tom Tolbert", False],
[201229, "Tolliver", "Anthony", "Anthony Tolliver", False],
[78349, "Tolson", "Dean", "Dean Tolson", False],
[78350, "Tomjanovich", "Rudy", "Rudy Tomjanovich", False],
[78351, "Toney", "Andrew", "Andrew Toney", False],
[78352, "Toney", "Sedric", "Sedric Toney", False],
[78353, "Tonkovich", "Andy", "Andy Tonkovich", False],
[342, "Toolson", "Andy", "Andy Toolson", False],
[78355, "Toomay", "Jack", "Jack Toomay", False],
[78356, "Toone", "Bernard", "Bernard Toone", False],
[1630167, "Toppin", "Obi", "Obi Toppin", True],
[78357, "Torgoff", "Irv", "Irv Torgoff", False],
[78358, "Tormohlen", "Gene", "Gene Tormohlen", False],
[2351, "Torres", "Oscar", "Oscar Torres", False],
[1629308, "Toscano-Anderson", "Juan", "Juan Toscano-Anderson", True],
[78359, "Tosheff", "Bill", "Bill Tosheff", False],
[78360, "Tough", "Bob", "Bob Tough", False],
[1626253, "Toupane", "Axel", "Axel Toupane", False],
[78361, "Towe", "Monte", "Monte Towe", False],
[700, "Tower", "Keith", "Keith Tower", False],
[78363, "Towery", "William", "William Towery", False],
[78364, "Townes", "Linton", "Linton Townes", False],
[1626157, "Towns", "Karl-Anthony", "Karl-Anthony Towns", True],
[78365, "Townsend", "Raymond", "Raymond Townsend", False],
[78366, "Trapp", "George", "George Trapp", False],
[78367, "Trapp", "John", "John Trapp", False],
[1714, "Traylor", "Robert", "Robert Traylor", False],
[718, "Trent", "Gary", "Gary Trent", False],
[1629018, "Trent Jr.", "Gary", "Gary Trent Jr.", True],
[2244, "Trepagnier", "Jeff", "Jeff Trepagnier", False],
[78651, "Tresvant", "John", "John Tresvant", False],
[1629019, "Trier", "Allonzo", "Allonzo Trier", False],
[78368, "Triptow", "Dick", "Dick Triptow", False],
[78369, "Tripucka", "Kelly", "Kelly Tripucka", False],
[2456, "Trybanski", "Cezary", "Cezary Trybanski", False],
[2054, "Tsakalidis", "Jake", "Jake Tsakalidis", False],
[78370, "Tschogl", "John", "John Tschogl", False],
[78371, "Tsioropoulos", "Lou", "Lou Tsioropoulos", False],
[2401, "Tskitishvili", "Nikoloz", "Nikoloz Tskitishvili", False],
[78372, "Tucker", "Al", "Al Tucker", False],
[201169, "Tucker", "Alando", "Alando Tucker", False],
[141, "Tucker", "Anthony", "Anthony Tucker", False],
[78374, "Tucker", "Jim", "Jim Tucker", False],
[200782, "Tucker", "P.J.", "P.J. Tucker", True],
[1629730, "Tucker", "Rayjon", "Rayjon Tucker", False],
[78375, "Tucker", "Trent", "Trent Tucker", False],
[101142, "Turiaf", "Ronny", "Ronny Turiaf", False],
[1726, "Turkcan", "Mirsad", "Mirsad Turkcan", False],
[2045, "Turkoglu", "Hedo", "Hedo Turkoglu", False],
[78377, "Turner", "Andre", "Andre Turner", False],
[78385, "Turner", "Bill", "Bill Turner", False],
[78378, "Turner", "Elston", "Elston Turner", False],
[202323, "Turner", "Evan", "Evan Turner", False],
[78379, "Turner", "Henry", "Henry Turner", False],
[78380, "Turner", "Jack", "Jack Turner", False],
[78382, "Turner", "Jack", "Jack Turner", False],
[78381, "Turner", "Jeff", "Jeff Turner", False],
[1819, "Turner", "John", "John Turner", False],
[1626167, "Turner", "Myles", "Myles Turner", True],
[1943, "Turner", "Wayne", "Wayne Turner", False],
[78386, "Turpin", "Mel", "Mel Turpin", False],
[78387, "Twardzik", "Dave", "Dave Twardzik", False],
[78388, "Twyman", "Jack", "Jack Twyman", False],
[189, "Tyler", "B.J.", "B.J. Tyler", False],
[202719, "Tyler", "Jeremy", "Jeremy Tyler", False],
[78390, "Tyler", "Terry", "Terry Tyler", False],
[78391, "Tyra", "Charlie", "Charlie Tyra", False],
[202775, "Ubiles", "Edwin", "Edwin Ubiles", False],
[202327, "Udoh", "Ekpe", "Ekpe Udoh", False],
[2137, "Udoka", "Ime", "Ime Udoka", False],
[2757, "Udrih", "Beno", "Beno Udrih", False],
[101146, "Ukic", "Roko", "Roko Ukic", False],
[1627755, "Ulis", "Tyler", "Tyler Ulis", False],
[1630649, "Umude", "Stanley", "Stanley Umude", True],
[78392, "Unseld", "Wes", "Wes Unseld", False],
[78393, "Uplinger", "Hal", "Hal Uplinger", False],
[78394, "Upshaw", "Kelvin", "Kelvin Upshaw", False],
[1627784, "Uthoff", "Jarrod", "Jarrod Uthoff", False],
[202386, "Uzoh", "Ben", "Ben Uzoh", False],
[201987, "Vaden", "Robert", "Robert Vaden", False],
[202685, "Valanciunas", "Jonas", "Jonas Valanciunas", True],
[78395, "Valentine", "Darnell", "Darnell Valentine", False],
[1627756, "Valentine", "Denzel", "Denzel Valentine", False],
[78396, "Valentine", "Ron", "Ron Valentine", False],
[78397, "Vallely", "John", "John Vallely", False],
[78398, "Van Arsdale", "Dick", "Dick Van Arsdale", False],
[78399, "Van Arsdale", "Tom", "Tom Van Arsdale", False],
[78401, "Van Breda Kolff", "Butch", "Butch Van Breda Kolff", False],
[78400, "Van Breda Kolff", "Jan", "Jan Van Breda Kolff", False],
[89, "Van Exel", "Nick", "Nick Van Exel", False],
[1496, "Van Horn", "Keith", "Keith Van Horn", False],
[78406, "Van Lier", "Norm", "Norm Van Lier", False],
[1627832, "VanVleet", "Fred", "Fred VanVleet", True],
[78402, "Vance", "Gene", "Gene Vance", False],
[78403, "Vander Velden", "Log", "Log Vander Velden", False],
[1629020, "Vanderbilt", "Jarred", "Jarred Vanderbilt", True],
[78405, "Vandeweghe", "Ernie", "Ernie Vandeweghe", False],
[78404, "Vandeweghe", "Kiki", "Kiki Vandeweghe", False],
[78407, "Vanos", "Nick", "Nick Vanos", False],
[2128, "Vanterpool", "David", "David Vanterpool", False],
[2237, "Varda", "Ratko", "Ratko Varda", False],
[2760, "Varejao", "Anderson", "Anderson Varejao", False],
[202363, "Varnado", "Jarvis", "Jarvis Varnado", False],
[202349, "Vasquez", "Greivis", "Greivis Vasquez", False],
[1630170, "Vassell", "Devin", "Devin Vassell", True],
[78409, "Vaughn", "Charles", "Charles Vaughn", False],
[710, "Vaughn", "David", "David Vaughn", False],
[1521, "Vaughn", "Jacque", "Jacque Vaughn", False],
[1626173, "Vaughn", "Rashad", "Rashad Vaughn", False],
[78411, "Vaughn", "Virgil", "Virgil Vaughn", False],
[919, "Vaught", "Loy", "Loy Vaught", False],
[78413, "Verga", "Bob", "Bob Verga", False],
[78414, "Verhoeven", "Peter", "Peter Verhoeven", False],
[202686, "Vesely", "Jan", "Jan Vesely", False],
[78415, "Vetra", "Gundars", "Gundars Vetra", False],
[78416, "Vianna", "Joao", "Joao Vianna", False],
[1630492, "Vildoza", "Luca", "Luca Vildoza", False],
[101111, "Villanueva", "Charlie", "Charlie Villanueva", False],
[1629216, "Vincent", "Gabe", "Gabe Vincent", True],
[78418, "Vincent", "Jay", "Jay Vincent", False],
[78417, "Vincent", "Sam", "Sam Vincent", False],
[200790, "Vinicius", "Marcus", "Marcus Vinicius", False],
[1844, "Vinson", "Fred", "Fred Vinson", False],
[78419, "Voce", "Gary", "Gary Voce", False],
[78420, "Volker", "Floyd", "Floyd Volker", False],
[78421, "Volkov", "Alexander", "Alexander Volkov", False],
[78422, "Von Nieda", "Whitey", "Whitey Von Nieda", False],
[203943, "Vonleh", "Noah", "Noah Vonleh", True],
[2063, "Voskuhl", "Jake", "Jake Voskuhl", False],
[78423, "Vranes", "Danny", "Danny Vranes", False],
[2582, "Vranes", "Slavko", "Slavko Vranes", False],
[1037, "Vrankovic", "Stojko", "Stojko Vrankovic", False],
[78425, "Vroman", "Brett", "Brett Vroman", False],
[2761, "Vroman", "Jackson", "Jackson Vroman", False],
[202696, "Vucevic", "Nikola", "Nikola Vucevic", True],
[2756, "Vujacic", "Sasha", "Sasha Vujacic", False],
[1629731, "Wade", "Dean", "Dean Wade", True],
[2548, "Wade", "Dwyane", "Dwyane Wade", False],
[78426, "Wade", "Mark", "Mark Wade", False],
[101144, "Wafer", "Von", "Von Wafer", False],
[78427, "Wager", "Clint", "Clint Wager", False],
[2402, "Wagner", "Dajuan", "Dajuan Wagner", False],
[78428, "Wagner", "Danny", "Danny Wagner", False],
[1630532, "Wagner", "Franz", "Franz Wagner", True],
[78429, "Wagner", "Milt", "Milt Wagner", False],
[1629021, "Wagner", "Moritz", "Moritz Wagner", True],
[1630688, "Wainright", "Ish", "Ish Wainright", True],
[203079, "Waiters", "Dion", "Dion Waiters", False],
[78430, "Waiters", "Granville", "Granville Waiters", False],
[78431, "Wakefield", "Andre", "Andre Wakefield", False],
[78432, "Walk", "Neal", "Neal Walk", False],
[78433, "Walker", "Andy", "Andy Walker", False],
[952, "Walker", "Antoine", "Antoine Walker", False],
[78434, "Walker", "Brady", "Brady Walker", False],
[78435, "Walker", "Chet", "Chet Walker", False],
[78437, "Walker", "Darrell", "Darrell Walker", False],
[78436, "Walker", "Foots", "Foots Walker", False],
[201611, "Walker", "Henry", "Henry Walker", False],
[78438, "Walker", "Horace", "Horace Walker", False],
[1631133, "Walker", "Jabari", "Jabari Walker", True],
[78439, "Walker", "Jimmy", "Jimmy Walker", False],
[202689, "Walker", "Kemba", "Kemba Walker", True],
[78440, "Walker", "Kenny", "Kenny Walker", False],
[1630640, "Walker", "MJ", "MJ Walker", False],
[78441, "Walker", "Phil", "Phil Walker", False],
[955, "Walker", "Samaki", "Samaki Walker", False],
[78442, "Walker", "Wally", "Wally Walker", False],
[1629022, "Walker IV", "Lonnie", "Lonnie Walker IV", True],
[202322, "Wall", "John", "John Wall", True],
[1112, "Wallace", "Ben", "Ben Wallace", False],
[2222, "Wallace", "Gerald", "Gerald Wallace", False],
[961, "Wallace", "John", "John Wallace", False],
[78443, "Wallace", "Michael", "Michael Wallace", False],
[739, "Wallace", "Rasheed", "Rasheed Wallace", False],
[1627820, "Wallace", "Tyrone", "Tyrone Wallace", False],
[78444, "Waller", "Dwight", "Dwight Waller", False],
[78445, "Waller", "Jamie", "Jamie Waller", False],
[78446, "Walsh", "Jim", "Jim Walsh", False],
[101190, "Walsh", "Matt", "Matt Walsh", False],
[777, "Walters", "Rex", "Rex Walters", False],
[78447, "Walther", "Paul", "Paul Walther", False],
[78448, "Walthour", "Rabbit", "Rabbit Walthour", False],
[78450, "Walton", "Bill", "Bill Walton", False],
[78449, "Walton", "Lloyd", "Lloyd Walton", False],
[2575, "Walton", "Luke", "Luke Walton", False],
[1628476, "Walton Jr.", "Derrick", "Derrick Walton Jr.", False],
[202954, "Wanamaker", "Brad", "Brad Wanamaker", False],
[78453, "Wanzer", "Bobby", "Bobby Wanzer", False],
[78454, "Warbington", "Perry", "Perry Warbington", False],
[369, "Ward", "Charlie", "Charlie Ward", False],
[78455, "Ward", "Gerry", "Gerry Ward", False],
[78456, "Ward", "Henry", "Henry Ward", False],
[203810, "Ware", "Casper", "Casper Ware", False],
[78457, "Ware", "Jim", "Jim Ware", False],
[78458, "Warley", "Ben", "Ben Warley", False],
[78459, "Warlick", "Bob", "Bob Warlick", False],
[78460, "Warner", "Cornell", "Cornell Warner", False],
[1627866, "Warney", "Jameel", "Jameel Warney", False],
[78461, "Warren", "Johnny", "Johnny Warren", False],
[203933, "Warren", "T.J.", "T.J. Warren", True],
[202378, "Warren", "Willie", "Willie Warren", False],
[78462, "Warrick", "Bryan", "Bryan Warrick", False],
[101124, "Warrick", "Hakim", "Hakim Warrick", False],
[78463, "Washburn", "Chris", "Chris Washburn", False],
[1627395, "Washburn", "Julian", "Julian Washburn", False],
[78469, "Washington", "Bobby", "Bobby Washington", False],
[200827, "Washington", "Darius", "Darius Washington", False],
[78464, "Washington", "Duane", "Duane Washington", False],
[78465, "Washington", "Dwayne", "Dwayne Washington", False],
[1540, "Washington", "Eric", "Eric Washington", False],
[78466, "Washington", "Jim", "Jim Washington", False],
[78467, "Washington", "Kermit", "Kermit Washington", False],
[1629023, "Washington", "P.J.", "P.J. Washington", True],
[78468, "Washington", "Richard", "Richard Washington", False],
[78470, "Washington", "Stan", "Stan Washington", False],
[78471, "Washington", "Wilson", "Wilson Washington", False],
[1630613, "Washington Jr.", "Duane", "Duane Washington Jr.", True],
[1631102, "Washington Jr.", "TyTy", "TyTy Washington Jr.", True],
[1629139, "Watanabe", "Yuta", "Yuta Watanabe", True],
[1629682, "Waters", "Tremont", "Tremont Waters", False],
[1630322, "Waters III", "Lindy", "Lindy Waters III", True],
[1630570, "Watford", "Trendon", "Trendon Watford", True],
[201208, "Watkins", "Darryl", "Darryl Watkins", False],
[201228, "Watson", "C.J.", "C.J. Watson", False],
[2248, "Watson", "Earl", "Earl Watson", False],
[320, "Watson", "Jamie", "Jamie Watson", False],
[1628778, "Watson", "Paul", "Paul Watson", False],
[1631212, "Watson", "Peyton", "Peyton Watson", True],
[78474, "Watts", "Ron", "Ron Watts", False],
[78473, "Watts", "Slick", "Slick Watts", False],
[203146, "Wayns", "Maalik", "Maalik Wayns", False],
[204033, "Wear", "David", "David Wear", False],
[204037, "Wear", "Travis", "Travis Wear", False],
[221, "Weatherspoon", "Clar.", "Clar. Weatherspoon", False],
[78475, "Weatherspoon", "Nick", "Nick Weatherspoon", False],
[1629683, "Weatherspoon", "Quinndary", "Quinndary Weatherspoon", False],
[201602, "Weaver", "Kyle", "Kyle Weaver", False],
[78477, "Webb", "Jeff", "Jeff Webb", False],
[78478, "Webb", "Marcus", "Marcus Webb", False],
[892, "Webb", "Spud", "Spud Webb", False],
[1627821, "Webb III", "James", "James Webb III", False],
[185, "Webber", "Chris", "Chris Webber", False],
[1627362, "Weber", "Briante", "Briante Weber", False],
[78479, "Weber", "Forest", "Forest Weber", False],
[1067, "Webster", "Jeff", "Jeff Webster", False],
[101110, "Webster", "Martell", "Martell Webster", False],
[78481, "Webster", "Marvin", "Marvin Webster", False],
[78482, "Wedman", "Scott", "Scott Wedman", False],
[201603, "Weems", "Sonny", "Sonny Weems", False],
[78483, "Wehr", "Dick", "Dick Wehr", False],
[78484, "Weidner", "Brant", "Brant Weidner", False],
[78485, "Weiss", "Bob", "Bob Weiss", False],
[78486, "Weitzman", "Rick", "Rick Weitzman", False],
[1719, "Wells", "Bonzi", "Bonzi Wells", False],
[1528, "Wells", "Bubba", "Bubba Wells", False],
[78488, "Wells", "Owen", "Owen Wells", False],
[78489, "Wells", "Ralph", "Ralph Wells", False],
[1846, "Welp", "Chris", "Chris Welp", False],
[2412, "Welsch", "Jiri", "Jiri Welsch", False],
[1629118, "Welsh", "Thomas", "Thomas Welsh", False],
[82, "Wennington", "Bill", "Bill Wennington", False],
[78492, "Wenstrom", "Matt", "Matt Wenstrom", False],
[438, "Werdann", "Robert", "Robert Werdann", False],
[78494, "Wertis", "Ray", "Ray Wertis", False],
[1631104, "Wesley", "Blake", "Blake Wesley", True],
[133, "Wesley", "David", "David Wesley", False],
[78495, "Wesley", "Walt", "Walt Wesley", False],
[2561, "West", "David", "David West", False],
[2753, "West", "Delonte", "Delonte West", False],
[28, "West", "Doug", "Doug West", False],
[78497, "West", "Jerry", "Jerry West", False],
[201238, "West", "Mario", "Mario West", False],
[770, "West", "Mark", "Mark West", False],
[78499, "West", "Roland", "Roland West", False],
[201566, "Westbrook", "Russell", "Russell Westbrook", True],
[78500, "Westphal", "Paul", "Paul Westphal", False],
[78501, "Wetzel", "John", "John Wetzel", False],
[101156, "Whaley", "Robert", "Robert Whaley", False],
[941, "Whatley", "Ennis", "Ennis Whatley", False],
[1545, "Wheat", "DeJuan", "DeJuan Wheat", False],
[78504, "Wheeler", "Clinton", "Clinton Wheeler", False],
[1755, "Wheeler", "Tyson", "Tyson Wheeler", False],
[78506, "Whitaker", "Lucian", "Lucian Whitaker", False],
[1629632, "White", "Coby", "Coby White", True],
[201591, "White", "DJ", "DJ White", False],
[1628401, "White", "Derrick", "Derrick White", True],
[78507, "White", "Eric", "Eric White", False],
[78508, "White", "Herb", "Herb White", False],
[78509, "White", "Hubie", "Hubie White", False],
[1631298, "White", "Jack", "Jack White", True],
[1751, "White", "Jahidi", "Jahidi White", False],
[200778, "White", "James", "James White", False],
[78510, "White", "Jojo", "Jojo White", False],
[1627855, "White", "Okaro", "Okaro White", False],
[1839, "White", "Randy", "Randy White", False],
[2206, "White", "Rodney", "Rodney White", False],
[78512, "White", "Rory", "Rory White", False],
[203091, "White", "Royce", "Royce White", False],
[78513, "White", "Rudy", "Rudy White", False],
[202358, "White", "Terrico", "Terrico White", False],
[78514, "White", "Tony", "Tony White", False],
[78515, "White", "Willie", "Willie White", False],
[1628510, "White III", "Andrew", "Andrew White III", False],
[1627785, "Whitehead", "Isaiah", "Isaiah Whitehead", False],
[78516, "Whitehead", "Jerome", "Jerome Whitehead", False],
[1126, "Whiteside", "Donald", "Donald Whiteside", False],
[202355, "Whiteside", "Hassan", "Hassan Whiteside", False],
[730, "Whitfield", "Dwayne", "Dwayne Whitfield", False],
[78519, "Whitney", "Charles", "Charles Whitney", False],
[43, "Whitney", "Chris", "Chris Whitney", False],
[204222, "Whittington", "Greg", "Greg Whittington", False],
[203963, "Whittington", "Shayne", "Shayne Whittington", False],
[78520, "Wicks", "Sidney", "Sidney Wicks", False],
[78521, "Wier", "Murray", "Murray Wier", False],
[78522, "Wiesenhahn", "Bob", "Bob Wiesenhahn", False],
[1630580, "Wieskamp", "Joe", "Joe Wieskamp", True],
[1630598, "Wiggins", "Aaron", "Aaron Wiggins", True],
[203952, "Wiggins", "Andrew", "Andrew Wiggins", True],
[78523, "Wiggins", "Mitchell", "Mitchell Wiggins", False],
[1629623, "Wigginton", "Lindell", "Lindell Wigginton", True],
[78524, "Wilburn", "Ken", "Ken Wilburn", False],
[203912, "Wilcox", "C.J.", "C.J. Wilcox", False],
[2404, "Wilcox", "Chris", "Chris Wilcox", False],
[78525, "Wilcutt", "D.C.", "D.C. Wilcutt", False],
[78526, "Wiley", "Gene", "Gene Wiley", False],
[1628451, "Wiley", "Jacob", "Jacob Wiley", False],
[78527, "Wiley", "Michael", "Michael Wiley", False],
[78528, "Wiley", "Morlon", "Morlon Wiley", False],
[78529, "Wilfong", "Win", "Win Wilfong", False],
[78530, "Wilkens", "Lenny", "Lenny Wilkens", False],
[78531, "Wilkerson", "Bob", "Bob Wilkerson", False],
[78532, "Wilkes", "Jamaal", "Jamaal Wilkes", False],
[78533, "Wilkes", "James", "James Wilkes", False],
[2863, "Wilkins", "Damien", "Damien Wilkins", False],
[1122, "Wilkins", "Dominique", "Dominique Wilkins", False],
[78534, "Wilkins", "Eddielee", "Eddielee Wilkins", False],
[786, "Wilkins", "Gerald", "Gerald Wilkins", False],
[78537, "Wilkins", "Jeff", "Jeff Wilkins", False],
[78538, "Wilkinson", "Dale", "Dale Wilkinson", False],
[2366, "Wilks", "Mike", "Mike Wilks", False],
[1425, "Williams", "Aaron", "Aaron Williams", False],
[1626210, "Williams", "Alan", "Alan Williams", False],
[1631214, "Williams", "Alondes", "Alondes Williams", True],
[1541, "Williams", "Alvin", "Alvin Williams", False],
[78539, "Williams", "Arthur", "Arthur Williams", False],
[78540, "Williams", "Bernie", "Bernie Williams", False],
[78564, "Williams", "Bob", "Bob Williams", False],
[1585, "Williams", "Brandon", "Brandon Williams", False],
[1630314, "Williams", "Brandon", "Brandon Williams", False],
[433, "Williams", "Buck", "Buck Williams", False],
[203710, "Williams", "C.J.", "C.J. Williams", False],
[78547, "Williams", "Chuck", "Chuck Williams", False],
[78541, "Williams", "Chuckie", "Chuckie Williams", False],
[78543, "Williams", "Cliff", "Cliff Williams", False],
[101258, "Williams", "Corey", "Corey Williams", False],
[101114, "Williams", "Deron", "Deron Williams", False],
[202682, "Williams", "Derrick", "Derrick Williams", False],
[78545, "Williams", "Don", "Don Williams", False],
[1631495, "Williams", "Donovan", "Donovan Williams", True],
[78546, "Williams", "Earl", "Earl Williams", False],
[202343, "Williams", "Elliot", "Elliot Williams", False],
[677, "Williams", "Eric", "Eric Williams", False],
[2421, "Williams", "Frank", "Frank Williams", False],
[78548, "Williams", "Freeman", "Freeman Williams", False],
[1629684, "Williams", "Grant", "Grant Williams", True],
[78549, "Williams", "Gus", "Gus Williams", False],
[78550, "Williams", "Guy", "Guy Williams", False],
[1006, "Williams", "Herb", "Herb Williams", False],
[73, "Williams", "Hot Rod", "Hot Rod Williams", False],
[1631114, "Williams", "Jalen", "Jalen Williams", True],
[1715, "Williams", "Jason", "Jason Williams", False],
[101214, "Williams", "Jawad", "Jawad Williams", False],
[2398, "Williams", "Jay", "Jay Williams", False],
[1631119, "Williams", "Jaylin", "Jaylin Williams", True],
[420, "Williams", "Jayson", "Jayson Williams", False],
[966, "Williams", "Jerome", "Jerome Williams", False],
[78554, "Williams", "John", "John Williams", False],
[1629140, "Williams", "Johnathan", "Johnathan Williams", False],
[202716, "Williams", "Jordan", "Jordan Williams", False],
[200818, "Williams", "Justin", "Justin Williams", False],
[78555, "Williams", "Kenny", "Kenny Williams", False],
[1629026, "Williams", "Kenrich", "Kenrich Williams", True],
[78556, "Williams", "Kevin", "Kevin Williams", False],
[31, "Williams", "Lorenzo", "Lorenzo Williams", False],
[101150, "Williams", "Lou", "Lou Williams", False],
[200766, "Williams", "Marcus", "Marcus Williams", False],
[201173, "Williams", "Marcus", "Marcus Williams", False],
[1631109, "Williams", "Mark", "Mark Williams", True],
[101107, "Williams", "Marvin", "Marvin Williams", False],
[52, "Williams", "Micheal", "Micheal Williams", False],
[78558, "Williams", "Mike", "Mike Williams", False],
[78560, "Williams", "Milt", "Milt Williams", False],
[2590, "Williams", "Mo", "Mo Williams", False],
[42, "Williams", "Monty", "Monty Williams", False],
[78561, "Williams", "Nate", "Nate Williams", False],
[1630172, "Williams", "Patrick", "Patrick Williams", True],
[78566, "Williams", "Pete", "Pete Williams", False],
[78571, "Williams", "Ray", "Ray Williams", False],
[199, "Williams", "Reggie", "Reggie Williams", False],
[202130, "Williams", "Reggie", "Reggie Williams", False],
[78563, "Williams", "Rickey", "Rickey Williams", False],
[78565, "Williams", "Rob", "Rob Williams", False],
[78567, "Williams", "Ron", "Ron Williams", False],
[78568, "Williams", "Sam", "Sam Williams", False],
[78569, "Williams", "Samuel", "Samuel Williams", False],
[281, "Williams", "Scott", "Scott Williams", False],
[201157, "Williams", "Sean", "Sean Williams", False],
[1742, "Williams", "Shammond", "Shammond Williams", False],
[200761, "Williams", "Shawne", "Shawne Williams", False],
[200749, "Williams", "Shelden", "Shelden Williams", False],
[78570, "Williams", "Sly", "Sly Williams", False],
[201944, "Williams", "Terrence", "Terrence Williams", False],
[1576, "Williams", "Travis", "Travis Williams", False],
[1627786, "Williams", "Troy", "Troy Williams", False],
[1005, "Williams", "Walt", "Walt Williams", False],
[78573, "Williams", "Ward", "Ward Williams", False],
[78574, "Williams", "Willie", "Willie Williams", False],
[1630533, "Williams", "Ziaire", "Ziaire Williams", True],
[1629057, "Williams III", "Robert", "Robert Williams III", True],
[1628475, "Williams Jr.", "Matt", "Matt Williams Jr.", False],
[1631246, "Williams Jr.", "Vince", "Vince Williams Jr.", True],
[1628430, "Williams-Goss", "Nigel", "Nigel Williams-Goss", False],
[722, "Williamson", "Corliss", "Corliss Williamson", False],
[78575, "Williamson", "John", "John Williamson", False],
[1629627, "Williamson", "Zion", "Zion Williamson", True],
[788, "Willis", "Kevin", "Kevin Willis", False],
[78577, "Willoughby", "Bill", "Bill Willoughby", False],
[2000, "Willoughby", "Dedric", "Dedric Willoughby", False],
[78586, "Wilson", "Bob", "Bob Wilson", False],
[78585, "Wilson", "Bobby", "Bobby Wilson", False],
[1628391, "Wilson", "D.J.", "D.J. Wilson", False],
[78579, "Wilson", "George", "George Wilson", False],
[78580, "Wilson", "Isaiah", "Isaiah Wilson", False],
[203966, "Wilson", "Jamil", "Jamil Wilson", False],
[78581, "Wilson", "Mike", "Mike Wilson", False],
[78582, "Wilson", "Nikita", "Nikita Wilson", False],
[78578, "Wilson", "Othell", "Othell Wilson", False],
[78583, "Wilson", "Rick", "Rick Wilson", False],
[78584, "Wilson", "Ricky", "Ricky Wilson", False],
[78587, "Wilson", "Thomas", "Thomas Wilson", False],
[1027, "Wilson", "Trevor", "Trevor Wilson", False],
[1627787, "Wiltjer", "Kyle", "Kyle Wiltjer", False],
[78589, "Winchester", "Kennard", "Kennard Winchester", False],
[78590, "Windis", "Tony", "Tony Windis", False],
[1629685, "Windler", "Dylan", "Dylan Windler", True],
[78591, "Windsor", "John", "John Windsor", False],
[78592, "Winfield", "Lee", "Lee Winfield", False],
[766, "Wingate", "David", "David Wingate", False],
[112, "Wingfield", "Dontonio", "Dontonio Wingfield", False],
[78596, "Wingo", "Harthorne", "Harthorne Wingo", False],
[78597, "Winkler", "Marv", "Marv Winkler", False],
[1626159, "Winslow", "Justise", "Justise Winslow", True],
[1984, "Winslow", "Rickie", "Rickie Winslow", False],
[1630216, "Winston", "Cassius", "Cassius Winston", False],
[1868, "Winter", "Trevor", "Trevor Winter", False],
[78600, "Winters", "Brian", "Brian Winters", False],
[78601, "Winters", "Voise", "Voise Winters", False],
[78602, "Wise", "Willie", "Willie Wise", False],
[1630164, "Wiseman", "James", "James Wiseman", True],
[203481, "Withey", "Jeff", "Jeff Withey", False],
[78603, "Witte", "Luke", "Luke Witte", False],
[1456, "Wittman", "Randy", "Randy Wittman", False],
[78605, "Witts", "Garry", "Garry Witts", False],
[78606, "Wohl", "Dave", "Dave Wohl", False],
[341, "Wolf", "Joe", "Joe Wolf", False],
[2106, "Wolkowyski", "Ruben", "Ruben Wolkowyski", False],
[203489, "Wolters", "Nate", "Nate Wolters", False],
[78610, "Wood", "Al", "Al Wood", False],
[78612, "Wood", "Bob", "Bob Wood", False],
[1626174, "Wood", "Christian", "Christian Wood", True],
[116, "Wood", "David", "David Wood", False],
[78609, "Wood", "Howard", "Howard Wood", False],
[78611, "Wood", "Leon", "Leon Wood", False],
[1630218, "Woodard II", "Robert", "Robert Woodard II", False],
[2254, "Woods", "Loren", "Loren Woods", False],
[2417, "Woods", "Qyntel", "Qyntel Woods", False],
[1010, "Woods", "Randy", "Randy Woods", False],
[78614, "Woodson", "Mike", "Mike Woodson", False],
[78615, "Woolridge", "Orlando", "Orlando Woolridge", False],
[1629624, "Wooten", "Kenny", "Kenny Wooten", False],
[906, "Workman", "Haywoode", "Haywoode Workman", False],
[78616, "Workman", "Mark", "Mark Workman", False],
[78617, "Workman", "Tom", "Tom Workman", False],
[1897, "World Peace", "Metta", "Metta World Peace", False],
[78618, "Worthen", "Sam", "Sam Worthen", False],
[1460, "Worthy", "James", "James Worthy", False],
[101120, "Wright", "Antoine", "Antoine Wright", False],
[101152, "Wright", "Bracey", "Bracey Wright", False],
[78620, "Wright", "Brad", "Brad Wright", False],
[201148, "Wright", "Brandan", "Brandan Wright", False],
[202874, "Wright", "Chris", "Chris Wright", False],
[203203, "Wright", "Chris", "Chris Wright", False],
[1626153, "Wright", "Delon", "Delon Wright", True],
[2748, "Wright", "Dorell", "Dorell Wright", False],
[78621, "Wright", "Howard", "Howard Wright", False],
[78622, "Wright", "Joby", "Joby Wright", False],