-
Notifications
You must be signed in to change notification settings - Fork 0
/
Demographic.csv
We can't make this file beautiful and searchable because it's too large.
3593 lines (3593 loc) · 921 KB
/
Demographic.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
"","STATEFP","UrbanAreaNo","income","age","income.LowestQuintile","income.SecondQuintile","income.ThirdQuintile","income.FourthQuintile","pop","white","hispanic","africanamerican","asian","twoormoreraces","educated","unemployed","notworkforce","gini","rent","State","UrbanArea","pct_white","pct_africanamerican","pct_asian","pct_hispanic","pct_twoormoreraces","pct_highed","pct_unem"
"1","Adjuntas, PR","00550",11549,38.2,2499,8256,15832,32764,10884,10438,10883,104,0,67,1264,1223,5087,0.6041,383," PR","Adjuntas",0.959022418228592,0.0095553105475928,0,0.999908122013966,0.00615582506431459,0.116133774347666,0.21097119199586
"2","Aguadilla--Isabela--San Sebastián, PR","00631",15913,39.1,5654,12217,20640,35909,296938,220903,289128,9049,959,36808,38785,23589,142249,0.5114,406," PR","Aguadilla--Isabela--San Sebastián",0.74393644464501,0.0304743751220794,0.00322963042790077,0.973698213094989,0.123958536798928,0.130616492331733,0.152493066733898
"3","Arecibo, PR","03034",17908,38.8,6094,13755,22839,40575,139196,119362,138260,3978,808,3359,21312,8709,65104,0.5095,400," PR","Arecibo",0.857510273283715,0.0285784074255007,0.00580476450472715,0.993275668841059,0.0241314405586367,0.153107847926665,0.117543054580791
"4","Coamo, PR","18316",20792,34.6,6295,15766,27542,45659,39194,25686,39088,2973,0,651,5844,1652,16394,0.4994,442," PR","Coamo",0.655355411542583,0.0758534469561668,0,0.997295504413941,0.0166096851558912,0.149104454763484,0.0724561403508772
"5","Coco--Salinas, PR","18383",16218,36.1,4826,11280,22649,40150,22229,11775,22099,1916,93,1319,2844,1008,9706,0.4973,433," PR","Coco--Salinas",0.529713437401592,0.08619371091817,0.00418372396419092,0.99415178370597,0.0593369022448153,0.127940978001709,0.0804918949133594
"6","Emajagua, PR","27372",17964,41.9,8459,13131,21931,35088,8181,4163,8167,2158,0,1292,1008,742,4046,0.4477,332," PR","Emajagua",0.508861997310842,0.26378193374893,0,0.998288717760665,0.157926903801491,0.123212321232123,0.17944377267231
"7","Fajardo, PR","28981",19609,37.2,7517,15433,25960,42238,83653,49535,82768,7009,598,2158,11073,6847,33713,0.4965,458," PR","Fajardo",0.592148518283863,0.0837865946230261,0.00714857805458262,0.989420582644974,0.0257970425447982,0.132368235448818,0.137104525430517
"8","Florida--Imbéry--Barceloneta, PR","30115",16547,37.8,5508,12757,21738,37684,71191,66047,70800,1654,299,962,8244,2953,35510,0.5145,471," PR","Florida--Imbéry--Barceloneta",0.927743675464595,0.0232332738688879,0.00419996909721734,0.994507732719023,0.0135129440519167,0.115801154640334,0.0827611333763067
"9","Guayama, PR","35866",15872,35.7,5406,12445,20652,35488,79079,48854,78829,13460,32,7712,9472,5852,37637,0.5047,400," PR","Guayama",0.617787276015124,0.170209537298145,0.000404658632506734,0.996838604433541,0.0975227304341228,0.119778955221993,0.141209401090681
"10","Jayuya, PR","42778",17246,34.3,5370,12986,23113,36975,12505,10833,12487,252,0,963,1149,1213,5678,0.4826,411," PR","Jayuya",0.866293482606957,0.0201519392243103,0,0.998560575769692,0.0770091963214714,0.0918832467013195,0.177676871246521
"11","Juana Díaz, PR","43453",18889,36,7223,14798,23837,42016,79307,49072,78950,6116,213,17538,10387,5929,32742,0.4888,415," PR","Juana Díaz",0.618760008574275,0.0771180349779969,0.0026857654431513,0.995498505806549,0.221140630713556,0.130972045342782,0.127327391817889
"12","Maricao, PR","54469",15896,33.9,3691,10352,20300,34182,2629,2250,2629,35,0,15,246,43,1139,0.4617,367," PR","Maricao",0.855838721947509,0.0133130467858501,0,1,0.00570559147965006,0.0935717002662609,0.0288590604026846
"13","Mayagüez, PR","55738",16129,39.4,4557,11899,21218,37062,104776,55277,103730,4006,139,20377,14450,7038,53116,0.5666,392," PR","Mayagüez",0.527573108345423,0.0382339467053524,0.00132663968847828,0.99001679773994,0.194481560662747,0.137913262579217,0.136236933797909
"14","Ponce, PR","70642",16654,37.8,4752,12047,22145,40017,143207,108786,142332,7679,154,16874,23966,11120,64816,0.5843,400," PR","Ponce",0.759641637629445,0.0536216805044446,0.00107536642761876,0.993889963479439,0.117829435711941,0.16735215457345,0.141853018841449
"15","San Germán--Cabo Rojo--Sabana Grande, PR","78985",15645,40.3,5194,11762,20653,36259,118805,104329,118179,3645,5,1846,17301,4605,63544,0.5234,404," PR","San Germán--Cabo Rojo--Sabana Grande",0.878153276377257,0.0306805269138504,4.20857708008922e-05,0.994730861495728,0.0155380665796894,0.145625184125247,0.0833318253379418
"16","San Juan, PR","79093",22750,38,7896,17007,29941,52010,2103967,1387601,2082373,213990,7546,268630,374885,137420,855208,0.537,503," PR","San Juan",0.659516522835197,0.101707868992242,0.00358655815419158,0.989736531038747,0.127677858065264,0.178180076018303,0.110045252927106
"17","Santa Isabel, PR","79390",13346,35.3,2704,9800,16396,30290,9669,5324,9669,918,0,122,938,426,4652,0.5198,337," PR","Santa Isabel",0.550625711035267,0.094942600062054,0,1,0.0126176440169614,0.0970110662943428,0.0849113015746462
"18","Vieques (Vieques Municipio), PR","90622",17380,42.6,7698,14988,22360,34981,8563,3431,8442,1196,131,187,631,474,3749,0.4207,576," PR","Vieques (Vieques Municipio)",0.400677332710499,0.139670676164895,0.0152983767371248,0.985869438280976,0.0218381408384912,0.0736891276421815,0.0984628167843789
"19","Yauco, PR","97561",15228,37.5,5314,11831,19435,34093,90972,80190,90422,2886,30,2469,11177,7453,43823,0.5009,384," PR","Yauco",0.881480015829046,0.031724046959504,0.000329771797915842,0.993954183704876,0.0271402189684738,0.122861979510179,0.158073341958472
"20","Abbeville, LA","00037",38639,35,14003,27858,51423,81561,20435,13068,398,5842,743,491,1491,982,6059,0.4647,622," LA","Abbeville",0.639491069243944,0.285882065084414,0.0363591876682163,0.019476388549058,0.0240274039637876,0.0729630535845363,0.0683082915971063
"21","Abbeville, SC","00064",20660,42.3,9030,16647,31159,53389,5029,2180,0,2791,0,57,431,334,2001,0.5187,488," SC","Abbeville",0.433485782461722,0.554981109564526,0,0,0.0113342612845496,0.0857029230463313,0.110303830911493
"22","Abbotsford, WI","00091",40113,41.2,20152,32210,46818,80000,3591,3407,603,2,15,72,230,111,1020,0.4205,538," WI","Abbotsford",0.948760790866054,0.000556947925368978,0.00417710944026733,0.167919799498747,0.0200501253132832,0.0640490114174325,0.0431738623103851
"23","Aberdeen, MS","00118",21717,37.8,10090,15921,32541,52033,4692,1006,48,3603,4,79,441,396,1938,0.4964,538," MS","Aberdeen",0.214407502131287,0.767902813299233,0.000852514919011083,0.010230179028133,0.0168371696504689,0.0939897698209719,0.143790849673203
"24","Aberdeen, SD","00145",47725,34.7,20231,36875,58275,87774,26998,24635,568,361,563,253,4560,461,6243,0.4239,578," SD","Aberdeen",0.912474998148011,0.0133713608415438,0.0208533965478924,0.0210385954515149,0.00937106452329802,0.168901400103711,0.0222115152975187
"25","Aberdeen, WA","00172",40000,38.3,15831,31607,49137,77302,29345,24969,4440,244,445,1250,2946,1850,9940,0.4511,713," WA","Aberdeen",0.850877491906628,0.00831487476571818,0.0151644232407565,0.151303458851593,0.0425966944965071,0.100391889589368,0.0953362535429013
"26","Aberdeen--Bel Air South--Bel Air North, MD","00199",80110,38.9,34744,64117,95349,139512,216705,169511,9839,32193,6073,5606,48998,8668,50808,0.4018,1121," MD","Aberdeen--Bel Air South--Bel Air North",0.782220068757066,0.14855679379802,0.0280242726286888,0.0454027364389377,0.0258692692831268,0.226104612260908,0.0522492872083281
"27","Abernathy, TX","00226",47250,35.1,23356,36061,56679,87911,3229,2775,1656,46,7,249,280,122,866,0.3768,741," TX","Abernathy",0.859399194797151,0.0142458965624032,0.00216785382471353,0.512852276246516,0.0771136574790957,0.0867141529885413,0.0516292848074482
"28","Abilene, KS","00253",50398,41,19420,38451,59947,84974,6849,6509,230,2,12,270,855,161,2014,0.419,558," KS","Abilene",0.950357716454957,0.0002920134326179,0.0017520805957074,0.0335815447510585,0.0394218134034166,0.124835742444152,0.0332988624612203
"29","Abilene, TX","00280",42250,31.1,18302,33463,52732,82471,111785,89626,28204,9678,1992,3364,15978,3567,30866,0.4538,770," TX","Abilene",0.801771257324328,0.0865769110345753,0.0178199221720267,0.252305765532048,0.0300934830254506,0.142935098626828,0.0440811181551922
"30","Abingdon, IL","00334",35918,40.5,19135,32022,43081,69063,2927,2781,49,72,0,74,195,138,990,0.3778,577," IL","Abingdon",0.950119576358046,0.0245985650837034,0,0.0167406901264093,0.0252818585582508,0.0666211137683635,0.0712441920495612
"31","Ada, OH","00388",37591,21.4,15632,27194,43278,71485,6019,5588,65,113,187,131,552,277,2254,0.4445,696," OH","Ada",0.928393420834026,0.0187738827047682,0.0310682837680678,0.0107991360691145,0.0217644126931384,0.0917095863100183,0.0735723771580345
"32","Ada, OK","00415",34556,31.6,15153,26588,44195,72483,17484,11936,1078,600,96,3387,3339,757,5070,0.4474,625," OK","Ada",0.682681308625029,0.0343170899107756,0.00549073438572409,0.0616563715396934,0.193719972546328,0.190974605353466,0.0609795392299017
"33","Adams, NY","00450",50948,43.8,14435,32786,64309,97525,2242,2061,87,22,70,31,391,244,673,0.441,689," NY","Adams",0.919268510258698,0.00981266726137377,0.0312221231043711,0.0388046387154326,0.0138269402319358,0.174397859054416,0.155513065646909
"34","Adel, GA","00469",29573,32.5,11878,22324,38489,70905,7125,2977,602,3634,44,176,669,328,2175,0.4895,701," GA","Adel",0.417824561403509,0.510035087719298,0.00617543859649123,0.0844912280701754,0.0247017543859649,0.0938947368421053,0.0662626262626263
"35","Adel, IA","00496",59531,38.4,27188,50300,67414,100455,3523,3429,124,22,0,69,680,52,766,0.3907,785," IA","Adel",0.973318194720409,0.0062446778313937,0,0.0351972750496736,0.0195855804711893,0.193017314788533,0.0188610808850199
"36","Adrian, MI","00577",41503,36.1,17917,32720,51265,78973,44811,39965,5067,1977,171,1372,6212,2482,14955,0.418,702," MI","Adrian",0.891856910133673,0.0441186315859945,0.00381602731472183,0.113074914641494,0.0306174823146103,0.138626676485684,0.0831323687031083
"37","Ahoskie, NC","00658",24673,40,10871,17396,34571,55583,4892,1440,54,3189,94,49,556,317,1829,0.508,627," NC","Ahoskie",0.294358135731807,0.651880621422731,0.0192150449713818,0.0110384300899428,0.0100163532297629,0.113654946852003,0.103493307215149
"38","Air Force Academy, CO","00676",68750,20.5,38933,59267,71844,92853,2871,2384,264,283,46,69,108,10,154,0.2425,1500," CO","Air Force Academy",0.830372692441658,0.0985719261581331,0.0160222918843608,0.0919540229885057,0.0240334378265413,0.0376175548589342,0.00368052999631947
"39","Ajo, AZ","00712",28586,45.7,14779,21519,40734,66500,3574,2395,1448,48,137,132,416,430,1252,0.4928,728," AZ","Ajo",0.67011751538892,0.0134303301622832,0.0383324006715165,0.405148293228875,0.0369334079462787,0.116396194739787,0.185185185185185
"40","Akron, NY","00739",45658,43,24694,38524,57135,87433,2984,2755,54,28,35,43,567,126,816,0.4008,712," NY","Akron",0.923257372654156,0.00938337801608579,0.0117292225201072,0.0180965147453083,0.0144101876675603,0.190013404825737,0.0581180811808118
"41","Akron, OH","00766",46592,38.7,18785,36712,57506,90717,567318,463452,9475,73770,11483,15261,101975,30314,161432,0.4524,726," OH","Akron",0.81691749600753,0.130032891605766,0.0202408525729838,0.0167013914594637,0.0269002569987203,0.179749276419927,0.0746859955751122
"42","Alachua, FL","00793",36810,36.6,15137,27882,48768,76500,3966,2702,383,1029,31,83,565,211,1040,0.4181,904," FL","Alachua",0.681290973272819,0.259455370650529,0.00781643973777105,0.0965708522440746,0.0209278870398386,0.142460917801311,0.0721120984278879
"43","Alamogordo, NM","00820",43579,37.6,17037,36476,51637,80250,32151,25144,10559,1735,673,1386,3881,1423,11047,0.4346,691," NM","Alamogordo",0.782059655998258,0.0539641068707039,0.0209324748841405,0.328419022736462,0.0431090790333116,0.120711641939598,0.0674279757391964
"44","Alamosa, CO","00847",27287,29,11397,21504,38176,65702,10405,8534,5069,293,157,400,1468,595,3711,0.521,614," CO","Alamosa",0.820182604517059,0.0281595386833253,0.0150888995675156,0.487169629985584,0.0384430562229697,0.141086016338299,0.0888855691664177
"45","Albany, GA","00901",33456,32.9,11401,25294,43184,74213,95307,32685,2324,58998,1126,1461,10786,7286,29413,0.5069,717," GA","Albany",0.342944379741257,0.619031130976738,0.0118144522438016,0.024384357917047,0.0153294091724637,0.113171120694178,0.110571523962728
"46","Albany, MN","00921",52368,39,19500,40065,66396,102820,2646,2612,32,0,5,22,322,57,606,0.3917,697," MN","Albany",0.987150415721844,0,0.0018896447467876,0.0120937263794407,0.00831443688586546,0.121693121693122,0.0279411764705882
"47","Albany, OR","00955",46527,35.3,19199,36126,57958,87150,58226,51836,7308,397,1276,1870,8781,3291,16894,0.4194,801," OR","Albany",0.890255212448047,0.00681825988390066,0.0219146085940989,0.125510940129839,0.0321162367327311,0.150808916978669,0.0796235362431046
"48","Albany--Schenectady, NY","00970",59669,38.1,24017,46925,73933,112813,598272,474939,33228,63037,28746,20129,144277,23665,167652,0.4407,901," NY","Albany--Schenectady",0.793851291720154,0.105365118207103,0.0480483793324775,0.0555399550706033,0.0336452316003423,0.241156196512623,0.0549556453485672
"49","Albemarle, NC","00982",33115,39.8,13626,24632,42915,71926,16956,12114,510,3718,561,400,2046,1080,5659,0.4723,592," NC","Albemarle",0.714437367303609,0.219273413540929,0.0330856334041047,0.0300778485491861,0.0235904694503421,0.1206652512385,0.0956006019297159
"50","Albert Lea, MN","01009",37354,45.2,17672,30006,45969,75275,17598,16543,2335,277,98,283,1924,560,5633,0.4451,548," MN","Albert Lea",0.940050005682464,0.0157404250483009,0.00556881463802705,0.132685532446869,0.0160813728832822,0.109330605750653,0.0468031759297952
"51","Albertville, AL","01036",34934,33.9,15612,27152,45738,79277,36917,32770,8693,1300,316,638,3690,1397,11073,0.4701,587," AL","Albertville",0.887666928515318,0.0352141289920633,0.00855974212422461,0.235474171790774,0.0172820109976434,0.099953950754395,0.0540550998297477
"52","Albia, IA","01063",34459,42.4,16089,29888,47000,81871,3460,3416,1,13,0,31,424,64,1255,0.4313,531," IA","Albia",0.98728323699422,0.00375722543352601,0,0.000289017341040462,0.00895953757225434,0.122543352601156,0.0290249433106576
"53","Albion, MI","01090",25080,32.9,10581,20043,32407,57529,8930,5894,383,2620,39,248,938,727,3324,0.4657,541," MI","Albion",0.660022396416573,0.293393057110862,0.00436730123180291,0.0428891377379619,0.0277715565509518,0.105039193729003,0.129682483053871
"54","Albion, NY","01117",27194,38.4,12762,21643,39066,68097,8447,6072,873,1659,37,159,464,321,4736,0.4933,583," NY","Albion",0.718835089380845,0.196401089144075,0.00438025334438262,0.103350301882325,0.0188232508582929,0.0549307446430685,0.0864995957962813
"55","Albion, PA","01144",48269,39.6,18516,37161,54656,76583,4346,3145,304,968,6,89,311,48,2897,0.3703,499," PA","Albion",0.723653934652554,0.222733548090198,0.00138057984353428,0.0699493787390704,0.0204786010124252,0.0715600552231937,0.0331262939958592
"56","Albuquerque, NM","01171",49077,36.3,20166,38318,61979,99546,754137,547987,361306,21787,17012,30306,158512,32333,212874,0.4644,816," NM","Albuquerque",0.726641180581247,0.0288899762244791,0.0225582354399797,0.47909862531609,0.040186332191631,0.210189925703155,0.0597362095691004
"57","Alderson, WV","01198",25565,38.9,11347,20449,36833,58818,2289,1890,93,309,0,51,227,38,1437,0.4948,574," WV","Alderson",0.825688073394495,0.134993446920052,0,0.0406290956749672,0.0222804718217562,0.0991699432066405,0.0446009389671361
"58","Aledo, IL","01225",41429,40.1,18463,36486,53905,79567,3676,3526,125,24,22,9,433,76,1225,0.4049,560," IL","Aledo",0.959194776931447,0.00652883569096844,0.00598476605005441,0.0340043525571273,0.00244831338411317,0.117791077257889,0.0310077519379845
"59","Aledo, TX","01232",110743,36.5,54820,97631,124163,162618,5602,5329,568,21,6,184,1578,84,1226,0.3425,1208," TX","Aledo",0.951267404498393,0.00374866119243127,0.00107104605498036,0.101392359871474,0.0328454123527312,0.281685112459836,0.0191956124314442
"60","Alexander City, AL","01252",24708,32.6,12231,20812,30664,49556,9879,4737,872,4753,0,10,697,521,3446,0.4303,547," AL","Alexander City",0.479501973883996,0.481121571009211,0,0.0882680433242231,0.00101224820325944,0.0705536997671829,0.0809886522617752
"61","Alexandria, LA","01279",37093,35.5,15650,28751,46200,79396,83578,41174,2639,38384,1667,1540,10320,3403,30379,0.4842,747," LA","Alexandria",0.492641604249922,0.45925961377396,0.0199454401876092,0.0315752949340736,0.0184259015530403,0.123477470147647,0.0639673678076656
"62","Alexandria, MN","01306",46164,40.8,19073,38190,55993,84064,17435,16868,100,143,33,256,3507,557,4752,0.4436,674," MN","Alexandria",0.967479208488672,0.0082018927444795,0.00189274447949527,0.00573558933180384,0.0146831086894178,0.201147117866361,0.0439170543246866
"63","Alfred, NY","01333",24167,20.1,7938,18204,35327,70393,4432,3505,229,542,227,82,360,334,2275,0.5527,733," NY","Alfred",0.790839350180505,0.122292418772563,0.0512184115523466,0.0516696750902527,0.0185018050541516,0.0812274368231047,0.154844691701437
"64","Algoma, WI","01360",39864,44.8,16375,32228,48396,73086,2955,2909,49,37,0,9,237,137,1034,0.3818,535," WI","Algoma",0.984433164128596,0.0125211505922166,0,0.0165820642978003,0.00304568527918782,0.0802030456852792,0.0713170223841749
"65","Algona, IA","01387",49857,45.9,20386,37902,57104,80130,5328,5235,119,1,27,65,915,43,1621,0.3727,575," IA","Algona",0.982545045045045,0.000187687687687688,0.00506756756756757,0.0223348348348348,0.0121996996996997,0.171734234234234,0.0115996762881036
"66","Alice, TX","01414",41064,33.4,18553,32191,52692,98137,20898,19430,17911,124,146,323,1475,568,6277,0.4603,703," TX","Alice",0.929754043449134,0.00593358216097234,0.00698631447985453,0.857067661977223,0.0154560244999521,0.0705809168341468,0.0388482319950756
"67","Allegan, MI","01441",41657,37.8,17872,36011,46991,64350,6258,5832,235,280,33,61,670,203,2352,0.4132,774," MI","Allegan",0.931927133269415,0.0447427293064877,0.00527325023969319,0.0375519335250879,0.00974752317034196,0.107062959411953,0.0519713261648745
"68","Allendale, SC","01468",22281,35.7,10722,19318,29000,45612,3228,332,17,2879,0,0,329,441,1250,0.4292,553," SC","Allendale",0.102850061957869,0.891883519206939,0,0.00526641883519207,0,0.101920693928129,0.222952477249747
"69","Allentown, PA--NJ","01495",56437,39.8,23815,44942,69574,107277,666536,550141,108176,40728,19789,19499,122730,32459,187426,0.4384,925," PA--NJ","Allentown",0.82537327316154,0.0611039763793704,0.0296893191065449,0.162295809978756,0.0292542338298306,0.18413108969358,0.0677485337396422
"70","Alliance, NE","01522",45909,38.8,19740,33472,58860,86136,8512,7769,1227,12,3,131,821,228,2122,0.4148,550," NE","Alliance",0.912711466165414,0.00140977443609023,0.000352443609022556,0.144149436090226,0.015390037593985,0.0964520676691729,0.0356807511737089
"71","Alliance, OH","01549",33433,40,14593,25550,40175,65831,32334,28930,945,2371,48,906,2719,2174,11459,0.4606,625," OH","Alliance",0.89472382012742,0.073328384981753,0.00148450547411394,0.0292262015216181,0.0280200408239005,0.084091049669079,0.10414371257485
"72","Alma, GA","01603",31667,32.4,12030,22609,38069,66382,3305,1678,361,1311,114,13,331,85,1232,0.4771,584," GA","Alma",0.507715582450832,0.396671709531014,0.0344931921331316,0.109228441754917,0.00393343419062027,0.100151285930408,0.0410033767486734
"73","Alma--St. Louis, MI","01630",33977,34.1,15159,26062,42818,66888,16890,14157,1127,2094,16,417,1638,861,8240,0.4409,556," MI","Alma--St. Louis",0.838188277087034,0.123978685612789,0.000947306098283008,0.0667258732978094,0.0246891651865009,0.0969804618117229,0.0995375722543353
"74","Almont, MI","01657",45707,40.6,24103,37667,56594,94632,2724,2567,85,0,68,29,275,178,690,0.3875,583," MI","Almont",0.942364170337739,0,0.0249632892804699,0.0312041116005874,0.0106461086637298,0.100954478707783,0.0875122910521141
"75","Alpena, MI","01684",34855,43.3,14876,27682,43640,69747,13842,13342,216,128,57,198,1765,698,4786,0.4419,529," MI","Alpena",0.96387805230458,0.00924721861002745,0.00411790203727785,0.0156046814044213,0.0143042912873862,0.127510475364832,0.0770759717314488
"76","Alpine, TX","01711",36834,37.3,19052,30964,44715,82435,6042,5585,3156,168,0,112,1338,118,1820,0.5301,663," TX","Alpine",0.924362793776895,0.0278053624627607,0,0.522343594836147,0.0185369083085071,0.221449851042701,0.0279488394126007
"77","Altavista, VA","01738",39891,47.6,17759,30558,48877,77423,4517,3157,145,1016,98,67,669,123,1689,0.4315,710," VA","Altavista",0.698915209209652,0.224928049590436,0.0216958158069515,0.032100951959265,0.0148328536639362,0.148107150763781,0.0434936350777935
"78","Alton, IL--MO","01765",45214,40.1,20354,35753,55740,84581,83412,72858,1792,7749,429,1951,10344,4343,26055,0.4246,749," IL--MO","Alton",0.873471442957848,0.0929003021148036,0.00514314487124155,0.0214837193689157,0.0233899199155997,0.124010933678607,0.0757187440068344
"79","Altoona, PA","01792",41006,41.5,18390,32772,51724,79162,80329,76219,996,1729,866,1351,10772,2734,26930,0.4454,631," PA","Altoona",0.948835414358451,0.0215239826214692,0.0107806645171731,0.0123990090751783,0.0168183345989618,0.13409851983717,0.0511994606640574
"80","Alturas, CA","01819",29659,44.8,12913,25409,39862,70667,2504,2271,381,13,2,99,251,132,939,0.461,690," CA","Alturas",0.906948881789137,0.00519169329073482,0.000798722044728434,0.152156549520767,0.0395367412140575,0.100239616613419,0.0843450479233227
"81","Altus, OK","01846",40122,33.1,19424,33966,48994,75040,19672,14149,4768,1863,223,1559,2220,748,5067,0.4312,696," OK","Altus",0.719245628304189,0.094703131354209,0.0113359089060594,0.242374949166328,0.0792496949979666,0.112850752338349,0.0512153372132831
"82","Alva, OK","01873",46585,30.4,14811,33275,56891,83938,5644,4827,311,317,13,293,816,79,1982,0.4726,623," OK","Alva",0.855244507441531,0.0561658398299079,0.00230333097094259,0.0551027639971651,0.0519135364989369,0.144578313253012,0.0215729109776079
"83","Alvarado, TX","01900",40163,36.8,13868,33200,52308,76400,3874,3600,542,138,0,81,159,250,1269,0.3872,775," TX","Alvarado",0.929272070211668,0.0356220960247806,0,0.139907072792979,0.0209086215797625,0.041042849767682,0.0959692898272553
"84","Amarillo, TX","01927",47016,34,20374,36876,58194,93385,199490,165076,59137,14131,6890,6259,28095,5371,51871,0.4558,745," TX","Amarillo",0.827490099754374,0.0708356308586897,0.0345380720838137,0.296440924357111,0.0313750062659782,0.140834127023911,0.0363842052852275
"85","American Falls, ID","01981",42070,31.5,26433,39436,50034,70958,4398,3911,1495,8,0,135,182,234,1153,0.3003,717," ID","American Falls",0.889267849022283,0.00181900864029104,0,0.339927239654388,0.0306957708049113,0.0413824465666212,0.0721109399075501
"86","Americus, GA","02008",28878,29.4,10851,21373,39081,64089,18515,6547,638,11170,74,371,2385,1447,6217,0.4825,605," GA","Americus",0.353605184985147,0.603294625978936,0.00399675938428301,0.0344585471239535,0.0200378071833648,0.128814474750203,0.117661408359083
"87","Amery, WI","02035",40739,50.6,22808,35250,46649,80688,2829,2701,35,51,8,41,432,69,1090,0.3892,901," WI","Amery",0.954754330151997,0.0180275715800636,0.00282785436550018,0.0123718628490633,0.0144927536231884,0.15270413573701,0.0396779758481886
"88","Ames, IA","02062",43256,23.6,14167,31332,56698,95657,63203,53574,2256,2117,5466,1523,17674,2287,18401,0.4933,773," IA","Ames",0.847649636884325,0.0334952454788539,0.0864832365552268,0.0356945081720804,0.0240969574229071,0.279638624748825,0.0510468282665952
"89","Amite City, LA","02116",34971,33.5,15093,27031,43262,67813,6334,1936,24,4130,5,220,872,449,2360,0.4509,688," LA","Amite City",0.305652036627723,0.652036627723398,0.000789390590464162,0.00378907483422798,0.0347331859804231,0.13766971897695,0.11298439859084
"90","Amory, MS","02143",36332,38,14177,27631,44867,69685,6570,4222,21,2253,0,89,825,364,2310,0.4362,511," MS","Amory",0.64261796042618,0.342922374429224,0,0.00319634703196347,0.0135464231354642,0.125570776255708,0.0854460093896714
"91","Amsterdam, NY","02170",40473,39.6,15044,31024,50897,84892,21873,17876,5344,844,99,866,2481,1329,6906,0.4678,712," NY","Amsterdam",0.817263292643899,0.038586385040918,0.00452612810314086,0.24431948063823,0.0395921912860604,0.113427513372651,0.0887953497694929
"92","Anaconda-Deer Lodge County, MT","02197",38412,48.7,16365,30358,49494,76846,5925,5671,155,100,0,79,839,250,2160,0.4346,514," MT","Anaconda-Deer Lodge County",0.957130801687764,0.0168776371308017,0,0.0261603375527426,0.0133333333333333,0.141603375527426,0.0664010624169987
"93","Anacortes, WA","02224",58773,49.5,25016,46723,72480,107130,16863,15549,879,90,370,505,4770,509,6470,0.4283,1021," WA","Anacortes",0.922077922077922,0.00533712862479986,0.0219415287908439,0.0521259562355453,0.0299472217280436,0.282867817114392,0.0489752718175695
"94","Anadarko, OK","02251",29078,32.9,13146,23802,35661,64637,5779,2134,974,325,52,513,565,372,2087,0.4547,532," OK","Anadarko",0.369268039453193,0.0562381034781104,0.00899809655649766,0.168541270115937,0.0887696833362173,0.097767779892715,0.100758396533044
"95","Anamosa, IA","02278",42228,40.8,16781,33892,53369,80591,5524,4927,191,388,35,13,375,288,2433,0.3994,536," IA","Anamosa",0.891926140477915,0.0702389572773353,0.00633598841419261,0.0345763939174511,0.00235336712527154,0.0678855901520637,0.0931737301844063
"96","Anchorage, AK","02305",74631,32.4,35604,61180,91613,137445,253885,158869,21311,16277,24085,25057,50369,9990,50374,0.4172,1157," AK","Anchorage",0.625751816767434,0.0641117041180062,0.0948657856903716,0.0839395789432223,0.0986942907221774,0.198392973196526,0.0490882556716836
"97","Anchorage Northeast, AK","02332",100468,32,52087,81706,113823,155545,31089,25567,2869,988,691,2036,6909,835,6589,0.36,1622," AK","Anchorage Northeast",0.822380906429927,0.0317797291646563,0.0222265109845926,0.0922834443050597,0.0654894013959922,0.222232944128148,0.0340816326530612
"98","Andalusia, AL","02359",29280,33.2,13610,23188,36333,58383,6651,4209,149,2176,61,169,625,415,2403,0.4227,587," AL","Andalusia",0.632837167343257,0.327168846789956,0.00917155314990227,0.0224026462186137,0.0254097128251391,0.0939708314539167,0.0976930320150659
"99","Anderson, IN","02386",39192,39.4,16276,31724,47917,73920,86760,73515,3572,8761,398,2699,10027,4696,31052,0.4329,694," IN","Anderson",0.847337482710927,0.100979714153988,0.00458736745043799,0.0411710465652374,0.031108805901337,0.115571692023974,0.0842966898829612
"100","Anderson, SC","02413",37740,39.9,16049,28748,47468,79246,76695,52227,2959,21666,742,1161,10635,4283,25545,0.4699,680," SC","Anderson",0.680970076276159,0.282495599452376,0.00967468544233653,0.038581393832714,0.0151378838255427,0.138666145120282,0.0837341153470186
"101","Andrews, SC","02440",26654,31.2,10280,21189,34049,60276,4173,1463,83,2695,0,5,193,359,1390,0.4739,588," SC","Andrews",0.350587107596453,0.64581835609873,0,0.019889767553319,0.00119817876827223,0.0462497004553079,0.12899748472871
"102","Andrews, TX","02467",61295,34,24119,46193,83517,119024,13746,12710,7251,280,105,220,1129,276,3404,0.4715,893," TX","Andrews",0.924632620398661,0.0203695620544158,0.00763858577040594,0.527498908773461,0.0160046558998982,0.082132984140841,0.0266872945271708
"103","Angels, CA","02494",51886,48.3,19759,39341,65957,93909,3690,3491,515,0,15,82,709,66,1612,0.448,898," CA","Angels",0.946070460704607,0,0.0040650406504065,0.139566395663957,0.0222222222222222,0.192140921409214,0.0317613089509143
"104","Angola, IN","02548",43941,34.3,20293,35930,52184,82079,11268,10432,443,136,110,536,1680,507,3723,0.4265,631," IN","Angola",0.925807596734114,0.0120695775647852,0.00976215832445864,0.0393148739794107,0.0475683351082712,0.149094781682641,0.0671968190854871
"105","Anna, IL","02575",34450,42.6,13445,24382,47755,75155,5835,5563,207,53,0,75,639,174,2266,0.4493,457," IL","Anna",0.953384747215081,0.00908311910882605,0,0.0354755784061697,0.012853470437018,0.109511568123393,0.0487531521434576
"106","Anna, TX","02581",58294,33,30003,50287,72589,101629,11506,10254,2662,790,80,137,1620,405,2415,0.3712,948," TX","Anna",0.891187206674778,0.0686598296540935,0.00695289414218669,0.231357552581262,0.0119068312184947,0.14079610637928,0.044549554504455
"107","Annandale, MN","02590",46449,36.2,19942,33809,58132,84560,3329,3203,27,99,0,27,532,87,896,0.4087,867," MN","Annandale",0.962150796034845,0.0297386602583358,0,0.00811054370681887,0.00811054370681887,0.159807750075098,0.0357583230579531
"108","Ann Arbor, MI","02602",55890,31.5,22188,43612,71771,116660,311066,215725,14107,48904,28432,14028,97520,14521,85869,0.4802,924," MI","Ann Arbor",0.693502343554101,0.157214224634001,0.0914018246931519,0.0453505043945658,0.0450965389981547,0.313502600734249,0.0644813207991225
"109","Anniston--Oxford, AL","02629",39228,37.2,14976,30031,48265,78513,79478,52668,3399,22907,811,1851,9360,5631,26912,0.4644,640," AL","Anniston--Oxford",0.662673947507486,0.288218123254234,0.0102040816326531,0.0427665517501699,0.0232894637509751,0.117768439064898,0.107122474603356
"110","Antigo, WI","02656",32724,42.1,12773,24447,41023,64057,7853,7412,251,101,0,107,675,270,2554,0.4215,559," WI","Antigo",0.94384311728002,0.0128613268814466,0,0.0319623073984465,0.0136253661021266,0.0859544123264994,0.0509530100018872
"111","Antioch, CA","02683",66656,34.6,27913,52831,82572,126432,288228,156314,102867,39574,31222,20526,36500,17951,76260,0.4168,1387," CA","Antioch",0.542327601759718,0.137301025576974,0.108323965749337,0.356894541821058,0.0712144552229485,0.126635857723746,0.0846873112922705
"112","Apalachicola, FL","02710",36815,40,13831,28760,41053,61386,3661,2871,60,740,8,30,359,217,1069,0.4222,730," FL","Apalachicola",0.784211963944278,0.202130565419284,0.0021851953018301,0.0163889647637258,0.00819448238186288,0.0980606391696258,0.0837191358024691
"113","Appleton, WI","02764",56380,36.7,26429,46768,68459,99628,218827,198478,9658,2859,8157,4412,43277,5740,49575,0.4149,717," WI","Appleton",0.90700873292601,0.0130651153651058,0.0372760216975053,0.0441353215096857,0.0201620458170153,0.197768099914544,0.0339139271618651
"114","Apple Valley, OH","02773",59650,45.1,35020,55627,75408,101866,5121,5013,12,22,28,39,1243,116,1649,0.3952,1153," OH","Apple Valley",0.978910369068541,0.00429603593048233,0.00546768209334114,0.00234329232571763,0.00761570005858231,0.242726030072252,0.0334101382488479
"115","Arab, AL","02791",43738,42.3,17509,34218,52852,87147,7570,7353,132,30,62,66,1214,289,2582,0.4425,568," AL","Arab",0.971334214002642,0.00396301188903567,0.00819022457067371,0.0174372523117569,0.00871862615587847,0.160369881109643,0.0579390537289495
"116","Arbuckle, CA","02825",47026,26.4,20212,41179,60984,77304,2581,1939,2087,0,8,197,113,91,682,0.3798,1164," CA","Arbuckle",0.751259201859744,0,0.00309957380860132,0.808601317318869,0.0763270050368074,0.0437814800464936,0.0479199578725645
"117","Arcade, NY","02845",37782,43,16016,28705,45885,76291,3378,3300,35,1,65,8,314,133,1089,0.4243,534," NY","Arcade",0.976909413854352,0.00029603315571344,0.0192421551213736,0.0103611604499704,0.00236826524570752,0.0929544108940201,0.0581039755351682
"118","Arcadia, LA","02899",20203,36,10821,16388,27661,62667,2859,993,54,1765,0,41,275,158,1114,0.5387,501," LA","Arcadia",0.347324239244491,0.617348723329836,0,0.018887722980063,0.0143406785589367,0.0961874781392095,0.0905444126074499
"119","Arcadia, WI","02901",42220,33.2,21476,35885,48662,70628,2932,2365,948,38,0,132,201,68,683,0.3669,726," WI","Arcadia",0.806616643929059,0.0129604365620737,0,0.323328785811733,0.0450204638472033,0.0685538881309686,0.0302356602934638
"120","Arcadia--Southeast Arcadia, FL","02912",33633,31.1,16509,26300,38911,56920,18454,14171,7916,3371,148,69,668,964,6133,0.3994,670," FL","Arcadia--Southeast Arcadia",0.767909396336838,0.182670423756367,0.00801994147610274,0.428958491383982,0.00373902676926412,0.0361981142299772,0.0782404025647269
"121","Arcata--McKinleyville, CA","02926",38765,30.8,14896,29681,49528,82561,34089,28607,3947,574,500,1550,7555,2332,10570,0.4704,923," CA","Arcata--McKinleyville",0.839185661063686,0.0168382762768048,0.0146674880459972,0.115785150635102,0.0454692129425915,0.221625744375018,0.0991538755899486
"122","Archbold, OH","02953",48456,36,23463,36300,58054,90611,4756,4239,812,70,0,47,716,183,1337,0.4493,620," OH","Archbold",0.891295206055509,0.0147182506307822,0,0.170731707317073,0.00988225399495374,0.150546677880572,0.0535244223457151
"123","Archer Lodge--Clayton, NC","02965",86087,38,44818,70333,96095,122268,14608,12619,1377,901,294,468,3261,630,3334,0.3494,1256," NC","Archer Lodge--Clayton",0.863841730558598,0.0616785323110624,0.0201259583789704,0.094263417305586,0.0320372398685652,0.223233844468784,0.0558807876530069
"124","Arcola, IL","02980",51037,39.3,24186,41629,64088,94864,2980,2685,814,22,6,86,335,82,753,0.3762,683," IL","Arcola",0.901006711409396,0.00738255033557047,0.00201342281879195,0.273154362416107,0.0288590604026846,0.11241610738255,0.0368208352043107
"125","Ardmore, OK","03007",37456,36.5,17738,30459,47936,73123,20850,13681,2115,2555,266,1660,2568,731,6319,0.4453,683," OK","Ardmore",0.656163069544365,0.122541966426859,0.012757793764988,0.101438848920863,0.0796163069544364,0.123165467625899,0.0503062418278164
"126","Arizona City, AZ","03088",45959,35.4,22183,40070,55071,78406,9608,7820,3584,677,8,399,702,488,2980,0.3585,837," AZ","Arizona City",0.813905079100749,0.0704621149042465,0.000832639467110741,0.373022481265612,0.0415278934221482,0.0730641132389675,0.0736270368135184
"127","Arkadelphia, AR","03115",29053,22.8,10081,19293,36628,74061,10557,7269,521,3053,69,135,1650,313,4231,0.5331,584," AR","Arkadelphia",0.688547882921284,0.289192005304537,0.0065359477124183,0.0493511414227527,0.0127877237851662,0.156294401818698,0.0494783433449257
"128","Arkansas City, KS","03142",37694,34,16799,29250,43982,67000,13026,10720,2260,545,102,554,1216,712,3827,0.4176,625," KS","Arkansas City",0.822969445723937,0.0418393981268233,0.00783049286043298,0.173499155535084,0.0425303239674497,0.0933517580224167,0.0773997173605827
"129","Arlington, TN","03158",93011,31.2,48532,82753,105630,133122,11771,9432,478,1368,395,196,2577,212,2072,0.316,747," TN","Arlington",0.801291309149605,0.116217823464447,0.0335570469798658,0.0406082745731034,0.0166510916659587,0.218927873587631,0.0218579234972678
"130","Arroyo Grande--Grover Beach, CA","03196",59997,43.8,24728,47381,76561,112463,53607,45820,11326,684,2133,1938,10923,2147,17923,0.4248,1191," CA","Arroyo Grande--Grover Beach",0.854739119891059,0.0127595276736247,0.0397895797190665,0.211278377823792,0.03615199507527,0.203760702893279,0.0601670216343459
"131","Artesia, NM","03223",47633,32.1,22500,40754,59760,95707,12634,10840,6541,38,164,110,1145,268,3429,0.5432,679," NM","Artesia",0.858002216241887,0.0030077568466044,0.0129808453379769,0.517729935095773,0.00870666455596011,0.0906284628779484,0.0291146116241173
"132","Arvin, CA","03250",35279,24.1,17491,27495,41649,62405,20270,16860,18369,313,91,385,273,1461,4679,0.3887,813," CA","Arvin",0.831771090281204,0.0154415392205229,0.00448939319190923,0.906216082881105,0.0189935865811544,0.0134681795757277,0.0937079084086973
"133","Ashburn, GA","03277",18831,36.5,9558,16298,24810,40910,4214,1281,310,2786,85,8,135,293,1859,0.4352,576," GA","Ashburn",0.303986710963455,0.661129568106312,0.0201708590412909,0.0735643094447081,0.0018984337921215,0.0320360702420503,0.124416135881104
"134","Ashdown, AR","03304",34183,38.7,12141,22027,43336,59585,3948,2445,14,1487,0,0,272,93,1429,0.4232,518," AR","Ashdown",0.619300911854103,0.376646403242148,0,0.00354609929078014,0,0.0688956433637285,0.036919412465264
"135","Asheboro, NC","03331",33369,37.1,15420,26657,40965,66549,38239,31374,8815,3875,320,773,3571,2231,11638,0.4306,627," NC","Asheboro",0.820471246633019,0.101336332017051,0.00836841967624676,0.23052381076911,0.0202149637804336,0.0933863333246162,0.0838690274801699
"136","Asheville, NC","03358",43639,41.8,19177,34826,53965,85769,285239,250894,23095,18973,3216,6896,68606,11247,93680,0.4573,804," NC","Asheville",0.879592201627407,0.0665161496148844,0.0112747555558672,0.0809671889187664,0.0241762171372077,0.240521106861264,0.0587129813791051
"137","Ashland, MO","03365",60503,33.9,20412,52011,71538,105302,3457,3441,11,16,0,0,894,124,748,0.4431,797," MO","Ashland",0.995371709574776,0.00462829042522418,0,0.00318194966734163,0,0.258605727509401,0.0457733480989295
"138","Ashland, NE","03375",55775,42.1,22684,46361,64667,92583,2662,2519,77,0,7,45,512,109,624,0.3697,772," NE","Ashland",0.946280991735537,0,0.00262960180315552,0.0289256198347107,0.0169045830202855,0.192336589030804,0.0534838076545633
"139","Ashland, OH","03385",39215,35.4,18362,31735,49472,77357,20331,19355,217,290,258,330,3477,1150,6687,0.4324,673," OH","Ashland",0.951994491171118,0.0142639319266145,0.0126899808174709,0.0106733559588805,0.0162313708130441,0.171019625202892,0.084286133098798
"140","Ashland, PA","03395",38285,42.4,17227,32377,46928,71915,7322,6236,509,738,27,97,649,368,3536,0.3772,474," PA","Ashland",0.851679868888282,0.100792133296913,0.0036875170718383,0.0695165255394701,0.013247746517345,0.0886369844304835,0.0972002113048072
"141","Ashland, WI","03412",37684,39.7,16638,27622,45250,71941,7300,6238,187,31,60,402,1331,366,2204,0.4262,609," WI","Ashland",0.854520547945205,0.00424657534246575,0.00821917808219178,0.0256164383561644,0.0550684931506849,0.182328767123288,0.0718210361067504
"142","Ashland City, TN","03439",34910,38.1,16948,29620,40036,64063,3457,2988,111,342,0,25,304,117,1196,0.3987,830," TN","Ashland City",0.864333236910616,0.0989297078391669,0,0.0321087648249928,0.00723170378941279,0.0879375180792595,0.0517470145953118
"143","Ashtabula, OH","03466",31671,40.7,12283,24254,39703,68894,29473,25944,2016,1842,134,1215,2321,1566,10221,0.4624,631," OH","Ashtabula",0.880263291826417,0.0624978794150578,0.00454653411597055,0.0684015878940047,0.0412241712754046,0.0787500424116988,0.0813421982131727
"144","Ashville, OH","03493",55355,31,23845,46392,66913,92400,6651,6224,181,34,0,276,635,244,1347,0.3759,753," OH","Ashville",0.935799127950684,0.00511201323109307,0,0.0272139527890543,0.0414975191700496,0.0954743647571794,0.0460030165912519
"145","Aspen, CO","03520",74297,44.1,40250,60184,96670,138700,7913,7284,574,295,138,97,4074,348,1833,0.5682,1208," CO","Aspen",0.920510552255782,0.0372804246177177,0.0174396562618476,0.0725388601036269,0.0122583091115885,0.514848982686718,0.0572368421052632
"146","Astoria, OR","03547",42276,37.7,18975,33130,53358,81728,14290,12780,1186,186,325,599,2568,605,4091,0.4411,745," OR","Astoria",0.894331700489853,0.0130160951714486,0.0227431770468859,0.0829951014695591,0.0419174247725682,0.179706088173548,0.0593195411314835
"147","Atchison, KS--MO","03601",41087,29.9,16867,31310,47623,79508,10977,9691,318,672,27,470,1310,497,3075,0.4956,627," KS--MO","Atchison",0.882845950624032,0.0612189122711123,0.00245968843946433,0.0289696638425799,0.0428167987610458,0.119340439099936,0.062895469501392
"148","Athens, AL","03655",45755,37.6,19516,34838,54318,95211,26475,20555,2301,4113,129,483,4458,1226,8472,0.4914,626," AL","Athens",0.776392823418319,0.155354107648725,0.00487252124645892,0.0869121813031161,0.0182436260623229,0.168385269121813,0.0680997611509193
"149","Athens, OH","03682",21366,21.8,5745,14284,32856,67599,28256,24302,899,980,1827,799,4989,1568,12749,0.5842,732," OH","Athens",0.860065118912797,0.034682899207248,0.0646588335220838,0.0318162514156285,0.0282771800679502,0.176564269535674,0.101115625201522
"150","Athens, TN","03709",32278,37.6,13058,24648,42042,70320,15710,13721,1061,1093,123,457,2355,618,5550,0.4685,592," TN","Athens",0.873392743475493,0.069573520050923,0.00782940802036919,0.0675366008911521,0.0290897517504774,0.149904519414386,0.0608267716535433
"151","Athens, TX","03736",32069,30.7,13573,25042,40969,74269,12451,9324,3948,2226,152,199,1098,378,3982,0.5346,597," TX","Athens",0.748855513613364,0.178780820817605,0.0122078547907799,0.317082965223677,0.0159826519958236,0.0881856878965545,0.0446333687566419
"152","Athens-Clarke County, GA","03763",36678,27,11683,26427,48087,83669,129884,88424,12477,30495,5921,2865,28502,5847,45463,0.5397,793," GA","Athens-Clarke County",0.680792091404638,0.23478642480983,0.0455868313264143,0.0960626405099935,0.0220581441902005,0.219441963598288,0.0692600182419066
"153","Athol, MA","03790",36699,44,14602,25213,48352,83246,12465,11789,558,87,116,118,1175,1006,4395,0.4306,630," MA","Athol",0.945768150822302,0.00697954271961492,0.00930605695948656,0.0447653429602888,0.00946650621740875,0.094263939029282,0.124659231722429
"154","Atlanta, GA","03817",57340,35,24479,45401,71929,116048,4669531,2426820,533562,1674947,272219,104068,1141340,264604,1122195,0.4741,982," GA","Atlanta",0.519713864197497,0.358697051159956,0.0582968610766263,0.114264580318666,0.0222866065135878,0.244422833899165,0.0745923137813841
"155","Atlanta, TX","03844",31006,35.4,13804,23125,39295,70870,5950,4090,149,1733,34,61,511,474,1782,0.4719,533," TX","Atlanta",0.687394957983193,0.291260504201681,0.00571428571428571,0.0250420168067227,0.0102521008403361,0.0858823529411765,0.113723608445298
"156","Atlantic, IA","03871",36596,42.1,19496,30164,46167,68638,6222,6040,248,41,31,50,861,70,1955,0.4366,552," IA","Atlantic",0.970748955319833,0.00658952105432337,0.00498232079717133,0.0398585663773706,0.00803600128576021,0.138379942140791,0.0164049683618467
"157","Atlantic City, NJ","03898",53588,41.1,22034,41888,67090,108502,249096,166520,42667,40955,21163,8024,46286,16243,69799,0.4622,1041," NJ","Atlantic City",0.668497286186852,0.16441452291486,0.084959212512445,0.171287375148537,0.0322124803288692,0.18581591033176,0.0905927037262196
"158","Atmore, AL","03925",22788,37.3,9860,17196,31262,55783,7119,3127,0,3705,26,143,434,646,2731,0.4927,609," AL","Atmore",0.439247085264784,0.520438263801096,0.00365219834246383,0,0.0200870908835511,0.0609636184857424,0.14721969006381
"159","Atoka, TN","03957",69868,35,33208,56951,80899,109271,20102,16656,526,2218,207,388,2581,1047,4647,0.3553,957," TN","Atoka",0.828574271216794,0.110337279872649,0.0102974828375286,0.0261665505919809,0.0193015620336285,0.12839518455875,0.0677450663215788
"160","Attica, IN","03979",38965,40.5,20411,32163,44272,73458,5379,5206,230,40,23,42,456,259,1830,0.4005,614," IN","Attica",0.967837888083287,0.00743632645473136,0.00427588771147053,0.0427588771147053,0.00780814277746793,0.0847741215839375,0.0729783037475345
"161","Attica, NY","04006",57727,35.7,26601,47792,63096,87313,5993,3882,555,1773,46,91,384,97,3722,0.3389,577," NY","Attica",0.647755715000834,0.295845152678125,0.0076756215584849,0.0926080427165026,0.0151843817787419,0.0640747538795261,0.0427124614707177
"162","Aubrey, TX","04021",70333,37.5,33661,58333,84135,115893,4270,3978,577,18,0,109,667,140,852,0.3698,1117," TX","Aubrey",0.931615925058548,0.00421545667447307,0,0.135128805620609,0.0255269320843091,0.156206088992974,0.0409596255119953
"163","Auburn, AL","04033",35540,25.4,11150,25587,46933,88402,78698,51948,3936,19960,3661,1086,17509,3152,27022,0.537,753," AL","Auburn",0.660093013799588,0.253627792320008,0.0465196065973722,0.0500139774835447,0.0137995882995756,0.222483417621795,0.060995433083056
"164","Auburn, IL","04054",58710,34.8,26463,51231,68286,116355,4843,4814,16,0,12,0,635,172,856,0.3839,638," IL","Auburn",0.994011976047904,0,0.00247780301466033,0.00330373735288045,0,0.131117076192443,0.0431402056684224
"165","Auburn, IN","04060",43839,36,21482,34963,52244,83310,21908,21194,642,36,140,335,2694,839,6162,0.4093,632," IN","Auburn",0.967409165601607,0.00164323534781815,0.00639035968595947,0.029304363702757,0.0152912178199744,0.122968778528391,0.0532833735551886
"166","Auburn, NE","04087",45185,42.3,21374,36000,58070,96722,3479,3385,14,37,19,18,596,157,1037,0.4217,577," NE","Auburn",0.972980741592412,0.0106352400114976,0.00546133946536361,0.00402414486921529,0.00517390054613395,0.17131359586088,0.0642915642915643
"167","Auburn, NY","04114",42128,40.7,16771,32135,53011,88234,32136,28077,1033,2538,288,870,4856,1545,10756,0.4579,638," NY","Auburn",0.873693054518297,0.0789768483943241,0.00896191187453323,0.0321446352999751,0.0270724421209858,0.151107791884491,0.0722637979420019
"168","Auburn--North Auburn, CA","04130",52184,44.8,22757,40591,68236,112653,34981,30765,4870,538,846,1435,6740,1784,12928,0.4737,1017," CA","Auburn--North Auburn",0.879477430605186,0.0153797775935508,0.0241845573311226,0.139218432863555,0.0410222692318687,0.192676024127383,0.0808960232167959
"169","Augusta, KS","04168",46098,37.3,22290,37329,56349,91810,9275,8630,479,74,9,447,1405,494,2430,0.4047,685," KS","Augusta",0.930458221024259,0.00797843665768194,0.000970350404312668,0.051644204851752,0.0481940700808625,0.151482479784367,0.0721694667640614
"170","Augusta, ME","04195",36875,43.6,14594,30278,46382,72967,22783,21527,529,112,306,461,4090,1097,8204,0.4385,677," ME","Augusta",0.94487117587675,0.0049159461001624,0.013431067023658,0.0232190668480885,0.0202343852872756,0.179519817407716,0.0752452157212429
"171","Augusta-Richmond County, GA--SC","04222",47728,36,18404,37047,59896,95333,394549,221781,19115,147111,9773,9437,69774,19379,121135,0.4674,807," GA--SC","Augusta-Richmond County",0.562112690692411,0.372858630993869,0.0247700539096538,0.0484477213223199,0.0239184486591019,0.176844954619071,0.070877862874615
"172","Aumsville, OR","04249",50745,33.5,29019,41748,63205,84242,4021,3571,471,0,25,194,233,205,998,0.3268,1156," OR","Aumsville",0.888087540412833,0,0.00621735886595374,0.117135041034569,0.048246704799801,0.0579457846306889,0.0678134303671849
"173","Aurora, MO","04276",34007,35.9,15934,26655,44305,66966,8324,7794,840,2,7,270,624,461,2359,0.409,650," MO","Aurora",0.936328688130706,0.000240269101393561,0.000840941854877463,0.100913022585296,0.0324363286881307,0.074963959634791,0.0772841575859178
"174","Aurora, NE","04303",54239,41.2,23857,48225,65353,92955,4407,4286,132,12,9,67,725,76,1192,0.3653,641," NE","Aurora",0.972543680508282,0.00272294077603812,0.00204220558202859,0.0299523485364193,0.0152030859995462,0.16451100521897,0.0236391912908243
"175","Au Sable, MI","04330",33606,48.7,18604,27797,40399,65875,6350,6015,197,53,81,25,724,475,2742,0.4841,564," MI","Au Sable",0.947244094488189,0.00834645669291339,0.012755905511811,0.0310236220472441,0.00393700787401575,0.114015748031496,0.131651884700665
"176","Austin, MN","04357",39923,37.9,16984,32193,52612,85518,25285,22699,3853,859,705,578,3111,984,6823,0.457,723," MN","Austin",0.897725924461143,0.0339727110935337,0.0278821435633775,0.152382835673324,0.0228594028079889,0.123037373937117,0.0532986675333117
"177","Austin, TX","04384",62951,32.7,27230,50252,78097,122276,1464998,1126783,466181,113549,87729,44536,417576,54983,315071,0.4644,1033," TX","Austin",0.769136203598913,0.0775079556422603,0.0598833582025368,0.318212721109517,0.0304000415017631,0.285035201413244,0.0478143395189434
"178","Ava, MO","04411",24303,39.7,9958,19417,29548,46273,2998,2888,56,0,0,7,156,136,1254,0.4328,630," MO","Ava",0.963308872581721,0,0,0.018679119412942,0.00233488992661775,0.0520346897931955,0.0779816513761468
"179","Avalon, CA","04438",53462,34.6,25033,45146,66032,115143,3699,3099,2721,25,3,321,394,145,707,0.4961,1383," CA","Avalon",0.83779399837794,0.00675858340091917,0.0008110300081103,0.735604217356042,0.0867802108678021,0.106515274398486,0.0484625668449198
"180","Avenal, CA","04465",29186,30.9,14298,22349,35136,56724,14541,8221,11526,730,177,614,350,856,6719,0.4072,707," CA","Avenal",0.565366893611168,0.0502028746303555,0.0121724778213328,0.792655250670518,0.0422254315384086,0.0240698713981157,0.109434927128612
"181","Avon, NY","04519",51721,36.8,25098,41767,67596,101300,4565,4419,62,18,82,46,870,42,940,0.3847,743," NY","Avon",0.968017524644031,0.00394304490690033,0.0179627601314348,0.0135815991237678,0.0100766703176342,0.190580503833516,0.0115862068965517
"182","Avondale--Goodyear, AZ","04549",63560,32.3,31474,51906,75564,108478,205626,157898,78737,18532,7497,7189,28603,8255,51553,0.3852,1113," AZ","Avondale--Goodyear",0.767889274702615,0.0901247896666764,0.036459397157947,0.382913639325766,0.0349615321019715,0.139102059078132,0.0535784985039559
"183","Avra Valley, AZ","04573",53783,48.7,18446,34304,62897,95067,2848,2526,575,70,16,81,365,122,1013,0.419,638," AZ","Avra Valley",0.886938202247191,0.0245786516853933,0.00561797752808989,0.20189606741573,0.0284410112359551,0.128160112359551,0.0664850136239782
"184","Aztec, NM","04587",47426,35.9,20792,36896,59522,86947,8929,7330,2178,6,20,363,760,413,2678,0.4235,849," NM","Aztec",0.820920595811401,0.000671967745548214,0.00223989248516071,0.243924291634002,0.0406540486056669,0.0851159144361071,0.0660694288913774
"185","Bad Axe, MI","04600",31875,45.1,13012,25677,42808,75700,3423,3320,100,44,28,2,356,228,1199,0.4414,602," MI","Bad Axe",0.969909436167105,0.0128542214431785,0.0081799591002045,0.0292141396435875,0.00058428279287175,0.104002337131171,0.102517985611511
"186","Bainbridge, GA","04627",25019,38.2,9012,18869,32739,55248,11879,4688,179,6875,0,47,1424,553,4684,0.5386,654," GA","Bainbridge",0.39464601397424,0.578752420237394,0,0.0150686084687263,0.00395656200016836,0.11987541038808,0.0768589298123697
"187","Baker City, OR","04654",33883,41.5,14284,26323,44058,66452,9439,8913,297,8,74,192,1175,431,3648,0.4599,628," OR","Baker City",0.944273757813328,0.000847547409683229,0.00783981353956987,0.0314651975844899,0.0203411378323975,0.124483525797224,0.0744258331894319
"188","Bakersfield, CA","04681",50713,30.2,20233,38683,64873,102867,540077,381116,272180,33837,25224,20097,53603,31353,146139,0.4628,933," CA","Bakersfield",0.705669747091618,0.0626521773747077,0.0467044514023,0.50396517533611,0.0372113606022845,0.0992506624055459,0.079588666236819
"189","Bald Knob, AR","04708",30531,37.2,13594,26596,33105,53754,2398,2279,118,44,0,66,203,86,936,0.3825,394," AR","Bald Knob",0.950375312760634,0.018348623853211,0,0.0492076730608841,0.0275229357798165,0.0846538782318599,0.0588235294117647
"190","Baldwin, WI","04762",59647,32.1,23161,49882,67072,92709,5862,5688,5,10,12,150,717,166,1044,0.3712,832," WI","Baldwin",0.970317297850563,0.00170590242238144,0.00204708290685773,0.00085295121119072,0.0255885363357216,0.122313203684749,0.0344541303445413
"191","Baldwin City, KS","04789",50813,35.2,24000,39471,60654,103583,4464,4086,178,55,24,229,912,158,1117,0.3963,963," KS","Baldwin City",0.915322580645161,0.0123207885304659,0.00537634408602151,0.0398745519713262,0.0512992831541219,0.204301075268817,0.047206453540484
"192","Ballinger, TX","04816",28299,35.5,16585,22773,36595,58170,3629,3341,1321,35,0,103,223,65,1328,0.5082,611," TX","Ballinger",0.920639294571507,0.00964453017360154,0,0.364012124552218,0.0283824745108845,0.0614494351060898,0.0282485875706215
"193","Baltimore, MD","04843",66276,37,26846,52742,82872,131158,2238771,1226701,125767,775025,126902,62475,555944,104528,577833,0.4558,1150," MD","Baltimore",0.547935005411451,0.346183240715553,0.0566837787339572,0.0561768041483475,0.0279059358907186,0.248325532178146,0.0629331136984042
"194","Baltimore, OH","04870",41477,32.5,17333,30297,50819,75795,3511,3481,107,0,5,22,270,219,842,0.4347,764," OH","Baltimore",0.991455425804614,0,0.00142409569923099,0.0304756479635431,0.00626602107661635,0.0769011677584734,0.0820532034469839
"195","Bamberg, SC","04897",41503,46.5,17305,33742,52776,83250,3283,1491,56,1745,0,0,546,99,1403,0.432,639," SC","Bamberg",0.454157782515991,0.531526043253122,0,0.0170575692963753,0,0.166311300639659,0.0526595744680851
"196","Bandon, OR","04924",31979,57.1,12580,22343,43133,57985,3362,3255,46,43,24,0,715,55,1552,0.4694,642," OR","Bandon",0.968173706127305,0.01279000594884,0.00713860797144557,0.0136823319452707,0,0.212671029149316,0.0303867403314917
"197","Bangor, ME","04951",38176,33.5,15181,29896,49134,81692,60984,56282,826,913,1317,1101,11965,2448,20079,0.4709,739," ME","Bangor",0.922897809261446,0.01497113997114,0.0215958284140102,0.013544536271809,0.0180539157811885,0.196199003017185,0.0598459845984598
"198","Baraboo, WI","05005",42132,37.3,20638,34776,54235,80954,13892,13298,518,208,133,87,2100,689,3333,0.4001,725," WI","Baraboo",0.957241577886553,0.0149726461272675,0.00957385545637777,0.037287647566945,0.00626259717823208,0.151166138784912,0.0652523913249361
"199","Barbourville, KY","05032",26964,35.4,10189,19391,31521,47102,6208,5695,194,357,0,56,553,433,2950,0.4536,489," KY","Barbourville",0.91736469072165,0.0575064432989691,0,0.03125,0.00902061855670103,0.0890786082474227,0.132903621853898
"200","Bardstown, KY","05059",40433,33.8,17088,32000,50538,84146,20363,17987,589,1791,96,364,2335,1373,5615,0.4856,679," KY","Bardstown",0.883317782252124,0.0879536414084369,0.00471443304031822,0.0289250110494524,0.0178755586112066,0.11466876197024,0.0930973691347979
"201","Bar Harbor, ME","05086",42071,44.1,16103,33857,55618,83410,2670,2498,0,9,120,43,943,99,693,0.4593,855," ME","Bar Harbor",0.935580524344569,0.00337078651685393,0.0449438202247191,0,0.0161048689138577,0.353183520599251,0.0500758725341426
"202","Barnesville, GA","05113",30661,28.7,12659,25220,37952,66052,6901,2750,162,3768,0,291,581,652,2781,0.4613,599," GA","Barnesville",0.398492972033039,0.546007824952905,0,0.0234748587161281,0.0421678017678597,0.0841906970004347,0.158252427184466
"203","Barnesville, OH","05140",39948,40.4,15544,32278,50443,66490,4242,3951,31,134,36,94,327,100,1406,0.4175,512," OH","Barnesville",0.931400282885431,0.0315888731730316,0.00848656294200849,0.00730787364450731,0.0221593587930222,0.0770862800565771,0.0352609308885755
"204","Barnstable Town, MA","05167",64122,49,27081,50902,78432,117390,245991,227984,5706,5869,3091,4596,68161,10384,79576,0.4415,1129," MA","Barnstable Town",0.926798134891114,0.0238585964527157,0.0125655003638344,0.0231959705842897,0.0186836103759894,0.277087373115277,0.0623982213141844
"205","Barnwell, SC","05194",34750,40,10308,22272,48352,71195,3468,1948,22,1411,0,28,407,198,1240,0.4599,721," SC","Barnwell",0.561707035755479,0.406862745098039,0,0.0063437139561707,0.00807381776239908,0.117358708189158,0.0888689407540395
"206","Barre--Montpelier, VT","05221",50310,41.7,17937,39541,62409,89050,21342,20421,297,332,161,346,4727,718,5638,0.4316,830," VT","Barre--Montpelier",0.956845656452066,0.0155561803017524,0.00754381032705463,0.0139162215350014,0.0162121638084528,0.221488145440915,0.0457208354559348
"207","Barron, WI","05248",37969,38.6,19109,32506,49634,72539,3194,2781,55,401,0,6,201,130,942,0.3666,670," WI","Barron",0.870695053224796,0.125547902316844,0,0.017219787100814,0.00187852222917971,0.0629304946775203,0.0577264653641208
"208","Barrow, AK","05275",81528,26.8,40346,64983,107563,136833,3830,475,204,20,386,182,291,225,726,0.3792,1165," AK","Barrow",0.12402088772846,0.00522193211488251,0.100783289817232,0.0532637075718016,0.0475195822454308,0.0759791122715405,0.0724871134020619
"209","Barstow, CA","05302",44732,31.7,15924,32605,58347,85495,29639,19004,12920,3642,857,1934,2015,1837,9405,0.432,751," CA","Barstow",0.641182226120989,0.122878639630217,0.0289146057559297,0.435912142784844,0.065251864097979,0.0679847498228685,0.0907877829396066
"210","Bartlesville, OK","05329",46223,38.4,20260,35660,58477,92408,39046,30785,2482,1281,836,2510,7242,1022,12768,0.4539,664," OK","Bartlesville",0.788429032423296,0.0328074578702044,0.0214106438559648,0.0635660502996466,0.0642831532039133,0.185473544024996,0.0388918486947256
"211","Bartlett, TX","05356",38523,37.4,16808,33833,43625,59719,1418,1077,803,157,8,46,93,116,465,0.3877,389," TX","Bartlett",0.759520451339915,0.110719322990127,0.00564174894217207,0.566290550070522,0.0324400564174894,0.0655853314527503,0.121720881427072
"212","Basalt--El Jebel, CO","05410",68643,35.8,31189,57915,79652,130690,8714,7478,3939,46,95,263,2263,549,1187,0.428,1571," CO","Basalt--El Jebel",0.858159283910948,0.00527886160201974,0.0109019967867799,0.452031214138168,0.0301813174202433,0.259697039247188,0.0729374252690315
"213","Basehor, KS","05423",84821,35,41875,68229,91944,123922,3987,3733,254,55,75,13,777,52,773,0.3239,982," KS","Basehor",0.936292952094307,0.0137948332079258,0.018811136192626,0.0637070479056935,0.00326059694005518,0.194883370955606,0.0161792159303049
"214","Bastrop, LA","05437",23781,35.6,10950,18795,29177,50903,13920,3732,42,9987,56,116,1126,714,5210,0.4593,556," LA","Bastrop",0.268103448275862,0.717456896551724,0.00402298850574713,0.00301724137931034,0.00833333333333333,0.0808908045977011,0.0819747416762342
"215","Bastrop, TX","05464",50614,40.4,23661,41148,62681,90608,13746,11396,3737,1601,130,184,1712,470,5133,0.4004,826," TX","Bastrop",0.829041175614724,0.116470245889713,0.00945729666812163,0.271860904990543,0.0133857122071875,0.124545322275571,0.0545686752583304
"216","Batavia, NY","05491",40462,40.2,16920,32081,49367,78512,16995,14928,681,1214,125,462,2410,661,5291,0.4697,721," NY","Batavia",0.8783759929391,0.0714327743453957,0.00735510444248308,0.0400706090026478,0.0271844660194175,0.141806413651074,0.0564764183185236
"217","Batesburg-Leesville, SC","05518",27581,40.1,11265,21258,35062,69944,5224,2343,179,2717,63,74,518,417,1718,0.5421,672," SC","Batesburg-Leesville",0.448506891271057,0.52009954058193,0.0120597243491577,0.0342649310872894,0.0141653905053599,0.0991577335375191,0.118938961779806
"218","Batesville, AR","05545",38205,37.5,15494,30402,49194,83095,11440,10294,1565,661,111,192,1331,409,3639,0.4649,607," AR","Batesville",0.899825174825175,0.0577797202797203,0.0097027972027972,0.136800699300699,0.0167832167832168,0.116346153846154,0.0524291757466991
"219","Batesville, IN","05572",58370,39.3,28793,45974,73915,109979,7549,7326,68,34,144,25,1554,92,2149,0.4065,697," IN","Batesville",0.970459663531594,0.00450390780235793,0.0190753742217512,0.00900781560471586,0.00331169691349848,0.205855080143065,0.017037037037037
"220","Batesville, MS","05599",44076,30.4,15796,36688,55822,85839,7053,3917,24,3098,0,31,1084,187,2495,0.4303,705," MS","Batesville",0.555366510704665,0.439245711044945,0,0.00340280731603573,0.00439529278321282,0.15369346377428,0.0410267661254936
"221","Bath, NY","05653",37882,47.3,14920,29867,47972,73875,7016,6649,159,219,42,60,875,225,2747,0.4264,555," NY","Bath",0.947690992018244,0.0312143671607754,0.00598631698973774,0.0226624857468643,0.00855188141391106,0.124714937286203,0.0527055516514406
"222","Baton Rouge, LA","05680",52055,33.3,20243,40946,66742,105928,601979,343741,25405,227240,15167,9454,116659,24482,155551,0.4627,832," LA","Baton Rouge",0.571018258111994,0.377488251251289,0.0251952310628776,0.042202468856887,0.0157048667810671,0.193792474488313,0.0548397501948803
"223","Battle Creek, MI","05707",39188,37.9,17718,30776,49516,79461,76839,58746,4254,11556,2201,2945,9863,4609,24006,0.4641,685," MI","Battle Creek",0.764533635263343,0.150392378870105,0.0286443082288942,0.0553625112247687,0.0383268912921824,0.128359296711305,0.0872371434520092
"224","Battlement Mesa, CO","05734",56479,35.2,29179,43081,67633,107744,5141,4720,1418,34,22,117,825,168,1433,0.4083,892," CO","Battlement Mesa",0.918109317253453,0.0066134993191986,0.00427932308889321,0.275821824547753,0.0227582182454775,0.160474615833495,0.0453074433656958
"225","Battle Mountain, NV","05761",84491,39.9,35564,68855,94409,122091,3220,2823,844,4,26,103,282,248,854,0.3559,630," NV","Battle Mountain",0.876708074534161,0.00124223602484472,0.00807453416149068,0.262111801242236,0.0319875776397516,0.0875776397515528,0.104818258664413
"226","Baxley, GA","05788",39176,44.1,12181,29465,47818,72127,5062,2618,364,2053,73,69,649,137,1797,0.4287,545," GA","Baxley",0.517186882655077,0.405570920584749,0.0144211774002371,0.0719083366258396,0.0136309758988542,0.128210193599368,0.0419601837672282
"227","Baxter Springs, KS","05815",49012,39.8,19000,37610,57396,77391,5203,4646,46,0,4,275,627,177,1502,0.3561,583," KS","Baxter Springs",0.89294637709014,0,0.000768787238131847,0.00884105323851624,0.0528541226215645,0.120507399577167,0.0478249121858957
"228","Bayard, NM","05842",30039,39.5,12923,21947,33993,55962,4319,3206,3626,11,0,171,298,387,1585,0.4287,478," NM","Bayard",0.742301458670989,0.00254688585320676,0,0.839546191247974,0.0395924982634869,0.0689974531141468,0.14155084125823
"229","Bay City, MI","05869",41709,41.3,17209,31586,51923,80991,70182,65311,4441,1270,478,2179,9066,3766,23695,0.4538,632," MI","Bay City",0.930594739391867,0.0180958080419481,0.00681086318429227,0.06327833347582,0.031047847026303,0.12917842181756,0.0810118957988255
"230","Bay City, TX","05896",40948,34.8,15940,30714,52472,94174,18685,14427,7945,2576,138,850,1865,633,5583,0.4689,632," TX","Bay City",0.772116671126572,0.137864597270538,0.00738560342520739,0.425207385603425,0.0454910355900455,0.0998126839710998,0.0483132346206686
"231","Bayfield, CO","05904",63292,31,39863,56625,70567,100852,2476,2354,330,9,22,62,496,50,508,0.3551,1134," CO","Bayfield",0.950726978998385,0.00363489499192246,0.00888529886914378,0.133279483037157,0.0250403877221325,0.20032310177706,0.0254065040650406
"232","Bay Minette, AL","05923",30536,35.2,12596,24613,43088,67558,7638,4889,128,2633,22,66,770,309,2916,0.463,578," AL","Bay Minette",0.640089028541503,0.344723749672689,0.00288033516627389,0.0167583136946845,0.00864100549882168,0.100811730819586,0.065438373570521
"233","Bealeton, VA","05958",72148,31.4,41810,66958,91024,118575,7509,6294,1218,798,35,182,972,316,1355,0.3027,1149," VA","Bealeton",0.8381941669996,0.106272473032361,0.00466107337861233,0.162205353575709,0.0242375815687841,0.12944466640032,0.0513487162820929
"234","Beardstown, IL","05977",39683,35.2,21488,31505,47394,69329,6595,5473,2173,384,8,98,487,528,1648,0.3947,617," IL","Beardstown",0.829871114480667,0.0582259287338893,0.00121304018195603,0.329492039423806,0.0148597422289613,0.0738438210765732,0.106731352334748
"235","Beatrice, NE","06004",40467,43.4,17028,32483,53387,80428,12208,11769,285,21,72,192,1822,319,3555,0.4258,622," NE","Beatrice",0.96403997378768,0.00172018348623853,0.00589777195281782,0.0233453473132372,0.0157273918741809,0.149246395806029,0.0368658268808506
"236","Beaufort--Port Royal, SC","06031",47087,28.9,23625,38434,57710,90364,48175,31247,4744,12664,681,1696,7955,1589,11679,0.4425,955," SC","Beaufort--Port Royal",0.648614426569798,0.26287493513233,0.0141359626362221,0.0984743124026985,0.0352049818370524,0.165127140633108,0.0435390179745726
"237","Beaumont, TX","06058",42075,35.1,16496,32465,53175,88231,148414,82875,18253,54339,3989,2481,19768,6690,44378,0.4985,764," TX","Beaumont",0.558404193674451,0.366131227512229,0.0268775182934225,0.122987049739243,0.0167167517889148,0.133194981605509,0.0643046637702334
"238","Beaver, UT","06076",48226,33.6,20500,36500,61000,93931,2836,2623,231,0,0,94,244,177,647,0.4097,710," UT","Beaver",0.924894217207334,0,0,0.0814527503526093,0.0331452750352609,0.0860366713681241,0.0808588396528095
"239","Beaver Dam, KY","06085",34179,38,12806,26254,43104,63938,6379,5788,400,504,0,48,431,334,2586,0.4841,507," KY","Beaver Dam",0.907352249568898,0.0790092490986048,0,0.0627057532528609,0.00752469039034331,0.0675654491299577,0.0880569470076457
"240","Beaver Dam, WI","06112",46689,40.1,23745,36718,55700,80569,17765,16781,1360,254,84,449,2404,630,4489,0.4032,758," WI","Beaver Dam",0.944610188573037,0.0142977765268787,0.00472839853644807,0.076555023923445,0.0252744159864903,0.135322262876442,0.0474540524254293
"241","Becker, MN","06128",63333,30.8,40439,54942,73589,105885,3664,3578,0,0,40,33,615,151,475,0.3383,973," MN","Becker",0.976528384279476,0,0.0109170305676856,0,0.00900655021834061,0.167849344978166,0.0473502665412355
"242","Beckley, WV","06139",37300,40.4,15602,28691,47982,80232,62637,52835,956,7233,818,1011,8286,1867,24693,0.455,645," WV","Beckley",0.843511023835752,0.115474879065089,0.0130593738525153,0.0152625445024506,0.0161406197614828,0.132286029024379,0.0492040902382458
"243","Bedford, IN","06166",34502,39.7,15135,26864,43290,70937,14425,13795,334,80,205,157,1139,654,5419,0.4546,635," IN","Bedford",0.95632582322357,0.00554592720970537,0.01421143847487,0.0231542461005199,0.0108838821490468,0.0789601386481802,0.072618254497002
"244","Bedford, NY","06186",186531,42.7,64083,144156,214216,250001,2834,2556,189,40,77,85,1299,84,557,0.4826,1413," NY","Bedford",0.901905434015526,0.0141143260409315,0.0271700776287932,0.0666901905434016,0.0299929428369795,0.458362738179252,0.0368906455862978
"245","Bedford, PA","06193",39944,49.9,17526,29121,47092,76225,4113,3945,74,57,56,0,623,117,1622,0.4402,603," PA","Bedford",0.959153902261123,0.0138584974471189,0.0136153659129589,0.0179917335278386,0,0.151470945781668,0.0469690887193898
"246","Bedford, VA","06220",34400,43.8,10205,26110,43836,66147,7016,4913,81,1944,0,145,980,266,2614,0.4454,656," VA","Bedford",0.700256556442417,0.277080957810718,0,0.0115450399087799,0.0206670467502851,0.139680729760547,0.0604270786006361
"247","Beebe, AR","06247",28103,31.9,16608,22772,41464,79271,6910,6249,364,503,0,116,489,250,2300,0.5156,706," AR","Beebe",0.904341534008683,0.0727930535455861,0,0.0526772793053546,0.0167872648335745,0.070767004341534,0.0542299349240781
"248","Beecher, IL","06261",61769,42.1,29278,54692,73875,105200,4340,3851,294,143,63,181,466,238,1335,0.3604,774," IL","Beecher",0.887327188940092,0.0329493087557604,0.0145161290322581,0.067741935483871,0.041705069124424,0.107373271889401,0.0792013311148086
"249","Beeville, TX","06274",39598,32.6,14097,31633,47101,70586,17788,14038,11635,1321,35,370,1119,601,7234,0.4645,779," TX","Beeville",0.789183719361367,0.0742635484596357,0.00196761861929391,0.654092646728131,0.0208005396896784,0.062907578142568,0.0569452340344893
"250","Belding, MI","06301",38125,36.2,12411,29023,47420,71233,5785,5397,284,19,37,216,388,353,1812,0.4321,569," MI","Belding",0.932929991356958,0.00328435609334486,0.00639585133967156,0.0490924805531547,0.0373379429559205,0.0670700086430424,0.0888497357160836
"251","Belfair, WA","06335",41439,35.3,18629,28289,51810,93148,2982,2701,415,198,0,60,136,150,1191,0.4091,1094," WA","Belfair",0.905767940979209,0.0663983903420523,0,0.139168343393695,0.0201207243460765,0.04560697518444,0.0837520938023451
"252","Belfast, ME","06355",34322,45.1,16394,29041,49810,81000,3485,3275,62,12,114,28,1226,120,1297,0.5089,738," ME","Belfast",0.93974175035868,0.00344332855093257,0.0327116212338594,0.0177905308464849,0.00803443328550933,0.351793400286944,0.0548446069469835
"253","Belgrade, MT","06382",55659,31.2,27368,44211,65924,94255,14163,13820,601,19,0,205,2730,226,2172,0.3557,848," MT","Belgrade",0.975781967097366,0.00134152368848408,0,0.042434512462049,0.014474334533644,0.192755772082186,0.0188474689350346
"254","Bellefontaine, OH","06436",40622,34.7,14792,31521,49915,73796,13219,11941,299,483,116,483,1313,642,3888,0.4689,732," OH","Bellefontaine",0.903320977381042,0.0365383160602164,0.00877524774945155,0.0226189575610863,0.0365383160602164,0.0993267266812921,0.0688029150144679
"255","Bellefonte, PA","06463",51293,39.2,21444,40545,63228,91292,13281,12887,235,268,53,15,2598,402,3685,0.4104,710," PA","Bellefonte",0.970333559219938,0.02017920337324,0.00399066335366313,0.0176944507190724,0.00112943302462164,0.195617799864468,0.0418924551896624
"256","Belle Fourche, SD","06490",41117,34.9,15770,31522,52524,78766,5423,5108,221,6,10,214,569,85,1360,0.4332,616," SD","Belle Fourche",0.941914069703116,0.00110639867232159,0.00184399778720266,0.0407523510971787,0.0394615526461368,0.104923474091831,0.0209205020920502
"257","Belle Glade, FL","06517",31848,33.5,11671,24258,38838,56995,24278,9208,7530,14061,77,440,1577,1994,8712,0.4466,630," FL","Belle Glade",0.379273416261636,0.579166323420381,0.00317159568333471,0.310157344097537,0.0181234039047698,0.0649559271768679,0.128099704484132
"258","Belle Plaine, MN","06571",70533,32,33688,62988,81742,103833,6554,6339,10,10,81,52,1216,220,1100,0.3325,718," MN","Belle Plaine",0.967195605736955,0.00152578577967653,0.0123588648153799,0.00152578577967653,0.00793408605431797,0.185535550808666,0.0403373670700403
"259","Bellevue, IA","06598",43452,47.2,22103,39029,51573,87940,2553,2540,16,0,0,13,347,46,823,0.3881,578," IA","Bellevue",0.994907951429691,0,0,0.00626713670191931,0.00509204857030944,0.135918527222875,0.0265895953757225
"260","Bellevue, OH","06625",46274,37.4,23304,36982,53277,87930,8278,8113,192,17,8,112,722,348,2119,0.3976,648," OH","Bellevue",0.980067649190626,0.00205363614399613,0.000966417008939357,0.0231940082145446,0.013529838125151,0.087219135056777,0.0565026790063322
"261","Bellingham, WA","06652",48979,33.2,17486,36390,61836,94927,115881,99176,10445,1338,5459,5048,27970,5899,34578,0.4497,911," WA","Bellingham",0.85584349461948,0.0115463276982422,0.047108671827133,0.090135570110717,0.0435619299108568,0.241368300239038,0.0725557482503721
"262","Bellows Falls, VT--NH","06679",32863,36.6,17761,27833,45060,70390,5294,4898,177,59,18,269,673,287,1520,0.3742,796," VT--NH","Bellows Falls",0.925198337740839,0.011144692104269,0.00340007555723461,0.033434076312807,0.050812240272006,0.127125047223272,0.0760466348701643
"263","Bells, TN","06692",34663,36.8,16245,27988,44263,66500,4897,3437,696,1039,0,129,306,174,1674,0.4257,673," TN","Bells",0.701858280579947,0.212170716765367,0,0.142127833367368,0.0263426587706759,0.0624872370839289,0.0539869686627366
"264","Bellville, TX","06706",45505,38.1,23119,33703,53451,98837,4052,3353,789,354,0,71,695,147,1344,0.3982,836," TX","Bellville",0.827492596248766,0.0873642645607108,0,0.19471865745311,0.0175222112537019,0.171520236920039,0.0542836041358936
"265","Beloit, KS","06733",44067,40.9,20762,32357,54093,87453,3285,3202,85,0,42,8,523,39,818,0.4366,533," KS","Beloit",0.974733637747336,0,0.0127853881278539,0.0258751902587519,0.00243531202435312,0.159208523592085,0.0158086745034455
"266","Beloit, WI--IL","06760",42128,36.6,19272,34187,52191,82526,63052,53336,8840,4470,631,2936,7204,3752,17358,0.4247,711," WI--IL","Beloit",0.845904967328554,0.0708938653809554,0.0100076127640678,0.140201738247795,0.0465647402144262,0.114254900716869,0.0821114369501466
"267","Belterra, TX","06770",128930,36.5,100477,123337,150487,214771,4611,4006,353,122,341,127,1978,55,944,0.2972,2001," TX","Belterra",0.868792019084797,0.0264584688787682,0.0739535892431143,0.0765560615918456,0.0275428323574062,0.428974192149208,0.014998636487592
"268","Belton, SC","06779",31204,45.3,13386,25082,39082,64542,5172,4493,283,551,0,67,710,306,1889,0.507,581," SC","Belton",0.868716163959783,0.106535189481825,0,0.0547177107501933,0.012954369682908,0.137277648878577,0.093207432226622
"269","Belvidere, NJ--PA","06787",55340,49.8,22358,43370,65000,96042,3949,3742,117,99,12,47,733,173,1636,0.3966,907," NJ--PA","Belvidere",0.947581666244619,0.0250696378830084,0.00303874398581919,0.0296277538617372,0.0119017472777918,0.185616611800456,0.0747946389969736
"270","Belzoni, MS","06814",19824,31.6,9147,14513,27033,47064,5085,542,145,4436,0,107,337,565,1713,0.5319,546," MS","Belzoni",0.106588003933137,0.872369714847591,0,0.0285152409046214,0.0210422812192724,0.0662733529990167,0.167556346381969
"271","Bemidji, MN","06841",32875,28.6,14379,25752,40300,62198,14524,11666,256,149,153,602,2406,783,4701,0.4608,647," MN","Bemidji",0.803222252822914,0.0102588818507298,0.0105342880749105,0.0176259983475627,0.0414486367391903,0.165656843844671,0.0797108826224168
"272","Bend, OR","06868",52257,38.9,22830,40331,66203,99988,86821,80302,7006,446,1581,2143,22430,3728,23411,0.4777,951," OR","Bend",0.924914479215858,0.00513700602388823,0.0182098800981329,0.0806947627878048,0.0246829684062612,0.258347634788818,0.0587919886453241
"273","Bennettsville, SC","06895",29406,39.9,10193,21905,38440,61792,12181,3880,527,7801,62,168,1005,439,5887,0.4933,567," SC","Bennettsville",0.318528856415729,0.640423610541006,0.00508989409736475,0.0432640998276004,0.0137919711025367,0.0825055414169608,0.0697489672704163
"274","Bennington, VT","06922",34147,38.5,14670,28091,42819,70821,12099,11371,224,130,137,382,2051,608,4164,0.4993,827," VT","Bennington",0.939829737994876,0.0107446896437722,0.0113232498553599,0.0185139267708075,0.0315728572609307,0.169518141995206,0.0766225582860744
"275","Benson, AZ","06949",34310,58.5,17474,28925,42583,55345,3877,3312,1015,15,0,252,592,147,2056,0.3644,505," AZ","Benson",0.854268764508641,0.0038689708537529,0,0.261800361103946,0.0649987103430487,0.152695383028115,0.0807248764415156
"276","Benson, MN","06976",48260,45.9,22543,36681,61134,90773,3131,3015,112,45,21,32,448,26,937,0.4147,548," MN","Benson",0.96295113382306,0.0143724049824337,0.00670712232513574,0.0357713190673906,0.0102203768763973,0.143085276269562,0.0118505013673655
"277","Benson, NC","07003",26116,37.8,13990,21884,34889,74797,3272,1904,1039,534,48,9,582,231,1031,0.517,548," NC","Benson",0.581907090464548,0.16320293398533,0.0146699266503667,0.317542787286064,0.00275061124694377,0.177872860635697,0.103078982597055
"278","Benton, IL","07030",32926,38.8,15640,26043,38592,68162,7936,7693,320,29,29,179,814,472,2815,0.4321,584," IL","Benton",0.969380040322581,0.00365423387096774,0.00365423387096774,0.0403225806451613,0.0225554435483871,0.102570564516129,0.0921694981448936
"279","Benton, KY","07057",40342,44.2,17031,31260,51087,91697,4381,4327,4,26,11,17,558,171,1929,0.4448,701," KY","Benton",0.987674047021228,0.00593471810089021,0.00251084227345355,0.000913033553983109,0.00388039260442821,0.127368180780644,0.0697389885807504
"280","Benton, LA","07084",67276,37,22158,50716,73278,103540,5480,3796,224,986,117,82,1083,174,1872,0.4341,730," LA","Benton",0.692700729927007,0.17992700729927,0.0213503649635036,0.0408759124087591,0.014963503649635,0.197627737226277,0.0482261640798226
"281","Benton City, WA","07111",48672,40,21295,37818,67133,88818,4080,3146,1055,27,11,94,376,160,1565,0.3784,725," WA","Benton City",0.771078431372549,0.00661764705882353,0.00269607843137255,0.258578431372549,0.0230392156862745,0.092156862745098,0.0636182902584493
"282","Benton Harbor--St. Joseph--Fair Plain, MI","07138",41420,40,16798,31442,54932,92328,60120,38884,1816,17757,1165,1383,11424,3317,18467,0.4895,667," MI","Benton Harbor--St. Joseph--Fair Plain",0.646773120425815,0.295359281437126,0.0193779108449767,0.03020625415835,0.0230039920159681,0.19001996007984,0.0796341199913572
"283","Berea, KY","07165",40250,32,14113,29038,49130,72683,16280,14927,499,555,221,365,2478,627,4999,0.4197,660," KY","Berea",0.916891891891892,0.0340909090909091,0.0135749385749386,0.0306511056511056,0.0224201474201474,0.152211302211302,0.0555801790621399
"284","Berlin, NH","07192",37740,47.1,15390,29938,48189,74436,10283,10042,154,46,0,94,850,473,3639,0.4264,667," NH","Berlin",0.9765632597491,0.0044734027034912,0,0.0149761742682097,0.00914130117669941,0.0826607021297287,0.0711920529801325
"285","Berlin, WI","07219",40631,40.8,21270,34192,46858,78866,4673,4274,484,14,0,82,361,143,1287,0.381,610," WI","Berlin",0.914615878450674,0.00299593408945003,0,0.10357372137813,0.017547613952493,0.0772523004493901,0.042232722976964
"286","Berne, IN","07246",40990,41.6,19621,31695,51076,77481,5318,5099,261,24,39,74,651,103,1767,0.4877,612," IN","Berne",0.958819104926664,0.00451297480255735,0.0073335840541557,0.0490786009778112,0.0139150056412185,0.122414441519368,0.029005913827091
"287","Berrien Springs, MI","07273",41523,30.4,16875,30909,54102,91000,7436,3637,818,2106,955,516,2525,322,2423,0.465,681," MI","Berrien Springs",0.489107046799355,0.283216783216783,0.128429263044648,0.110005379236148,0.0693921463152232,0.339564281871974,0.0642329942150409
"288","Berryville, AR","07300",32390,31,19024,27566,38739,52178,4916,4551,1540,0,0,203,300,133,1294,0.3686,558," AR","Berryville",0.925752644426363,0,0,0.313262815296989,0.0412937347436941,0.0610252237591538,0.0367200441744892
"289","Berryville, VA","07327",60951,42.7,21353,44044,81024,126868,4165,3771,70,313,21,33,924,78,1379,0.4433,956," VA","Berryville",0.905402160864346,0.0751500600240096,0.00504201680672269,0.0168067226890756,0.00792316926770708,0.221848739495798,0.0279971284996411
"290","Bethany, MO","07354",35843,37.6,16102,28257,43417,59418,2499,2365,136,50,0,77,219,39,853,0.3762,543," MO","Bethany",0.946378551420568,0.0200080032012805,0,0.054421768707483,0.030812324929972,0.0876350540216086,0.0236938031591738
"291","Bethel, AK","07381",84744,30.9,38029,68938,100984,160675,4631,1309,187,56,72,440,619,153,891,0.382,1383," AK","Bethel",0.282660332541568,0.0120924206434895,0.0155473979702008,0.0403800475059382,0.0950118764845606,0.133664435327143,0.0409090909090909
"292","Bethel, OH","07408",39299,38.1,14898,28883,48818,71500,3519,3475,42,10,0,34,261,201,1167,0.4238,587," OH","Bethel",0.987496447854504,0.00284171639670361,0,0.0119352088661552,0.00966183574879227,0.0741687979539642,0.0854591836734694
"293","Beulah, ND","07462",62667,47.2,16069,47257,78179,110118,3011,2992,52,0,0,0,395,71,828,0.4556,592," ND","Beulah",0.99368980405181,0,0,0.0172700099634673,0,0.131185652607107,0.032524049473202
"294","Bicknell, IN","07489",33782,41.2,13972,24167,45577,76121,3353,3332,19,3,0,18,191,193,1115,0.4313,510," IN","Bicknell",0.993736951983299,0.000894721145243066,0,0.00566656725320608,0.0053683268714584,0.0569639129138085,0.0862377122430742
"295","Big Bear City, CA","07508",42089,44.2,16372,31959,52728,90536,16371,14823,3188,74,150,127,2093,1282,5243,0.4838,988," CA","Big Bear City",0.905442550852117,0.00452018813756032,0.00916254352208173,0.194734591655977,0.0077576201820292,0.12784802394478,0.115204888569375
"296","Big Lake, TX","07543",52161,35.8,20636,43610,69065,98391,3068,2101,2107,116,0,17,178,30,805,0.3902,741," TX","Big Lake",0.684810951760104,0.0378096479791395,0,0.686766623207301,0.00554106910039113,0.0580182529335072,0.0132567388422448
"297","Big Pine Key, FL","07597",64053,52.2,27634,46636,76444,109763,8084,7747,1063,72,48,118,2068,257,2933,0.4843,1582," FL","Big Pine Key",0.958312716476992,0.00890648193963384,0.00593765462642256,0.13149430974765,0.0145967342899555,0.255813953488372,0.0498932246165793
"298","Big Rapids, MI","07624",28029,22.5,10539,20800,39533,65656,14249,12662,377,715,291,474,1842,1379,5259,0.4893,550," MI","Big Rapids",0.888623763071093,0.0501789599270124,0.0204224857884764,0.0264579970524247,0.0332654923152502,0.129272229630149,0.153392658509455
"299","Big Spring, TX","07651",42640,35.2,17378,34169,54350,81292,28330,22564,12326,1790,335,1199,2408,840,11910,0.4456,733," TX","Big Spring",0.796470172961525,0.0631839039887045,0.0118249205788916,0.435086480762443,0.0423226261913166,0.0849982350864808,0.0511571254567601
"300","Big Stone Gap, VA","07678",35245,39.3,15253,23080,42293,70567,8682,7264,117,1158,43,171,949,352,4402,0.4163,638," VA","Big Stone Gap",0.836673577516701,0.133379405666897,0.00495277585809721,0.0134761575673808,0.0196959225984796,0.109306611379866,0.0822429906542056
"301","Billings, MT","07705",49461,37,21836,39390,61682,96551,118403,106441,6447,873,788,2675,23316,2823,29608,0.4521,737," MT","Billings",0.898972154421763,0.00737312399179075,0.0066552367760952,0.05444963387752,0.0225923329645364,0.196920686131264,0.0317923306492483
"302","Binghamton, NY--PA","07732",44251,38.8,17426,34410,54961,88527,156938,133103,6997,9744,7436,4227,28629,6563,55217,0.4573,701," NY--PA","Binghamton",0.848124737157349,0.062088213179727,0.0473817685965158,0.0445844855930367,0.0269342033159592,0.18242235787381,0.0645196173848075
"303","Birch Bay, WA","07759",55139,44.7,23071,43828,69425,113164,12566,10403,367,161,1310,336,2910,622,4015,0.434,936," WA","Birch Bay",0.827868852459016,0.0128123507878402,0.104249562310998,0.029205793410791,0.0267388190354926,0.23157727200382,0.0727400304058005
"304","Birmingham, AL","07786",49881,36.7,19592,38447,62897,102944,757127,423886,34654,291206,13821,8295,173546,34842,213350,0.4884,837," AL","Birmingham",0.559861159356356,0.384619753357099,0.0182545332553191,0.0457703925497308,0.0109558898309002,0.229216498685161,0.0640740597708252
"305","Bisbee, AZ","07813",33604,49.7,13238,25247,45149,70848,5283,4378,1984,70,48,158,1134,193,2238,0.4613,665," AZ","Bisbee",0.828695816770774,0.0132500473215976,0.00908574673480977,0.375544198372137,0.0299072496687488,0.214650766609881,0.0633825944170772
"306","Biscoe, NC","07824",27700,34.1,15959,21266,36643,59031,2636,2063,1046,341,22,35,162,201,790,0.3992,613," NC","Biscoe",0.782625189681335,0.129362670713202,0.00834597875569044,0.396813353566009,0.0132776934749621,0.0614567526555387,0.108884073672806
"307","Bishop, CA","07840",45517,43.3,18580,33621,61264,87965,9974,8273,2376,28,114,216,1606,346,3072,0.434,838," CA","Bishop",0.829456587126529,0.00280729897734109,0.0114297172648887,0.238219370362944,0.0216563063966312,0.161018648486064,0.0501303969863808
"308","Bishop, TX","07867",50673,34,17900,39281,63892,95444,3043,2785,2194,4,26,24,273,151,916,0.3898,664," TX","Bishop",0.915215248110417,0.00131449227735787,0.00854419980282616,0.720999014130792,0.00788695366414722,0.0897140979296747,0.0709920075223319
"309","Bishopville, SC","07894",20119,33.9,9970,17094,26548,61333,4135,1054,66,3001,5,45,201,235,2292,0.4675,492," SC","Bishopville",0.254897218863362,0.725755743651753,0.00120918984280532,0.0159613059250302,0.0108827085852479,0.0486094316807739,0.127509495387954
"310","Bismarck, ND","07921",57831,36.4,25941,45309,70975,105547,86777,79546,1374,810,510,1866,18915,1369,19529,0.4289,719," ND","Bismarck",0.916671468246194,0.00933427060165712,0.00587713334178411,0.0158336886502184,0.0215033937564101,0.217972504234993,0.0203574827504164
"311","Blackfoot, ID","07948",41013,30.3,17259,32350,47220,75556,15979,14355,3546,71,247,522,1890,422,4078,0.4439,611," ID","Blackfoot",0.898366606170599,0.00444333187308342,0.0154577883472057,0.221916265097941,0.0326678765880218,0.1182802428187,0.0354592051088144
"312","Black River Falls, WI","07975",39799,43.2,17887,34188,46510,72796,5554,4815,145,341,61,71,526,114,2226,0.3892,595," WI","Black River Falls",0.866942743968311,0.0613971912135398,0.0109830752610731,0.0261073100468131,0.0127835794022326,0.094706517824991,0.0342548076923077
"313","Blacksburg, VA","08002",38923,23.7,12504,27166,49529,86335,90827,76771,2974,5468,5890,1769,20188,3184,35313,0.5109,849," VA","Blacksburg",0.845244255562773,0.0602023627335484,0.064848558248098,0.0327435674413996,0.0194765873583846,0.222268708643905,0.0573549014662968
"314","Blackshear, GA","08029",33995,34.7,12275,29708,47000,60559,4185,3060,276,706,56,155,301,164,1719,0.4317,485," GA","Blackshear",0.731182795698925,0.168697729988053,0.0133811230585424,0.0659498207885305,0.037037037037037,0.0719235364396655,0.0665044606650446
"315","Blackstone, VA","08056",33867,41.7,10577,24625,37320,70373,3320,1656,328,1419,4,13,347,73,1508,0.4711,799," VA","Blackstone",0.498795180722892,0.427409638554217,0.00120481927710843,0.0987951807228916,0.00391566265060241,0.104518072289157,0.0402869757174393
"316","Blackwell, OK","08083",37430,41.4,18728,32730,46750,74286,6683,5473,833,8,0,558,630,312,2038,0.4067,556," OK","Blackwell",0.818943588208888,0.00119706718539578,0,0.124644620679336,0.0834954361813557,0.0942690408499177,0.0671689989235737
"317","Blair, NE","08137",50701,34.9,20313,40302,62728,100578,7961,7572,172,107,6,215,1579,83,1977,0.3953,671," NE","Blair",0.951136791860319,0.0134405225474187,0.000753674161537495,0.0216053259640749,0.0270066574550936,0.198341916844618,0.013870320855615
"318","Blairsville, PA","08164",40580,38.1,14913,31833,50435,82696,6869,6278,116,318,130,106,818,332,2440,0.4433,613," PA","Blairsville",0.913961275294803,0.0462949483185325,0.0189256078031737,0.0168874654243704,0.0154316494395108,0.119085747561508,0.0749604876947392
"319","Blakely, GA","08191",38074,38.5,12309,24489,44155,73114,3746,1236,38,2469,13,8,351,122,1407,0.4579,495," GA","Blakely",0.329951948745328,0.659103043246129,0.00347036839295248,0.0101441537640149,0.00213561131873999,0.093699946609717,0.0521590423257802
"320","Blanchard, OK","08209",50441,40.6,26374,39586,65111,108481,3619,3033,65,7,37,158,592,91,1073,0.4068,677," OK","Blanchard",0.838076816800221,0.00193423597678917,0.010223818734457,0.0179607626416137,0.0436584691903841,0.163581099751313,0.0357423409269442
"321","Blanchester, OH","08218",43404,35.6,14973,35778,49386,73758,4147,3992,0,16,18,121,165,150,1141,0.4155,614," OH","Blanchester",0.962623583313238,0.00385821075476248,0.00434048709910779,0,0.0291777188328912,0.0397877984084881,0.0499001996007984
"322","Blanding, UT","08245",53600,24.8,22711,45609,63000,95261,3381,2618,222,10,0,124,514,90,876,0.3858,564," UT","Blanding",0.774327122153209,0.00295770482105886,0,0.0656610470275066,0.0366755397811298,0.152026027802425,0.0359281437125748
"323","Blissfield, MI","08272",48913,40.3,22425,40681,60158,87093,3226,2991,134,0,16,36,548,174,779,0.4034,780," MI","Blissfield",0.927154370737756,0,0.00495970241785493,0.041537507749535,0.0111593304401736,0.169869807811531,0.0711074785451573
"324","Bloomer, WI","08299",42178,34.4,23746,37190,60711,76582,3329,3249,105,0,0,80,359,52,938,0.3364,617," WI","Bloomer",0.975968759387203,0,0,0.0315410033042956,0.0240312406127966,0.107840192249925,0.0217482225010456
"325","Bloomfield, IN","08326",39836,41.2,18938,32902,49227,82658,2796,2695,62,18,0,83,271,190,1027,0.4168,478," IN","Bloomfield",0.963876967095851,0.00643776824034335,0,0.0221745350500715,0.0296852646638054,0.0969241773962804,0.107405313736574
"326","Bloomfield, NM","08353",46472,31.9,19889,39010,59881,99935,9229,5309,2940,69,0,461,735,272,2274,0.4296,719," NM","Bloomfield",0.575251923285296,0.00747643298298841,0,0.318561057536028,0.0499512406544588,0.0796402643840069,0.0391085549964055
"327","Bloomington, IN","08380",36361,25.4,11489,26207,47212,82922,112075,94553,4128,4073,8100,3598,27459,4688,38991,0.5291,811," IN","Bloomington",0.843658264554985,0.0363417354450145,0.0722730314521526,0.0368324782511711,0.0321035021191167,0.245005576622797,0.0641453669749877
"328","Bloomington--Normal, IL","08407",59085,30.2,21603,44538,73618,117544,134858,108557,7368,13081,7777,3162,36401,4734,33075,0.465,772," IL","Bloomington--Normal",0.804972637885776,0.0969983241631939,0.0576680656690741,0.0546352459624197,0.0234468848714945,0.269920953892242,0.0465107139699164
"329","Bloomsburg--Berwick, PA","08434",41296,36.4,16520,31734,52245,82424,53736,50139,1951,1391,1183,610,8144,1747,19905,0.4861,712," PA","Bloomsburg--Berwick",0.93306163465833,0.0258858121185053,0.0220150364746166,0.0363071311597439,0.011351793955635,0.151555754056871,0.0516390292926606
"330","Blountstown, FL","08461",26821,40.1,11120,22081,33552,65375,3712,2425,454,986,89,86,163,96,2002,0.4576,823," FL","Blountstown",0.653286637931034,0.265625,0.0239762931034483,0.122306034482759,0.0231681034482759,0.0439116379310345,0.056140350877193
"331","Blue Earth, MN","08488",41711,46.3,17027,31667,50389,78649,3227,3078,242,42,15,56,444,58,1039,0.4439,479," MN","Blue Earth",0.953827083978928,0.0130151843817787,0.00464828013634955,0.0749922528664394,0.017353579175705,0.137589092035947,0.026508226691042
"332","Bluefield, WV--VA","08515",35657,41.8,15014,26936,44955,75130,43807,38576,614,3540,407,1197,6765,1345,17579,0.4811,578," WV--VA","Bluefield",0.880589860068026,0.0808090031273541,0.00929075261944438,0.0140160248362134,0.0273244002100121,0.154427374620494,0.0512810736617356
"333","Bluffton, IN","08542",39564,39.3,18580,31773,48305,72005,9880,9509,233,76,7,210,1107,237,3140,0.3791,547," IN","Bluffton",0.962449392712551,0.00769230769230769,0.000708502024291498,0.023582995951417,0.0212550607287449,0.112044534412955,0.0351632047477745
"334","Bluffton, OH","08569",60789,38.7,23802,44449,72318,94842,4131,3991,144,81,43,16,1202,123,1174,0.4064,591," OH","Bluffton",0.966109900750424,0.0196078431372549,0.0104091019123699,0.0348583877995643,0.00387315419995159,0.290970709271363,0.0415962123774095
"335","Blythe, CA--AZ","08623",44184,35.7,13319,33165,55949,91907,12902,7232,7510,1390,267,224,946,963,3703,0.4556,697," CA--AZ","Blythe",0.560533250658813,0.10773523484731,0.0206944659742676,0.582080297628275,0.0173616493566889,0.0733219655867307,0.104685291879552
"336","Blytheville, AR","08650",34318,34.1,13102,27624,43178,75682,18649,8888,718,9458,43,181,1961,900,5617,0.4741,639," AR","Blytheville",0.476593919245,0.507158560780739,0.00230575365971366,0.0385007238994048,0.00970561424205051,0.105153091318569,0.069060773480663
"337","Boardman, OR","08677",47125,27.7,24071,37067,57147,86357,3518,2852,2241,0,0,79,78,134,644,0.3678,631," OR","Boardman",0.810687890847072,0,0,0.637009664582149,0.0224559408754974,0.0221716884593519,0.046624913013222
"338","Boerne, TX","08704",56493,36.8,21733,41624,66925,109559,11955,10918,3173,205,65,203,2728,306,3606,0.4318,1009," TX","Boerne",0.913258051024676,0.0171476369719783,0.0054370556252614,0.265411961522376,0.0169803429527394,0.22818904224174,0.0366510959396335
"339","Bogalusa, LA","08731",25348,35.8,9591,19221,33154,51479,12345,6034,754,5854,20,330,744,1085,4730,0.4669,569," LA","Bogalusa",0.488780882948562,0.474200081004455,0.00162008910490077,0.061077359254759,0.0267314702308627,0.0602673147023086,0.142481943532502
"340","Boiling Spring Lakes, NC","08749",46469,38.1,27353,39657,57644,74264,5013,4549,146,229,18,62,647,346,1228,0.3646,942," NC","Boiling Spring Lakes",0.907440654298823,0.0456812288051067,0.00359066427289048,0.0291242768801117,0.0123678436066228,0.129064432475564,0.0914134742404227
"341","Boiling Springs, NC","08758",51426,22.4,17083,38750,64514,91389,4028,3557,73,398,21,45,720,133,1584,0.433,573," NC","Boiling Springs",0.883068520357497,0.0988083416087388,0.00521350546176763,0.0181231380337637,0.0111717974180735,0.178748758689176,0.0544189852700491
"342","Boise City, ID","08785",54789,35.7,24508,43792,67308,105636,365289,333670,27358,4011,10662,9906,89512,14166,90266,0.4503,835," ID","Boise City",0.913441138386319,0.0109803470676642,0.0291878485254141,0.0748941249257437,0.0271182543137078,0.245044334759601,0.0515084192958407
"343","Bolivar, MO","08812",36086,33,17476,26397,42797,66424,9284,8748,312,187,102,143,1271,574,3147,0.4409,633," MO","Bolivar",0.942266264541146,0.0201421800947867,0.0109866436880655,0.033606204222318,0.0154028436018957,0.136902197328738,0.0935310412253544
"344","Bolivar, OH","08839",54151,42.2,27340,44898,66864,103933,3864,3790,0,42,0,31,612,163,1022,0.4106,663," OH","Bolivar",0.980848861283644,0.0108695652173913,0,0,0.00802277432712215,0.158385093167702,0.0573539760731879
"345","Bolivar, TN","08866",31536,36.4,14542,27279,38484,72520,4953,1907,7,2905,140,0,389,400,1892,0.4378,631," TN","Bolivar",0.385019180294771,0.5865132243085,0.0282656975570361,0.00141328487785181,0,0.0785382596406218,0.130676249591637
"346","Bonadelle Ranchos-Madera Ranchos, CA","08893",78173,41,39230,61975,93185,130189,8150,7025,2338,201,323,331,1215,249,2731,0.3794,1610," CA","Bonadelle Ranchos-Madera Ranchos",0.861963190184049,0.0246625766871166,0.0396319018404908,0.286871165644172,0.0406134969325153,0.149079754601227,0.0459494371655287
"347","Bonham, TX","08920",34178,41.1,11973,24596,42459,67636,9401,7881,1311,1118,1,204,957,530,4560,0.4686,660," TX","Bonham",0.838315072864589,0.118923518774598,0.000106371662589086,0.139453249654292,0.0216998191681736,0.101797681097756,0.10948151208428
"348","Bonifay, FL","08947",24529,32.5,9102,18500,33409,66827,3722,2625,222,920,0,149,256,110,2372,0.5521,571," FL","Bonifay",0.705265986029017,0.247178936055884,0,0.0596453519613111,0.0400322407307899,0.0687802256851155,0.0814814814814815
"349","Bonita Springs, FL","08974",57462,52.4,26977,46391,72270,122285,321047,285248,69112,17444,4355,4339,87200,12090,135607,0.535,1051," FL","Bonita Springs",0.888492962089663,0.0543347235762988,0.0135649920416637,0.215270661305043,0.013515155101901,0.271611321706791,0.0651962899050906
"350","Bonneauville, PA","08992",67033,45.3,31688,59767,83650,127188,4822,4579,271,67,0,75,922,175,1423,0.3898,923," PA","Bonneauville",0.949605972625467,0.0138946495230195,0,0.0562007465781833,0.0155537121526338,0.191206968063044,0.0514857310973816
"351","Bonners Ferry, ID","09001",38108,39.4,15258,29882,44419,59633,2932,2569,145,13,4,224,247,52,1131,0.3851,677," ID","Bonners Ferry",0.876193724420191,0.00443383356070941,0.00136425648021828,0.0494542974079127,0.0763983628922237,0.0842428376534789,0.0288728484175458
"352","Boone, IA","09028",45130,38.5,22094,37030,55382,86750,12710,12197,321,228,114,86,1834,416,3390,0.4012,609," IA","Boone",0.95963808025177,0.0179386309992132,0.00896931549960661,0.0252557041699449,0.00676632572777341,0.144295830055075,0.0446351931330472
"353","Boone, NC","09055",19884,21.8,6013,12041,30662,66696,23148,21336,1009,417,317,608,3425,1893,9316,0.5955,807," NC","Boone",0.921721099015034,0.0180145152928979,0.0136944876447209,0.0435890789701054,0.0262657681009158,0.14796094695006,0.136856564488143
"354","Booneville, AR","09082",28690,44.8,13665,21713,34174,60063,3266,3087,225,3,0,27,200,175,1423,0.4192,507," AR","Booneville",0.945192896509492,0.000918554807103491,0,0.0688916105327618,0.00826699326393142,0.0612369871402327,0.0949538795442214
"355","Booneville, MS","09109",25348,24.7,13000,19886,33295,59130,6384,4634,23,1645,0,105,383,507,2394,0.4323,522," MS","Booneville",0.725877192982456,0.257675438596491,0,0.00360275689223058,0.0164473684210526,0.0599937343358396,0.127067669172932
"356","Boonville, IN","09163",46662,38.6,20306,36869,55244,85446,6433,6278,243,13,0,125,551,153,1986,0.3744,661," IN","Boonville",0.97590548733095,0.00202083009482357,0,0.0377739779263174,0.0194310586040728,0.0856521063267527,0.0344052170002249
"357","Boonville, MO","09190",33685,38,17481,27805,43294,71481,9343,7803,228,993,7,392,1110,337,3363,0.4134,621," MO","Boonville",0.835170716044097,0.106282778550787,0.000749224017981376,0.0244032965856791,0.0419565450069571,0.118805522851333,0.0563545150501672
"358","Borger, TX","09217",42094,35.1,17500,33515,52587,89094,13654,11659,4001,523,84,460,1065,413,3916,0.4401,688," TX","Borger",0.853888970265124,0.0383037937600703,0.00615204335725795,0.293027684195108,0.0336897612421269,0.0779991211366633,0.0424111727254056
"359","Boscobel, WI","09244",40326,38.3,21391,33763,47402,71588,3308,2948,46,277,0,68,320,136,1226,0.4443,679," WI","Boscobel",0.891172914147521,0.0837363966142684,0,0.0139056831922612,0.0205562273276904,0.0967351874244256,0.0653218059558117
"360","Boston, MA--NH--RI","09271",73578,38.1,26946,56510,92749,146850,4269984,3263132,449365,359375,316421,133520,1287097,193846,1081583,0.4829,1225," MA--NH--RI","Boston",0.76420239513778,0.0841630788312087,0.0741035563599302,0.105238099252831,0.0312694380119457,0.301428998328799,0.0607972460176747
"361","Boulder, CO","09298",61438,30.2,19909,45434,80601,139391,120057,106914,10615,1194,5201,3607,49953,5086,33537,0.5202,1198," CO","Boulder",0.890526999675154,0.0099452759939029,0.0433210891493207,0.0884163355739357,0.0300440624036916,0.416077363252455,0.0587840961627369
"362","Boulder City, NV","09325",53940,49.6,19609,43014,62774,103182,14279,13322,1290,74,285,276,2538,876,5040,0.4434,891," NV","Boulder City",0.932978499894951,0.00518243574480006,0.0199593809090272,0.0903424609566496,0.0193290846697948,0.177743539463548,0.0948154562182054
"363","Bowie, TX","09352",38667,34.7,18256,28347,46533,78658,4985,4684,644,6,2,226,509,204,1660,0.4444,761," TX","Bowie",0.939618856569709,0.00120361083249749,0.000401203610832497,0.129187562688064,0.0453360080240722,0.102106318956871,0.0613533834586466
"364","Bowling Green, KY","09379",40819,29.8,16068,31531,52385,85572,82274,63508,5142,9952,3137,1913,14125,4497,22167,0.4746,672," KY","Bowling Green",0.77190850086297,0.12096166468143,0.0381286919318375,0.0624984806864866,0.0232515740087999,0.171682427012179,0.0748165771041642
"365","Bowling Green, MO","09406",28828,36.3,13549,24137,40052,72762,5528,4817,115,548,21,124,403,99,2394,0.4359,598," MO","Bowling Green",0.871382054992764,0.0991316931982634,0.00379884225759768,0.0208031837916064,0.0224312590448625,0.0729015918958032,0.0315890236119974
"366","Bowling Green, OH","09433",34015,22.9,12962,26037,44486,86102,32431,28696,1964,1759,454,641,5919,2444,9774,0.5081,636," OH","Bowling Green",0.884832413431593,0.0542382288551078,0.0139989516203632,0.0605593413709105,0.0197650396225833,0.182510560883106,0.107869532594783
"367","Box Elder, SD","09460",41870,25.4,27657,37763,52041,76950,8305,6604,684,533,133,377,609,169,1401,0.351,924," SD","Box Elder",0.795183624322697,0.0641782059000602,0.0160144491270319,0.0823600240818784,0.0453943407585792,0.0733293196869356,0.0244785631517961
"368","Boyne City, MI","09487",43858,38.5,18279,33076,53340,78607,3549,3355,32,6,33,117,502,165,848,0.4223,647," MI","Boyne City",0.945336714567484,0.00169061707523246,0.00929839391377853,0.00901662440123979,0.032967032967033,0.141448295294449,0.06108848574602
"369","Bozeman, MT","09514",48224,28.4,19591,36816,59645,90881,44402,41346,1303,198,841,1244,13642,2101,10699,0.4593,842," MT","Bozeman",0.931174271429215,0.00445925859195532,0.01894058826179,0.0293455249763524,0.0280167560019819,0.307238412684113,0.0623386642138682
"370","Brackettville, TX","09532",31546,38.9,13400,27721,38773,70182,2979,2871,1988,52,0,12,115,128,1196,0.4067,603," TX","Brackettville",0.963746223564955,0.017455521987244,0,0.667338032896945,0.0040281973816717,0.0386035582410205,0.0717891194615816
"371","Bradford, PA--NY","09541",35959,36.1,14005,25787,44661,64039,11573,11253,131,94,77,136,1169,736,3899,0.4163,599," PA--NY","Bradford",0.972349434027478,0.00812235375442841,0.00665341743713817,0.0113194504450013,0.011751490538322,0.10101097381837,0.0959082616627574
"372","Brady, TX","09568",34601,38.1,15899,27500,42235,76029,5422,4740,1977,100,0,102,398,137,1645,0.4233,665," TX","Brady",0.874216156399853,0.0184433788270011,0,0.364625599409812,0.0188122464035411,0.0734046477314644,0.0362721736828171
"373","Braidwood--Coal City--Wilmington, IL","09600",57654,37.7,22766,47526,71656,102793,23008,21989,1341,271,174,439,2234,1473,5877,0.3903,866," IL","Braidwood--Coal City--Wilmington",0.955711057023644,0.011778511821975,0.00756258692628651,0.0582840751043115,0.0190803198887344,0.0970966620305981,0.0859844725935439
"374","Brainerd, MN","09622",41647,35.2,17747,32013,50980,80257,20791,19994,417,321,120,127,2884,868,5548,0.4629,706," MN","Brainerd",0.96166610552643,0.0154393728055409,0.00577172815160406,0.0200567553268241,0.00610841229378096,0.138713866576884,0.0569441710949288
"375","Brandon, SD","09649",70560,33.7,37486,59923,80267,107291,8674,8523,56,20,14,96,1594,200,1331,0.3444,825," SD","Brandon",0.982591653216509,0.00230574129582661,0.00161401890707863,0.0064560756283145,0.0110675582199677,0.183767581277381,0.0272368241862999
"376","Branson, MO","09676",38527,37.9,17660,30200,44085,68073,23566,22045,1582,220,4,593,2864,1313,7134,0.4402,685," MO","Branson",0.935457863022999,0.00933548332343206,0.000169736060426038,0.0671306118984978,0.0251633709581601,0.121531019265043,0.0799050632911392
"377","Brattleboro, VT--NH","09703",43591,41.2,18053,34832,56044,81063,9814,9075,349,142,296,264,2354,564,2731,0.4129,772," VT--NH","Brattleboro",0.92469940900754,0.0144691257387406,0.0301609944976564,0.0355614428367638,0.0269003464438557,0.239861422457713,0.0796272765777213
"378","Brawley, CA","09730",41749,31.8,14922,31451,52376,86107,25529,21246,20622,459,256,803,1741,2163,7777,0.4666,770," CA","Brawley",0.832230012926476,0.017979552665596,0.0100278115084806,0.807787222374554,0.0314544243801167,0.0681969524854087,0.121845425867508
"379","Brazoria, TX","09784",46148,35.6,25854,39690,52196,87018,3850,2977,793,573,21,152,157,208,966,0.3748,731," TX","Brazoria",0.773246753246753,0.148831168831169,0.00545454545454545,0.205974025974026,0.0394805194805195,0.0407792207792208,0.072122052704577
"380","Breaux Bridge, LA","09801",42113,36.6,16449,32995,55638,89386,16762,10970,525,5067,241,129,1810,661,5051,0.4695,781," LA","Breaux Bridge",0.654456508769837,0.302290896074454,0.0143777592172772,0.0313208447679275,0.00769597900011932,0.107982341009426,0.0564426607463069
"381","Breckenridge, CO","09811",65833,31.7,33181,54500,76603,108875,7456,6790,812,40,79,0,2830,261,1293,0.3524,1088," CO","Breckenridge",0.910675965665236,0.00536480686695279,0.0105954935622318,0.108905579399142,0,0.37956008583691,0.0423495051111472
"382","Breckenridge, TX","09838",36193,34.1,13212,26506,43873,72103,5747,4927,1734,137,21,29,497,130,1961,0.4475,524," TX","Breckenridge",0.857316860970941,0.0238385244475378,0.00365408038976857,0.301722637898034,0.00504611101444232,0.0864799025578563,0.0343370311674591
"383","Breese, IL","09865",62318,36.6,27459,47050,77308,120796,5801,5643,233,5,19,52,794,121,1240,0.401,756," IL","Breese",0.97276331666954,0.000861920358558869,0.0032752973625237,0.0401654887088433,0.00896397172901224,0.136872952939148,0.0265292698969524
"384","Bremen, GA","09892",41769,34.5,16170,31017,58161,82594,6056,5193,95,731,42,32,785,368,1534,0.4585,693," GA","Bremen",0.857496697490092,0.120706737120211,0.00693527080581242,0.0156869220607662,0.00528401585204756,0.129623513870542,0.0813799203892083
"385","Bremen, IN","09919",37565,35.2,19917,30644,52458,81004,4654,4263,436,12,14,0,475,253,1236,0.3907,608," IN","Bremen",0.915986248388483,0.00257842715943275,0.0030081650193382,0.0936828534593898,0,0.102062741727546,0.0740198946752487
"386","Bremerton, WA","09946",60201,37.4,27149,49440,72902,110339,201506,162676,15588,6214,10801,13306,40202,8308,60996,0.4317,1027," WA","Bremerton",0.807301023294592,0.0308377914305281,0.0536013815965778,0.0773574980397606,0.0660327732176709,0.199507706966542,0.0591274642374208
"387","Brenham, TX","09973",42946,36.9,16109,34136,54959,84170,15555,11406,2548,3228,466,124,1999,341,5960,0.4538,829," TX","Brenham",0.733269045323047,0.207521697203472,0.029958212793314,0.163805850208936,0.00797171327547412,0.128511732561877,0.035539343408025
"388","Brent, AL","10000",22976,37.4,14113,19509,31860,50750,4915,2219,33,2561,6,76,114,56,2944,0.4173,480," AL","Brent",0.45147507629705,0.521057985757884,0.00122075279755849,0.00671414038657172,0.0154628687690743,0.0231943031536114,0.0284119736174531
"389","Brevard, NC","10027",39020,44.4,18314,33671,49057,71864,12974,10884,520,979,133,397,2633,503,4757,0.4102,632," NC","Brevard",0.838908586403576,0.0754586095267458,0.0102512717743179,0.0400801603206413,0.0305996608601819,0.202944350238939,0.0612145551904588
"390","Brewton, AL","10081",28889,39.9,11588,21475,36174,62819,6915,3849,121,2869,13,64,734,361,2931,0.4652,567," AL","Brewton",0.556616052060737,0.414895155459147,0.00187997107736804,0.0174981923355025,0.00925524222704266,0.106146059291396,0.0906124497991968
"391","Bridgeport, TX","10135",46798,34.7,23319,40325,57735,87177,5920,5147,2777,300,13,126,447,218,1767,0.3831,847," TX","Bridgeport",0.869425675675676,0.0506756756756757,0.00219594594594595,0.469087837837838,0.0212837837837838,0.0755067567567568,0.0524921743318083
"392","Bridgeport--Stamford, CT--NY","10162",80253,39.9,29977,61755,102594,176451,937614,700365,172344,103348,44986,20080,280192,49822,237249,0.5427,1315," CT--NY","Bridgeport--Stamford",0.746965169035445,0.110224463371921,0.0479792323920078,0.183811248552176,0.0214160624734699,0.298835128315064,0.0711371927494949
"393","Bridgeton, NJ","10189",41421,32.2,17219,31628,52678,88076,35624,15303,12952,11561,689,1222,2241,2149,12657,0.4631,969," NJ","Bridgeton",0.429569952840781,0.324528407814956,0.0193408937794745,0.363575117898046,0.0343027172692567,0.0629070289692342,0.093569033831149
"394","Bridgeville, DE","10198",44375,41.1,17957,34129,53073,72534,3393,2102,774,881,18,214,371,263,1055,0.4095,599," DE","Bridgeville",0.619510757441792,0.259652225169467,0.00530503978779841,0.228116710875332,0.06307102858827,0.109342764515178,0.112489307100086
"395","Brillion, WI","10297",60461,34,21357,51087,64549,87197,3063,3003,174,37,13,10,313,51,753,0.3545,610," WI","Brillion",0.980411361410382,0.0120796604635978,0.00424420502775057,0.0568070519098923,0.00326477309826967,0.102187397975841,0.0220779220779221
"396","Brinkley, AR","10324",23368,42.7,7104,17775,33159,48067,2588,1188,25,1361,0,38,156,168,1151,0.5213,514," AR","Brinkley",0.459041731066461,0.525888717156105,0,0.00965996908809892,0.0146831530139104,0.0602782071097372,0.116910229645094
"397","Bristol--Bristol, TN--VA","10351",36902,42.2,15551,28794,45996,76938,68308,63803,1080,2500,478,628,10707,2811,24792,0.4618,617," TN--VA","Bristol--Bristol",0.934048720501259,0.036598934239035,0.00699771622650348,0.0158107395912631,0.00919365228084558,0.156745915558939,0.0645969298648773
"398","Bristow, OK","10378",29330,35.9,12348,21916,36862,55722,4145,3002,71,402,0,202,364,189,1581,0.4426,474," OK","Bristow",0.724246079613993,0.0969843184559711,0,0.0171290711700844,0.0487334137515078,0.087816646562123,0.0737129485179407
"399","Broadway, VA","10405",47576,36.4,23670,38475,52075,73796,6426,6049,313,245,45,71,733,201,1532,0.3678,727," VA","Broadway",0.941332088390912,0.0381263616557734,0.00700280112044818,0.048708372237784,0.0110488639900405,0.114067849361967,0.0410706988148754
"400","Brockport, NY","10418",47466,30.9,17763,35985,60191,90336,20407,18687,581,592,338,582,3244,954,6653,0.4289,741," NY","Brockport",0.915715195766159,0.0290096535502524,0.016562944087813,0.0284706228255011,0.0285196256186603,0.158965061008477,0.0693616402501091
"401","Brockway, PA","10426",39522,40.8,16529,27909,48880,71231,2810,2767,17,22,0,21,274,73,986,0.4375,567," PA","Brockway",0.984697508896797,0.00782918149466192,0,0.00604982206405694,0.00747330960854093,0.097508896797153,0.0400219298245614
"402","Brodhead, WI","10459",41386,41,24147,33080,51898,72347,3507,3403,57,0,0,47,306,73,867,0.3411,683," WI","Brodhead",0.97034502423724,0,0,0.0162532078699743,0.0134017678927859,0.0872540633019675,0.0276515151515152
"403","Broken Bow, NE","10513",35737,36.9,20948,31409,45276,75717,3476,3414,160,26,0,10,509,48,785,0.4128,602," NE","Broken Bow",0.982163406214039,0.00747986191024166,0,0.046029919447641,0.00287686996547756,0.146432681242808,0.0178372352285396
"404","Broken Bow, OK","10540",25327,37.5,11832,21764,32087,47425,4007,2357,402,153,0,424,290,77,1462,0.4516,545," OK","Broken Bow",0.58822061392563,0.038183179435987,0,0.100324432243574,0.105814824057899,0.0723733466433741,0.0302554027504912
"405","Brookfield, MO","10567",30827,43.8,14028,23892,36872,58442,4237,3944,84,45,25,209,254,87,1686,0.412,547," MO","Brookfield",0.930847297616238,0.0106207222091102,0.00590040122728346,0.0198253481236724,0.0493273542600897,0.0599480764691999,0.0341042728341827
"406","Brookhaven, MS","10594",26947,33.1,11121,19912,37538,61456,10822,4241,75,6519,14,48,1140,394,3696,0.4911,619," MS","Brookhaven",0.391886897061541,0.602384032526335,0.00129366106080207,0.00693032711143966,0.00443540935132138,0.105340972093883,0.0552904855458883
"407","Brookings, OR","10621",39314,55.2,17357,30125,46877,69867,10453,9231,721,2,31,525,1903,646,4975,0.4119,839," OR","Brookings",0.883095761982206,0.00019133263178035,0.00296565579259543,0.0689754137568162,0.0502248158423419,0.182052999139003,0.117926250456371
"408","Brookings, SD","10648",41028,22.9,18569,32229,51410,81706,23142,21216,492,366,892,308,5082,548,5834,0.4441,671," SD","Brookings",0.916774695359087,0.0158154005703915,0.0385446374557082,0.0212600466683951,0.0133091349062311,0.219600725952813,0.0316616593482783
"409","Brooklyn, MI","10675",63509,46.4,25848,52700,71745,109250,2934,2850,31,1,6,72,531,70,1008,0.3955,690," MI","Brooklyn",0.971370143149284,0.000340831629175187,0.00204498977505112,0.0105657805044308,0.0245398773006135,0.180981595092025,0.0363447559709242
"410","Brookshire, TX","10702",28927,28.4,16229,25875,35175,63000,4970,2688,2015,1789,40,403,190,328,1460,0.4052,766," TX","Brookshire",0.540845070422535,0.359959758551308,0.00804828973843058,0.405432595573441,0.0810865191146881,0.0382293762575453,0.0934472934472935
"411","Brookville, PA","10810",39307,47.6,17339,29698,49417,82733,4625,4490,43,39,31,61,670,111,1765,0.4508,519," PA","Brookville",0.970810810810811,0.00843243243243243,0.0067027027027027,0.0092972972972973,0.0131891891891892,0.144864864864865,0.0388111888111888
"412","Brownfield, TX","10837",38309,34.8,21799,33773,45167,69361,9621,7966,5224,612,4,149,677,300,3518,0.5275,697," TX","Brownfield",0.827980459411704,0.0636108512628625,0.000415757197796487,0.542978900322212,0.0154869556179191,0.0703669057270554,0.0491561527117811
"413","Browning, MT","10864",22104,28.6,9051,15306,28226,48605,4775,159,17,11,13,98,174,423,1807,0.4677,366," MT","Browning",0.0332984293193717,0.00230366492146597,0.00272251308900524,0.00356020942408377,0.0205235602094241,0.0364397905759162,0.142520215633423
"414","Browns Mills--Fort Dix, NJ","10891",61368,34.3,30060,50711,71989,103691,38565,27246,5255,6883,936,2266,4156,1620,12747,0.3742,1441," NJ","Browns Mills--Fort Dix",0.706495527032283,0.178477894463892,0.0242707117852975,0.13626345131596,0.0587579411383379,0.107766109166343,0.0627469207529631
"415","Brownstown, IN","10918",39150,37.3,14522,31856,44617,69667,3107,3091,78,11,0,0,237,169,1117,0.4322,669," IN","Brownstown",0.994850337946572,0.00354039266173157,0,0.0251046025104603,0,0.0762793691663985,0.0849246231155779
"416","Brownsville, TN","10945",28209,35.5,11306,22907,34582,52992,9594,2802,244,6351,0,294,966,573,3127,0.5097,611," TN","Brownsville",0.292057535959975,0.661976235146967,0,0.0254325620179279,0.0306441525953721,0.100687929956223,0.0886036802226689
"417","Brownsville, TX","10972",32089,29.2,12437,24360,41698,70240,223859,206252,208925,776,1553,2178,20063,9854,67832,0.4936,630," TX","Brownsville",0.921347812685664,0.00346646773192054,0.00693740256143376,0.9332883645509,0.00972933855685945,0.0896233790019611,0.0631557358662283
"418","Brownwood, TX","10999",37960,34.1,16134,29557,46221,74278,22795,20324,5938,1215,125,392,2330,467,8082,0.4478,673," TX","Brownwood",0.891599034876069,0.0533011625356438,0.00548365869708269,0.260495722746216,0.0171967536740513,0.102215398113621,0.0317406375314348
"419","Brunswick, GA","11026",37752,36.6,15646,30248,47656,80180,53237,29716,4077,18872,706,1532,5564,3323,14740,0.4663,759," GA","Brunswick",0.558183218438304,0.354490298100945,0.0132614535003851,0.0765820763754532,0.0287769784172662,0.104513778011533,0.086318414421903
"420","Brunswick, ME","11040",48185,43.9,18353,35616,61209,95160,28151,26444,572,318,471,724,7279,1149,8592,0.4563,770," ME","Brunswick",0.939362722461014,0.0112962239352066,0.0167311996021456,0.0203189939966609,0.0257184469468225,0.258569855422543,0.0587453346285597
"421","Brunswick, MD--VA","11053",79250,35.6,32813,60750,95338,133456,8885,8207,332,427,52,185,1626,245,1964,0.3858,1230," MD--VA","Brunswick",0.923691615081598,0.0480585256049522,0.00585256049521666,0.0373663477771525,0.0208216094541362,0.183005064715813,0.0353995087415113
"422","Brush, CO","11080",38007,34.7,19680,29115,47102,68962,5714,4930,2191,63,0,352,588,198,1802,0.3986,752," CO","Brush",0.862793139656983,0.0110255512775639,0,0.38344417220861,0.0616030801540077,0.102905145257263,0.0506134969325153
"423","Bryan, OH","11107",35670,40.8,16229,26246,45556,72829,9798,9424,451,27,46,234,1138,556,3012,0.4342,622," OH","Bryan",0.961828944682588,0.00275566442131047,0.00469483568075117,0.0460298020004082,0.0238824249846908,0.116146152275975,0.0819333922782199
"424","Buckeye, AZ","11134",44297,29.2,19027,35739,55592,79874,19628,16268,9197,816,124,444,1386,576,5236,0.4026,921," AZ","Buckeye",0.828815977175464,0.0415732626859588,0.00631750560423884,0.468565314856328,0.0226207458732423,0.0706134094151213,0.0400222345747638
"425","Buckhannon, WV","11161",35480,32.7,14160,23916,45138,78500,8650,8433,254,127,4,50,1159,328,3428,0.4856,554," WV","Buckhannon",0.974913294797688,0.0146820809248555,0.00046242774566474,0.029364161849711,0.00578034682080925,0.133988439306358,0.0628111834546151
"426","Buckhead (Bryan County), GA","11175",113209,37.7,72589,99147,126780,162405,5670,5158,177,419,33,60,2046,184,1097,0.2682,2001," GA","Buckhead (Bryan County)",0.909700176366843,0.0738977072310406,0.00582010582010582,0.0312169312169312,0.0105820105820106,0.360846560846561,0.0402361688169692
"427","Buckner, MO","11188",47344,38.3,19889,35548,56908,78000,3004,2875,99,7,0,93,234,111,892,0.4019,721," MO","Buckner",0.957057256990679,0.00233022636484687,0,0.0329560585885486,0.0309587217043941,0.077896138482024,0.0525568181818182
"428","Bucyrus, OH","11215",33727,43.2,14966,27390,41399,65901,12215,11693,243,162,86,266,1049,711,4521,0.421,643," OH","Bucyrus",0.957265656979124,0.0132623823168236,0.00704052394596807,0.0198935734752354,0.0217765042979943,0.0858780188293082,0.092409669872628
"429","Buena Vista, CO","11242",42072,38.8,17941,33106,49853,74018,4186,3643,625,369,31,56,673,96,1906,0.3789,912," CO","Buena Vista",0.870281892021022,0.0881509794553273,0.00740563784042045,0.149307214524606,0.0133779264214047,0.160774008600096,0.0421052631578947
"430","Buena Vista, VA","11269",32748,36.9,16173,24576,42883,69162,6871,6193,52,213,382,82,583,250,2392,0.441,646," VA","Buena Vista",0.901324406927667,0.0309998544607772,0.0555959831174502,0.00756803958666861,0.0119342162712851,0.0848493669043807,0.0558160303639205
"431","Buffalo, MN","11296",62260,34.3,26274,48045,76028,107336,16220,15637,378,89,163,181,2380,479,3455,0.3973,904," MN","Buffalo",0.964056720098644,0.00548705302096178,0.0100493218249075,0.0233045622688039,0.0111590628853268,0.146732429099877,0.0375244810027419
"432","Buffalo, MO","11323",38281,37,11431,22655,41750,54721,3018,2818,95,2,0,171,215,201,1182,0.3624,550," MO","Buffalo",0.933730947647449,0.000662690523525514,0,0.0314777998674619,0.0566600397614314,0.0712392312789927,0.109477124183007
"433","Buffalo, NY","11350",48839,40,19096,37438,61345,98078,936108,733410,44593,132259,27760,21426,195732,39737,282317,0.4611,730," NY","Buffalo",0.783467292235511,0.141286048191021,0.0296546979622009,0.0476365974866148,0.0228883846735633,0.209091258700919,0.0607793622120831
"434","Buffalo, WY","11377",49946,40.8,20923,43826,64090,96688,4488,4120,276,0,95,166,823,70,1038,0.3867,669," WY","Buffalo",0.918003565062389,0,0.0211675579322638,0.0614973262032086,0.0369875222816399,0.183377896613191,0.0202898550724638
"435","Buhl, ID","11404",32029,32.8,15571,28798,44184,59403,4167,3570,1091,6,0,61,265,198,1174,0.3929,706," ID","Buhl",0.856731461483081,0.00143988480921526,0,0.261819054475642,0.0146388288936885,0.0635949124070074,0.0661543601737387
"436","Buies Creek, NC","11415",34129,23.3,14282,26041,41230,70891,5645,4304,694,869,180,89,653,332,2467,0.4282,810," NC","Buies Creek",0.762444641275465,0.153941541186891,0.0318866253321523,0.122940655447298,0.0157661647475642,0.115677590788308,0.104468219005664
"437","Bullhead City, AZ--NV","11431",37318,50.2,19116,30247,45815,70596,47987,42680,9845,644,822,1690,4597,3175,19637,0.4366,799," AZ--NV","Bullhead City",0.88940754787755,0.0134203013316106,0.0171296392773043,0.205159730760414,0.0352178715068664,0.0957967782941213,0.111992945326279
"438","Bunkie, LA","11512",24199,39.4,10258,20052,35183,57343,4048,1506,77,2518,0,0,297,186,1354,0.4627,647," LA","Bunkie",0.37203557312253,0.62203557312253,0,0.0190217391304348,0,0.0733695652173913,0.0690423162583519
"439","Buras, LA","11539",31509,39.3,12388,23895,42850,71375,3927,1917,39,1483,254,133,162,85,1377,0.5055,634," LA","Buras",0.488158899923606,0.37764196587726,0.0646804176215941,0.00993124522536287,0.0338680926916221,0.0412528647822765,0.0333333333333333
"440","Burgaw, NC","11566",37974,41.5,15531,27836,42090,62859,3705,2061,205,1363,6,70,705,139,2076,0.4678,692," NC","Burgaw",0.556275303643725,0.367881241565452,0.00161943319838057,0.0553306342780027,0.0188933873144399,0.190283400809717,0.0853284223449969
"441","Burgettstown, PA","11575",41856,47.5,18757,33419,53250,80340,2953,2930,29,18,0,5,356,151,1067,0.4131,624," PA","Burgettstown",0.992211310531663,0.00609549610565527,0,0.00982052150355571,0.00169319336268202,0.12055536742296,0.0800636267232238
"442","Burkburnett, TX","11593",50424,36.4,22922,37145,56984,91017,10162,9246,949,203,54,501,1213,231,2682,0.3831,855," TX","Burkburnett",0.909860263727613,0.01997638260185,0.00531391458374336,0.0933871285180083,0.0493013186380634,0.119366266482976,0.0308823529411765
"443","Burley, ID","11620",37370,31.9,16260,29128,46270,70258,15736,14204,5698,64,118,261,1344,414,4566,0.4245,575," ID","Burley",0.90264361972547,0.00406710726995425,0.00749872902897814,0.362099644128114,0.0165861718352822,0.0854092526690391,0.0370635631154879
"444","Burlington, CO","11647",38088,37.1,18269,33014,50790,83050,4104,3628,818,277,9,25,323,67,1606,0.4016,640," CO","Burlington",0.88401559454191,0.067495126705653,0.00219298245614035,0.199317738791423,0.0060916179337232,0.0787037037037037,0.0268214571657326
"445","Burlington, IA--IL","11674",37997,39.8,16736,30878,46072,73200,29457,26093,982,2337,118,738,3805,1255,8874,0.4451,644," IA--IL","Burlington",0.885799640153444,0.0793359812608209,0.00400583901958787,0.0333367281121635,0.025053467766575,0.129171334487558,0.0609726473303211
"446","Burlington, KS","11701",47460,43.2,19107,38750,65284,93194,2476,2363,65,14,32,34,337,93,717,0.4465,573," KS","Burlington",0.954361873990307,0.00565428109854604,0.012924071082391,0.0262520193861066,0.0137318255250404,0.13610662358643,0.0528709494030699
"447","Burlington, NC","11728",41889,36.9,17580,32355,51402,85099,123942,80019,16511,27142,1889,4309,18868,5785,35836,0.4593,761," NC","Burlington",0.645616498039406,0.218989527359571,0.0152409998224976,0.133215536299237,0.0347662616385083,0.152232495844831,0.065659546455406
"448","Burlington, VT","11755",56875,33.3,22871,43896,72100,109947,110300,99810,2486,3017,3936,2671,32922,4200,28817,0.4472,1060," VT","Burlington",0.904895738893926,0.0273526745240254,0.0356844968268359,0.0225385312783318,0.0242157751586582,0.298476881233001,0.051544493943522
"449","Burlington, WI","11782",56963,41.4,27720,47451,71320,101758,22940,21364,1173,590,148,516,3303,952,5373,0.3895,863," WI","Burlington",0.93129904097646,0.0257192676547515,0.00645161290322581,0.0511333914559721,0.0224934612031386,0.143984306887533,0.0541925200660329
"450","Burnet, TX","11809",48641,35.1,21506,40227,57857,79483,5171,4557,1194,233,0,263,480,145,1568,0.3694,912," TX","Burnet",0.881260877973313,0.0450589827886289,0,0.230903113517695,0.0508605685554051,0.09282537226842,0.0402442409103525
"451","Burney, CA","11836",34613,47.6,18653,28805,41463,69892,2908,2701,215,33,14,102,217,199,1166,0.4025,617," CA","Burney",0.928817056396149,0.0113480055020633,0.00481430536451169,0.0739339752407153,0.0350756533700138,0.0746217331499312,0.114236509758898
"452","Burns, OR","11863",32083,40.3,17659,26623,39383,58708,3859,3633,183,32,7,49,460,329,1421,0.4101,553," OR","Burns",0.941435605079036,0.00829230370562322,0.00181394143560508,0.0474216118165328,0.0126975900492356,0.119201865768334,0.134946677604594
"453","Burnt Store Marina, FL","11872",75662,68,42881,61243,102548,143633,2744,2677,21,0,13,50,1170,27,1898,0.4385,1369," FL","Burnt Store Marina",0.975583090379009,0,0.00473760932944606,0.0076530612244898,0.0182215743440233,0.426384839650146,0.0319148936170213
"454","Bushnell, FL","11890",30000,39.3,13119,24966,40313,56250,3414,2790,354,413,12,174,277,93,1583,0.4348,653," FL","Bushnell",0.817223198594025,0.120972466315173,0.00351493848857645,0.103690685413005,0.0509666080843585,0.081136496777973,0.050791916985254
"455","Bushnell, IL","11917",35259,38.4,16244,30293,42737,67218,2978,2784,44,54,14,42,276,121,925,0.4013,407," IL","Bushnell",0.934855607790463,0.0181329751511081,0.00470114170584285,0.0147750167897918,0.0141034251175285,0.0926796507723304,0.0589381393083293
"456","Butler, IN","11944",37547,32.2,18353,30942,44568,63133,2882,2825,41,0,0,39,149,200,854,0.3968,668," IN","Butler",0.980222068008328,0,0,0.0142262317834837,0.0135322692574601,0.0517002081887578,0.0986193293885602
"457","Butler, MO","11971",27027,38.1,14107,21742,34131,65050,3939,3775,68,105,0,0,296,155,1324,0.4118,566," MO","Butler",0.958365067275958,0.0266565118050267,0,0.0172632647880173,0,0.0751459761360751,0.0592734225621415
"458","Butler, PA","11998",45607,42.4,18087,35490,56810,89237,40348,38386,676,1041,254,426,7027,1462,13065,0.4403,661," PA","Butler",0.95137305442649,0.0258005353425201,0.00629523148607118,0.0167542381282839,0.0105581441459304,0.174159809655993,0.0535864824249533
"459","Butner, NC","12025",48410,33.7,25341,41697,61224,90367,11480,6312,1191,3931,27,515,1019,530,4079,0.3628,845," NC","Butner",0.549825783972125,0.342421602787456,0.00235191637630662,0.103745644599303,0.0448606271777003,0.0887630662020906,0.071611944331847
"460","Butte-Silver Bow, MT","12052",36095,39.4,14639,28798,46225,75218,30894,29262,1320,147,151,659,4707,1182,9477,0.4659,594," MT","Butte-Silver Bow",0.947174208584191,0.00475820547679161,0.00488768045575193,0.0427267430569043,0.021331002783712,0.152359681491552,0.0551898024933464
"461","Byron, IL","12079",67168,36.6,30722,55580,83790,114053,6953,6839,152,16,11,87,1230,194,1510,0.377,598," IL","Byron",0.983604199626061,0.00230116496476341,0.00158205091327485,0.0218610671652524,0.012512584495901,0.176902056666187,0.0356421091309939
"462","Byron, MN","12106",75306,31.5,42228,64205,89265,129271,4963,4858,0,8,0,91,932,71,755,0.3691,878," MN","Byron",0.978843441466855,0.00161192826919202,0,0,0.0183356840620592,0.18778964336087,0.0168726235741445
"463","Cache, OK","12120",42770,38.1,18111,29557,49269,87400,2534,1863,126,39,0,193,223,100,713,0.4521,541," OK","Cache",0.735201262825572,0.0153906866614049,0,0.0497237569060773,0.0761641673243883,0.0880031570639305,0.0549148819330038
"464","Cactus, TX","12133",40564,24.7,19192,33557,47219,56636,3021,1910,1996,178,676,98,81,50,566,0.2825,545," TX","Cactus",0.632240979808011,0.0589208871234691,0.223766964581264,0.660708374710361,0.0324395895398875,0.0268123138033764,0.0203665987780041
"465","Cadillac, MI","12160",33788,41.2,15708,27830,41795,61313,11346,10749,107,33,150,265,1342,611,3883,0.4631,684," MI","Cadillac",0.947382337387626,0.00290851401374934,0.0132205182443152,0.00943063634761149,0.0233562488982901,0.118279569892473,0.0818705614364197
"466","Cadiz, KY","12187",39155,39.9,16066,28318,46620,77049,3281,2615,48,503,46,117,282,168,1203,0.424,558," KY","Cadiz",0.797013105760439,0.153306918622371,0.0140201158183481,0.0146296860713197,0.0356598597988418,0.0859494056690034,0.080846968238691
"467","Cadiz, OH","12214",39487,40.1,20733,33370,50636,78827,2438,2308,13,125,0,0,319,73,768,0.4214,627," OH","Cadiz",0.946677604593929,0.0512715340442986,0,0.00533223954060705,0,0.13084495488105,0.0437125748502994
"468","Cairo, GA","12241",23295,34.4,8631,18934,29761,58707,9691,3730,1926,4589,52,125,710,611,3759,0.5215,754," GA","Cairo",0.384893199876174,0.473532143225673,0.00536580332267052,0.198741099989681,0.0128985656794964,0.0732638530595398,0.103000674308833
"469","Cairo, IL","12268",16318,34.5,7535,12567,20467,34684,2685,768,11,1846,7,56,148,298,902,0.549,275," IL","Cairo",0.286033519553073,0.687523277467412,0.00260707635009311,0.00409683426443203,0.0208566108007449,0.05512104283054,0.167134043746495
"470","Calais, ME","12295",32434,51.1,13354,22545,37815,51962,2396,2387,36,3,0,6,271,55,1033,0.4196,533," ME","Calais",0.996243739565943,0.00125208681135225,0,0.015025041736227,0.00250417362270451,0.113105175292154,0.0403521643433602
"471","Caldwell, OH","12322",27900,34.7,13521,20742,37977,59778,5159,4118,150,913,0,74,299,166,3730,0.4735,599," OH","Caldwell",0.79821670866447,0.176972281449893,0,0.0290754022097306,0.0143438650901337,0.0579569684047296,0.116165150454864
"472","Caldwell, TX","12349",43468,40.2,14433,36567,59250,77145,4049,3115,959,708,0,67,464,63,1404,0.4727,747," TX","Caldwell",0.769325759446777,0.174857989627068,0,0.236848604593727,0.0165472956285503,0.114596196591751,0.0238185255198488
"473","Caledonia, MN","12376",41643,42.7,15761,35819,50048,78100,2780,2659,34,20,0,74,273,128,838,0.4179,517," MN","Caledonia",0.956474820143885,0.00719424460431655,0,0.0122302158273381,0.0266187050359712,0.0982014388489209,0.0659114315139032
"474","Calhoun, GA","12457",41288,33.7,20022,33183,50326,76444,31401,25420,7346,2517,492,639,2626,1271,9035,0.4164,704," GA","Calhoun",0.80952835896946,0.0801566829081876,0.0156682908187637,0.233941594216745,0.0203496703926627,0.0836279099391739,0.0568273271930609
"475","California, MO","12511",41620,36.5,15900,31606,47427,82419,4106,3860,482,36,0,23,590,164,1144,0.3997,560," MO","California",0.940087676570872,0.00876765708718948,0,0.117389186556259,0.00560155869459328,0.143692157817828,0.0553679945982444
"476","California City, CA","12565",57615,36.2,18993,41202,65987,103595,11771,7964,3210,1969,369,529,1064,1258,3662,0.4092,857," CA","California City",0.676578030753547,0.167275507603432,0.0313482286976468,0.272704103304732,0.0449409565882253,0.0903916404723473,0.155136268343816
"477","Calipatria, CA","12592",30911,28.1,17409,27339,36961,78635,6011,4657,5501,112,0,467,153,360,1714,0.4508,751," CA","Calipatria",0.774746298452836,0.018632507070371,0,0.915155548161704,0.0776909000166362,0.0254533355514889,0.0837793809634629
"478","Calistoga, CA","12646",52131,48.3,20107,36545,80693,117207,5244,4395,1718,109,183,32,1047,59,1786,0.4752,1141," CA","Calistoga",0.838100686498856,0.0207856598016781,0.0348970251716247,0.327612509534706,0.0061022120518688,0.199656750572082,0.0170618854829381
"479","Camano, WA","12700",59713,49.7,32594,51373,67149,97516,6404,5895,588,5,26,323,969,354,2544,0.3328,1312," WA","Camano",0.92051842598376,0.000780762023735165,0.00405996252342286,0.0918176139912555,0.0504372267332917,0.151311680199875,0.0917098445595855
"480","Camano North, WA","12713",66635,56.2,30357,52935,86696,125795,2206,2059,0,11,20,106,462,103,904,0.4413,1160," WA","Camano North",0.93336355394379,0.00498640072529465,0.00906618313689937,0,0.0480507706255666,0.209428830462375,0.0791090629800307
"481","Camarillo, CA","12754",89140,42,38688,71881,105852,152393,72061,54614,18021,1560,7292,3602,20387,2930,20325,0.4162,1657," CA","Camarillo",0.757885680187619,0.0216483257240394,0.10119204562801,0.250079793508278,0.0499854290115319,0.282913087523071,0.0566336786763569
"482","Cambria, CA","12781",62712,60.9,32842,52633,76024,125542,6163,5635,1305,8,33,158,2437,146,2899,0.4439,1359," CA","Cambria",0.91432743793607,0.00129806912218076,0.00535453512899562,0.211747525555736,0.0256368651630699,0.395424306344313,0.0447303921568627
"483","Cambridge, MD","12808",36359,37.5,15826,28453,46308,78533,14734,7704,632,6221,190,223,1989,918,4248,0.4714,823," MD","Cambridge",0.522872268223157,0.422220713994842,0.0128953441020768,0.0428939866974345,0.0151350617619112,0.13499389167911,0.0875452984932291
"484","Cambridge, MN","12835",51727,34.1,24378,42105,61447,85817,14745,14163,293,108,70,270,1728,493,3195,0.3801,805," MN","Cambridge",0.960528992878942,0.00732451678535097,0.00474737199050526,0.0198711427602577,0.0183112919633774,0.117192268565615,0.0426839826839827
"485","Cambridge, OH","12862",31971,40.8,15578,24794,39312,67724,14955,14142,185,328,63,384,1364,788,5202,0.4446,590," OH","Cambridge",0.945636910732197,0.0219324640588432,0.00421263791374122,0.0123704446673353,0.0256770310932798,0.0912069541959211,0.0807956526197068
"486","Cambridge, WI","12872",63333,51.3,23885,43826,71185,105340,2501,2455,20,7,0,19,636,56,703,0.3816,839," WI","Cambridge",0.981607357057177,0.00279888044782087,0,0.0079968012794882,0.00759696121551379,0.254298280687725,0.0311457174638487
"487","Cambridge City, IN","12889",33734,42.3,17879,27226,40673,68952,3672,3623,35,2,6,41,286,203,1221,0.4319,591," IN","Cambridge City",0.986655773420479,0.000544662309368192,0.00163398692810458,0.00953159041394335,0.0111655773420479,0.0778867102396514,0.0828233374133007
"488","Cambridge Springs, PA","12890",42250,38.4,19395,35929,51781,78114,2539,2205,86,245,3,81,344,29,1338,0.3823,591," PA","Cambridge Springs",0.868452146514376,0.0964946829460417,0.00118156754627806,0.0338716029933045,0.0319023237495077,0.135486411973218,0.0241465445462115
"489","Camden, AR","12916",25631,39.2,10178,20024,32946,59378,11251,4342,335,6492,14,354,1081,518,4089,0.4853,530," AR","Camden",0.385921251444316,0.577015376410986,0.00124433383699227,0.0297751310994578,0.031463869878233,0.0960803484134744,0.0723261658754538
"490","Camden, ME","12943",48070,53,23685,38298,58130,89116,3625,3605,34,7,7,0,1325,104,1367,0.4868,730," ME","Camden",0.99448275862069,0.00193103448275862,0.00193103448275862,0.00937931034482759,0,0.36551724137931,0.0460584588131089
"491","Camden, SC","12970",39520,42.2,17252,29954,48512,85215,14394,8838,594,4946,21,208,2495,691,4917,0.4722,738," SC","Camden",0.614005835764902,0.343615395303599,0.00145894122551063,0.0412671946644435,0.0144504654717243,0.173336112269001,0.0729133692096655
"492","Camden, TN","12997",28068,44,11272,18933,34854,60482,3404,3119,119,227,40,13,282,203,1256,0.4735,543," TN","Camden",0.916274970622797,0.0666862514688602,0.0117508813160987,0.0349588719153937,0.00381903642773208,0.0828437132784959,0.0945065176908752
"493","Camdenton, MO","13024",32857,32.9,20067,27750,42438,60892,3564,3329,207,22,85,28,409,154,971,0.377,605," MO","Camdenton",0.934062850729517,0.00617283950617284,0.0238496071829405,0.0580808080808081,0.00785634118967452,0.114758698092031,0.0593906671808716
"494","Cameron, MO","13051",38553,36.8,16466,27179,50829,74913,9908,7944,224,1409,129,296,875,354,5371,0.4275,667," MO","Cameron",0.801776342349616,0.14220831651191,0.013019781994348,0.0226079935405733,0.0298748486071861,0.0883124747678644,0.0780251267357285
"495","Cameron, TX","13078",35956,40.6,14558,24634,46021,74263,5284,3602,1619,1051,0,386,441,187,2056,0.4994,571," TX","Cameron",0.681680545041635,0.19890234670704,0,0.306396669190008,0.0730507191521575,0.0834595003785011,0.0579306071871128
"496","Camilla, GA","13132",31662,35.5,12523,26527,40381,68673,7078,1674,170,5274,45,40,660,300,3651,0.4689,618," GA","Camilla",0.236507487990958,0.745125741734953,0.00635772817179994,0.0240180842045776,0.00565131393048884,0.0932466798530658,0.0875401225561716
"497","Campbellsville, KY","13159",32500,35.7,12601,24162,41250,65163,12010,10383,433,906,184,425,1351,543,4468,0.448,564," KY","Campbellsville",0.864529558701082,0.0754371357202331,0.0153205661948376,0.0360532889258951,0.0353871773522065,0.112489592006661,0.0719968178202068
"498","Camp Verde, AZ","13170",34228,52.8,12130,27508,41192,62189,4882,4067,777,8,0,153,557,288,1906,0.4075,730," AZ","Camp Verde",0.833060221220811,0.00163867267513314,0,0.159156083572306,0.0313396149119213,0.114092585006145,0.0967741935483871
"499","Canadian, TX","13177",54728,33.1,22344,42385,66233,106441,3246,2716,1330,5,9,119,432,58,820,0.4412,587," TX","Canadian",0.836722119531731,0.00154035736290819,0.00277264325323475,0.40973505853358,0.036660505237215,0.133086876155268,0.0239076669414674
"500","Canby, OR","13221",58294,35.8,26422,49149,72057,104613,17365,15745,3608,0,372,500,2866,901,4570,0.3942,872," OR","Canby",0.906708897207026,0,0.0214224013820904,0.207774258566081,0.0287935502447452,0.165044630002879,0.0704181320828449
"501","Cannon Falls, MN","13240",41979,37.9,16174,36685,59786,92050,3952,3755,88,71,0,126,592,120,1001,0.4463,634," MN","Cannon Falls",0.950151821862348,0.0179655870445344,0,0.0222672064777328,0.0318825910931174,0.149797570850202,0.0406641816333446
"502","Cañon City, CO","13267",39070,43,16474,31696,47449,74498,26765,23695,3476,1642,334,487,3201,713,13926,0.4431,688," CO","Cañon City",0.88529796375864,0.0613487763870727,0.0124789837474313,0.129871100317579,0.018195404446105,0.119596487950682,0.0555339200872342
"503","Canton, IL","13294",39841,40.1,16466,31257,50221,75740,14449,13215,478,787,46,359,1796,524,6035,0.4325,594," IL","Canton",0.914596165824625,0.0544674371928853,0.00318361132258288,0.0330818741781438,0.0248460101045055,0.124299259464323,0.0622771571190872
"504","Canton, MS","13321",30630,30,10972,24306,39553,67205,15584,1863,1312,12251,225,53,1597,515,5359,0.4619,699," MS","Canton",0.11954568788501,0.786126796714579,0.0144378850102669,0.0841889117043121,0.00340092402464066,0.102476899383984,0.0503667481662592
"505","Canton, NY","13348",42193,21.9,22944,36990,56570,87440,6760,5741,437,375,188,267,1160,312,3522,0.4543,726," NY","Canton",0.849260355029586,0.0554733727810651,0.027810650887574,0.0646449704142012,0.0394970414201183,0.171597633136095,0.0963557751698579
"506","Canton, OH","13375",45034,41.1,19867,35690,55502,88382,279899,243185,5163,23732,2480,9590,43137,13622,82650,0.4493,680," OH","Canton",0.868831256989128,0.0847877270015256,0.00886033890796323,0.0184459394281509,0.0342623589223256,0.154116306239036,0.0690599191884369
"507","Canton, SD","13402",45111,43.1,29848,40742,57368,98750,2924,2741,63,71,7,59,598,59,809,0.4158,483," SD","Canton",0.937414500683995,0.024281805745554,0.00239398084815321,0.0215458276333789,0.0201778385772914,0.204514363885089,0.0278959810874704
"508","Canton, TX","13429",38859,37.5,17159,27048,61250,96111,3798,3381,219,173,78,89,325,137,1252,0.4556,759," TX","Canton",0.890205371248025,0.045550289626119,0.0205371248025276,0.0576619273301738,0.0234333859926277,0.0855713533438652,0.0538098978790259
"509","Canyon, TX","13456",41605,27.1,15316,29298,55860,97340,13835,12236,2601,375,201,401,3017,241,3593,0.5067,725," TX","Canyon",0.884423563426093,0.0271051680520419,0.0145283700758945,0.188001445608963,0.0289844597036502,0.218070112034695,0.0235305604374146
"510","Canyon Lake, TX","13483",47828,46.4,21478,42215,61223,97061,5107,4821,1036,20,0,112,1020,334,1713,0.4329,916," TX","Canyon Lake",0.943998433522616,0.00391619345995692,0,0.202858821225769,0.0219306833757588,0.199725866457803,0.098408956982911
"511","Cape Coral, FL","13510",46418,45.2,21290,37256,57039,89704,554659,461336,106560,53240,8906,8996,96798,30708,207079,0.4564,927," FL","Cape Coral",0.831747073427097,0.0959869036651348,0.0160567123223458,0.192118040093102,0.0162189741805325,0.174518037208447,0.0883480062143967
"512","Cape Girardeau, MO--IL","13537",41950,33.7,16423,32263,51938,80687,54777,46744,1388,5311,982,1281,10206,2291,16191,0.4648,685," MO--IL","Cape Girardeau",0.853350858937145,0.0969567519214269,0.0179272322325063,0.0253391021779214,0.0233857275863957,0.186319075524399,0.0593738661690769
"513","Captain Cook, HI","13550",71167,38.7,34290,59326,81952,135643,4987,1211,421,23,1174,2111,981,237,1445,0.5063,1489," HI","Captain Cook",0.242831361540004,0.00461199117706036,0.235412071385603,0.084419490675757,0.423300581511931,0.1967114497694,0.0669113495200452
"514","Carbondale, CO","13564",57368,34.3,34570,50708,68573,107607,6767,5784,2649,23,25,78,1839,401,1103,0.365,1297," CO","Carbondale",0.854736219890646,0.00339884734742131,0.00369439929067534,0.391458548839959,0.011526525786907,0.271760011822078,0.0707980225988701
"515","Carbondale, IL","13591",33177,29.5,11318,24559,43110,77628,68503,54671,2931,9105,1991,1953,12514,2986,23786,0.5091,651," IL","Carbondale",0.798081835832007,0.132913886983052,0.0290644205363269,0.042786447308877,0.0285097003050961,0.182678130884779,0.0667754992508442
"516","Carey, OH","13618",37524,41.8,20437,31658,46442,73837,3404,3287,0,22,52,43,205,184,926,0.3845,572," OH","Carey",0.965628672150411,0.00646298472385429,0.0152761457109283,0,0.0126321974148061,0.0602232667450059,0.0742534301856336
"517","Caribou, ME","13645",26563,42.2,13088,19783,36024,71100,4076,3773,74,95,0,148,590,150,1523,0.5147,623," ME","Caribou",0.925662414131502,0.0233071638861629,0,0.0181550539744848,0.0363101079489696,0.144749754661433,0.0587544065804935
"518","Carlinville, IL","13699",43315,38.2,17042,36369,58640,96125,6093,5878,40,30,13,172,842,293,1752,0.4578,592," IL","Carlinville",0.964713605777121,0.00492368291482029,0.00213359592975546,0.00656491055309371,0.028229115378303,0.138191367142623,0.0674959686708132
"519","Carlisle, IA","13753",58279,35.7,20217,50300,72476,108135,4001,3743,26,150,17,83,663,144,893,0.3898,640," IA","Carlisle",0.935516120969758,0.0374906273431642,0.00424893776555861,0.00649837540614846,0.0207448137965509,0.165708572856786,0.0463320463320463
"520","Carlsbad, NM","13807",50472,37.2,20988,38798,62525,98804,30807,27292,13400,700,175,727,3485,1192,8666,0.4254,740," NM","Carlsbad",0.885902554614211,0.0227221086116792,0.00568052715291979,0.434966079137858,0.0235985328009868,0.113123640731003,0.0538367734068019
"521","Carlton, OR","13821",58088,32.2,30434,48605,69707,102681,3327,3168,146,0,18,80,304,140,718,0.3502,1068," OR","Carlton",0.952209197475203,0,0.00541027953110911,0.0438833784189961,0.0240456868049294,0.0913736098587316,0.0536604062859333
"522","Carlyle, IL","13834",54604,36.5,22762,42820,70125,103037,4260,3950,129,74,106,86,563,105,1173,0.3931,732," IL","Carlyle",0.927230046948357,0.0173708920187793,0.0248826291079812,0.0302816901408451,0.02018779342723,0.132159624413146,0.0340136054421769
"523","Carmel Valley Village, CA","13850",81607,49.7,38348,66140,89202,154268,2576,2277,191,24,58,124,936,71,789,0.4737,1686," CA","Carmel Valley Village",0.883928571428571,0.0093167701863354,0.0225155279503106,0.0741459627329192,0.0481366459627329,0.363354037267081,0.0397313933967543
"524","Carmi, IL","13861",37690,44.2,13744,29352,50596,72344,5525,5394,47,37,45,49,528,159,1961,0.4871,555," IL","Carmi",0.976289592760181,0.00669683257918552,0.0081447963800905,0.00850678733031674,0.00886877828054299,0.0955656108597285,0.0446127946127946
"525","Caro, MI","13915",34891,44.6,13602,25909,46833,71524,5018,4722,361,30,104,82,638,372,1698,0.4467,625," MI","Caro",0.941012355520128,0.00597847748106815,0.0207253886010363,0.0719410123555201,0.0163411717815863,0.127142287764049,0.112048192771084
"526","Carrizo Springs, TX","13969",38317,34.6,13639,30402,50833,93305,6686,6185,6007,41,0,72,397,307,1966,0.4587,533," TX","Carrizo Springs",0.925067304816033,0.00613221657194137,0,0.898444510918337,0.0107687705653605,0.0593778043673347,0.0650423728813559
"527","Carroll, IA","13996",44763,41.4,17232,32485,61549,87632,9861,9452,252,234,0,93,1420,44,2408,0.4209,555," IA","Carroll",0.95852347632086,0.0237298448433222,0,0.0255552175235777,0.00943109218132035,0.144001622553494,0.00590366295451496
"528","Carrollton, GA","14023",40831,28.2,15045,31132,50881,82647,44617,29605,4865,11505,722,1159,6119,2879,13299,0.4864,724," GA","Carrollton",0.663536320236681,0.257861353295829,0.0161821727144362,0.109039155478853,0.0259766456731739,0.137145034403927,0.0919279647487068
"529","Carrollton, KY","14050",31627,36.4,14835,25075,41348,68092,4649,4141,342,137,119,109,334,299,1667,0.4284,609," KY","Carrollton",0.890729189072919,0.0294687029468703,0.0255969025596903,0.0735642073564207,0.0234459023445902,0.0718434071843407,0.100268276324614
"530","Carrollton, MO","14077",30425,42.1,14197,23851,41581,76611,3117,2989,33,59,0,42,279,250,994,0.5217,518," MO","Carrollton",0.958934873275585,0.0189284568495348,0,0.0105871029836381,0.0134744947064485,0.0895091434071222,0.117757889778615
"531","Carrollton, OH","14104",36306,39.2,14623,29146,42664,79744,3465,3378,30,39,29,19,366,44,1066,0.4695,592," OH","Carrollton",0.974891774891775,0.0112554112554113,0.00836940836940837,0.00865800865800866,0.00548340548340548,0.105627705627706,0.0183409754064193
"532","Carson City, NV","14158",48869,41.5,20941,39558,60686,88871,57546,48075,13333,844,1374,1751,7539,4107,17955,0.4236,853," NV","Carson City",0.83541862162444,0.0146665276474473,0.0238765509331665,0.23169290654433,0.0304278316477253,0.13100823688875,0.103735697507009
"533","Cartersville, GA","14185",46361,35.6,20357,38527,58539,85500,52575,42233,5288,7210,521,680,6401,2317,15223,0.4278,801," GA","Cartersville",0.803290537327627,0.137137422729434,0.00990965287684261,0.100580123632905,0.0129339039467427,0.121749881122206,0.0620314842578711
"534","Carthage, IL","14212",48068,45.2,21115,38698,53608,79175,2612,2533,52,15,18,40,467,89,874,0.3645,525," IL","Carthage",0.969754977029097,0.0057427258805513,0.00689127105666156,0.0199081163859112,0.0153139356814701,0.178790199081164,0.0512082853855006
"535","Carthage, MS","14239",25732,31,9546,19750,31967,73294,4043,1792,376,1870,0,36,334,182,1039,0.5453,625," MS","Carthage",0.44323522137027,0.462527825871877,0,0.0930002473410834,0.00890427900074202,0.0826119218402177,0.0605858854860186
"536","Carthage, MO","14266",32407,35.1,15799,26582,41904,65469,15722,14238,4577,334,0,408,1702,657,4746,0.4677,663," MO","Carthage",0.905609973285841,0.0212441165246152,0,0.291120722554382,0.0259508968324641,0.108255947080524,0.0598578717201166
"537","Carthage, TN","14320",34732,41.2,11887,25242,44306,67976,3248,2924,70,183,12,75,226,161,1239,0.4758,400," TN","Carthage",0.900246305418719,0.0563423645320197,0.00369458128078818,0.021551724137931,0.0230911330049261,0.0695812807881773,0.0801393728222996
"538","Carthage, TX","14347",41835,35.2,17982,37045,54375,75071,6453,4382,521,1881,6,48,504,233,2182,0.4315,627," TX","Carthage",0.679064001239733,0.291492329149233,0.000929800092980009,0.0807376414070975,0.00743840074384007,0.0781032078103208,0.0545539686256146
"539","Caruthersville, MO","14374",24528,40,10939,18958,35810,55411,5447,3240,25,2120,0,87,426,317,2036,0.4603,522," MO","Caruthersville",0.594822838259592,0.389205067009363,0,0.00458968239397834,0.0159720947310446,0.0782081879933909,0.0929346232776312
"540","Casa Grande, AZ","14401",44616,37.1,20987,36659,53249,81647,54031,42246,21888,2537,1407,1477,5847,2651,17727,0.4227,878," AZ","Casa Grande",0.781884473728045,0.0469545261053839,0.0260406063185949,0.405100775480743,0.0273361588717588,0.108215653976421,0.0730222565006611
"541","Casey, IL","14428",39432,45.8,15102,30939,55048,76174,2604,2505,78,5,5,64,318,141,874,0.4791,513," IL","Casey",0.961981566820276,0.00192012288786482,0.00192012288786482,0.0299539170506912,0.0245775729646697,0.122119815668203,0.0815028901734104
"542","Cashmere, WA","14455",46986,36.8,17944,36500,56402,80500,4734,4469,1183,16,40,101,763,190,1422,0.4567,668," WA","Cashmere",0.944021968736798,0.00337980566117448,0.00844951415293621,0.249894381073088,0.0213350232361639,0.161174482467258,0.0573671497584541
"543","Casper, WY","14482",55038,35.7,25799,45123,66812,103328,66866,61363,5401,784,611,2279,9562,2027,15906,0.423,821," WY","Casper",0.91770107378937,0.0117249424221577,0.00913767834175814,0.0807734872730536,0.0340830915562468,0.14300242275596,0.039776295133438
"544","Cassville, MO","14536",36338,44.9,18126,32370,43612,65548,4028,3847,271,11,68,59,396,168,1349,0.3605,584," MO","Cassville",0.95506454816286,0.00273088381330685,0.0168818272095333,0.067279046673287,0.0146474677259186,0.0983118172790467,0.0627099664053751
"545","Castle Dale, UT","14556",51146,33.1,29477,46278,64474,86630,3216,3088,88,27,6,0,264,110,928,0.3541,653," UT","Castle Dale",0.960199004975124,0.0083955223880597,0.00186567164179104,0.027363184079602,0,0.082089552238806,0.0480769230769231
"546","Castle Rock, WA","14570",36290,42.3,20393,32479,45512,74957,2700,2382,90,0,26,236,346,68,1049,0.404,738," WA","Castle Rock",0.882222222222222,0,0.00962962962962963,0.0333333333333333,0.0874074074074074,0.128148148148148,0.0411871592973955
"547","Castroville, TX","14590",41476,38.7,14410,31919,53435,93206,4652,4272,1953,32,26,181,610,293,1611,0.4905,721," TX","Castroville",0.918314703353396,0.00687876182287188,0.00558899398108341,0.41981943250215,0.0389079965606191,0.131126397248495,0.0963498849062808
"548","Catskill, NY","14644",48942,36.1,21269,36788,57970,82631,6313,5043,393,843,39,332,732,405,2156,0.4375,879," NY","Catskill",0.798827815618565,0.133533977506732,0.00617772849675273,0.0622524948518929,0.0525898938697925,0.115951211785205,0.0974260283858552
"549","Cazenovia, NY","14671",53993,32,21136,46250,75833,134615,2860,2658,110,136,32,13,806,63,1433,0.529,827," NY","Cazenovia",0.929370629370629,0.0475524475524476,0.0111888111888112,0.0384615384615385,0.00454545454545455,0.281818181818182,0.0441485634197617
"550","Cedar City, UT","14698",41342,25.5,17257,32156,51579,77209,33810,30925,2650,127,248,905,5401,2120,8813,0.4312,648," UT","Cedar City",0.914670215912452,0.00375628512274475,0.00733510795622597,0.0783791777580597,0.0267672286305827,0.159745637385389,0.0848101772212665
"551","Cedaredge, CO","14705",36513,49.1,15353,29902,44818,70206,3881,3637,470,8,29,82,505,178,1628,0.4162,784," CO","Cedaredge",0.937129605771708,0.0020613244009276,0.00747230095336254,0.121102808554496,0.0211285751095079,0.130121102808554,0.079005770084332
"552","Cedar Rapids, IA","14752",57110,36.3,25074,46124,69969,105147,180654,160322,5390,9270,3979,4691,38659,5435,41077,0.4303,688," IA","Cedar Rapids",0.887453363888981,0.05131356072935,0.0220255294651655,0.0298360401651776,0.02596676519756,0.213994708116067,0.0389390802209533
"553","Cedar Springs, MI","14779",36552,31.6,14652,31172,41730,62214,3551,3332,83,41,31,83,323,267,1035,0.3894,686," MI","Cedar Springs",0.9383272317657,0.0115460433680653,0.00872993522951281,0.0233736975499859,0.0233736975499859,0.0909602928752464,0.106120826709062
"554","Cedartown, GA","14806",27699,32.6,13932,21542,38243,60194,12535,7759,3577,2515,61,158,772,836,4352,0.4802,659," GA","Cedartown",0.618986836856801,0.20063821300359,0.00486637415237335,0.285360989230156,0.0126047068209015,0.06158755484643,0.102163020896982
"555","Cedarville, OH","14833",37917,20.8,11618,23790,48833,75431,4125,3456,92,473,31,121,388,208,1811,0.4888,619," OH","Cedarville",0.837818181818182,0.114666666666667,0.00751515151515152,0.0223030303030303,0.0293333333333333,0.0940606060606061,0.0898876404494382
"556","Celina, OH","14860",39556,42.8,19187,33272,50144,78689,11013,10436,162,129,66,158,1141,631,3043,0.3866,669," OH","Celina",0.947607373104513,0.0117134295832198,0.00599291746118224,0.014709888313811,0.0143466811949514,0.103604830654681,0.0791718946047679
"557","Center, TX","14887",27181,37.6,14032,21923,37130,56939,5135,3046,1507,1699,118,52,328,115,1777,0.4976,465," TX","Center",0.593184031158715,0.330866601752678,0.0229795520934761,0.293476144109055,0.010126582278481,0.0638753651411879,0.0342465753424658
"558","Centerville, IA","14914",31910,46.5,13708,24526,43186,69588,5301,5128,145,37,22,105,762,240,1816,0.4653,530," IA","Centerville",0.967364648179589,0.0069798151292209,0.00415016034710432,0.0273533295604603,0.0198075834748161,0.143746462931522,0.0688665710186514
"559","Central City, NE","14968",37660,44.6,18420,30265,50215,72542,2757,2634,94,3,6,34,340,85,727,0.4884,529," NE","Central City",0.955386289445049,0.00108813928182807,0.00217627856365615,0.034095030830613,0.0123322451940515,0.123322451940515,0.041871921182266
"560","Central City--Greenville, KY","14995",37728,42.3,15024,26126,45100,71775,9518,8713,134,637,0,34,696,339,3856,0.4222,491," KY","Central City--Greenville",0.91542340827905,0.0669258247530994,0,0.0140785879386426,0.00357217902920782,0.0731246060096659,0.05987283645355
"561","Centralia, IL","15022",32041,41.9,14793,24576,42964,70106,17284,15019,471,1375,132,641,1529,1327,5861,0.4551,622," IL","Centralia",0.868953945845869,0.0795533441333025,0.00763712103679704,0.0272506364267531,0.0370863226105068,0.0884633186762323,0.11616913245207
"562","Centralia, MO","15049",41220,36.8,15250,30093,51656,68831,3802,3658,7,86,0,58,441,89,1008,0.3657,544," MO","Centralia",0.962125197264598,0.0226196738558653,0,0.00184113624408206,0.0152551288795371,0.11599158337717,0.0318539727988547
"563","Centralia, WA","15076",42522,35.3,19666,34957,53185,83769,39306,34425,6010,445,604,2164,3897,2208,12385,0.4086,844," WA","Centralia",0.875820485422073,0.0113214267541851,0.0153666106955681,0.15290286470259,0.0550552078563069,0.0991451686765379,0.0820177556554363
"564","Centre, AL","15083",37566,45.2,12775,26192,49900,87911,3732,3184,0,414,12,104,462,57,1767,0.4424,595," AL","Centre",0.853161843515541,0.110932475884244,0.00321543408360129,0,0.0278670953912111,0.12379421221865,0.0290076335877863
"565","Centreville, MD","15090",94375,38.2,38125,63250,108095,132841,4451,3995,64,456,0,0,1298,113,1192,0.3776,919," MD","Centreville",0.897551112109638,0.102448887890362,0,0.0143787912828578,0,0.291619860705459,0.0346732126419147
"566","Century, FL--AL","15103",24402,34.6,12481,18488,30512,54500,3269,1387,136,1657,21,110,153,166,2165,0.4466,570," FL--AL","Century",0.424288773325176,0.50688283878862,0.00642398286937901,0.0416029366778831,0.0336494340776996,0.0468033037626185,0.15036231884058
"567","Chadron, NE","15130",34977,27.9,14576,27020,46537,78769,5538,4875,284,51,99,178,1269,83,1621,0.4616,513," NE","Chadron",0.880281690140845,0.00920910075839653,0.0178764897074756,0.0512820512820513,0.032141567352835,0.229144095341278,0.0211896859841716
"568","Chaffee, MO","15157",24729,41.2,10578,17774,35837,55393,2984,2840,80,7,23,92,120,149,1180,0.4528,471," MO","Chaffee",0.951742627345844,0.00234584450402145,0.00770777479892761,0.0268096514745308,0.0308310991957105,0.0402144772117962,0.0825942350332594
"569","Chambersburg, PA","15184",48699,40.6,22265,40372,58957,91202,51350,45617,5052,2933,604,1085,8147,1810,16228,0.4085,799," PA","Chambersburg",0.888354430379747,0.0571178188899708,0.0117624148003895,0.0983836416747809,0.0211295034079844,0.158656280428432,0.0515346506463185
"570","Champaign, IL","15211",41191,26.7,13666,30275,54803,92053,147838,100927,8749,22007,19171,4054,39257,5808,46555,0.5185,820," IL","Champaign",0.682686454091641,0.148858886078004,0.129675726132659,0.0591796425817449,0.0274219077639037,0.265540659370392,0.0573442729776962
"571","Chandler, OK","15238",35577,36.3,15372,27273,41548,66477,2749,2217,20,197,0,212,186,140,915,0.4456,600," OK","Chandler",0.806475081847945,0.0716624226991633,0,0.00727537286285922,0.0771189523463078,0.0676609676245908,0.0763358778625954
"572","Chanute, KS","15265",41576,37.4,17084,30619,48292,77883,9255,8692,632,155,8,279,1097,317,2598,0.4391,565," KS","Chanute",0.939168017287952,0.0167477039438142,0.000864397622906537,0.0682874122096164,0.0301458670988655,0.118530524041059,0.0476190476190476
"573","Chaparral, NM","15292",33168,27.2,14158,23949,40022,62382,11242,9849,9518,118,0,169,390,590,3183,0.4116,863," NM","Chaparral",0.876089663760897,0.0104963529621064,0,0.846646504180751,0.0150329122931863,0.0346913360611991,0.0732100756917732
"574","Chardon, OH","15319",54346,42.4,22755,44659,67364,96378,8174,7601,254,211,122,230,1460,246,2220,0.4426,648," OH","Chardon",0.929899681918277,0.0258135551749449,0.0149253731343284,0.0310741375091754,0.0281379985319305,0.178615121115733,0.0413167618407793
"575","Chariton, IA","15346",30647,41.6,15215,24113,44235,67094,3778,3685,18,9,13,45,242,190,1302,0.4165,448," IA","Chariton",0.975383800952885,0.00238221281101112,0.00344097406034939,0.00476442562202223,0.0119110640550556,0.0640550555849656,0.0767366720516963
"576","Charles City, IA","15373",37263,42.4,16097,29014,44324,67629,7603,7031,205,351,88,91,889,247,2231,0.4286,536," IA","Charles City",0.924766539523872,0.0461659871103512,0.0115743785347889,0.026963040904906,0.0119689596212022,0.116927528607129,0.0459791511541325
"577","Charleston, IL","15400",26762,23.6,11421,21016,37216,69888,22151,19447,668,1643,439,490,3210,1366,8065,0.5389,638," IL","Charleston",0.877928761681188,0.0741727235790709,0.019818518351316,0.030156652069884,0.0221208974764119,0.144914450814862,0.0969757205736192
"578","Charleston, MS","15427",18036,30.5,12157,16115,24593,45827,2513,496,0,1986,10,21,167,46,851,0.4173,421," MS","Charleston",0.197373656983685,0.790290489454835,0.00397930760047752,0,0.00835654596100279,0.0664544369279745,0.0276774969915764
"579","Charleston, MO","15454",27109,37.5,11089,22746,29702,53767,5794,2632,88,2997,6,133,392,488,2727,0.4647,648," MO","Charleston",0.454263030721436,0.517259233690024,0.00103555402140145,0.0151881256472213,0.0229547808077321,0.0676561960648947,0.1591131398761
"580","Charleston, WV","15481",47072,41.9,19645,37074,57498,90153,152647,135484,1737,7614,1743,7308,29950,5018,48451,0.4758,684," WV","Charleston",0.887564118521818,0.0498797880076254,0.0114185015100199,0.0113791951364914,0.0478751629576736,0.196204314529601,0.0481592383584783
"581","Charleston--North Charleston, SC","15508",53238,34.5,22290,42164,66135,102790,578837,396769,34305,145820,11070,15202,129421,28300,147098,0.4562,980," SC","Charleston--North Charleston",0.685458946128185,0.251918934000418,0.0191245549265164,0.0592653890473484,0.0262630066840924,0.22358798763728,0.0655488616965342
"582","Charlestown, IN","15535",40794,36.7,19555,33860,47396,72015,7001,6118,907,262,0,175,520,369,1960,0.3913,627," IN","Charlestown",0.87387516069133,0.0374232252535352,0,0.129552921011284,0.0249964290815598,0.0742751035566348,0.0731997619519937
"583","Charlestown, NH","15562",39021,46.7,19706,36250,45156,76333,2695,2589,0,0,0,106,309,54,864,0.368,606," NH","Charlestown",0.960667903525046,0,0,0,0.0393320964749536,0.114656771799629,0.0294920808301475
"584","Charlestown, RI","15589",63000,50.3,27012,47213,80537,120483,2978,2910,0,27,0,25,908,189,814,0.4456,981," RI","Charlestown",0.977165883143049,0.00906648757555406,0,0,0.0083948959032908,0.304902619207522,0.0873382624768946
"585","Charles Town--Ranson, WV","15600",65553,36.6,24180,50328,82201,123033,21108,17053,1891,2368,617,581,4176,921,4826,0.4291,856," WV","Charles Town--Ranson",0.807892742088308,0.112184953572105,0.0292306234602994,0.0895868864885351,0.0275251089634262,0.197839681637294,0.0565655324898661
"586","Charlevoix, MI","15616",37335,47,16682,30267,47115,88929,4078,3893,43,22,59,76,1080,190,1363,0.5038,638," MI","Charlevoix",0.954634624816086,0.00539480137322217,0.0144678764100049,0.010544384502207,0.0186365865620402,0.264835703776361,0.0699815837937385
"587","Charlotte, MI","15643",50114,38.3,17523,37630,57073,88164,12497,11816,464,111,77,358,1526,683,3669,0.4471,679," MI","Charlotte",0.945506921661199,0.00888213171161079,0.00616147875490118,0.0371289109386253,0.02864687525006,0.122109306233496,0.0773674671499773
"588","Charlotte, NC--SC","15670",59288,34.9,25549,46574,73661,119184,1316910,828056,154771,345364,57360,32630,347337,71177,294543,0.4832,912," NC--SC","Charlotte",0.628787084918483,0.262253305085389,0.0435565072784017,0.11752587496488,0.0247776993112665,0.263751509214753,0.0696198136285698
"589","Charlottesville, VA","15724",53234,30,19950,41355,67723,111225,95618,69349,6346,14969,6562,3172,29924,2137,32764,0.4814,1081," VA","Charlottesville",0.725271392415654,0.156550021962392,0.0686272459160409,0.0663682570227363,0.0331736702294547,0.312953627977996,0.0339994272440895
"590","Chase City, VA","15751",27072,41.1,10585,21465,31256,51114,2559,1028,0,1388,100,43,208,156,998,0.4649,501," VA","Chase City",0.401719421649082,0.542399374755764,0.0390777647518562,0,0.0168034388432982,0.0812817506838609,0.0999359385009609
"591","Chatfield, MN","15769",53875,40.2,25738,42423,64238,95121,2660,2617,104,0,5,38,432,59,608,0.3898,752," MN","Chatfield",0.983834586466165,0,0.0018796992481203,0.0390977443609023,0.0142857142857143,0.162406015037594,0.0287524366471735
"592","Chattahoochee, FL","15805",34554,42,9013,26692,41650,61100,5165,2395,471,2404,42,120,288,75,3972,0.4731,610," FL","Chattahoochee",0.463697967086157,0.465440464666021,0.00813165537270087,0.0911907066795741,0.0232333010648596,0.0557599225556631,0.0628667225481978
"593","Chattanooga, TN--GA","15832",46044,38.7,18844,36182,57434,92799,389555,298359,17709,71166,7053,7052,70020,18539,114971,0.4736,748," TN--GA","Chattanooga",0.76589698502137,0.182685371770353,0.0181052739664489,0.0454595628345163,0.0181027069348359,0.179743553541862,0.0675166797774087
"594","Cheboygan, MI","15859",25118,41.8,12672,21583,31176,53420,4368,4005,78,25,28,226,288,386,1598,0.413,489," MI","Cheboygan",0.916895604395604,0.00572344322344322,0.00641025641025641,0.0178571428571429,0.0517399267399267,0.0659340659340659,0.139350180505415
"595","Checotah, OK","15886",25380,35.2,11080,19707,37109,56619,2626,1848,43,247,0,201,151,245,1003,0.4569,589," OK","Checotah",0.703731911652704,0.0940594059405941,0,0.0163747143945164,0.0765422696115765,0.0575019040365575,0.150955021565003
"596","Chelan, WA","15913",38214,48.7,13994,31259,52938,81424,5020,4870,1220,0,0,29,764,324,1824,0.5023,845," WA","Chelan",0.970119521912351,0,0,0.243027888446215,0.00577689243027888,0.152191235059761,0.101376720901126
"597","Chelsea, MI","15940",58846,42.7,26756,46308,71510,111831,5572,5393,182,31,41,32,1641,170,1970,0.4169,1002," MI","Chelsea",0.967875089734386,0.00556353194544149,0.00735821966977746,0.0326633165829146,0.00574300071787509,0.294508255563532,0.0471960022209883
"598","Cheney, WA","15967",28248,22.9,7737,19505,35793,68179,11009,9389,842,365,344,480,1730,694,4081,0.5234,723," WA","Cheney",0.85284767008811,0.0331546916159506,0.031247161413389,0.0764828776455627,0.0436006903442638,0.157144154782451,0.100173210161663
"599","Cheraw, SC","15994",23750,41.9,8370,16536,33398,48053,9038,4037,125,4768,12,162,954,465,3676,0.5327,561," SC","Cheraw",0.446669617171941,0.527550342996238,0.00132772737331268,0.0138304934720071,0.0179243195397212,0.105554326178358,0.0867213726221559
"600","Cherokee, IA","16021",42656,47.8,16949,31162,51732,80232,4499,4313,197,27,19,98,624,92,1368,0.4252,480," IA","Cherokee",0.958657479439876,0.00600133362969549,0.00422316070237831,0.0437875083351856,0.0217826183596355,0.13869748833074,0.0293835835196423
"601","Cherokee Village, AR","16048",36469,42.9,20605,29366,41910,69667,3586,3405,208,4,111,44,300,130,1313,0.3435,680," AR","Cherokee Village",0.949525934188511,0.0011154489682097,0.0309537088678193,0.0580033463469046,0.0122699386503067,0.0836586726157278,0.0571931368235812
"602","Cherryville, NC","16075",40615,43.7,19575,32368,49029,80132,6316,5122,214,774,0,180,803,472,2035,0.4222,718," NC","Cherryville",0.810956301456618,0.122545915136162,0,0.0338822039265358,0.0284990500316656,0.127137428752375,0.110254613408082
"603","Chesapeake Beach, MD","16102",97752,38,48955,82173,115726,155366,24298,20990,807,1736,346,787,4787,1118,5075,0.359,1613," MD","Chesapeake Beach",0.863857107580871,0.0714462095645732,0.0142398551321096,0.0332126100913655,0.0323894970779488,0.197012099761297,0.0581594964365604
"604","Chesnee, SC","16140",27423,46.6,12943,23117,40467,63618,3025,2525,340,330,0,30,166,214,1141,0.4619,585," SC","Chesnee",0.834710743801653,0.109090909090909,0,0.112396694214876,0.00991735537190083,0.0548760330578512,0.113588110403397
"605","Chester, IL","16156",41008,36.6,19775,30211,52990,74955,8319,6119,348,2135,35,16,383,176,4568,0.3968,647," IL","Chester",0.735545137636735,0.256641423247987,0.0042072364466883,0.0418319509556437,0.00192330808991465,0.046039187402332,0.0469208211143695
"606","Chester, NY","16171",68782,41.7,32500,55033,83665,130714,5498,3706,1051,846,306,208,1142,358,1558,0.4031,1301," NY","Chester",0.674063295743907,0.153874136049473,0.055656602400873,0.191160421971626,0.0378319388868679,0.207711895234631,0.0908629441624366
"607","Chester, SC","16183",24450,38.3,9792,19135,31926,63514,9348,2928,119,6203,10,172,965,703,3372,0.5234,578," SC","Chester",0.313222079589217,0.663564398801883,0.00106974753958066,0.0127299957210098,0.0183996576807873,0.103230637569534,0.117637215528782
"608","Chestertown, MD","16210",44393,41.7,19821,31510,58343,90035,7260,5496,124,1563,152,46,1502,172,3200,0.4532,829," MD","Chestertown",0.75702479338843,0.215289256198347,0.0209366391184573,0.0170798898071625,0.00633608815426997,0.206887052341598,0.0423645320197044
"609","Chetek, WI","16223",36630,48.2,22190,31945,41824,62544,2946,2917,129,0,3,20,318,105,1175,0.3696,627," WI","Chetek",0.990156143923965,0,0.0010183299389002,0.0437881873727088,0.00678886625933469,0.107942973523422,0.0592885375494071
"610","Cheyenne, WY","16237",52643,34.5,24208,42549,66337,101292,75283,64002,11608,2669,1001,2714,12414,2265,18732,0.4038,775," WY","Cheyenne",0.850152092769948,0.0354528910909502,0.013296494560525,0.154191517341232,0.0360506356016631,0.164897785688668,0.0400523421336493
"611","Chicago, IL--IN","16264",61223,36.2,24335,47673,76703,122642,8661547,5574651,1914226,1589996,547926,193385,2063241,482393,2214903,0.481,984," IL--IN","Chicago",0.643609161273385,0.183569517085112,0.0632596001614954,0.221002783913774,0.0223268429992933,0.238206985426506,0.0748285464499048
"612","Chickasha, OK","16291",40686,35.6,15573,31441,52382,78000,15767,13002,1222,695,83,1240,1978,447,5232,0.4457,653," OK","Chickasha",0.824633728673812,0.0440794063550453,0.00526415932009894,0.0775036468573603,0.0786452717701528,0.125451893194647,0.0424299952539155
"613","Chico, CA","16318",44616,30.6,16980,33862,57871,97420,100050,83776,16668,1843,3958,6053,20629,5655,30792,0.4893,920," CA","Chico",0.837341329335332,0.0184207896051974,0.039560219890055,0.166596701649175,0.0604997501249375,0.206186906546727,0.0816512171879061
"614","Childress, TX","16372",39619,34.5,17784,35020,53537,97815,4916,4272,979,219,23,49,700,117,1284,0.4204,675," TX","Childress",0.86899918633035,0.0445484133441823,0.00467860048820179,0.199145646867372,0.00996745321399512,0.142392188771359,0.0322136563876652
"615","Chillicothe, MO","16426",38885,40.9,17241,29683,48553,71952,9009,8507,155,318,44,21,1180,170,3530,0.4494,602," MO","Chillicothe",0.944277944277944,0.0352980352980353,0.00488400488400488,0.0172050172050172,0.00233100233100233,0.130980130980131,0.0310275597736813
"616","Chillicothe, OH","16453",38734,40.1,17315,30622,47787,72417,32262,26794,534,3630,202,1431,3964,1825,14085,0.4624,636," OH","Chillicothe",0.830512677453351,0.112516273014692,0.00626123612919224,0.0165519806583597,0.0443555886181886,0.122869009980782,0.100401606425703
"617","Chilton, WI","16480",49013,36.3,24981,43974,57412,75889,3700,3681,127,5,0,0,289,164,953,0.3154,601," WI","Chilton",0.994864864864865,0.00135135135135135,0,0.0343243243243243,0,0.0781081081081081,0.0597014925373134
"618","Chinle, AZ","16534",42196,21.8,13273,31614,48531,69953,3765,391,137,20,31,236,321,229,1151,0.4169,441," AZ","Chinle",0.103851261620186,0.00531208499335989,0.00823373173970784,0.0363877822045153,0.0626826029216467,0.0852589641434263,0.0876052027543994
"619","Chino Valley, AZ","16561",41549,49.2,18507,34354,46044,78936,10501,9970,1047,45,0,128,1433,570,4060,0.4078,785," AZ","Chino Valley",0.949433387296448,0.00428530616131797,0,0.0997047900199981,0.0121893153033044,0.136463193981526,0.0884955752212389
"620","Chipley, FL","16588",31902,40.5,9319,27724,39288,59856,3637,2345,50,1207,0,73,341,206,1564,0.4405,447," FL","Chipley",0.644762166620841,0.331866923288425,0,0.0137475941710201,0.0200714874896893,0.0937585922463569,0.0993728895320791
"621","Chisholm, MN","16615",36109,38.3,14815,31474,45354,70981,4505,4202,109,31,10,47,534,241,1579,0.3858,529," MN","Chisholm",0.932741398446171,0.00688124306326304,0.00221975582685905,0.0241953385127636,0.0104328523862375,0.118534961154273,0.082365003417635
"622","Chittenango, NY","16642",63529,39,25989,51915,72269,106971,5006,4944,113,1,10,18,1086,61,1354,0.3635,658," NY","Chittenango",0.987614862165402,0.000199760287654814,0.00199760287654814,0.022572912504994,0.00359568517778666,0.216939672393128,0.0167031763417306
"623","Chowchilla, CA","16696",36560,33.9,15798,30564,43234,75100,12714,10359,5354,524,179,697,828,541,4832,0.4485,946," CA","Chowchilla",0.8147711184521,0.0412144093125688,0.0140789680666981,0.421110586754759,0.0548214566619475,0.0651250589900897,0.0686374016747019
"624","Christopher, IL","16777",32643,41.9,12468,25576,40365,61265,3977,3969,23,0,0,8,270,205,1613,0.4438,575," IL","Christopher",0.997988433492582,0,0,0.00578325370882575,0.00201156650741765,0.0678903696253457,0.0867174280879865
"625","Church Point, LA","16831",27483,35.7,11981,21022,33865,61833,4587,2740,49,1725,0,104,140,262,1392,0.5073,519," LA","Church Point",0.597340309570525,0.376062786134729,0,0.0106823632003488,0.0226727708742097,0.0305210377152823,0.0820031298904538
"626","Churchville, NY","16858",58571,38.6,29114,46171,72048,101375,3334,3189,129,64,19,16,744,126,752,0.3568,631," NY","Churchville",0.956508698260348,0.0191961607678464,0.00569886022795441,0.0386922615476905,0.00479904019196161,0.223155368926215,0.0487993803253292
"627","Cincinnati, OH--KY--IN","16885",55237,36.7,21837,43001,69378,109931,1637017,1294181,51013,250600,39907,34472,362492,71336,416238,0.467,750," OH--KY--IN","Cincinnati",0.790572730765777,0.153083321675951,0.0243778775663295,0.031162168749622,0.0210578143049217,0.221434475023778,0.0584348190786375
"628","Circleville, OH","16912",38060,39,16521,31291,46000,77827,15089,14172,137,399,86,368,1437,787,5459,0.4287,766," OH","Circleville",0.939227251640268,0.0264431042481278,0.00569951620385711,0.00907946185963284,0.02438862747697,0.0952349393597985,0.081723779854621
"629","Cisco, TX","16939",31219,36.5,12432,27691,38071,57183,3620,3070,606,315,3,0,251,30,1541,0.4561,560," TX","Cisco",0.848066298342541,0.0870165745856354,0.000828729281767956,0.167403314917127,0,0.0693370165745856,0.0144300144300144
"630","Clanton, AL","17047",34453,35.7,13151,24644,39341,66640,5920,4122,390,1625,55,118,501,265,2075,0.4829,554," AL","Clanton",0.696283783783784,0.274493243243243,0.00929054054054054,0.0658783783783784,0.0199324324324324,0.0846283783783784,0.0689206762028609
"631","Clare, MI","17074",30284,41.5,11010,21982,38741,63971,5301,5110,38,17,17,98,564,353,1958,0.4592,580," MI","Clare",0.963969062441049,0.00320694208639879,0.00320694208639879,0.00716845878136201,0.0184870779098283,0.106395019807583,0.105593778043673
"632","Claremont, NH","17101",38808,40.8,16378,30551,50685,77434,8674,8449,152,50,23,73,1081,508,2837,0.4484,744," NH","Claremont",0.974060410421951,0.00576435323956652,0.0026516024902006,0.0175236338482822,0.00841595572976712,0.124625317039428,0.0870310090800069
"633","Claremore, OK","17128",44902,36.2,21603,37475,56590,86322,25727,18602,1215,392,100,2256,3619,921,7438,0.4205,777," OK","Claremore",0.723053601274925,0.0152369106386287,0.00388696699965017,0.0472266490457496,0.0876899755121079,0.14066933571734,0.0503581387719394
"634","Clarinda, IA","17155",42769,42.1,17314,35765,56444,84536,4982,4688,123,153,63,39,688,155,1739,0.4231,549," IA","Clarinda",0.940987555198715,0.0307105580088318,0.0126455238859896,0.0246888799678844,0.00782818145323163,0.138097149739061,0.047795251310515
"635","Clarion, IA","17182",35464,37.4,16484,29167,45761,83929,2613,2425,274,18,1,57,265,83,771,0.5237,589," IA","Clarion",0.928052047455033,0.0068886337543054,0.000382701875239189,0.104860313815538,0.0218140068886338,0.101415996938385,0.0450597176981542
"636","Clarion, PA","17209",30172,23.8,10586,21913,41631,77855,9494,8781,80,320,194,117,1570,356,4244,0.5218,594," PA","Clarion",0.924899936802191,0.0337054982093954,0.020433958289446,0.00842637455234885,0.0123235727828102,0.165367600589846,0.0678095238095238
"637","Clarksburg, WV","17236",43089,40.8,17736,32573,54742,89375,43193,40904,572,1043,222,579,6985,1573,14255,0.4608,660," WV","Clarksburg",0.947005301785011,0.0241474312967379,0.00513972171416665,0.0132428865788438,0.0134049498761373,0.161716018799342,0.0543575920934411
"638","Clarksdale, MS","17263",28192,31.9,9692,19611,36912,59556,17351,3360,54,13711,141,87,1978,1159,5597,0.494,596," MS","Clarksdale",0.193648781050084,0.790213820529076,0.00812633277620886,0.00311221255259063,0.00501412022361824,0.113999193130079,0.0986047303045772
"639","Clarksville, AR","17290",26202,34.1,13341,21427,32967,53152,7254,6272,1380,339,170,280,771,264,2382,0.4112,622," AR","Clarksville",0.86462641301351,0.0467328370554177,0.0234353460159912,0.190239867659222,0.0385993934381031,0.106286186931348,0.0541871921182266
"640","Clarksville, TN--KY","17317",47615,27.4,22596,39118,56982,83984,166504,113402,17379,35367,3943,8249,22304,7171,39375,0.4184,883," TN--KY","Clarksville",0.681076730889348,0.212409311488012,0.0236811127660597,0.10437587084995,0.0495423533368568,0.13395473982607,0.0564072713542937
"641","Clarksville, TX","17344",18029,38.9,10606,15970,24629,44750,3172,1706,430,1374,0,23,290,125,1304,0.4586,505," TX","Clarksville",0.537831021437579,0.433165195460277,0,0.135561160151324,0.00725094577553594,0.0914249684741488,0.0669164882226981
"642","Claxton, GA","17371",32480,32,11802,25820,39888,59980,3787,1782,561,1509,14,50,355,186,1373,0.451,652," GA","Claxton",0.470557169263269,0.398468444679166,0.00369685767097967,0.1481383681014,0.0132030631106417,0.0937417480855559,0.0770505385252693
"643","Clay Center, KS","17398",39901,44.1,18321,34186,53320,77853,4037,3824,85,34,43,95,680,55,1298,0.403,649," KS","Clay Center",0.947238048055487,0.00842209561555611,0.0106514738667327,0.0210552390388903,0.0235323259846421,0.168441912311122,0.0200803212851406
"644","Clayton, GA","17420",22470,43.7,11106,18371,26854,46735,2978,2636,388,154,1,118,243,149,1222,0.4376,613," GA","Clayton",0.885157824042982,0.0517125587642713,0.000335795836131632,0.130288784419073,0.0396239086635326,0.0815983881799866,0.0848519362186788
"645","Clearfield, PA","17452",37518,42.8,16091,28850,46239,72139,10857,10589,155,27,117,92,1201,473,3754,0.444,546," PA","Clearfield",0.975315464677167,0.00248687482730036,0.0107764575849682,0.0142765036382058,0.00847379570783826,0.110619876577323,0.0665915810221033
"646","Clearlake, CA","17479",25785,41.5,12194,20902,31598,49916,15859,11144,3525,1049,94,753,985,1590,6350,0.453,818," CA","Clearlake",0.702692477457595,0.0661454063938458,0.00592723374739895,0.222271265527461,0.0474809256573554,0.0621098429913614,0.167210011567988
"647","Clear Lake, IA","17506",50247,44.6,22053,37703,63753,99483,8066,7750,271,46,138,97,1785,107,2096,0.4547,606," IA","Clear Lake",0.960823208529631,0.0057029506570791,0.0171088519712373,0.0335978180014877,0.0120257872551451,0.221299280932308,0.0179229480737018
"648","Clearlake Riviera, CA","17514",42917,39,22547,36552,48688,112867,2493,2268,320,18,0,61,441,134,715,0.4061,1303," CA","Clearlake Riviera",0.909747292418773,0.0072202166064982,0,0.128359406337746,0.0244685118331328,0.176895306859206,0.0753655793025872
"649","Clearwood, WA","17524",61410,36.3,29667,52946,71977,88500,2365,2090,293,38,33,191,322,96,603,0.3501,1533," WA","Clearwood",0.883720930232558,0.0160676532769556,0.013953488372093,0.123890063424947,0.0807610993657505,0.13615221987315,0.054483541430193
"650","Cleburne, TX","17533",45013,31.9,19401,34238,56245,85876,35316,31392,10482,1465,284,664,3428,1181,10164,0.4194,800," TX","Cleburne",0.888888888888889,0.0414826141125835,0.00804168082455544,0.296805980292219,0.018801676294031,0.0970664854456903,0.0469545165394402
"651","Cle Elum, WA","17560",47147,42.2,22177,36699,55776,88719,4250,3873,281,6,14,98,729,219,1221,0.377,896," WA","Cle Elum",0.911294117647059,0.00141176470588235,0.00329411764705882,0.0661176470588235,0.0230588235294118,0.171529411764706,0.0723010894684714
"652","Cleveland, GA","17625",32023,35.7,14110,24816,45078,67061,4568,3966,183,552,25,25,510,152,1589,0.4276,690," GA","Cleveland",0.868213660245184,0.120840630472855,0.00547285464098074,0.040061295971979,0.00547285464098074,0.111646234676007,0.0510238335011749
"653","Cleveland, MS","17641",31807,32.6,12918,24861,38546,67289,16061,6406,495,9088,168,27,2609,1229,5016,0.4747,624," MS","Cleveland",0.398854367723056,0.565842724612415,0.0104601207894901,0.0308199987547475,0.00168109084116805,0.162443185355831,0.111272068809416
"654","Cleveland, OH","17668",49627,40.9,19486,38297,62793,101328,1772379,1271791,79797,397126,43448,38893,382479,92589,502216,0.4813,760," OH","Cleveland",0.717561537346132,0.224063814793563,0.0245139442523298,0.0450225375046759,0.0219439521682439,0.215799780972354,0.0728953685471865
"655","Cleveland, OK","17695",41759,39.2,20885,31653,48783,73167,3055,2526,35,10,32,265,289,135,1006,0.3914,637," OK","Cleveland",0.82684124386252,0.00327332242225859,0.0104746317512275,0.0114566284779051,0.0867430441898527,0.0945990180032733,0.0658857979502196
"656","Cleveland, TN","17722",40088,36,16142,30910,50461,79795,68205,60949,4508,4337,936,1163,8937,3911,20832,0.4885,707," TN","Cleveland",0.893614837621875,0.0635877135107397,0.0137233340664174,0.0660948610805659,0.0170515358111575,0.131031449307236,0.0825575749899732
"657","Cleveland, TX","17749",33578,31.9,16985,26763,41962,68107,10270,7142,2877,1712,49,141,539,872,3383,0.3968,689," TX","Cleveland",0.695423563777994,0.166699123661149,0.00477117818889971,0.280136319376826,0.0137293086660175,0.0524829600778968,0.126615362276753
"658","Clewiston, FL","17776",36893,30.5,16637,27470,52326,78108,13395,8110,6679,2984,271,289,1122,697,3254,0.4839,769," FL","Clewiston",0.605449794699515,0.222769690182904,0.0202314296379246,0.498618887644644,0.0215752146323255,0.0837625979843225,0.0687308943891135
"659","Clifton, AZ","17803",59097,27.8,34483,52456,66421,95750,4686,3947,2538,87,21,148,393,184,945,0.312,394," AZ","Clifton",0.842296201451131,0.0185659411011524,0.00448143405889885,0.541613316261204,0.0315834400341443,0.0838668373879641,0.0491847099705961
"660","Clifton, TX","17830",41087,47.4,19160,32377,50778,84542,3168,2744,901,115,4,189,267,112,1209,0.523,611," TX","Clifton",0.866161616161616,0.036300505050505,0.00126262626262626,0.284406565656566,0.0596590909090909,0.084280303030303,0.0571720265441552
"661","Clifton Forge, VA","17857",35504,44.9,15147,25855,46807,77659,5343,4736,118,458,11,121,553,223,2207,0.4477,494," VA","Clifton Forge",0.886393411940857,0.0857196331648886,0.00205876848212615,0.0220849709900805,0.0226464533033876,0.103499906419614,0.071109693877551
"662","Clifton Springs, NY","17870",43909,41.6,21444,34646,56007,87111,6412,5999,144,153,94,108,695,208,1913,0.4039,705," NY","Clifton Springs",0.935589519650655,0.0238615096693699,0.0146600124766064,0.0224578914535246,0.0168434185901435,0.108390517779164,0.0462324961102467
"663","Clinton, IL","17884",44891,39.8,17406,34328,56588,87303,8373,7998,339,90,12,215,837,412,2447,0.479,574," IL","Clinton",0.955213185238266,0.0107488355428162,0.00143317807237549,0.0404872805446077,0.0256777737967276,0.0999641705481906,0.0695241309483631
"664","Clinton, IN","17911",39158,42.4,13473,28746,44908,65690,6144,5993,107,32,36,76,519,175,2158,0.4946,508," IN","Clinton",0.975423177083333,0.00520833333333333,0.005859375,0.0174153645833333,0.0123697916666667,0.08447265625,0.0439036628198695
"665","Clinton, IA--IL","17938",41316,41.7,16915,31951,54010,81245,31890,29129,1031,1399,299,680,3995,1057,9860,0.4438,599," IA--IL","Clinton",0.913421135152085,0.0438695515835685,0.00937597993101286,0.0323298839761681,0.0213232988397617,0.1252743806836,0.0479800272355878
"666","Clinton, MO","17965",34512,41.8,17015,28156,45755,64885,8771,8381,147,181,18,68,903,342,2976,0.4508,675," MO","Clinton",0.955535286740394,0.0206361874358682,0.00205221753505872,0.0167597765363128,0.00775282179911071,0.102952913008779,0.059016393442623
"667","Clinton, NC","17992",32920,40.8,12193,23984,42900,84125,9811,4781,1151,3914,69,225,1354,518,3459,0.5446,593," NC","Clinton",0.487310162062991,0.398939965345021,0.00703292223014983,0.11731729691163,0.0229334420548364,0.138008357965549,0.0815491183879093
"668","Clinton, OK","18019",43025,32.1,18912,37242,53429,86079,8473,6555,2669,323,189,828,1076,162,2272,0.4644,687," OK","Clinton",0.773633895904638,0.0381210905228372,0.0223061489437035,0.31500059010976,0.0977221763247964,0.126991620441402,0.0261248185776488
"669","Clinton, SC","18046",32933,32,12081,23577,41840,70465,11201,6748,235,4208,75,142,1170,523,4203,0.469,656," SC","Clinton",0.602446210159807,0.375680742790822,0.00669583072939916,0.020980269618784,0.0126774395143291,0.104454959378627,0.0747356387539297
"670","Clintonville, WI","18100",36234,40.5,22087,29603,42633,75472,4397,4356,230,0,0,11,346,300,1231,0.3953,596," WI","Clintonville",0.990675460541278,0,0,0.0523083920855128,0.00250170570843757,0.0786900159199454,0.0947567909033481
"671","Cloquet, MN","18127",48029,38.7,18445,37165,58098,84810,13126,11666,182,85,138,375,2142,438,3691,0.4193,681," MN","Cloquet",0.888770379399665,0.00647569708974554,0.010513484686881,0.0138656102392199,0.0285692518665245,0.163187566661588,0.046422893481717
"672","Clover, SC","18154",48026,32.1,17878,36092,59817,89782,6985,5525,139,1116,0,233,556,540,1544,0.4151,842," SC","Clover",0.790980672870437,0.159770937723694,0,0.019899785254116,0.0333571939871152,0.0795991410164639,0.0992464620474178
"673","Cloverdale, CA","18181",57901,40.6,30989,47840,72647,112115,9202,7312,2911,94,365,350,1203,320,2638,0.3897,1156," CA","Cloverdale",0.794609867420126,0.0102151706150837,0.0396652901543143,0.316344272984134,0.0380352097370137,0.130732449467507,0.048750761730652
"674","Clovis, NM","18208",39652,30.3,15982,31276,51148,83545,42507,30060,17165,3000,716,1449,5127,1898,11178,0.4688,721," NM","Clovis",0.707177641329663,0.070576610911144,0.016844284470793,0.403815842096596,0.0340885030700826,0.120615428047145,0.0605828465638865
"675","Clyde, OH","18235",43464,37.8,21112,34030,55725,93742,6039,5826,356,1,22,94,539,274,1469,0.413,610," OH","Clyde",0.964729259811227,0.000165590329524756,0.00364298724954463,0.0589501573108131,0.015565490975327,0.0892531876138433,0.0599562363238512
"676","Clyde, TX","18262",49556,40.8,19603,38233,56304,85763,3648,3411,256,60,12,146,334,91,1268,0.4321,907," TX","Clyde",0.935032894736842,0.0164473684210526,0.00328947368421053,0.0701754385964912,0.0400219298245614,0.0915570175438596,0.0382352941176471
"677","Coalinga, CA","18289",50523,30.5,20910,40238,63264,101813,15044,9606,8414,455,333,670,1322,728,4072,0.4457,747," CA","Coalinga",0.638526987503324,0.0302446157936719,0.022135070459984,0.55929274129221,0.0445360276522202,0.087875565009306,0.0663507109004739
"678","Cobleskill, NY","18343",35231,28.1,12291,26277,52984,90618,5478,4906,321,292,31,114,663,460,2029,0.5267,725," NY","Cobleskill",0.895582329317269,0.0533041255932822,0.00565899963490325,0.0585980284775465,0.0208105147864184,0.121029572836802,0.133371991881705
"679","Cochran, GA","18370",27256,30.9,10110,18548,41271,79578,6240,2956,117,3085,11,176,555,236,3213,0.6053,609," GA","Cochran",0.473717948717949,0.494391025641026,0.00176282051282051,0.01875,0.0282051282051282,0.0889423076923077,0.0779649818301949
"680","Cody, WY","18397",53545,37.7,27941,42716,65732,92854,9623,9033,576,145,107,116,1720,149,2071,0.372,694," WY","Cody",0.93868855866154,0.0150680660916554,0.0111191935986699,0.0598565935778863,0.0120544528733243,0.178738439156188,0.0197298728813559
"681","Coeburn, VA","18424",29909,37.6,13129,22971,41444,63029,3350,3264,81,32,14,7,188,128,1305,0.4577,582," VA","Coeburn",0.974328358208955,0.00955223880597015,0.00417910447761194,0.0241791044776119,0.00208955223880597,0.0561194029850746,0.0625916870415648
"682","Coeur d'Alene, ID","18451",46982,37.1,22051,38289,56803,81955,99992,94949,4400,403,1184,2158,14946,4684,28417,0.4276,805," ID","Coeur d'Alene",0.949565965277222,0.00403032242579406,0.0118409472757821,0.0440035202816225,0.021581726538123,0.149471957756621,0.0654418442193503
"683","Coffeyville, KS--OK","18478",32731,37.3,13280,24575,42379,67052,10853,8308,624,1180,95,722,898,463,3289,0.4399,555," KS--OK","Coffeyville",0.765502626002027,0.108725697963697,0.00875334009029761,0.0574956233299549,0.0665253846862619,0.0827420989588132,0.0612109994711793
"684","Cokato, MN","18505",46319,35.8,19773,34088,56707,84962,4382,4108,220,9,9,39,539,206,1139,0.4114,661," MN","Cokato",0.937471474212688,0.00205385668644455,0.00205385668644455,0.0502053856686445,0.0089000456412597,0.123003194888179,0.0635214307739747
"685","Colby, KS","18532",44375,33.6,17844,33771,53629,90235,5406,5139,282,122,4,84,962,82,1413,0.4669,434," KS","Colby",0.950610432852386,0.022567517573067,0.000739918608953015,0.0521642619311876,0.0155382907880133,0.1779504254532,0.0205359378913098
"686","Colchester, CT","18559",93000,39.4,44359,76284,108920,147342,9603,9064,237,75,184,277,2431,269,1758,0.3611,1129," CT","Colchester",0.943871706758305,0.00781005935645111,0.0191606789544934,0.0246797875663855,0.0288451525564928,0.253150057273769,0.034289356277884
"687","Cold Spring, MN","18586",49542,35,21853,40857,64661,92531,4275,4237,252,3,19,4,642,105,1050,0.4059,624," MN","Cold Spring",0.991111111111111,0.000701754385964912,0.00444444444444444,0.0589473684210526,0.000935672514619883,0.150175438596491,0.0325581395348837
"688","Cold Spring, NY","18613",83784,42.5,34588,65810,106200,169333,3290,3064,240,26,62,50,1194,70,791,0.4479,1244," NY","Cold Spring",0.931306990881459,0.00790273556231003,0.0188449848024316,0.0729483282674772,0.0151975683890578,0.362917933130699,0.0280112044817927
"689","Coldwater, MI","18667",35562,36.3,17326,27570,43042,71257,15922,14354,1022,984,51,383,1169,661,5964,0.4352,672," MI","Coldwater",0.901519909559101,0.0618012812460746,0.00320311518653436,0.0641879160909433,0.0240547669890717,0.0734204245697777,0.0663787909218719
"690","Coldwater, OH","18680",52198,39.6,19758,40745,64649,93385,4452,4346,43,6,1,0,467,154,1115,0.4192,539," OH","Coldwater",0.976190476190476,0.00134770889487871,0.000224618149146451,0.00965858041329739,0,0.104896675651393,0.0461492358405754
"691","Coleman, TX","18694",29621,43.1,16447,24050,35300,56113,3967,3751,928,111,0,24,273,169,1413,0.4271,538," TX","Coleman",0.94555079405092,0.027980841946055,0,0.233929921855306,0.00604991177211999,0.0688177464078649,0.0661707126076742
"692","Colfax, CA","18712",45556,39.1,22313,38558,65822,104250,3516,3145,178,4,143,166,558,250,969,0.4224,995," CA","Colfax",0.89448236632537,0.00113765642775882,0.0406712172923777,0.0506257110352673,0.0472127417519909,0.158703071672355,0.0981546917942678
"693","Colfax, WA","18721",43021,39.7,21152,32538,51101,86278,2757,2601,61,34,88,18,521,9,912,0.4083,565," WA","Colfax",0.94341675734494,0.0123322451940515,0.0319187522669568,0.0221254987305042,0.00652883569096844,0.188973521944142,0.0048780487804878
"694","College Station--Bryan, TX","18748",36431,24.2,11871,27356,48265,83428,177270,128630,44477,20554,10784,4660,33130,7501,54463,0.5277,861," TX","College Station--Bryan",0.72561629153269,0.115947424832177,0.0608337564167654,0.250899757432166,0.0262875839115474,0.186890054718791,0.0610795801542257
"695","Collinsville, OK","18760",47738,33.5,25339,44268,54603,81841,4182,3352,126,44,0,387,554,181,880,0.3369,791," OK","Collinsville",0.801530368244859,0.0105212816834051,0,0.03012912482066,0.0925394548063128,0.1324725011956,0.0548152634766808
"696","Colonial Beach, VA","18775",50222,50.1,22595,40482,64500,95563,3737,3320,0,332,48,34,508,109,1320,0.3866,919," VA","Colonial Beach",0.888413165640888,0.0888413165640888,0.0128445276960128,0,0.0090982071180091,0.135937918116136,0.0450972279685561
"697","Colorado City, AZ--UT","18802",33750,15.8,13864,28906,45400,77222,8582,8578,0,0,0,0,186,535,1987,0.4831,875," AZ--UT","Colorado City",0.999533908179911,0,0,0,0,0.0216732696341179,0.0811220621683093
"698","Colorado City, TX","18829",39696,31.9,20889,33628,49985,71922,5918,4502,2742,839,38,110,267,88,3564,0.3642,580," TX","Colorado City",0.760729976343359,0.141770868536668,0.00642108820547482,0.463332206826631,0.0185873605947955,0.045116593443731,0.0373831775700935
"699","Colorado Springs, CO","18856",55840,33.3,24953,45645,69667,108814,580906,462616,96089,36686,16329,33461,127976,27005,140657,0.4365,928," CO","Colorado Springs",0.796369808540452,0.0631530746798966,0.028109539236985,0.165412304228223,0.0576014019479916,0.220304145593263,0.0613402869739625
"700","Columbia, KY","18883",24528,37.7,10029,19922,31654,52869,4907,4393,109,369,26,115,536,220,2723,0.4724,418," KY","Columbia",0.895251681271653,0.0751986957407785,0.00529855308742613,0.0222131648665172,0.0234359078866925,0.109231709802323,0.100732600732601
"701","Columbia, MS","18910",22643,37.6,10729,19255,29184,73469,7321,4439,112,2836,1,16,694,280,3373,0.5486,619," MS","Columbia",0.606337931976506,0.387378773391613,0.000136593361562628,0.0152984564950143,0.00218549378500205,0.0947957929244639,0.0709219858156028
"702","Columbia, MO","18937",43887,27.4,15629,34004,56946,96363,128635,101094,4663,13971,6562,5529,37441,4100,33068,0.5077,802," MO","Columbia",0.785898083725269,0.108609631904225,0.0510125549034089,0.0362498542387375,0.0429820810821316,0.291063862867804,0.0429018385007377
"703","Columbia, SC","18964",51305,34,21927,40861,63598,98978,563692,329697,30171,195731,13702,13795,127175,27689,145032,0.4485,864," SC","Columbia",0.584888556161876,0.347230402418342,0.0243076006045855,0.053523910220475,0.0244725843190962,0.225610794547377,0.0661371996369369
"704","Columbia, TN","18991",33523,36,14821,26341,43030,66989,35367,26677,2566,6839,345,1034,3702,1950,10117,0.4386,661," TN","Columbia",0.754290722990358,0.193372352758221,0.00975485622190177,0.0725535103344926,0.0292362937201346,0.104673848502842,0.0772277227722772
"705","Columbia City, IN","19018",41667,37.1,19965,35422,49849,75581,9573,8990,388,94,40,238,1185,432,2962,0.3982,629," IN","Columbia City",0.939099550820015,0.00981928340123263,0.00417841846860963,0.0405306591455134,0.0248615898882273,0.12378564713256,0.0653456360611103
"706","Columbia Falls, MT","19045",45323,36.1,22823,34476,51552,73792,6730,6431,153,0,69,46,713,298,1715,0.3599,829," MT","Columbia Falls",0.9555720653789,0,0.0102526002971768,0.0227340267459138,0.00683506686478455,0.10594353640416,0.0594217347956132
"707","Columbiana, AL","19060",28750,37.9,18871,25692,45833,88958,1893,1261,19,594,3,30,160,59,975,0.4326,601," AL","Columbiana",0.666138404648706,0.31378763866878,0.00158478605388273,0.0100369783412573,0.0158478605388273,0.0845219228737454,0.0642701525054466
"708","Columbiana, OH","19072",45064,48.6,19538,35759,54323,81753,8109,8037,78,13,22,32,1185,162,2774,0.4126,619," OH","Columbiana",0.991120976692564,0.00160315698606487,0.00271303489949439,0.0096189419163892,0.00394623258108275,0.14613392526822,0.0303655107778819
"709","Columbus, GA--AL","19099",41103,32.6,17377,32918,52326,81314,262973,131665,17738,110696,5057,8842,36658,13086,74082,0.474,819," GA--AL","Columbus",0.500678776908656,0.42094055283242,0.019230111076042,0.0674517916287984,0.0336232236769554,0.13939834127458,0.069278049245332
"710","Columbus, IN","19126",51108,36,22031,39108,64194,99860,55827,47105,4427,1483,3234,1056,11031,1773,15227,0.4415,798," IN","Columbus",0.843767352714636,0.0265642072832142,0.057928959105809,0.0792985472979024,0.0189155784835295,0.19759256273846,0.0436699507389163
"711","Columbus, KS","19153",37383,41.6,16877,31214,46794,66545,3362,3046,120,0,0,202,416,85,1016,0.3539,542," KS","Columbus",0.906008328375967,0,0,0.0356930398572278,0.0600832837596669,0.123735871505057,0.036231884057971
"712","Columbus, MS","19180",29185,35.1,11597,21305,39153,69917,31055,12309,418,18225,262,90,3980,2582,9554,0.5028,675," MS","Columbus",0.39636129447754,0.586862018998551,0.00843664466269522,0.0134599903397199,0.00289808404443729,0.128159716631782,0.120087437793591
"713","Columbus, NE","19207",50852,36.9,24136,41925,61005,87536,22171,20947,4355,63,151,417,3043,721,4411,0.3926,652," NE","Columbus",0.944792747282486,0.00284154977222498,0.00681069866041225,0.196427766000631,0.018808353254251,0.13725136439493,0.0405968468468468
"714","Columbus, OH","19234",55578,34.1,22802,43569,69800,110718,1409294,1007227,64825,270864,60414,46292,355011,57698,328605,0.4672,840," OH","Columbus",0.714703248576947,0.192198363152046,0.0428682730501939,0.045998209032324,0.0328476527963647,0.251906983212871,0.0533900132230457
"715","Columbus, TX","19261",42167,45.6,21624,36750,51538,81767,3981,2941,1025,751,0,18,509,55,1521,0.4351,658," TX","Columbus",0.738759105752324,0.188646068826928,0,0.257472996734489,0.00452147701582517,0.127857322280834,0.0223577235772358
"716","Columbus, WI","19288",59306,37.2,33946,50380,69905,94420,6564,6263,168,99,92,93,1347,290,1305,0.3656,815," WI","Columbus",0.954143814747105,0.0150822669104205,0.0140158439975625,0.0255941499085923,0.0141681901279707,0.205210237659963,0.0551435634150979
"717","Columbus AFB, MS","19315",49474,26,20317,37052,58241,79859,3317,2123,122,937,98,104,582,90,582,0.3876,938," MS","Columbus AFB",0.640036177268616,0.28248417244498,0.0295447693699126,0.0367802230931565,0.0313536328007235,0.175459752788664,0.0329067641681901
"718","Colusa, CA","19342",44536,33.7,19615,36440,53724,94122,6898,4955,3778,89,137,324,718,480,2042,0.4479,766," CA","Colusa",0.718324151928095,0.012902290518991,0.0198608292258626,0.547694984053349,0.046970136271383,0.104088141490287,0.0988467874794069
"719","Colville, WA","19369",34309,42.9,15497,27841,37826,75304,4971,4566,257,23,43,132,658,113,1934,0.4529,611," WA","Colville",0.91852745926373,0.00462683564675116,0.00865017099175216,0.0516998591832629,0.0265540132770066,0.132367732850533,0.0372077708264735
"720","Comanche, TX","19396",29926,38.1,13169,23186,35069,58125,3859,3650,1597,16,0,87,309,131,1585,0.4382,539," TX","Comanche",0.945840891422648,0.00414615185281161,0,0.413837781808759,0.0225447006996631,0.0800725576574242,0.0576077396657872
"721","Comfort, TX","19423",38650,31.7,23236,33407,42400,111901,3338,3194,1895,0,0,14,301,22,1107,0.4509,917," TX","Comfort",0.956860395446375,0,0,0.567705212702217,0.00419412822049131,0.0901737567405632,0.00986104885701479
"722","Commerce, GA","19450",37961,34.8,14388,27667,44962,70786,6560,5314,687,757,51,122,481,357,2120,0.4353,801," GA","Commerce",0.810060975609756,0.115396341463415,0.00777439024390244,0.104725609756098,0.0185975609756098,0.0733231707317073,0.0804054054054054
"723","Commerce, TX","19477",18070,23.6,8326,13662,27449,57821,8057,5065,1199,1879,433,210,926,592,3257,0.5438,704," TX","Commerce",0.628645897976915,0.233213354846717,0.0537420876256671,0.148814695296016,0.0260642919200695,0.114931115799926,0.123333333333333
"724","Concord, CA","19504",101696,40.9,41909,79321,124753,191170,634475,446960,90200,18196,113862,31393,236967,25265,175285,0.4503,1562," CA","Concord",0.704456440364081,0.0286788289530714,0.179458607510146,0.1421647819063,0.0494787028645731,0.373485164900114,0.0550207974912346
"725","Concord, NH","19531",53680,39.1,24623,43449,68590,103659,43669,40158,668,1019,1386,861,10491,1604,12663,0.4371,964," NH","Concord",0.919599716045707,0.0233346309739174,0.0317387620508828,0.0152968925324601,0.0197165036982757,0.240239071194669,0.0517319228536412
"726","Concord, NC","19558",46452,36.9,19958,37009,55857,87685,218746,158222,24592,44005,2900,4235,31149,12932,62394,0.432,776," NC","Concord",0.723313797738016,0.201169392811754,0.0132573852779022,0.112422627156611,0.019360354017902,0.142398032421164,0.0827108063855915
"727","Concordia, KS","19585",34731,37.4,16260,28750,43571,65583,5329,5082,247,21,76,110,636,208,1755,0.3909,568," KS","Concordia",0.953649840495402,0.00394070182022894,0.0142615875398761,0.0463501595045975,0.0206417714392944,0.119346969412648,0.0581980973698937
"728","Conesus Lake, NY","19597",58979,44.4,23700,46878,79208,108763,4632,4499,57,7,75,19,1015,157,1400,0.4114,841," NY","Conesus Lake",0.971286701208981,0.00151122625215889,0.0161917098445596,0.0123056994818653,0.00410189982728843,0.21912780656304,0.0485767326732673
"729","Conneaut, OH","19612",35512,39.9,17374,29151,44384,66383,14284,12845,354,1016,38,321,1212,669,5969,0.4133,596," OH","Conneaut",0.899257910949314,0.0711285354242509,0.0026603192383086,0.0247829739568748,0.0224726967236068,0.0848501820218426,0.0804570054119062
"730","Connell, WA","19666",50625,30.8,21054,40821,58925,85250,4590,2516,2208,194,59,152,161,127,1580,0.3865,662," WA","Connell",0.548148148148148,0.0422657952069717,0.0128540305010893,0.481045751633987,0.0331154684095861,0.0350762527233115,0.0421926910299003
"731","Connersville, IN","19693",32595,40.1,14441,25107,41271,64920,15283,14644,161,371,85,147,963,1062,5540,0.4421,634," IN","Connersville",0.958188837270169,0.0242753386115292,0.00556173526140156,0.01053458090689,0.0096185303932474,0.0630111889027024,0.109001334291286
"732","Conrad, MT","19720",36080,43.8,18134,30240,49541,72800,2612,2409,75,25,18,71,377,56,814,0.4083,580," MT","Conrad",0.922281776416539,0.00957120980091884,0.00689127105666156,0.0287136294027565,0.0271822358346095,0.144333843797856,0.0311457174638487
"733","Conroe--The Woodlands, TX","19755",75159,35,30879,58857,92882,153342,262896,222731,59889,15481,8783,6089,66236,6909,64910,0.4639,1052," TX","Conroe--The Woodlands",0.847220954293713,0.058886403749011,0.033408648286775,0.227804911447873,0.0231612500760757,0.251947538190007,0.0348964068166436
"734","Constantine, MI","19774",42344,40.1,17853,35012,48880,71844,3871,3628,196,152,48,13,191,190,1237,0.3871,632," MI","Constantine",0.937225523120641,0.0392663394471713,0.0123998966675278,0.0506329113924051,0.00335830534745544,0.0493412554895376,0.0721336370539104
"735","Conway, AR","19801",46153,28.2,19138,36297,59420,91297,67983,53093,3430,11229,1325,1604,12888,2513,17664,0.4589,725," AR","Conway",0.780974655428563,0.165173646352765,0.0194901666593119,0.0504537899180678,0.0235941338275745,0.189576805966197,0.0499413740336652
"736","Cookeville, TN","19828",32693,32.1,12481,25119,43687,71868,45397,41909,2560,1700,573,896,6879,2241,16089,0.5401,608," TN","Cookeville",0.923166729079014,0.0374474084190585,0.0126219794259533,0.0563913915016411,0.0197369870255744,0.151529836773355,0.0764637641599563
"737","Coolidge, AZ","19882",39833,34.6,17444,29710,49284,76129,11214,8861,4347,594,58,427,702,581,3727,0.4094,755," AZ","Coolidge",0.790172998038167,0.0529695024077047,0.0051721062957018,0.387640449438202,0.0380774032459426,0.0626003210272873,0.0776011753706424
"738","Coopersville, MI","19909",49449,31.5,22919,38455,58612,82224,4107,3945,176,3,0,144,415,150,997,0.3501,649," MI","Coopersville",0.960555149744339,0.000730460189919649,0,0.0428536644752861,0.0350620891161432,0.101046992938885,0.0482315112540193
"739","Coos Bay, OR","19936",36986,42.9,16594,29502,46355,71267,30465,25956,2444,516,632,1641,4078,1737,11212,0.4553,728," OR","Coos Bay",0.851994091580502,0.0169374692269818,0.0207451173477761,0.0802232069588052,0.0538650910881339,0.133858526177581,0.0902197060198411
"740","Coquille, OR","19990",43031,45.1,17118,34940,49638,68917,4296,3939,272,0,9,131,662,273,1801,0.4011,870," OR","Coquille",0.916899441340782,0,0.00209497206703911,0.0633147113594041,0.0304934823091248,0.154096834264432,0.109418837675351
"741","Corcoran, CA","20044",34545,35.8,15675,27426,41485,66199,24854,16571,15929,3275,306,1026,460,876,15337,0.4299,752," CA","Corcoran",0.66673372495373,0.131769534079021,0.012311901504788,0.640902872777018,0.0412810815160538,0.0185080872294198,0.0920458127561206
"742","Cordele, GA","20071",20936,31.3,8302,15727,27229,49996,12570,3204,444,8930,215,187,691,1220,3823,0.5523,583," GA","Cordele",0.254892601431981,0.710421638822593,0.0171042163882259,0.0353221957040573,0.0148766905330151,0.0549721559268099,0.139476391905796
"743","Corinth, MS","20098",28337,39,11272,21249,35494,60091,12864,8823,817,3102,12,533,1424,765,4495,0.5101,573," MS","Corinth",0.685867537313433,0.241138059701493,0.000932835820895522,0.0635105721393035,0.0414334577114428,0.110696517412935,0.0914087704624208
"744","Corinth, NY","20125",48170,37.5,21567,40341,61477,88241,4123,3967,89,30,25,87,383,59,1286,0.3719,836," NY","Corinth",0.962163473199127,0.00727625515401407,0.00606354596167839,0.0215862236235751,0.0211011399466408,0.0928935241329129,0.0207966161438139
"745","Cornelia--Baldwin, GA","20152",34512,33.6,15917,28482,42139,70700,18341,14840,4548,1577,511,288,1455,650,7324,0.4279,621," GA","Cornelia--Baldwin",0.809116187776021,0.0859822256147429,0.0278610762771932,0.247969031132436,0.0157025243988877,0.0793304618068808,0.0589997276935645
"746","Corning, AR","20179",25861,47.4,13719,19713,33959,51185,3060,3004,44,0,0,12,231,62,1177,0.4451,428," AR","Corning",0.981699346405229,0,0,0.0143790849673203,0.00392156862745098,0.0754901960784314,0.0329261816250664
"747","Corning, CA","20206",37049,26.8,19657,29159,45171,63308,8230,6845,3704,162,66,322,478,773,2169,0.3825,848," CA","Corning",0.831713244228433,0.0196840826245443,0.00801944106925881,0.450060753341434,0.0391251518833536,0.0580801944106926,0.127536710113843
"748","Corning, NY","20233",53745,38.9,21963,42106,66917,101153,20841,18522,463,630,1145,465,4931,677,5495,0.4616,738," NY","Corning",0.888728947747229,0.0302288757737153,0.0549397821601651,0.0222158245765558,0.0223117892615517,0.236600930857444,0.0441157304835136
"749","Corona de Tucson, AZ","20247",91947,33,62378,79933,102222,125897,6983,5616,1215,816,120,334,1533,179,1378,0.2958,1230," AZ","Corona de Tucson",0.804238865816984,0.116855219819562,0.0171845911499356,0.173993985393098,0.0478304453673206,0.219533151940427,0.031935771632471
"750","Corpus Christi, TX","20287",50505,34.4,21065,39092,62450,100150,327915,280620,195954,14474,6073,6999,44593,11460,88162,0.4578,876," TX","Corpus Christi",0.855770550295046,0.0441394873671531,0.018520043303905,0.597575591235534,0.0213439458396231,0.135989509476541,0.0477991933364755
"751","Corry, PA","20314",32787,40,12584,26398,41630,60275,6863,6475,29,46,26,277,688,380,2288,0.4047,747," PA","Corry",0.943464957015882,0.0067026081888387,0.00378843071543057,0.00422555733644179,0.0403613580067026,0.10024770508524,0.0830601092896175
"752","Corsicana, TX","20341",37213,33.3,16721,30137,45165,71075,22683,15229,7275,4939,212,585,2433,1413,6363,0.4468,685," TX","Corsicana",0.671383855751003,0.217740157827448,0.00934620641008685,0.320724771855575,0.0257902393863246,0.107260944319534,0.0865808823529412
"753","Cortez, CO","20368",38662,35.2,16947,31266,45680,71546,8592,6734,1352,6,94,262,1203,495,2127,0.4114,617," CO","Cortez",0.783752327746741,0.000698324022346369,0.0109404096834264,0.157355679702048,0.0304934823091248,0.140013966480447,0.0765661252900232
"754","Cortland, NY","20395",42843,31.1,16578,32711,51436,79958,27472,25215,1013,872,172,749,3830,1000,9517,0.426,665," NY","Cortland",0.917843622597554,0.0317414094350612,0.00626092020966803,0.0368739079790332,0.0272641234711706,0.139414676761794,0.0556947925368978
"755","Corvallis, OR","20422",42948,28,13684,30942,57996,98847,62806,54145,4763,674,4826,1933,19286,2845,22100,0.5105,850," OR","Corvallis",0.862099162500398,0.0107314587778238,0.0768397923765245,0.0758367034996656,0.0307773142693373,0.307072572684138,0.0698914164987963
"756","Corydon, IN","20449",35153,35.8,13597,24690,47393,80563,5648,5364,189,64,49,155,471,305,1863,0.4408,598," IN","Corydon",0.94971671388102,0.0113314447592068,0.00867563739376771,0.0334631728045326,0.027443342776204,0.0833923512747875,0.0805812417437252
"757","Coshocton, OH","20476",30906,41.3,14113,23018,37787,61843,11337,10710,116,193,73,311,967,537,4422,0.4651,567," OH","Coshocton",0.944694363588251,0.0170239040310488,0.00643909323454177,0.0102319837699568,0.0274323013142807,0.085295933668519,0.0776572668112798
"758","Cottage Grove, OR","20503",35477,40,14945,28996,45098,69611,11493,10263,1083,2,51,763,910,632,4017,0.4204,830," OR","Cottage Grove",0.892978334638476,0.000174018968067519,0.00443748368572174,0.0942312712085617,0.0663882363177586,0.0791786304707213,0.0845371856607812
"759","Cottonport, LA","20530",27723,33.5,14286,18269,35288,73750,2516,970,32,1392,0,109,123,80,1275,0.5072,669," LA","Cottonport",0.385532591414944,0.553259141494436,0,0.0127186009538951,0.0433227344992051,0.0488871224165342,0.064464141821112
"760","Cottonwood, CA","20584",45425,35.6,20952,35265,50787,69022,5529,4672,1057,21,0,175,280,547,2149,0.4017,973," CA","Cottonwood",0.844999095677338,0.00379815518176886,0,0.191173810815699,0.0316512931814071,0.0506420690902514,0.161834319526627
"761","Cottonwood--Verde Village, AZ","20595",39487,46.7,18574,31505,48369,76428,28705,24921,6994,249,98,1255,3715,1369,10611,0.425,829," AZ","Cottonwood--Verde Village",0.86817627591012,0.00867444696045985,0.00341403936596412,0.243650931893398,0.0437206061661731,0.12941996167915,0.075660439924837
"762","Cotulla, TX","20611",35205,26.9,11700,26713,37411,81286,4575,3388,4226,10,0,20,269,133,1123,0.5901,411," TX","Cotulla",0.740546448087432,0.00218579234972678,0,0.923715846994536,0.00437158469945355,0.0587978142076503,0.0385283893395133
"763","Country Lakes, MD","20632",108750,34.7,68675,90500,116100,142192,2894,2810,109,66,12,0,218,196,558,0.2624,NA," MD","Country Lakes",0.970974429854872,0.022805805114029,0.00414651002073255,0.0376641326883207,0,0.0753282653766413,0.0839041095890411
"764","Covington, IN","20665",49861,40.7,24839,40700,59769,87705,2641,2584,13,22,7,23,303,143,814,0.4223,655," IN","Covington",0.97841726618705,0.00833017796289284,0.00265051117001136,0.00492237788716395,0.00870882241575161,0.114729269216206,0.0782703886152162
"765","Covington, OH","20692",40457,38.9,23063,35629,49690,73320,2737,2686,13,0,0,38,162,135,849,0.3821,673," OH","Covington",0.981366459627329,0,0,0.00474972597734746,0.0138838143953233,0.0591888929484837,0.0715042372881356
"766","Covington, TN","20719",24866,40.8,12494,20986,32294,51453,8449,3296,275,5010,0,74,447,766,3266,0.4289,620," TN","Covington",0.390105337909812,0.592969582199077,0,0.0325482305598296,0.00875843295064505,0.0529056693099775,0.147790854717345
"767","Covington, VA","20746",41369,44.9,17750,33482,49234,81744,8180,7043,159,906,21,166,758,165,2971,0.4287,610," VA","Covington",0.861002444987775,0.110757946210269,0.00256723716381418,0.0194376528117359,0.0202933985330073,0.0926650366748166,0.0316759454789787
"768","Coxsackie, NY","20773",56061,31.2,21875,40929,67462,113438,6365,4520,888,1606,15,124,637,126,3679,0.431,723," NY","Coxsackie",0.710133542812254,0.252317360565593,0.002356637863315,0.139512961508248,0.0194815396700707,0.100078554595444,0.046909903201787
"769","Cozad, NE","20800",42500,39.5,21402,34333,49750,80018,3863,3630,444,133,0,72,504,62,1085,0.4039,592," NE","Cozad",0.939684183277246,0.0344292001035465,0,0.114936577789283,0.0186383639658297,0.130468547760808,0.0223182145428366
"770","Craig, CO","20827",48717,32.6,20028,37813,61946,94616,9695,9085,1595,25,115,91,843,288,2204,0.414,732," CO","Craig",0.937080969571944,0.00257864878803507,0.0118617844249613,0.164517792676637,0.00938628158844765,0.0869520371325425,0.0384461353624349
"771","Crane, TX","20854",50812,33.8,22000,42989,61213,90592,4219,2668,2497,160,0,56,309,139,1199,0.4445,626," TX","Crane",0.632377340602038,0.0379236785968239,0,0.591846409101683,0.0132732875088884,0.0732401042901161,0.0460264900662252
"772","Crawfordsville, IN","20881",35081,37.4,17676,28711,41704,67838,18185,17084,1238,347,102,255,1761,956,5958,0.4164,649," IN","Crawfordsville",0.939455595270828,0.0190816607093759,0.00560901842177619,0.0680780863348914,0.0140225460544405,0.0968380533406654,0.0781876175676781
"773","Crawfordville, FL","20890",56804,32.5,30227,44478,66019,92460,9032,7097,124,1519,124,292,1379,157,1727,0.3645,931," FL","Crawfordville",0.785761736049601,0.16817980513729,0.0137289636846767,0.0137289636846767,0.0323294951284322,0.152679362267493,0.021492128678987
"774","Crescent City, CA","20908",38770,36.6,12885,27678,53237,79800,19473,14869,3936,847,519,1808,2041,901,9261,0.461,860," CA","Crescent City",0.763570071380886,0.0434961228367483,0.0266522877830843,0.202126020643969,0.0928465054177579,0.104811790684538,0.0882295338817078
"775","Crescent City, FL","20935",29884,41.3,12378,23067,33354,54875,3036,2023,696,606,33,164,185,93,1501,0.4225,580," FL","Crescent City",0.666337285902503,0.199604743083004,0.0108695652173913,0.229249011857708,0.0540184453227932,0.060935441370224,0.060586319218241
"776","Cresco, IA","20962",45552,40.3,17705,35476,52742,78839,3476,3385,134,6,11,72,331,83,876,0.4078,625," IA","Cresco",0.973820483314154,0.00172612197928654,0.00316455696202532,0.0385500575373993,0.0207134637514384,0.0952243958573073,0.0319230769230769
"777","Cresson, PA","20980",43878,35.6,17839,33381,53336,79000,10494,8868,455,1307,47,141,961,288,5881,0.4217,588," PA","Cresson",0.84505431675243,0.124547360396417,0.00447874976176863,0.0433581093958452,0.0134362492853059,0.0915761387459501,0.0624322566659441
"778","Creston, IA","21016",41059,39.7,19111,31571,50780,80330,7445,7196,209,156,10,60,867,254,1995,0.4109,596," IA","Creston",0.966554734721289,0.0209536601746138,0.00134318334452653,0.0280725319006044,0.00805910006715917,0.11645399597045,0.046605504587156
"779","Crestview, FL","21043",56207,31.9,21178,45293,66229,95034,33936,25280,2352,5369,839,1781,4504,1350,9066,0.415,1043," FL","Crestview",0.744931636020745,0.158209570957096,0.0247230080150872,0.0693069306930693,0.05248114097124,0.132720414898633,0.0542822677925211
"780","Creswell, OR","21070",48428,36.6,23654,37209,57473,85714,6120,5627,367,33,43,272,679,348,1873,0.3823,938," OR","Creswell",0.919444444444444,0.0053921568627451,0.00702614379084967,0.0599673202614379,0.0444444444444444,0.110947712418301,0.0819401930774664
"781","Crete, NE","21097",37963,31.3,17304,31481,48778,67406,6956,6049,2374,89,334,114,502,253,2057,0.4104,684," NE","Crete",0.8696089706728,0.0127947096032202,0.0480161012075906,0.341288096607246,0.0163887291546866,0.0721679125934445,0.0516431924882629
"782","Crewe, VA","21124",39821,38.1,16891,29036,52957,70442,4170,2299,202,1680,13,88,385,169,2026,0.4472,772," VA","Crewe",0.551318944844125,0.402877697841727,0.00311750599520384,0.0484412470023981,0.0211031175059952,0.092326139088729,0.0788246268656716
"783","Crisfield, MD","21151",30227,40.2,10484,21676,41276,72167,3582,2208,51,1045,29,268,301,176,1302,0.479,488," MD","Crisfield",0.61641541038526,0.291736460078169,0.00809603573422669,0.0142378559463987,0.0748185371300949,0.0840312674483529,0.0771929824561404
"784","Crittenden, KY","21178",42888,29,14673,38007,53300,85872,4170,3887,74,0,0,136,329,135,954,0.4083,759," KY","Crittenden",0.932134292565947,0,0,0.0177458033573141,0.0326139088729017,0.0788968824940048,0.0419776119402985
"785","Crockett, TX","21205",22827,36.8,9791,17192,28914,52000,6154,2561,816,3014,5,173,633,372,2260,0.4944,650," TX","Crockett",0.416152096197595,0.489762755931102,0.0008124796880078,0.132596685082873,0.0281117972050699,0.102859928501787,0.0955315870570108
"786","Crooked Lake Park, FL","21220",36777,39.1,19747,31638,48662,77472,4087,3499,358,379,92,71,628,156,1642,0.472,813," FL","Crooked Lake Park",0.856129190114999,0.0927330560313188,0.0225103988255444,0.0875948128211402,0.0173721556153658,0.153657939809151,0.0638036809815951
"787","Crookston, MN","21232",48250,37.7,17930,39074,58833,97917,7705,6676,900,91,136,232,1117,325,2278,0.4447,583," MN","Crookston",0.866450356911097,0.0118105126541207,0.0176508760545101,0.116807268007787,0.0301103179753407,0.144970798182998,0.0598857564031693
"788","Crooksville, OH","21259",32839,32.2,10792,25244,38814,59517,5260,5146,9,0,26,88,174,366,1792,0.4067,428," OH","Crooksville",0.978326996197719,0,0.00494296577946768,0.00171102661596958,0.0167300380228137,0.0330798479087452,0.105536332179931
"789","Crosby, MN","21286",27641,43,13564,21377,37034,66414,3819,3579,74,19,69,102,347,190,1291,0.5032,603," MN","Crosby",0.937156323644933,0.00497512437810945,0.0180675569520817,0.0193768002094789,0.0267085624509034,0.0908614820633674,0.0751582278481013
"790","Cross City, FL","21313",30795,36.8,14667,24448,42205,58000,3892,2480,254,1301,3,99,125,108,2223,0.4794,596," FL","Cross City",0.637204522096608,0.334275436793422,0.000770811921891059,0.065262076053443,0.0254367934224049,0.0321171634121274,0.0647094068304374
"791","Crossett, AR","21340",31119,38.5,14512,24199,36219,63823,7783,5251,267,2490,0,40,728,495,2605,0.4425,584," AR","Crossett",0.674675574971091,0.31992804831042,0,0.0343055377103944,0.00513940639856097,0.0935371964538096,0.0955967555040556
"792","Crossville, TN","21394",33469,42.6,13415,25458,41361,64799,16317,15873,862,84,20,258,1909,561,6664,0.4834,601," TN","Crossville",0.972789115646258,0.00514800514800515,0.0012257155114298,0.0528283385426243,0.0158117300974444,0.116994545565974,0.0581166476742981
"793","Crowley, LA","21421",28602,34.1,10582,20544,36608,68882,14653,9574,527,4388,20,251,924,1026,5134,0.5152,551," LA","Crowley",0.653381560090084,0.29946086125708,0.00136490820992288,0.035965331331468,0.0171295980345322,0.0630587592984372,0.107784431137725
"794","Crozet, VA","21448",81875,38.7,38882,69795,92429,128857,6173,5397,282,152,377,247,1956,73,1240,0.3494,1336," VA","Crozet",0.874291268427021,0.0246233597926454,0.061072412117285,0.0456828122468816,0.0400129596630488,0.3168637615422,0.014798297182242
"795","Crystal City, TX","21502",25579,29.8,9413,19599,35870,55667,7370,6799,7205,7,0,30,393,138,2079,0.462,438," TX","Crystal City",0.922523744911805,0.000949796472184532,0,0.977611940298508,0.00407055630936228,0.0533242876526459,0.0260820260820261
"796","Crystal River, FL","21529",36647,54.8,13704,30705,54110,84153,4894,4246,138,224,358,56,735,286,2240,0.5147,818," FL","Crystal River",0.867592970984879,0.0457703310175725,0.0731507968941561,0.0281977932161831,0.0114425827543931,0.15018389865141,0.107761868877167
"797","Crystal Springs, MS","21556",32952,32.7,9426,19554,41387,66634,5779,1785,421,3689,0,45,434,404,1639,0.5007,730," MS","Crystal Springs",0.308876968333622,0.638345734556152,0,0.0728499740439522,0.00778681432773836,0.0750994981830767,0.0975845410628019
"798","Cuba, MO","21583",34057,33.2,12134,26630,42336,63641,3093,3090,66,3,0,0,263,204,998,0.4284,581," MO","Cuba",0.999030067895247,0.000969932104752667,0,0.0213385063045587,0,0.0850307145166505,0.0973747016706444
"799","Cuero, TX","21610",34116,35.6,15606,28644,54393,91526,7363,4019,3153,1260,2,112,707,317,2625,0.5133,687," TX","Cuero",0.545837294581013,0.171125899769116,0.00027162841233193,0.428222192041288,0.0152111910905881,0.0960206437593372,0.0669058674546222
"800","Cullman, AL","21637",37120,38.8,14010,26080,43419,72157,18316,17284,1809,280,70,262,2227,514,6599,0.4724,589," AL","Cullman",0.943655820048045,0.0152871806071195,0.00382179515177986,0.0987661061367111,0.0143044332823761,0.121587682900197,0.0438678842707178
"801","Cullowhee, NC","21664",24843,22.4,9566,21254,35375,64158,9848,8510,751,691,141,227,1362,491,4275,0.4903,626," NC","Cullowhee",0.864134849715678,0.0701665312753859,0.0143176279447604,0.0762591389114541,0.0230503655564582,0.138302193338749,0.0881033554638435
"802","Culpeper, VA","21691",53233,32.5,27250,43013,63769,104306,18348,12276,2624,3917,364,1143,2713,608,4204,0.4351,993," VA","Culpeper",0.669064748201439,0.213483758447787,0.0198386745149335,0.143012862437323,0.0622956180510137,0.14786352735993,0.0429864253393665
"803","Cumberland, KY","21718",24579,44.2,11946,20038,36469,60281,3770,3529,4,209,0,27,334,98,1861,0.4479,432," KY","Cumberland",0.936074270557029,0.0554376657824934,0,0.00106100795755968,0.00716180371352785,0.0885941644562334,0.0513357778941854
"804","Cumberland, MD--WV--PA","21745",35823,40.1,14102,27938,46150,77822,50279,43591,667,4862,526,1161,6494,2332,20316,0.4844,626," MD--WV--PA","Cumberland",0.86698223910579,0.0967004117026989,0.0104616241373138,0.0132659758547306,0.0230911513753257,0.129159291155353,0.0778293228314922
"805","Curwensville, PA","21760",34386,47.6,16383,29613,41807,65389,2678,2642,49,1,0,0,260,125,1011,0.383,502," PA","Curwensville",0.9865571321882,0.000373412994772218,0,0.0182972367438387,0,0.0970873786407767,0.0749850029994001
"806","Cushing, OK","21772",37288,32.2,18133,31223,48000,69754,7128,6024,466,91,0,550,652,338,2295,0.4028,683," OK","Cushing",0.845117845117845,0.0127665544332211,0,0.0653759820426487,0.0771604938271605,0.0914702581369248,0.0699358576453549
"807","Cut Bank, MT","21799",38432,30.7,16264,26182,55310,88028,2947,2145,101,0,22,60,413,47,686,0.4913,605," MT","Cut Bank",0.727858839497794,0,0.00746521886664404,0.0342721411605022,0.0203596878181201,0.140142517814727,0.0207872622733304
"808","Cuthbert, GA","21826",23984,38.5,9095,14803,27085,51525,3281,423,15,2733,41,78,195,264,1520,0.7652,595," GA","Cuthbert",0.128924108503505,0.832977750685767,0.0124961901859189,0.00457177689728741,0.0237732398658945,0.0594330996647364,0.149914821124361
"809","Cynthiana, KY","21853",27514,39.7,10529,20754,33325,64645,6300,5803,86,330,4,140,549,256,2393,0.4904,530," KY","Cynthiana",0.921111111111111,0.0523809523809524,0.000634920634920635,0.0136507936507937,0.0222222222222222,0.0871428571428571,0.0655234195034553
"810","Dahlgren, VA--MD","21928",90045,30.4,36772,63000,93261,135357,3934,2510,380,1053,147,94,579,224,715,0.3516,1225," VA--MD","Dahlgren",0.638027452974072,0.267666497203864,0.0373665480427046,0.0965937976614133,0.0238942552109812,0.147178444331469,0.0695868282075179
"811","Dahlonega, GA","21934",26595,23.6,9952,21424,30647,60569,4681,4246,652,220,8,207,472,121,2072,0.4615,710," GA","Dahlonega",0.907071138645589,0.0469985045930357,0.00170903653065584,0.139286477248451,0.0442213202307199,0.100833155308695,0.0463779225756995
"812","Daingerfield, TX","21961",33494,36.6,14719,26049,45628,65611,4831,3034,533,1345,9,110,354,165,1608,0.4518,601," TX","Daingerfield",0.6280273235355,0.278410267025461,0.0018629683295384,0.110329124404885,0.0227696129165804,0.073276754295177,0.0511945392491468
"813","Dalhart, TX","21988",47596,33.6,25131,38380,64440,92017,8012,6785,2944,124,46,283,1007,248,1753,0.4337,724," TX","Dalhart",0.846854717923115,0.0154767848227659,0.00574138791812282,0.36744882675986,0.0353220169745382,0.125686470294558,0.0396229429621345
"814","Dallas, OR","22015",50223,39.5,20663,36555,58459,84524,15457,14493,676,23,142,592,1757,992,5189,0.4126,734," OR","Dallas",0.937633434689785,0.00148799896487029,0.00918677621789481,0.0437342304457527,0.0382997994436178,0.113670181794656,0.0966108297623685
"815","Dallas--Fort Worth--Arlington, TX","22042",57310,33.6,24956,45290,71555,115049,5331350,3502731,1622088,918687,334057,148498,1092910,219576,1216695,0.4738,921," TX","Dallas--Fort Worth--Arlington",0.657006386750073,0.17231789321654,0.0626589888114643,0.304254644695996,0.0278537331069992,0.204996858206646,0.053364376843259
"816","Dalton, GA","22069",37926,33.5,17659,30636,48297,77173,85743,73311,33806,4245,1066,2356,7340,4799,22255,0.4691,669," GA","Dalton",0.855008572128337,0.0495084146810818,0.0124325017785708,0.394271252463758,0.0274774617169915,0.0856046557736492,0.0755890877016129
"817","Dalton, OH","22079",46118,40.9,23571,37306,55274,77679,2763,2713,101,35,0,3,361,48,860,0.396,614," OH","Dalton",0.981903727832067,0.0126673905175534,0,0.0365544697792255,0.001085776330076,0.130655085052479,0.0252233315817131
"818","Danbury, CT--NY","22096",78740,39.9,33160,62668,96821,146498,171479,133260,29009,7639,7678,5190,43480,8165,38706,0.4401,1269," CT--NY","Danbury",0.777121396789111,0.0445477288764222,0.0447751619731862,0.169169402667382,0.0302660967232139,0.253558744802571,0.0614959366738719
"819","Dandridge, TN","22110",48555,38.1,23276,37895,59513,89341,5135,4806,170,175,0,96,591,193,1766,0.3991,680," TN","Dandridge",0.935929892891918,0.0340798442064265,0,0.0331061343719572,0.0186952288218111,0.115092502434275,0.0572870287919264
"820","Dansville, NY","22177",37348,48.9,14567,28654,47903,76908,4990,4938,109,40,0,12,722,265,1717,0.4301,663," NY","Dansville",0.989579158316633,0.00801603206412826,0,0.0218436873747495,0.00240480961923848,0.144689378757515,0.0809654750992973
"821","Danville, IL","22204",37586,37.8,16609,29920,47770,73799,50365,37085,2535,10803,595,829,4566,2852,17240,0.4382,650," IL","Danville",0.736324828750124,0.214494192395513,0.0118137595552467,0.0503325722227737,0.0164598431450412,0.0906581951752209,0.0860981132075472
"822","Danville, KY","22231",38278,38.7,16810,31035,47767,80911,19470,16858,601,1717,139,637,2765,842,6790,0.4489,636," KY","Danville",0.865844889573703,0.0881869542886492,0.0071391884951207,0.0308680020544427,0.0327170005136107,0.142013353877761,0.066403785488959
"823","Danville, VA--NC","22253",34031,42.5,14209,26982,44106,71071,48933,24946,1464,21594,521,1054,5884,3035,17085,0.4741,603," VA--NC","Danville",0.509799113072977,0.441297284041444,0.0106472114932663,0.0299184599350132,0.0215396562646885,0.120246050722416,0.0952964079377041
"824","Daphne--Fairhope, AL","22285",61726,40.1,27972,50317,75361,120844,64145,54385,2485,7204,712,997,18773,2045,18105,0.4374,1051," AL","Daphne--Fairhope",0.847844726790864,0.11230805206953,0.0110998518980435,0.0387403538857276,0.0155429105931873,0.292665055733105,0.0444178974804518
"825","Darbydale, OH","22301",51496,36.7,21795,40351,56818,91733,5921,4430,82,1269,14,189,199,180,3944,0.3949,756," OH","Darbydale",0.748184428306029,0.214321905083601,0.00236446546191522,0.0138490119912177,0.0319202837358554,0.0336091876372234,0.0910470409711684
"826","Darien, GA","22312",31016,39.4,14401,24100,41695,63889,5054,2421,214,2198,59,106,201,371,1716,0.3993,552," GA","Darien",0.479026513652552,0.434903047091413,0.0116739216462208,0.0423426988523941,0.0209734863474476,0.0397704788286506,0.11114439784302
"827","Davenport, IA--IL","22366",48946,37.6,21557,38849,60214,94737,282640,233285,27165,27116,6277,8403,51262,10454,79053,0.4481,688," IA--IL","Davenport",0.825378573450326,0.0959382960656666,0.0222084630625531,0.0961116614774979,0.0297303990942542,0.181368525332579,0.0513490547038858
"828","David City, NE","22393",44222,38.8,19382,38009,50750,85545,2862,2725,139,49,0,2,278,51,762,0.5331,574," NE","David City",0.952131376659679,0.017120894479385,0,0.0485674353598882,0.000698812019566737,0.0971348707197764,0.0242857142857143
"829","Davis, CA","22420",55709,24.4,17994,40945,80005,142540,74044,45830,10224,1726,17230,5099,25504,2904,27405,0.5335,1236," CA","Davis",0.61895629625628,0.0233104640484037,0.232699475987251,0.138080060504565,0.068864458970342,0.344443844200746,0.0622654859666802
"830","Davis, OK","22427",43490,38.2,21719,37036,56000,79080,2650,1947,131,128,15,322,328,54,767,0.3762,589," OK","Davis",0.734716981132076,0.0483018867924528,0.00566037735849057,0.0494339622641509,0.121509433962264,0.12377358490566,0.0286776420605417
"831","Davis Junction, IL","22435",63694,34.7,34833,55071,72339,105263,2765,2574,486,83,17,76,321,191,565,0.3225,1181," IL","Davis Junction",0.930922242314647,0.0300180831826401,0.00614828209764919,0.175768535262206,0.0274864376130199,0.116094032549729,0.0868181818181818
"832","Dawson, GA","22447",22820,28.9,9590,15188,26542,48250,4350,590,124,3695,19,46,126,420,1431,0.4873,553," GA","Dawson",0.135632183908046,0.849425287356322,0.00436781609195402,0.0285057471264368,0.0105747126436782,0.0289655172413793,0.143884892086331
"833","Dayton, NV","22501",50229,39.7,27676,42176,61276,91207,9954,8853,1845,56,47,490,1319,687,2637,0.3703,998," NV","Dayton",0.889391199517782,0.00562587904360056,0.00472171991159333,0.185352622061483,0.0492264416315049,0.132509543901949,0.0938909389093891
"834","Dayton, OH","22528",46882,38.7,19436,36629,58795,94825,727287,563771,19238,120838,16661,19327,136088,35465,215300,0.4578,754," OH","Dayton",0.775169912290471,0.166148989326084,0.0229084254221511,0.0264517308847814,0.0265741034832191,0.187117327822441,0.0692693369167577
"835","Dayton, TN","22555",30331,35.5,14141,24167,38553,64674,11321,10595,724,422,11,210,733,604,4219,0.4377,556," TN","Dayton",0.935871389453229,0.0372758590230545,0.000971645614345022,0.0639519477077997,0.0185495980920413,0.0647469304831729,0.0850464657842861
"836","Dayton, TX","22582",51890,34.7,18988,36855,65082,88761,10459,7561,1971,2149,204,72,488,204,5295,0.4358,699," TX","Dayton",0.722918061000096,0.205468974089301,0.0195047327660388,0.188450138636581,0.00688402332919017,0.0466583803422889,0.0395042602633617
"837","Dayton, WA","22609",38179,44.4,17752,30778,46882,67845,3001,2750,224,3,16,88,423,125,1121,0.4479,712," WA","Dayton",0.916361212929024,0.000999666777740753,0.00533155614795068,0.0746417860713096,0.0293235588137288,0.140953015661446,0.0664893617021277
"838","Decatur, AL","22690",42400,37.1,18115,33913,53917,85346,69575,51560,7676,13371,566,1893,10069,4057,19876,0.4489,599," AL","Decatur",0.741070786920589,0.192181099532878,0.00813510600071865,0.110326985267697,0.0272080488681279,0.144721523535753,0.0816314211553552
"839","Decatur, IL","22717",44466,39.5,17421,34226,55668,87373,92869,70657,1983,16583,1321,3759,14565,5714,28066,0.4648,665," IL","Decatur",0.760824387039809,0.178563352679581,0.0142243375076721,0.0213526580452035,0.0404763699404538,0.156833819681487,0.0881749301729858
"840","Decatur, IN","22744",46573,39.9,17051,36607,52434,75482,10570,10067,989,201,44,42,1047,397,3010,0.4465,515," IN","Decatur",0.952412488174078,0.0190160832544938,0.00416272469252602,0.0935666982024598,0.00397350993377483,0.0990539262062441,0.0525132275132275
"841","Decatur, TX","22771",47641,32,25679,40345,54556,90473,6033,5579,1250,213,8,144,933,245,1496,0.3991,954," TX","Decatur",0.924747223603514,0.0353058180009945,0.00132604011271341,0.20719376761147,0.0238687220288414,0.154649428145201,0.0540004408199251
"842","Decorah, IA","22798",50283,35.6,22914,39743,60010,90089,8172,7830,172,149,47,84,1871,96,2317,0.3953,586," IA","Decorah",0.958149779735683,0.0182329906999511,0.0057513460597161,0.0210474791972589,0.0102790014684288,0.228952520802741,0.0163962425277541
"843","Deer Lodge, MT","22825",38925,44.2,19511,32025,43856,64092,3243,3141,15,0,27,42,403,45,1000,0.3884,458," MT","Deer Lodge",0.96854764107308,0,0.00832562442183164,0.00462534690101758,0.0129509713228492,0.124267653407339,0.0200624164065983
"844","Deer Park, WA","22852",32059,38,15483,26164,40273,70559,3521,3306,171,0,6,115,370,218,1383,0.4675,683," WA","Deer Park",0.938937801760863,0,0.00170406134620846,0.0485657483669412,0.0326611758023289,0.105083783016189,0.101964452759588
"845","Deerwood, TX","22864",23885,26,15403,20071,33385,62351,3419,2549,2581,319,47,74,112,93,903,0.3704,677," TX","Deerwood",0.74553963147119,0.0933021351272302,0.0137467095642001,0.754899093302135,0.0216437554840597,0.0327581164083065,0.0369634340222576
"846","Defiance, OH","22879",43870,37.5,20103,34877,53564,80535,17750,15696,2379,775,53,390,2341,833,5556,0.4135,648," OH","Defiance",0.884281690140845,0.0436619718309859,0.00298591549295775,0.134028169014085,0.0219718309859155,0.131887323943662,0.0683122847301952
"847","De Funiak Springs, FL","22933",29990,41.3,12365,24379,37753,67204,6348,4586,675,1169,0,89,659,220,2387,0.4641,773," FL","De Funiak Springs",0.722432262129805,0.184152488972905,0,0.106332703213611,0.0140201638311279,0.103812224322621,0.0555415299166877
"848","DeKalb, IL","22960",48331,26.2,17050,34919,61187,96749,68587,53659,8071,6723,2325,1831,13079,4128,17522,0.4526,834," IL","DeKalb",0.782349424818114,0.0980214909530961,0.0338985522037704,0.117675361220056,0.0266960211118725,0.190692113665855,0.0808381474591207
"849","Delano, CA","22987",36241,29.1,18672,30768,44433,73374,54637,37463,40614,2624,7087,1522,2192,3092,20480,0.399,765," CA","Delano",0.685670882369091,0.0480260629243919,0.129710635649834,0.743342423632337,0.0278565807053828,0.0401193330526932,0.090523172409755
"850","Delano, MN","22995",76781,34.2,35185,56190,98452,122500,5239,5072,30,0,53,49,1220,128,862,0.3772,728," MN","Delano",0.968123687726665,0,0.0101164344340523,0.0057262836419164,0.00935292994846345,0.2328688681046,0.0292437742746173
"851","Delavan, WI","23041",47389,35.7,23759,38147,55438,84427,12451,11101,3209,83,69,337,1524,610,2863,0.4037,813," WI","Delavan",0.891574973897679,0.006666131234439,0.00554172355634086,0.257730302786925,0.0270660991085053,0.122399807244398,0.0636211931581143
"852","Delhi, LA","23095",36847,40.6,11879,30459,49524,67048,2835,964,83,1821,0,50,297,191,771,0.5024,535," LA","Delhi",0.340035273368607,0.642328042328042,0,0.0292768959435626,0.017636684303351,0.104761904761905,0.0925387596899225
"853","Delhi, NY","23102",39000,20.5,13653,29188,49833,78556,2865,2253,302,388,45,47,281,184,1589,0.4545,767," NY","Delhi",0.786387434554974,0.13542757417103,0.0157068062827225,0.105410122164049,0.0164048865619546,0.0980802792321117,0.144200626959248
"854","Dell Rapids, SD","23122",55921,36.9,26667,44549,64091,102075,3687,3578,123,0,20,29,669,84,691,0.3647,658," SD","Dell Rapids",0.970436669378899,0,0.005424464334147,0.0333604556550041,0.00786547328451315,0.181448331977217,0.0280373831775701
"855","Delphi, IN","23149",37083,38.4,17582,29622,45048,68602,3045,2961,380,13,0,43,220,134,946,0.4116,460," IN","Delphi",0.972413793103448,0.00426929392446634,0,0.124794745484401,0.0141215106732348,0.0722495894909688,0.0638399237732254
"856","Delphos, OH","23176",44319,38.6,20646,37264,53333,71806,7577,7434,81,97,5,41,840,358,2036,0.4021,676," OH","Delphos",0.981127095156394,0.0128019004883199,0.000659891777748449,0.0106902467995249,0.00541111257753728,0.110861818661739,0.0646092763039163
"857","Del Rio, TX","23203",41707,30.9,16371,33912,51447,81448,44667,41149,36947,557,260,617,4020,1703,12674,0.4403,684," TX","Del Rio",0.921239393735868,0.0124700561936105,0.00582085208319341,0.827165468914411,0.0138133297512705,0.0899993283632212,0.05323039414872
"858","Delta, CO","23230",41582,42.9,15700,32182,50835,72303,7708,7150,1626,93,63,124,1016,378,2552,0.4759,775," CO","Delta",0.927607680332122,0.0120653866113129,0.00817332641411521,0.210949662688116,0.0160871821484172,0.131811105345096,0.0733126454615981
"859","Delta, OH","23257",43600,36.5,21362,35898,55722,75750,3588,3426,390,55,92,0,408,168,954,0.382,580," OH","Delta",0.954849498327759,0.0153288740245262,0.0256410256410256,0.108695652173913,0,0.11371237458194,0.0637813211845103
"860","Delta, UT","23284",47353,33.2,17132,35050,58000,100795,3298,2931,431,5,0,13,406,155,821,0.4169,422," UT","Delta",0.88872043662826,0.00151607034566404,0,0.13068526379624,0.0039417828987265,0.12310491206792,0.0625756964069439
"861","Deltona, FL","23311",43162,41,20281,35078,52532,79087,185409,150594,41254,17182,2545,4374,22730,9003,66113,0.4132,999," FL","Deltona",0.812225943724415,0.0926707980734484,0.0137264102605591,0.222502683257016,0.0235910878112713,0.122593833093323,0.0754677440987124
"862","Deming, NM","23338",24677,34,10709,20048,32481,50626,14771,12756,10400,178,77,209,1194,1103,5000,0.4519,521," NM","Deming",0.863584049827364,0.0120506397671112,0.00521291720262677,0.704082323471667,0.0141493466928441,0.0808340667524203,0.112885068058541
"863","Demopolis, AL","23365",33214,33.5,9755,22676,44739,90542,6569,2821,228,3541,56,0,999,276,2349,0.5999,477," AL","Demopolis",0.429441315268686,0.539047039123154,0.00852488963312529,0.0347084792205815,0,0.152077941848074,0.0654028436018957
"864","De Motte, IN","23392",55746,46.4,26322,46357,64728,88711,4311,4064,183,147,0,100,309,159,1676,0.3551,713," IN","De Motte",0.94270470888425,0.0340988169798191,0,0.0424495476687543,0.0231964741359313,0.0716771050800278,0.0603415559772296
"865","Denison, IA","23419",45376,34.1,16892,36756,55352,87271,8307,7354,3927,160,47,276,739,226,2192,0.4453,485," IA","Denison",0.885277476826773,0.0192608643312869,0.00565787889731552,0.472733838931022,0.0332249909714698,0.0889611171301312,0.0369582992641047
"866","Denmark, SC","23446",17209,22.7,5919,14339,22015,65847,3578,181,1,3346,13,38,291,232,1785,0.6737,376," SC","Denmark",0.0505869200670766,0.935159306875349,0.00363331470095025,0.000279485746226942,0.0106204583566238,0.0813303521520403,0.129392080312326
"867","Denton, MD","23473",51765,35.1,16559,37620,68935,112036,4642,3209,482,1105,30,68,340,197,1357,0.4345,1042," MD","Denton",0.691296854803964,0.238043946574752,0.00646273158121499,0.103834554071521,0.014648858250754,0.0732442912537699,0.0599695585996956
"868","Denton--Lewisville, TX","23500",72343,32.9,30963,58091,91118,139856,384684,304782,73348,28825,27173,14235,103413,14294,80822,0.4416,955," TX","Denton--Lewisville",0.792291855133044,0.0749316321968161,0.070637198323819,0.190670784332075,0.0370043984153227,0.268825841469882,0.0470410910215822
"869","Denton Southwest, TX","23513",75417,61.5,37419,62380,101688,126395,3173,3089,92,26,13,32,1144,79,1463,0.3873,1827," TX","Denton Southwest",0.973526630948629,0.00819413803971005,0.00409706901985503,0.0289946422943586,0.0100850929719508,0.360542073747242,0.0461988304093567
"870","Denver--Aurora, CO","23527",62849,35.4,27022,50061,77994,121609,2478855,1998576,589552,145422,97899,88045,653565,105045,555976,0.457,996," CO","Denver--Aurora",0.806249659621075,0.0586649884725004,0.0394936371832963,0.237832386323524,0.0355184147519722,0.263656002468882,0.0546290224189874
"871","Denver City, TX","23554",48672,35.8,23612,40808,62159,101182,4967,4220,3213,90,70,126,474,224,1157,0.4191,625," TX","Denver City",0.849607408898732,0.0181195892893094,0.0140930138916851,0.646869337628347,0.0253674250050332,0.0954298369236964,0.0587926509186352
"872","De Queen, AR","23608",29592,28.3,17051,25053,42632,65361,6181,2683,3705,328,84,78,186,407,1407,0.4013,490," AR","De Queen",0.434072156608963,0.0530658469503317,0.0135900339750849,0.599417569972496,0.0126193172625789,0.0300922180876881,0.0852534562211982
"873","DeQuincy, LA","23635",38125,38.8,17732,28477,45241,76472,4790,3635,30,1017,0,103,295,95,2316,0.4268,672," LA","DeQuincy",0.758872651356994,0.21231732776618,0,0.00626304801670146,0.0215031315240084,0.0615866388308977,0.0383993532740501
"874","DeRidder, LA","23662",43050,33.7,16198,31880,52506,82235,14179,9118,853,3999,179,622,1773,419,4387,0.4418,682," LA","DeRidder",0.643063685732421,0.282036815008111,0.0126243035474998,0.0601593906481416,0.0438676916566754,0.125044079272163,0.0427900326797386
"875","Dermott, AR","23689",18750,42,9122,15750,25154,54977,2235,549,35,1686,0,0,106,109,1027,0.5654,538," AR","Dermott",0.245637583892617,0.754362416107383,0,0.0156599552572707,0,0.047427293064877,0.0902317880794702
"876","Desert Hot Springs, CA","23716",34873,34.5,14320,28072,41460,63223,40622,25338,22310,1950,895,1575,3481,2765,13258,0.4249,918," CA","Desert Hot Springs",0.623750676973069,0.0480035448771602,0.0220323962384915,0.549209787799714,0.0387720939392447,0.0856924819063562,0.101045168834966
"877","Des Moines, IA","23743",60981,34.4,27230,48926,74321,112918,465805,398364,36072,27579,18644,11522,112934,15238,95100,0.4388,803," IA","Des Moines",0.85521623855476,0.0592071789697406,0.040025332488917,0.0774401305267226,0.0247356726527195,0.242449093504793,0.0411054612157915
"878","De Soto, KS","23770",46000,34.5,20493,33815,58475,123850,4924,3890,902,286,0,250,722,109,1051,0.4526,719," KS","De Soto",0.790008123476848,0.0580828594638505,0,0.183184402924452,0.0507717303005686,0.146628757108042,0.0281435579654015
"879","De Soto, MO","23797",36503,39.6,14170,26289,43662,61933,7231,6888,100,141,9,107,779,271,2597,0.4254,672," MO","De Soto",0.952565343659245,0.0194993776794358,0.00124464112847462,0.0138293458719403,0.0147974000829761,0.107730604342415,0.058480794130341
"880","Detroit, MI","23824",51046,39.3,19939,39503,64691,104779,3726246,2482525,157898,950754,149541,87913,731384,239143,1112687,0.4773,849," MI","Detroit",0.666226813795976,0.255150626126133,0.0401318109432389,0.0423745506872064,0.0235929136186929,0.196279043305246,0.0915008997309799
"881","Detroit Lakes, MN","23851",38103,42.3,17866,29129,51938,79878,8173,7439,199,65,52,175,1378,176,2798,0.4514,668," MN","Detroit Lakes",0.910192095925609,0.00795301602838615,0.00636241282270892,0.0243484644561361,0.0214119662302704,0.168603939801786,0.0327441860465116
"882","Devils Lake, ND","23878",39118,39.8,15405,32398,48967,81032,7366,6120,59,93,45,246,990,88,2016,0.4369,509," ND","Devils Lake",0.83084442030953,0.0126255769752919,0.00610915014933478,0.00800977464023894,0.0333966874830301,0.134401303285365,0.0164485981308411
"883","Devine, TX","23905",35023,37.3,15709,26588,52731,83825,5842,5492,4039,21,10,30,377,301,1831,0.4689,675," TX","Devine",0.940089010612804,0.00359465936323177,0.00171174255391989,0.691372817528244,0.00513522766175967,0.0645326942827799,0.075043630017452
"884","DeWitt, AR","23959",29239,38.7,15597,23464,34131,58097,3176,2110,98,1016,0,37,251,182,985,0.4446,593," AR","DeWitt",0.664357682619647,0.319899244332494,0,0.0308564231738035,0.0116498740554156,0.0790302267002519,0.0830670926517572
"885","De Witt, IA","23986",55268,39.9,21543,41746,73500,104150,4658,4577,71,23,0,52,791,147,1092,0.4042,631," IA","De Witt",0.982610562473164,0.00493774151996565,0,0.0152425933877201,0.0111635895234006,0.169815371404036,0.0412226584408301
"886","Dexter, MO","24013",33750,40.5,16021,28675,46644,82423,8695,8456,92,62,6,117,809,440,2712,0.5401,547," MO","Dexter",0.972512938470385,0.00713053479010926,0.000690051753881541,0.010580793559517,0.0134560092006901,0.0930419781483611,0.0735417014875481
"887","Diamondhead, MS","24040",68732,50.3,31254,58548,77071,114200,7812,7571,406,72,71,29,2626,149,2763,0.3684,1262," MS","Diamondhead",0.969150025601639,0.00921658986175115,0.00908858166922683,0.0519713261648745,0.00371223758320533,0.336149513568868,0.0295107942166766
"888","Diboll, TX","24067",45302,32.9,10633,37147,50828,66476,5224,3589,2135,1107,3,118,142,147,1905,0.389,521," TX","Diboll",0.687021439509954,0.211906584992343,0.00057427258805513,0.408690658499234,0.0225880551301685,0.0271822358346095,0.0442904489304007
"889","Dickinson, ND","24094",67293,34.8,25948,51842,76949,113276,19362,17928,788,285,330,302,3134,343,4079,0.412,750," ND","Dickinson",0.925937403160831,0.0147195537651069,0.0170436938332817,0.0406982749715938,0.0155975622353063,0.161863443859105,0.0224432375842439
"890","Dickson, TN","24121",36178,36.2,16627,27253,46798,74573,16685,13961,764,1389,185,643,1428,609,5212,0.4471,719," TN","Dickson",0.8367395864549,0.0832484267305963,0.0110878034162421,0.045789631405454,0.0385376086305064,0.0855858555588852,0.0530811470408786
"891","Dilley, TX","24148",39625,27.1,17091,26929,45823,68407,4111,2869,3008,375,12,9,60,104,1943,0.4239,707," TX","Dilley",0.697883726587205,0.0912186815859888,0.00291899781075164,0.731695451228412,0.00218924835806373,0.0145949890537582,0.0479704797047971
"892","Dillon, MT","24175",37976,33.9,15657,30494,48821,72815,4657,4387,255,0,122,119,869,227,1477,0.4229,598," MT","Dillon",0.9420227614344,0,0.026197122611123,0.0547562808675113,0.0255529310715053,0.18660081597595,0.0713836477987421
"893","Dillon, SC","24202",26475,33.3,10066,20695,33557,59536,10271,3399,479,6142,0,357,437,543,3860,0.482,531," SC","Dillon",0.330931749586214,0.597994353032811,0,0.0466361600623114,0.0347580566643949,0.0425469769253237,0.0846981750116986
"894","Dimmitt, TX","24229",35082,31.6,19149,27942,42964,74764,4394,3893,3144,21,37,278,397,71,1235,0.5811,633," TX","Dimmitt",0.885980883022303,0.00477924442421484,0.00842057350933091,0.715521165225307,0.0632680928538917,0.0903504779244424,0.0224754669199114
"895","Discovery Bay, CA","24256",111074,39.6,51067,85475,123490,169112,14970,12791,1727,501,425,978,2978,668,3541,0.3807,1976," CA","Discovery Bay",0.854442217768871,0.0334669338677355,0.0283901135604542,0.115364061456246,0.0653306613226453,0.198931195724783,0.0584478082071922
"896","Dixon, CA","24283",66839,31.7,29304,52444,79796,120029,18750,13805,7408,567,372,1282,2332,1007,4114,0.405,1176," CA","Dixon",0.736266666666667,0.03024,0.01984,0.395093333333333,0.0683733333333333,0.124373333333333,0.0688029516261274
"897","Dixon, IL","24310",46186,39.6,19323,35341,56585,86417,15956,13805,1048,1396,182,358,1908,642,6077,0.4121,597," IL","Dixon",0.865191777387816,0.0874905991476561,0.0114063675106543,0.0656806217097017,0.0224367009275508,0.119578841814991,0.064986334649256
"898","Dodge Center, MN","24329",54773,30.3,22400,39917,65500,101500,2662,2577,354,0,6,62,257,50,462,0.3711,558," MN","Dodge Center",0.968069120961683,0,0.00225394440270473,0.132982719759579,0.0232907588279489,0.0965439519158527,0.0227272727272727
"899","Dodge City, KS","24337",49419,29,24089,40463,60415,84090,27860,23897,16800,732,415,690,2523,1065,5909,0.4022,613," KS","Dodge City",0.857753050969131,0.0262742282842785,0.0148959081119885,0.603015075376884,0.0247666905958363,0.0905599425699928,0.0485171518381851
"900","Dodgeville, WI","24364",43354,38.3,21932,35981,54694,93556,4712,4555,42,29,31,74,857,22,1195,0.4157,742," WI","Dodgeville",0.966680814940577,0.00615449915110357,0.00657894736842105,0.00891341256366723,0.015704584040747,0.181876061120543,0.00625533124822292
"901","Donaldsonville, LA","24391",33383,33.3,12279,26399,40522,79809,14473,4258,128,10115,29,44,1095,732,4763,0.4732,635," LA","Donaldsonville",0.294202998687211,0.698887583776688,0.0020037310854695,0.00884405444621018,0.00304014371588475,0.0756581220203137,0.0753861997940268
"902","Donalsonville, GA","24418",27428,37.9,7679,21528,35833,62857,2779,792,108,1869,24,31,218,138,1181,0.4924,636," GA","Donalsonville",0.284994602374955,0.672544080604534,0.00863620007196833,0.0388629003238575,0.0111550917596258,0.0784454839870457,0.0863579474342929
"903","Dorr, MI","24433",59464,30.2,37152,49479,68535,95505,5326,4986,57,40,12,94,368,240,803,0.3098,1008," MI","Dorr",0.936162223056703,0.00751032669921142,0.00225309800976342,0.0107022155463763,0.0176492677431468,0.069095005632745,0.0530621269069202
"904","Dos Palos, CA","24445",33978,31.6,17263,29500,43880,65511,7598,6171,5776,304,0,173,327,782,2569,0.3812,722," CA","Dos Palos",0.812187417741511,0.0400105290866017,0,0.760200052645433,0.0227691497762569,0.0430376414846012,0.155498110956453
"905","Dothan, AL","24472",40041,37,16047,31577,50488,84852,70511,44562,2183,22644,876,1334,10793,2930,21840,0.4947,683," AL","Dothan",0.631986498560508,0.321141382195686,0.0124235934818681,0.03095970841429,0.0189190339096028,0.153068315581966,0.0602001191674714
"906","Douglas, AZ","24499",24219,31.2,11348,19196,30145,52679,14763,9917,13563,103,193,584,1047,862,4899,0.4835,562," AZ","Douglas",0.67174693490483,0.00697690171374382,0.0130732235995394,0.918715708189392,0.039558355347829,0.0709205446047551,0.0873884833738848
"907","Douglas, GA","24526",31800,35.1,11022,24010,38865,60312,13823,5317,1478,7137,56,119,1118,482,4981,0.4784,587," GA","Douglas",0.384648773782826,0.516313390725602,0.00405121898285466,0.106923243868914,0.00860884033856616,0.0808796932648484,0.0545125537208776
"908","Douglas, MI","24539",47992,54.2,17844,36857,59289,93000,2363,2322,102,12,3,5,820,83,873,0.45,552," MI","Douglas",0.982649174777825,0.00507829030892933,0.00126957257723233,0.0431654676258993,0.00211595429538722,0.347016504443504,0.0557046979865772
"909","Douglas, WY","24553",60412,37.7,25612,45644,73170,106664,6330,5929,598,1,67,50,769,147,1302,0.3911,630," WY","Douglas",0.936650868878357,0.000157977883096366,0.0105845181674566,0.0944707740916272,0.00789889415481832,0.121484992101106,0.029236276849642
"910","Dover, DE","24580",56139,34.4,24975,45864,68365,101888,114524,68682,7686,34854,2864,5496,18706,4660,33448,0.405,1026," DE","Dover",0.599717089867626,0.304337955363068,0.0250078586147882,0.0671125702909434,0.0479899409730711,0.16333694247494,0.0574769352212739
"911","Dover--Rochester, NH--ME","24607",51962,33.6,23252,41913,63873,98787,88163,80965,2002,934,3063,2519,17530,3541,22596,0.4333,961," NH--ME","Dover--Rochester",0.918355772829872,0.0105940133616143,0.0347424656601976,0.0227079387044452,0.0285720767215272,0.198836246497964,0.054005826101545
"912","Dowagiac, MI","24634",30208,32.7,12184,23289,35447,56673,5835,3988,480,1004,0,476,465,453,1775,0.4296,590," MI","Dowagiac",0.683461868037703,0.172065124250214,0,0.0822622107969152,0.0815766923736075,0.0796915167095116,0.111576354679803
"913","Downs, IL","24646",101950,37.7,52962,88500,126685,177060,2399,2367,3,3,8,21,763,44,492,0.3939,814," IL","Downs",0.986661108795331,0.00125052105043768,0.00333472280116715,0.00125052105043768,0.00875364735306378,0.318049187161317,0.0230728893550079
"914","Dryden, NY","24688",51018,40.2,20595,43485,63300,101375,3215,3033,173,62,39,81,911,96,929,0.4153,787," NY","Dryden",0.943390357698289,0.0192846034214619,0.0121306376360809,0.0538102643856921,0.025194401244168,0.283359253499222,0.041994750656168
"915","Dublin, GA","24715",28720,37.4,10079,21201,39756,69865,20656,8168,241,11957,357,174,2162,623,8615,0.5443,602," GA","Dublin",0.395429899302866,0.578863284275755,0.0172831138652208,0.0116673121611154,0.00842370255615802,0.104666924864446,0.051739888713562
"916","Dublin, TX","24769",42381,30.6,15681,29217,46572,62536,3658,3306,1226,2,0,0,393,101,860,0.3919,648," TX","Dublin",0.903772553307818,0.000546746856205577,0,0.335155822854019,0,0.107435757244396,0.0360972122944961
"917","DuBois, PA","24796",35149,40.9,14555,26339,43647,65399,12142,11771,507,58,119,158,1252,485,4232,0.4452,625," PA","DuBois",0.969444901993082,0.00477680777466645,0.00980069181353978,0.0417558886509636,0.0130126832482293,0.103113160929007,0.061314791403287
"918","Dubuque, IA--IL","24823",48961,38.9,22023,39828,59680,90278,68415,63142,1451,1425,1247,2296,13448,2147,17691,0.4287,693," IA--IL","Dubuque",0.922926258861361,0.0208287656215742,0.0182269970035811,0.0212087992399328,0.0335598918365855,0.196565080757144,0.0423271035407302
"919","Duluth, MN--WI","24850",42932,34.8,17240,33229,54880,86464,119886,109288,1838,2949,1828,3475,22471,5143,35588,0.4663,721," MN--WI","Duluth",0.911599352718416,0.0245983684500275,0.0152478187611564,0.0153312313364363,0.0289858699097476,0.187436397911349,0.061009751121023
"920","Dumas, AR","24877",22137,37.7,9936,18676,33781,68292,4883,1662,126,3178,0,31,301,294,1832,0.6068,558," AR","Dumas",0.340364530002048,0.650829408150727,0,0.0258038091337293,0.00634855621544133,0.0616424329305755,0.0963618485742379
"921","Dumas, TX","24904",46650,30.9,25442,38833,57835,88725,15112,12142,7956,412,1007,474,1232,346,3073,0.3951,698," TX","Dumas",0.803467443091583,0.0272631021704606,0.0666357861302276,0.526469031233457,0.0313658020116464,0.0815246161990471,0.0287399285654955
"922","Duncan, OK","24931",39945,37.4,17136,31601,50109,80980,21358,17289,2232,919,206,922,2719,810,6983,0.4596,652," OK","Duncan",0.809485906920124,0.0430283734432063,0.00964509785560446,0.104504167056841,0.0431688360333365,0.127305927521303,0.0563478260869565
"923","Dundee, MI","24958",42402,38.2,20214,36678,54904,96959,3768,3613,20,0,53,94,463,244,1100,0.3943,654," MI","Dundee",0.958864118895966,0,0.0140658174097665,0.00530785562632696,0.0249469214437367,0.122876857749469,0.0914542728635682
"924","Dunkirk, IN","24985",31976,36.5,17819,26697,39233,62578,3442,3410,31,9,6,12,130,193,1012,0.4151,609," IN","Dunkirk",0.990703079604881,0.00261475886112725,0.00174317257408483,0.00900639163277164,0.00348634514816967,0.0377687391051714,0.0794238683127572
"925","Dunkirk--Fredonia, NY","25012",41647,34.2,16210,30952,50069,83574,25045,22448,4139,1017,291,465,3995,963,8939,0.4478,612," NY","Dunkirk--Fredonia",0.89630664803354,0.0406069075663805,0.0116190856458375,0.165262527450589,0.0185665801557197,0.159512876821721,0.0597913820936297
"926","Dunlap, TN","25025",32941,38.1,15176,25620,40897,64371,3897,3458,297,25,0,248,308,183,1428,0.4335,574," TN","Dunlap",0.887349243007442,0.00641519117269695,0,0.0762124711316397,0.0636386964331537,0.0790351552476264,0.0741190765492102
"927","Dunn, NC","25039",32399,43.6,13022,25466,41776,70926,14832,9273,1263,4634,45,356,1799,967,5367,0.4844,674," NC","Dunn",0.625202265372168,0.312432578209277,0.00303398058252427,0.0851537216828479,0.0240021574973031,0.121291801510248,0.10216587427364
"928","Du Quoin, IL","25093",32668,40.1,13519,23244,37550,62428,6426,5557,93,578,13,222,602,369,2266,0.4711,466," IL","Du Quoin",0.864768129474012,0.0899470899470899,0.00202303143479614,0.0144724556489262,0.034547152194211,0.093681917211329,0.0887019230769231
"929","Durand, MI","25120",41189,41.9,17683,31287,49051,69361,4870,4760,53,18,10,82,333,298,1878,0.3732,609," MI","Durand",0.97741273100616,0.00369609856262834,0.00205338809034908,0.0108829568788501,0.0168377823408624,0.0683778234086242,0.0995989304812834
"930","Durango, CO","25147",52221,31.2,24631,42498,62606,93783,18547,16257,2597,109,121,513,5849,603,5010,0.4514,1131," CO","Durango",0.876529897018386,0.00587696123362269,0.00652396614007656,0.140022645171726,0.0276594597509031,0.315360974820726,0.0445445815173229
"931","Durant, MS","25174",23105,27.1,9630,19419,27292,42167,2451,177,0,2258,0,16,116,253,706,0.4102,617," MS","Durant",0.0722154222766218,0.92125662994696,0,0,0.00652794777641779,0.047327621379029,0.144985673352436
"932","Durant, OK","25201",35622,30.5,15623,27296,43395,72989,16862,11866,1258,474,134,1499,2172,859,4899,0.4496,659," OK","Durant",0.703712489621634,0.0281105444194046,0.00794686276835488,0.0746056221088839,0.0888981141027162,0.128810342782588,0.071804731254702
"933","Durham, NC","25228",51730,32.4,21294,40729,65506,111688,361756,200095,46818,111565,21572,10868,117096,15303,95750,0.4999,891," NC","Durham",0.553121440971262,0.308398478532492,0.0596313537301385,0.129418724222957,0.0300423489866098,0.323687789559814,0.0575287775463711
"934","Dwight, IL","25255",59561,37.9,28150,49426,67088,101882,5588,4675,278,729,19,85,555,152,2759,0.3563,702," IL","Dwight",0.836614173228346,0.130458124552613,0.00340014316392269,0.0497494631352899,0.0152111667859699,0.0993199713672155,0.0537292329445034
"935","Dyer, TN","25282",30766,40.5,16177,23825,37988,62179,3235,2390,59,700,8,102,280,266,1291,0.4036,578," TN","Dyer",0.738794435857805,0.216383307573416,0.00247295208655332,0.0182380216383308,0.0315301391035549,0.0865533230293663,0.136831275720165
"936","Dyersburg, TN","25309",35284,40.2,14865,28066,46226,75051,21469,16032,663,4590,72,547,3055,897,7588,0.4899,604," TN","Dyersburg",0.74675112953561,0.213796637011505,0.00335367273743537,0.0308817364572174,0.0254785970469048,0.142298197400904,0.0646207045601902
"937","Dyersville, IA","25336",49201,44.8,26167,41481,57606,83875,3610,3603,67,0,7,0,429,68,788,0.3583,569," IA","Dyersville",0.998060941828255,0,0.00193905817174515,0.0185595567867036,0,0.118836565096953,0.0240963855421687
"938","Eagar, AZ","25363",46989,31.8,18500,38259,55654,85197,5978,5287,1246,21,0,190,544,254,1576,0.3938,804," AZ","Eagar",0.88440950150552,0.00351288056206089,0,0.208430913348946,0.0317832050853128,0.0910003345600535,0.0577010449795547
"939","Eagle, CO","25390",79734,35.1,51915,66811,110673,146242,5879,5612,1077,13,0,31,1824,135,753,0.326,1512," CO","Eagle",0.954584112944378,0.00221126041843851,0,0.183194420819867,0.00527300561319952,0.310256846402449,0.0263363246195864
"940","Eagle Grove, IA","25417",47056,44,19321,40952,58352,89571,3018,2888,617,11,0,65,364,186,732,0.4278,619," IA","Eagle Grove",0.956925115970842,0.00364479787939032,0,0.204440026507621,0.0215374420145792,0.120609675281643,0.0813648293963255
"941","Eagle Lake, TX","25444",36339,33.4,15026,27016,46338,72147,3599,2476,1821,953,0,0,213,273,968,0.4203,655," TX","Eagle Lake",0.687968880244512,0.264795776604612,0,0.505973881633787,0,0.0591831064184496,0.103762827822121
"942","Eagle Mountain South, UT","25480",63997,17.5,38804,57547,67560,79825,6754,6457,641,25,51,68,725,112,917,0.2707,1342," UT","Eagle Mountain South",0.956026058631922,0.0037015102161682,0.00755108084098312,0.0949067219425526,0.0100681077879775,0.107343796268878,0.0191879390097653
"943","Eagle Pass, TX","25498",31891,29.4,13499,24048,41413,72414,50563,47459,49032,68,82,432,3374,2685,14702,0.466,587," TX","Eagle Pass",0.938611237466131,0.00134485691118011,0.00162173921642308,0.96972094219093,0.00854379684749718,0.0667286355635544,0.0748724240818717
"944","Earlimart, CA","25579",25478,21.5,14870,20258,32695,48660,13968,11294,12296,341,546,201,136,1023,3338,0.4265,705," CA","Earlimart",0.808562428407789,0.0244129438717068,0.0390893470790378,0.880297823596793,0.0143900343642612,0.00973654066437572,0.0962370649106303
"945","East Aurora, NY","25598",66605,45.1,30104,53373,82886,123240,9858,9642,130,45,53,43,3106,242,2821,0.4324,701," NY","East Aurora",0.978088861838101,0.00456482045039562,0.00537634408602151,0.0131872590789207,0.00436193954148915,0.315074051531751,0.0343896546823931
"946","Eastland, TX","25660",36164,46.9,19169,25988,42613,66663,3636,3443,406,32,8,95,445,43,1317,0.6285,556," TX","Eastland",0.946919691969197,0.0088008800880088,0.0022002200220022,0.111661166116612,0.0261276127612761,0.122387238723872,0.0185424752048297
"947","East Liverpool, OH--WV--PA","25687",35235,41.3,14777,27999,43406,69119,31120,28361,266,1648,34,962,2171,1625,10738,0.4488,569," OH--WV--PA","East Liverpool",0.911343187660668,0.0529562982005141,0.00109254498714653,0.00854755784061697,0.0309125964010283,0.0697622107969152,0.0797272102835836
"948","Eastman, GA","25714",32018,38.7,11940,26466,41334,66586,5926,3218,268,2315,99,149,567,219,2216,0.4159,563," GA","Eastman",0.543030712116099,0.390651366857914,0.0167060411744853,0.0452244346945663,0.0251434357070537,0.095680053999325,0.0590296495956873
"949","Easton, MD","25741",50884,45.4,22723,39606,61337,101842,17154,13198,1747,2955,420,468,3704,558,5551,0.4426,1019," MD","Easton",0.769383234231083,0.17226302903113,0.0244840853445261,0.101842135944969,0.0272822665267576,0.215926314562201,0.0480910109454451
"950","East Palestine, OH","25768",39688,38.6,20463,32455,46890,75333,4843,4529,121,81,30,122,296,190,1379,0.4064,582," OH","East Palestine",0.935164154449721,0.0167251703489573,0.00619450753665084,0.0249845137311584,0.0251909973157134,0.0611191410282882,0.0548498845265589
"951","East Prairie, MO","25795",21625,34.5,12380,18809,27283,48382,3604,3367,172,208,0,28,190,139,1281,0.4069,423," MO","East Prairie",0.934239733629301,0.0577136514983352,0,0.0477247502774695,0.00776914539400666,0.0527192008879023,0.0598364184244511
"952","East Prospect, PA","25802",44677,40.8,26458,40740,62196,92452,2737,2588,159,49,0,82,208,65,647,0.3807,822," PA","East Prospect",0.945560833028864,0.0179028132992327,0,0.0580928023383266,0.0299598100109609,0.0759956156375594,0.0311004784688995
"953","East Quincy, CA","25813",44861,47.9,13250,28129,53674,81030,2300,2023,95,45,0,47,328,83,911,0.4374,773," CA","East Quincy",0.879565217391304,0.0195652173913043,0,0.041304347826087,0.0204347826086957,0.142608695652174,0.0597552195824334
"954","East Stroudsburg, PA--NJ","25849",55031,39.9,23940,43823,67683,105014,54677,41972,7711,8269,1692,1387,9830,4121,16301,0.4137,981," PA--NJ","East Stroudsburg",0.767635385994111,0.151233608281361,0.0309453700824844,0.141028220275436,0.0253671562082777,0.17978308978181,0.107384823848238
"955","East Tawas, MI","25876",43550,53.4,19262,34020,51591,73775,3931,3795,111,69,20,33,634,135,1775,0.4811,653," MI","East Tawas",0.965403205291274,0.0175527855507504,0.00508776392775375,0.0282370897990333,0.00839481048079369,0.161282116509794,0.0626159554730983
"956","East Troy, WI","25903",50170,34.9,22767,40197,62642,94635,3996,3942,94,23,0,0,548,130,848,0.4001,758," WI","East Troy",0.986486486486487,0.00575575575575576,0,0.0235235235235235,0,0.137137137137137,0.0412960609911055
"957","Eaton, CO","25930",56747,35.9,30972,46452,77857,112202,4637,4423,1239,36,0,104,573,72,1169,0.4126,918," CO","Eaton",0.953849471641147,0.00776364028466681,0,0.267198619797283,0.0224282941557041,0.123571274530947,0.0207612456747405
"958","Eaton, OH","25957",33467,34.4,16009,25624,41776,67463,8191,7883,41,59,104,131,644,378,2646,0.4744,656," OH","Eaton",0.962397753632035,0.00720302771334391,0.0126968624099622,0.00500549383469662,0.0159931632279331,0.078622878769381,0.0681695220919748
"959","Eaton Rapids, MI","25984",40500,32.5,19693,31378,52871,72163,5511,5433,162,44,34,0,540,447,1316,0.3682,825," MI","Eaton Rapids",0.985846488840501,0.00798403193612774,0.00616947922337144,0.0293957539466521,0,0.0979858464888405,0.106555423122765
"960","Eatonton, GA","26011",26681,35.3,14302,23161,37735,51400,4298,1629,794,2445,0,0,318,157,1288,0.4365,591," GA","Eatonton",0.379013494648674,0.568869241507678,0,0.184737087017217,0,0.0739879013494649,0.0521594684385382
"961","Eatonville, WA","26024",60625,36.5,28318,52581,72580,102733,2798,2606,157,5,24,86,309,54,740,0.3778,820," WA","Eatonville",0.931379556826304,0.00178699070764832,0.00857755539671194,0.0561115082201573,0.0307362401715511,0.110436025732666,0.0262390670553936
"962","Eau Claire, WI","26038",45786,33.6,19843,35976,57073,90381,104493,97051,1911,917,3372,2350,19836,3710,25433,0.439,725," WI","Eau Claire",0.928779918272037,0.00877570746365785,0.0322701042175074,0.0182883063937297,0.0224895447541941,0.189830897763487,0.0469263850240324
"963","Ebensburg, PA","26065",44174,45.4,18131,32242,57775,84589,4877,4734,33,90,53,0,1166,159,1637,0.4914,624," PA","Ebensburg",0.970678695919623,0.0184539676030347,0.0108673364773426,0.00676645478777937,0,0.239081402501538,0.0490740740740741
"964","Eden, NC","26092",32116,40.4,14363,24580,38610,57139,16992,11711,1033,3915,174,540,1465,1192,6315,0.4283,620," NC","Eden",0.689206685499058,0.230402542372881,0.0102401129943503,0.0607933145009416,0.0317796610169492,0.0862170433145009,0.111641846960757
"965","Edenton, NC","26119",23196,40.5,9402,17246,29453,55064,4726,2063,5,2648,0,13,626,430,1649,0.5357,635," NC","Edenton",0.436521371138383,0.560304697418536,0,0.00105797714769361,0.00275074058400339,0.13245873889124,0.139746506337342
"966","Edgefield, SC","26146",26653,38.8,9938,19147,38655,72828,4245,1871,590,2115,11,122,345,121,2632,0.5444,448," SC","Edgefield",0.44075382803298,0.498233215547703,0.00259128386336867,0.138987043580683,0.0287396937573616,0.0812720848056537,0.0750154990700558
"967","Edgerton, WI","26173",57604,40,27776,46210,71734,100540,7095,6839,261,12,6,208,1086,329,1630,0.3798,720," WI","Edgerton",0.963918252290345,0.00169133192389006,0.000845665961945032,0.0367864693446089,0.0293164200140944,0.153065539112051,0.0602012808783166
"968","Edgewood, NM","26200",48750,50,17294,41399,58583,94109,3131,2813,965,0,19,139,694,127,1093,0.4567,926," NM","Edgewood",0.898435004790802,0,0.00606834877036091,0.308208240178857,0.0443947620568508,0.221654423506867,0.0623159960745829
"969","Edinboro, PA","26227",37368,24.9,9102,27637,53096,81453,7249,6715,257,133,130,62,1513,164,2394,0.4747,720," PA","Edinboro",0.9263346668506,0.0183473582563112,0.0179335080700786,0.0354531659539247,0.00855290384880673,0.2087184439233,0.0337796086508754
"970","Edna, TX","26254",45903,35.2,15250,35951,57098,76830,5376,4212,2218,796,0,91,495,119,1744,0.3958,779," TX","Edna",0.783482142857143,0.148065476190476,0,0.412574404761905,0.0169270833333333,0.0920758928571429,0.0327643171806167
"971","Edwards, CO","26275",62083,31.4,34997,49039,85163,134217,17715,15350,6800,300,50,188,5290,353,2617,0.4788,1266," CO","Edwards",0.866497318656506,0.0169348010160881,0.00282246683601468,0.383855489697996,0.0106124753034152,0.298616991250353,0.0233805802092992
"972","Effingham, IL","26308",46117,38.2,20060,38832,54594,80110,14048,13680,309,85,31,104,2042,431,3598,0.4328,542," IL","Effingham",0.97380410022779,0.00605068337129841,0.00220671981776765,0.021996013667426,0.00740318906605923,0.145358769931663,0.041244019138756
"973","Eielson AFB, AK","26345",54127,23.5,33684,49079,72941,100804,2878,2067,402,452,27,282,320,107,273,0.2979,1813," AK","Eielson AFB",0.718207088255733,0.157053509381515,0.0093815149409312,0.139680333564976,0.0979847116052815,0.111188325225851,0.0410748560460653
"974","Elberton, GA","26362",22379,37.8,13098,17833,28227,50875,5688,2569,375,2857,0,45,347,317,2392,0.4578,522," GA","Elberton",0.451652601969058,0.502285513361463,0,0.0659282700421941,0.00791139240506329,0.0610056258790436,0.0961771844660194
"975","El Campo, TX","26389",45426,35.2,20453,37018,57056,85385,11807,10385,6154,1239,6,2,943,337,3020,0.4365,756," TX","El Campo",0.879562971118828,0.104937748793089,0.000508173117642077,0.521216227661557,0.000169391039214026,0.0798678749894131,0.0383521110731763
"976","El Centro--Calexico, CA","26416",44265,31.5,16798,33745,57972,94492,109545,73122,95705,1677,1873,5423,10241,8373,33449,0.4529,791," CA","El Centro--Calexico",0.667506504176366,0.0153087772148432,0.0170979962572459,0.873659226801771,0.049504769729335,0.0934866949655393,0.110032064760303
"977","Eldon, MO","26443",26446,37,12216,22285,32333,50695,4246,4094,95,0,0,132,416,306,1319,0.4028,518," MO","Eldon",0.964201601507301,0,0,0.0223739990579369,0.0310880829015544,0.0979745642958078,0.10454390160574
"978","El Dorado, AR","26470",33900,36,13124,25648,43590,78120,18193,8336,523,9466,106,161,2435,1103,5790,0.4759,632," AR","El Dorado",0.458198208102017,0.520310009344253,0.00582641675369648,0.0287473203979553,0.00884955752212389,0.13384268674765,0.0889300975570426
"979","Eldorado, IL","26497",25953,38.8,10915,20550,37762,65756,4515,4338,32,53,0,124,363,272,1766,0.4654,518," IL","Eldorado",0.960797342192691,0.0117386489479513,0,0.0070874861572536,0.0274640088593577,0.0803986710963455,0.0989450709348854
"980","El Dorado, KS","26524",44308,33.1,20710,34428,54951,83957,14544,13304,688,497,60,343,1612,445,4671,0.4278,683," KS","El Dorado",0.914741474147415,0.0341721672167217,0.00412541254125413,0.0473047304730473,0.0235836083608361,0.110836083608361,0.0450724197305783
"981","Eldorado at Santa Fe, NM","26551",63645,55.7,39058,55353,78912,119237,4462,4235,632,47,43,13,2735,137,1581,0.3688,1225," NM","Eldorado at Santa Fe",0.949125952487674,0.0105333930972658,0.00963693411026446,0.141640519946212,0.00291349170775437,0.612953832362169,0.0475529330093717
"982","El Dorado Springs, MO","26578",21447,38,9992,15523,30943,51692,3451,3350,0,0,53,48,218,167,1424,0.4561,448," MO","El Dorado Springs",0.970733120834541,0,0.015357867284845,0,0.0139090118806143,0.0631700956244567,0.0823877651702023
"983","Electra, TX","26632",37875,44.8,16516,31250,50000,73971,2750,2455,213,106,15,134,257,45,955,0.4178,661," TX","Electra",0.892727272727273,0.0385454545454545,0.00545454545454545,0.0774545454545455,0.0487272727272727,0.0934545454545455,0.0250696378830084
"984","Elgin, TX","26659",50980,30.3,23033,36628,65177,96241,10619,7356,4978,1475,0,388,1015,279,2320,0.4068,926," TX","Elgin",0.69272059515962,0.138901968170261,0,0.468782371221396,0.0365382804407195,0.0955833882663151,0.0336185082540065
"985","Elizabeth City, NC","26686",37623,35.2,13844,27538,48983,80620,23674,11651,1393,11052,404,309,3197,1843,7553,0.4973,794," NC","Elizabeth City",0.492143279547183,0.466841260454507,0.0170651347469798,0.0588409225310467,0.013052293655487,0.135042662836867,0.114322932820545
"986","Elizabethtown, NC","26713",16831,45.2,6286,13322,23917,54848,3271,1146,183,1764,0,161,259,236,1584,0.5825,316," NC","Elizabethtown",0.350351574442067,0.539284622439621,0,0.0559461938245185,0.0492204218893305,0.0791806786915316,0.139893301719028
"987","Elizabethtown--Radcliff, KY","26750",46243,32.2,19949,37129,57327,91129,75886,54833,5441,13268,2181,4207,10728,3418,19468,0.4357,765," KY","Elizabethtown--Radcliff",0.722570698152492,0.174841209182194,0.0287404791397623,0.0716996547452758,0.0554384207890784,0.141369949661334,0.0605835017193094
"988","Elk City, OK","26767",58836,34.2,23880,46344,70270,98170,10743,9562,1383,127,18,808,1355,182,2972,0.4354,716," OK","Elk City",0.890067951224053,0.0118216513078284,0.0016755096341804,0.128734990226194,0.0752117658009867,0.126128641906358,0.0234204092137434
"989","Elkhart, IN--MI","26794",42811,35.2,20166,35173,52359,79400,144522,119231,26882,11097,1715,4384,16628,6913,36946,0.4193,718," IN--MI","Elkhart",0.825002421776615,0.0767841574293187,0.0118667054150925,0.186006282780476,0.0303344819473852,0.115055147313212,0.064261545326095
"990","Elkhorn, WI","26821",54746,35.3,29453,45940,64427,95136,12252,11656,1119,221,8,209,1858,590,2562,0.3488,786," WI","Elkhorn",0.951354880835782,0.0180378713679399,0.000652954619653934,0.091332027424094,0.017058439438459,0.151648710414626,0.0608875128998968
"991","Elkin, NC","26848",31928,39.1,13687,26656,37828,66090,6770,5389,1447,591,13,182,639,432,2172,0.4768,615," NC","Elkin",0.796011816838996,0.0872968980797637,0.00192023633677991,0.213737075332349,0.0268833087149188,0.0943870014771049,0.0939538929969552
"992","Elkins, WV","26875",38644,43,14323,29106,48776,74439,10693,10143,173,217,93,213,1903,441,3833,0.4471,539," WV","Elkins",0.948564481436454,0.0202936500514355,0.00869727859347236,0.0161788085663518,0.0199195735527915,0.17796689422987,0.0642857142857143
"993","Elko, NV","26902",73017,30.4,34419,60638,83155,123485,19349,16241,5510,510,200,479,2521,597,4105,0.3902,945," NV","Elko",0.839371543749031,0.0263579513153135,0.0103364514962014,0.284769238720347,0.0247558013334022,0.130290971109618,0.0391629493571241
"994","Elko New Market, MN","26912",92656,30.6,56056,80934,107065,136818,3966,3834,15,55,16,61,1051,51,356,0.2879,1093," MN","Elko New Market",0.966717095310136,0.0138678769541099,0.00403429147755925,0.0037821482602118,0.0153807362581947,0.265002521432173,0.0141274238227147
"995","Elkton, VA","26956",46625,38.3,21572,38677,60752,91464,3963,3819,151,77,0,0,455,100,1121,0.4023,670," VA","Elkton",0.963663890991673,0.0194297249558415,0,0.0381024476406763,0,0.1148120111027,0.0351864883884588
"996","Ellensburg, WA","26983",30567,24,10270,22237,41711,73514,21183,18194,2245,341,695,882,3947,982,7246,0.4945,785," WA","Ellensburg",0.858896284756644,0.0160978142850399,0.0328093282349054,0.105981211348723,0.0416371618750885,0.186328659774347,0.070459926813518
"997","Ellenville, NY","27010",43380,40.1,20578,35552,51950,86072,6498,4015,1736,1248,224,660,641,262,2815,0.4317,934," NY","Ellenville",0.61788242536165,0.192059095106187,0.0344721452754694,0.267159125884888,0.101569713758079,0.0986457371498923,0.0711376595166983
"998","Ellijay, GA","27037",29442,33.9,11728,21938,40114,54944,3594,2732,1270,198,0,28,295,202,1225,0.4334,622," GA","Ellijay",0.760155815247635,0.0550918196994992,0,0.353366722314969,0.00779076238174736,0.0820812465219811,0.0852680455888561
"999","Ellsworth, KS","27064",37070,43.7,22676,31769,51838,78520,2821,2386,224,213,0,131,458,62,1297,0.4047,529," KS","Ellsworth",0.845799361928394,0.0755051400212691,0,0.0794044665012407,0.0464374335342077,0.162353775257001,0.0406824146981627