-
Notifications
You must be signed in to change notification settings - Fork 0
/
raw_USA_data_from_CDC.txt
982 lines (982 loc) · 49.7 KB
/
raw_USA_data_from_CDC.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
"Notes" "State" "State Code" "Year" "Year Code" Deaths Population Crude Rate
"Alabama" "01" "1999" "1999" 443 4135201 10.7
"Alabama" "01" "2000" "2000" 470 4151108 11.3
"Alabama" "01" "2001" "2001" 489 4171010 11.7
"Alabama" "01" "2002" "2002" 460 4184043 11.0
"Alabama" "01" "2003" "2003" 472 4208287 11.2
"Alabama" "01" "2004" "2004" 577 4234759 13.6
"Alabama" "01" "2005" "2005" 587 4273364 13.7
"Alabama" "01" "2006" "2006" 711 4331759 16.4
"Alabama" "01" "2007" "2007" 807 4372540 18.5
"Alabama" "01" "2008" "2008" 896 4413364 20.3
"Alabama" "01" "2009" "2009" 923 4452526 20.7
"Alabama" "01" "2010" "2010" 850 4474779 19.0
"Alabama" "01" "2011" "2011" 852 4498835 18.9
"Alabama" "01" "2012" "2012" 910 4516756 20.1
"Alabama" "01" "2013" "2013" 907 4536618 20.0
"Alabama" "01" "2014" "2014" 1110 4554672 24.4
"Alabama" "01" "2015" "2015" 1124 4566006 24.6
"Alabama" "01" "2016" "2016" 1248 4570735 27.3
"Alaska" "02" "1999" "1999" 150 576843 26.0
"Alaska" "02" "2000" "2000" 156 579341 26.9
"Alaska" "02" "2001" "2001" 191 586538 32.6
"Alaska" "02" "2002" "2002" 210 594900 35.3
"Alaska" "02" "2003" "2003" 208 600804 34.6
"Alaska" "02" "2004" "2004" 196 611029 32.1
"Alaska" "02" "2005" "2005" 206 618017 33.3
"Alaska" "02" "2006" "2006" 228 625861 36.4
"Alaska" "02" "2007" "2007" 219 630081 34.8
"Alaska" "02" "2008" "2008" 278 636336 43.7
"Alaska" "02" "2009" "2009" 281 645773 43.5
"Alaska" "02" "2010" "2010" 206 656235 31.4
"Alaska" "02" "2011" "2011" 237 668175 35.5
"Alaska" "02" "2012" "2012" 254 676658 37.5
"Alaska" "02" "2013" "2013" 236 679740 34.7
"Alaska" "02" "2014" "2014" 266 682024 39.0
"Alaska" "02" "2015" "2015" 287 682983 42.0
"Alaska" "02" "2016" "2016" 321 687779 46.7
"Arizona" "04" "1999" "1999" 1023 4647735 22.0
"Arizona" "04" "2000" "2000" 1028 4748246 21.7
"Arizona" "04" "2001" "2001" 1043 4879413 21.4
"Arizona" "04" "2002" "2002" 1175 4991237 23.5
"Arizona" "04" "2003" "2003" 1304 5093755 25.6
"Arizona" "04" "2004" "2004" 1388 5222373 26.6
"Arizona" "04" "2005" "2005" 1511 5391970 28.0
"Arizona" "04" "2006" "2006" 1613 5569394 29.0
"Arizona" "04" "2007" "2007" 1724 5698001 30.3
"Arizona" "04" "2008" "2008" 1636 5806551 28.2
"Arizona" "04" "2009" "2009" 1840 5879736 31.3
"Arizona" "04" "2010" "2010" 2127 5936302 35.8
"Arizona" "04" "2011" "2011" 2125 6032321 35.2
"Arizona" "04" "2012" "2012" 2260 6113622 37.0
"Arizona" "04" "2013" "2013" 2442 6194866 39.4
"Arizona" "04" "2014" "2014" 2444 6300596 38.8
"Arizona" "04" "2015" "2015" 2626 6398821 41.0
"Arizona" "04" "2016" "2016" 2824 6491752 43.5
"Arkansas" "05" "1999" "1999" 237 2470733 9.6
"Arkansas" "05" "2000" "2000" 263 2491815 10.6
"Arkansas" "05" "2001" "2001" 290 2509545 11.6
"Arkansas" "05" "2002" "2002" 321 2523217 12.7
"Arkansas" "05" "2003" "2003" 341 2540729 13.4
"Arkansas" "05" "2004" "2004" 377 2563076 14.7
"Arkansas" "05" "2005" "2005" 432 2591340 16.7
"Arkansas" "05" "2006" "2006" 476 2629052 18.1
"Arkansas" "05" "2007" "2007" 499 2653709 18.8
"Arkansas" "05" "2008" "2008" 590 2677401 22.0
"Arkansas" "05" "2009" "2009" 556 2698856 20.6
"Arkansas" "05" "2010" "2010" 553 2718229 20.3
"Arkansas" "05" "2011" "2011" 551 2741634 20.1
"Arkansas" "05" "2012" "2012" 573 2755112 20.8
"Arkansas" "05" "2013" "2013" 532 2766457 19.2
"Arkansas" "05" "2014" "2014" 581 2774748 20.9
"Arkansas" "05" "2015" "2015" 667 2787346 23.9
"Arkansas" "05" "2016" "2016" 708 2797971 25.3
"California" "06" "1999" "1999" 6364 30987057 20.5
"California" "06" "2000" "2000" 5693 31384667 18.1
"California" "06" "2001" "2001" 4897 31990160 15.3
"California" "06" "2002" "2002" 6951 32379562 21.5
"California" "06" "2003" "2003" 7358 32735418 22.5
"California" "06" "2004" "2004" 7377 33032811 22.3
"California" "06" "2005" "2005" 7743 33272328 23.3
"California" "06" "2006" "2006" 7944 33481781 23.7
"California" "06" "2007" "2007" 8197 33704568 24.3
"California" "06" "2008" "2008" 8313 34043276 24.4
"California" "06" "2009" "2009" 8529 34416508 24.8
"California" "06" "2010" "2010" 8544 34722623 24.6
"California" "06" "2011" "2011" 8915 35153126 25.4
"California" "06" "2012" "2012" 8718 35499933 24.6
"California" "06" "2013" "2013" 9300 35824985 26.0
"California" "06" "2014" "2014" 9557 36286773 26.3
"California" "06" "2015" "2015" 10164 36636066 27.7
"California" "06" "2016" "2016" 10140 36762645 27.6
"Colorado" "08" "1999" "1999" 843 3934800 21.4
"Colorado" "08" "2000" "2000" 816 4003756 20.4
"Colorado" "08" "2001" "2001" 955 4116458 23.2
"Colorado" "08" "2002" "2002" 987 4174227 23.6
"Colorado" "08" "2003" "2003" 1044 4206390 24.8
"Colorado" "08" "2004" "2004" 1045 4249027 24.6
"Colorado" "08" "2005" "2005" 1137 4301031 26.4
"Colorado" "08" "2006" "2006" 1185 4385953 27.0
"Colorado" "08" "2007" "2007" 1357 4464026 30.4
"Colorado" "08" "2008" "2008" 1435 4546873 31.6
"Colorado" "08" "2009" "2009" 1469 4628467 31.7
"Colorado" "08" "2010" "2010" 1408 4685236 30.1
"Colorado" "08" "2011" "2011" 1570 4774642 32.9
"Colorado" "08" "2012" "2012" 1573 4850014 32.4
"Colorado" "08" "2013" "2013" 1650 4933231 33.4
"Colorado" "08" "2014" "2014" 1728 5020935 34.4
"Colorado" "08" "2015" "2015" 1750 5120967 34.2
"Colorado" "08" "2016" "2016" 1887 5203081 36.3
"Connecticut" "09" "1999" "1999" 505 3163584 16.0
"Connecticut" "09" "2000" "2000" 530 3182221 16.7
"Connecticut" "09" "2001" "2001" 486 3212747 15.1
"Connecticut" "09" "2002" "2002" 574 3241480 17.7
"Connecticut" "09" "2003" "2003" 522 3267470 16.0
"Connecticut" "09" "2004" "2004" 548 3281647 16.7
"Connecticut" "09" "2005" "2005" 537 3295641 16.3
"Connecticut" "09" "2006" "2006" 644 3308648 19.5
"Connecticut" "09" "2007" "2007" 658 3319944 19.8
"Connecticut" "09" "2008" "2008" 625 3340043 18.7
"Connecticut" "09" "2009" "2009" 618 3358606 18.4
"Connecticut" "09" "2010" "2010" 564 3371991 16.7
"Connecticut" "09" "2011" "2011" 603 3383613 17.8
"Connecticut" "09" "2012" "2012" 637 3396891 18.8
"Connecticut" "09" "2013" "2013" 881 3404143 25.9
"Connecticut" "09" "2014" "2014" 941 3407240 27.6
"Connecticut" "09" "2015" "2015" 1166 3403266 34.3
"Connecticut" "09" "2016" "2016" 1329 3391131 39.2
"Delaware" "10" "1999" "1999" 115 723921 15.9
"Delaware" "10" "2000" "2000" 111 732069 15.2
"Delaware" "10" "2001" "2001" 139 744000 18.7
"Delaware" "10" "2002" "2002" 161 753797 21.4
"Delaware" "10" "2003" "2003" 154 764983 20.1
"Delaware" "10" "2004" "2004" 143 776910 18.4
"Delaware" "10" "2005" "2005" 124 790334 15.7
"Delaware" "10" "2006" "2006" 141 804054 17.5
"Delaware" "10" "2007" "2007" 158 815752 19.4
"Delaware" "10" "2008" "2008" 200 827487 24.2
"Delaware" "10" "2009" "2009" 208 835371 24.9
"Delaware" "10" "2010" "2010" 221 842048 26.2
"Delaware" "10" "2011" "2011" 228 851406 26.8
"Delaware" "10" "2012" "2012" 210 860813 24.4
"Delaware" "10" "2013" "2013" 233 869430 26.8
"Delaware" "10" "2014" "2014" 280 879263 31.8
"Delaware" "10" "2015" "2015" 287 890096 32.2
"Delaware" "10" "2016" "2016" 392 897231 43.7
"District of Columbia" "11" "1999" "1999" 131 537315 24.4
"District of Columbia" "11" "2000" "2000" 196 539523 36.3
"District of Columbia" "11" "2001" "2001" 221 542108 40.8
"District of Columbia" "11" "2002" "2002" 186 540818 34.4
"District of Columbia" "11" "2003" "2003" 219 536949 40.8
"District of Columbia" "11" "2004" "2004" 217 535911 40.5
"District of Columbia" "11" "2005" "2005" 177 535085 33.1
"District of Columbia" "11" "2006" "2006" 209 539324 38.8
"District of Columbia" "11" "2007" "2007" 150 542546 27.6
"District of Columbia" "11" "2008" "2008" 150 547512 27.4
"District of Columbia" "11" "2009" "2009" 109 559521 19.5
"District of Columbia" "11" "2010" "2010" 177 569110 31.1
"District of Columbia" "11" "2011" "2011" 169 581833 29.0
"District of Columbia" "11" "2012" "2012" 159 593447 26.8
"District of Columbia" "11" "2013" "2013" 177 605482 29.2
"District of Columbia" "11" "2014" "2014" 172 615999 27.9
"District of Columbia" "11" "2015" "2015" 210 628876 33.4
"District of Columbia" "11" "2016" "2016" 356 637663 55.8
"Florida" "12" "1999" "1999" 2340 14817648 15.8
"Florida" "12" "2000" "2000" 2575 15036555 17.1
"Florida" "12" "2001" "2001" 3236 15388977 21.0
"Florida" "12" "2002" "2002" 3461 15698572 22.0
"Florida" "12" "2003" "2003" 3635 15992650 22.7
"Florida" "12" "2004" "2004" 3930 16375149 24.0
"Florida" "12" "2005" "2005" 4273 16772101 25.5
"Florida" "12" "2006" "2006" 4667 17085794 27.3
"Florida" "12" "2007" "2007" 4696 17281602 27.2
"Florida" "12" "2008" "2008" 4854 17441726 27.8
"Florida" "12" "2009" "2009" 4874 17573822 27.7
"Florida" "12" "2010" "2010" 4928 17727804 27.8
"Florida" "12" "2011" "2011" 4884 17982700 27.2
"Florida" "12" "2012" "2012" 4656 18246105 25.5
"Florida" "12" "2013" "2013" 4668 18474547 25.3
"Florida" "12" "2014" "2014" 5168 18808948 27.5
"Florida" "12" "2015" "2015" 5858 19170201 30.6
"Florida" "12" "2016" "2016" 7619 19486303 39.1
"Georgia" "13" "1999" "1999" 820 7462997 11.0
"Georgia" "13" "2000" "2000" 916 7591303 12.1
"Georgia" "13" "2001" "2001" 1089 7762295 14.0
"Georgia" "13" "2002" "2002" 1148 7878777 14.6
"Georgia" "13" "2003" "2003" 1182 7980488 14.8
"Georgia" "13" "2004" "2004" 1284 8113634 15.8
"Georgia" "13" "2005" "2005" 1323 8256215 16.0
"Georgia" "13" "2006" "2006" 1410 8476958 16.6
"Georgia" "13" "2007" "2007" 1474 8655991 17.0
"Georgia" "13" "2008" "2008" 1452 8804512 16.5
"Georgia" "13" "2009" "2009" 1568 8928094 17.6
"Georgia" "13" "2010" "2010" 1750 9000868 19.4
"Georgia" "13" "2011" "2011" 1702 9131759 18.6
"Georgia" "13" "2012" "2012" 1744 9244913 18.9
"Georgia" "13" "2013" "2013" 1831 9323659 19.6
"Georgia" "13" "2014" "2014" 1940 9434668 20.6
"Georgia" "13" "2015" "2015" 2094 9554815 21.9
"Georgia" "13" "2016" "2016" 2247 9649532 23.3
"Hawaii" "15" "1999" "1999" 121 1130555 10.7
"Hawaii" "15" "2000" "2000" 102 1133374 9.0
"Hawaii" "15" "2001" "2001" 118 1148324 10.3
"Hawaii" "15" "2002" "2002" 129 1161169 11.1
"Hawaii" "15" "2003" "2003" 133 1171632 11.4
"Hawaii" "15" "2004" "2004" 194 1191626 16.3
"Hawaii" "15" "2005" "2005" 192 1209598 15.9
"Hawaii" "15" "2006" "2006" 196 1225355 16.0
"Hawaii" "15" "2007" "2007" 224 1229583 18.2
"Hawaii" "15" "2008" "2008" 204 1244359 16.4
"Hawaii" "15" "2009" "2009" 242 1258840 19.2
"Hawaii" "15" "2010" "2010" 241 1272894 18.9
"Hawaii" "15" "2011" "2011" 277 1286305 21.5
"Hawaii" "15" "2012" "2012" 243 1303164 18.6
"Hawaii" "15" "2013" "2013" 237 1313284 18.0
"Hawaii" "15" "2014" "2014" 261 1328081 19.7
"Hawaii" "15" "2015" "2015" 270 1339191 20.2
"Hawaii" "15" "2016" "2016" 304 1337022 22.7
"Idaho" "16" "1999" "1999" 140 1179488 11.9
"Idaho" "16" "2000" "2000" 175 1196310 14.6
"Idaho" "16" "2001" "2001" 222 1220080 18.2
"Idaho" "16" "2002" "2002" 244 1238618 19.7
"Idaho" "16" "2003" "2003" 253 1259072 20.1
"Idaho" "16" "2004" "2004" 232 1284563 18.1
"Idaho" "16" "2005" "2005" 253 1317205 19.2
"Idaho" "16" "2006" "2006" 276 1353970 20.4
"Idaho" "16" "2007" "2007" 285 1386337 20.6
"Idaho" "16" "2008" "2008" 324 1412748 22.9
"Idaho" "16" "2009" "2009" 348 1432610 24.3
"Idaho" "16" "2010" "2010" 346 1445810 23.9
"Idaho" "16" "2011" "2011" 380 1465649 25.9
"Idaho" "16" "2012" "2012" 406 1479756 27.4
"Idaho" "16" "2013" "2013" 432 1498649 28.8
"Idaho" "16" "2014" "2014" 448 1520632 29.5
"Idaho" "16" "2015" "2015" 462 1542007 30.0
"Idaho" "16" "2016" "2016" 481 1567851 30.7
"Illinois" "17" "1999" "1999" 1511 11477054 13.2
"Illinois" "17" "2000" "2000" 1471 11542744 12.7
"Illinois" "17" "2001" "2001" 1560 11614506 13.4
"Illinois" "17" "2002" "2002" 1611 11652795 13.8
"Illinois" "17" "2003" "2003" 1436 11684176 12.3
"Illinois" "17" "2004" "2004" 1672 11718142 14.3
"Illinois" "17" "2005" "2005" 1710 11744197 14.6
"Illinois" "17" "2006" "2006" 2033 11790173 17.2
"Illinois" "17" "2007" "2007" 1867 11844539 15.8
"Illinois" "17" "2008" "2008" 2118 11899375 17.8
"Illinois" "17" "2009" "2009" 2172 11956503 18.2
"Illinois" "17" "2010" "2010" 2033 11995055 16.9
"Illinois" "17" "2011" "2011" 2233 12041021 18.5
"Illinois" "17" "2012" "2012" 2438 12058977 20.2
"Illinois" "17" "2013" "2013" 2420 12083116 20.0
"Illinois" "17" "2014" "2014" 2622 12089895 21.7
"Illinois" "17" "2015" "2015" 2814 12076333 23.3
"Illinois" "17" "2016" "2016" 3567 12029028 29.7
"Indiana" "18" "1999" "1999" 557 5624064 9.9
"Indiana" "18" "2000" "2000" 635 5657270 11.2
"Indiana" "18" "2001" "2001" 657 5702521 11.5
"Indiana" "18" "2002" "2002" 668 5730253 11.7
"Indiana" "18" "2003" "2003" 826 5769939 14.3
"Indiana" "18" "2004" "2004" 930 5804162 16.0
"Indiana" "18" "2005" "2005" 984 5848999 16.8
"Indiana" "18" "2006" "2006" 1101 5902732 18.7
"Indiana" "18" "2007" "2007" 1138 5946204 19.1
"Indiana" "18" "2008" "2008" 1240 5988733 20.7
"Indiana" "18" "2009" "2009" 1308 6024596 21.7
"Indiana" "18" "2010" "2010" 1398 6049727 23.1
"Indiana" "18" "2011" "2011" 1500 6087058 24.6
"Indiana" "18" "2012" "2012" 1551 6111831 25.4
"Indiana" "18" "2013" "2013" 1650 6150087 26.8
"Indiana" "18" "2014" "2014" 1825 6177368 29.5
"Indiana" "18" "2015" "2015" 1996 6200190 32.2
"Indiana" "18" "2016" "2016" 2280 6211066 36.7
"Iowa" "19" "1999" "1999" 212 2730904 7.8
"Iowa" "19" "2000" "2000" 214 2737911 7.8
"Iowa" "19" "2001" "2001" 248 2743889 9.0
"Iowa" "19" "2002" "2002" 263 2746780 9.6
"Iowa" "19" "2003" "2003" 275 2753277 10.0
"Iowa" "19" "2004" "2004" 288 2764230 10.4
"Iowa" "19" "2005" "2005" 347 2774048 12.5
"Iowa" "19" "2006" "2006" 384 2789333 13.8
"Iowa" "19" "2007" "2007" 423 2802659 15.1
"Iowa" "19" "2008" "2008" 419 2817482 14.9
"Iowa" "19" "2009" "2009" 443 2831602 15.6
"Iowa" "19" "2010" "2010" 491 2844232 17.3
"Iowa" "19" "2011" "2011" 521 2862956 18.2
"Iowa" "19" "2012" "2012" 541 2877820 18.8
"Iowa" "19" "2013" "2013" 598 2895690 20.7
"Iowa" "19" "2014" "2014" 633 2911786 21.7
"Iowa" "19" "2015" "2015" 676 2927118 23.1
"Iowa" "19" "2016" "2016" 717 2935278 24.4
"Kansas" "20" "1999" "1999" 231 2491136 9.3
"Kansas" "20" "2000" "2000" 248 2499710 9.9
"Kansas" "20" "2001" "2001" 305 2513573 12.1
"Kansas" "20" "2002" "2002" 359 2523038 14.2
"Kansas" "20" "2003" "2003" 367 2530820 14.5
"Kansas" "20" "2004" "2004" 403 2541623 15.9
"Kansas" "20" "2005" "2005" 458 2552302 17.9
"Kansas" "20" "2006" "2006" 473 2569724 18.4
"Kansas" "20" "2007" "2007" 503 2587544 19.4
"Kansas" "20" "2008" "2008" 446 2608590 17.1
"Kansas" "20" "2009" "2009" 542 2629937 20.6
"Kansas" "20" "2010" "2010" 486 2647626 18.4
"Kansas" "20" "2011" "2011" 547 2667583 20.5
"Kansas" "20" "2012" "2012" 566 2682638 21.1
"Kansas" "20" "2013" "2013" 567 2693551 21.1
"Kansas" "20" "2014" "2014" 612 2703414 22.6
"Kansas" "20" "2015" "2015" 627 2714161 23.1
"Kansas" "20" "2016" "2016" 621 2712982 22.9
"Kentucky" "21" "1999" "1999" 453 3752520 12.1
"Kentucky" "21" "2000" "2000" 519 3775868 13.7
"Kentucky" "21" "2001" "2001" 625 3801081 16.4
"Kentucky" "21" "2002" "2002" 685 3821817 17.9
"Kentucky" "21" "2003" "2003" 828 3847032 21.5
"Kentucky" "21" "2004" "2004" 802 3874996 20.7
"Kentucky" "21" "2005" "2005" 913 3910080 23.3
"Kentucky" "21" "2006" "2006" 996 3945685 25.2
"Kentucky" "21" "2007" "2007" 1002 3979226 25.2
"Kentucky" "21" "2008" "2008" 1014 4008411 25.3
"Kentucky" "21" "2009" "2009" 1087 4035177 26.9
"Kentucky" "21" "2010" "2010" 1334 4057000 32.9
"Kentucky" "21" "2011" "2011" 1388 4088195 34.0
"Kentucky" "21" "2012" "2012" 1477 4100880 36.0
"Kentucky" "21" "2013" "2013" 1380 4120421 33.5
"Kentucky" "21" "2014" "2014" 1520 4137224 36.7
"Kentucky" "21" "2015" "2015" 1797 4147703 43.3
"Kentucky" "21" "2016" "2016" 2023 4161221 48.6
"Louisiana" "22" "1999" "1999" 547 4143450 13.2
"Louisiana" "22" "2000" "2000" 558 4151584 13.4
"Louisiana" "22" "2001" "2001" 588 4161114 14.1
"Louisiana" "22" "2002" "2002" 696 4178442 16.7
"Louisiana" "22" "2003" "2003" 856 4200686 20.4
"Louisiana" "22" "2004" "2004" 870 4229953 20.6
"Louisiana" "22" "2005" "2005" 966 4253550 22.7
"Louisiana" "22" "2006" "2006" 1014 4014383 25.3
"Louisiana" "22" "2007" "2007" 1060 4076323 26.0
"Louisiana" "22" "2008" "2008" 894 4125820 21.7
"Louisiana" "22" "2009" "2009" 841 4178483 20.1
"Louisiana" "22" "2010" "2010" 850 4219112 20.1
"Louisiana" "22" "2011" "2011" 806 4258053 18.9
"Louisiana" "22" "2012" "2012" 801 4287127 18.7
"Louisiana" "22" "2013" "2013" 1134 4317253 26.3
"Louisiana" "22" "2014" "2014" 1139 4341042 26.2
"Louisiana" "22" "2015" "2015" 1288 4359907 29.5
"Louisiana" "22" "2016" "2016" 1356 4371065 31.0
"Maine" "23" "1999" "1999" 175 1196280 14.6
"Maine" "23" "2000" "2000" 159 1204197 13.2
"Maine" "23" "2001" "2001" 186 1215273 15.3
"Maine" "23" "2002" "2002" 248 1225698 20.2
"Maine" "23" "2003" "2003" 250 1235895 20.2
"Maine" "23" "2004" "2004" 250 1242885 20.1
"Maine" "23" "2005" "2005" 299 1247760 24.0
"Maine" "23" "2006" "2006" 280 1252796 22.4
"Maine" "23" "2007" "2007" 294 1255774 23.4
"Maine" "23" "2008" "2008" 260 1259302 20.6
"Maine" "23" "2009" "2009" 315 1259400 25.0
"Maine" "23" "2010" "2010" 272 1258841 21.6
"Maine" "23" "2011" "2011" 283 1260495 22.5
"Maine" "23" "2012" "2012" 294 1262288 23.3
"Maine" "23" "2013" "2013" 325 1263288 25.7
"Maine" "23" "2014" "2014" 377 1265310 29.8
"Maine" "23" "2015" "2015" 472 1264641 37.3
"Maine" "23" "2016" "2016" 561 1266411 44.3
"Maryland" "24" "1999" "1999" 969 4899878 19.8
"Maryland" "24" "2000" "2000" 949 4943093 19.2
"Maryland" "24" "2001" "2001" 948 5019863 18.9
"Maryland" "24" "2002" "2002" 1054 5082651 20.7
"Maryland" "24" "2003" "2003" 1113 5134149 21.7
"Maryland" "24" "2004" "2004" 997 5181206 19.2
"Maryland" "24" "2005" "2005" 974 5225466 18.6
"Maryland" "24" "2006" "2006" 1097 5261795 20.8
"Maryland" "24" "2007" "2007" 1143 5287499 21.6
"Maryland" "24" "2008" "2008" 996 5318850 18.7
"Maryland" "24" "2009" "2009" 1062 5365234 19.8
"Maryland" "24" "2010" "2010" 964 5409064 17.8
"Maryland" "24" "2011" "2011" 1037 5462136 19.0
"Maryland" "24" "2012" "2012" 1133 5519339 20.5
"Maryland" "24" "2013" "2013" 1224 5561604 22.0
"Maryland" "24" "2014" "2014" 1390 5606653 24.8
"Maryland" "24" "2015" "2015" 1619 5637366 28.7
"Maryland" "24" "2016" "2016" 2442 5649352 43.2
"Massachusetts" "25" "1999" "1999" 866 5918094 14.6
"Massachusetts" "25" "2000" "2000" 824 5951829 13.8
"Massachusetts" "25" "2001" "2001" 1060 6002209 17.7
"Massachusetts" "25" "2002" "2002" 1120 6024613 18.6
"Massachusetts" "25" "2003" "2003" 1267 6033855 21.0
"Massachusetts" "25" "2004" "2004" 1069 6028403 17.7
"Massachusetts" "25" "2005" "2005" 1246 6025741 20.7
"Massachusetts" "25" "2006" "2006" 1392 6038300 23.1
"Massachusetts" "25" "2007" "2007" 1443 6062550 23.8
"Massachusetts" "25" "2008" "2008" 1316 6100678 21.6
"Massachusetts" "25" "2009" "2009" 1336 6150031 21.7
"Massachusetts" "25" "2010" "2010" 1320 6180542 21.4
"Massachusetts" "25" "2011" "2011" 1488 6221885 23.9
"Massachusetts" "25" "2012" "2012" 1500 6280587 23.9
"Massachusetts" "25" "2013" "2013" 1684 6327278 26.6
"Massachusetts" "25" "2014" "2014" 1976 6379353 31.0
"Massachusetts" "25" "2015" "2015" 2484 6427860 38.6
"Massachusetts" "25" "2016" "2016" 3068 6450403 47.6
"Michigan" "26" "1999" "1999" 1329 9225299 14.4
"Michigan" "26" "2000" "2000" 1549 9266439 16.7
"Michigan" "26" "2001" "2001" 1668 9321859 17.9
"Michigan" "26" "2002" "2002" 1756 9351478 18.8
"Michigan" "26" "2003" "2003" 1733 9382449 18.5
"Michigan" "26" "2004" "2004" 1904 9400824 20.3
"Michigan" "26" "2005" "2005" 2120 9404585 22.5
"Michigan" "26" "2006" "2006" 2352 9400621 25.0
"Michigan" "26" "2007" "2007" 2252 9375163 24.0
"Michigan" "26" "2008" "2008" 2350 9332020 25.2
"Michigan" "26" "2009" "2009" 2631 9299798 28.3
"Michigan" "26" "2010" "2010" 2648 9287354 28.5
"Michigan" "26" "2011" "2011" 2601 9291797 28.0
"Michigan" "26" "2012" "2012" 2504 9307646 26.9
"Michigan" "26" "2013" "2013" 2692 9322854 28.9
"Michigan" "26" "2014" "2014" 2944 9339585 31.5
"Michigan" "26" "2015" "2015" 3297 9350800 35.3
"Michigan" "26" "2016" "2016" 3726 9353877 39.8
"Minnesota" "27" "1999" "1999" 472 4546880 10.4
"Minnesota" "27" "2000" "2000" 481 4589885 10.5
"Minnesota" "27" "2001" "2001" 546 4650080 11.7
"Minnesota" "27" "2002" "2002" 568 4685483 12.1
"Minnesota" "27" "2003" "2003" 600 4717972 12.7
"Minnesota" "27" "2004" "2004" 659 4747180 13.9
"Minnesota" "27" "2005" "2005" 683 4775905 14.3
"Minnesota" "27" "2006" "2006" 749 4816885 15.5
"Minnesota" "27" "2007" "2007" 691 4854165 14.2
"Minnesota" "27" "2008" "2008" 805 4891573 16.5
"Minnesota" "27" "2009" "2009" 881 4926072 17.9
"Minnesota" "27" "2010" "2010" 854 4948421 17.3
"Minnesota" "27" "2011" "2011" 1006 4992601 20.1
"Minnesota" "27" "2012" "2012" 1044 5030801 20.8
"Minnesota" "27" "2013" "2013" 1105 5072813 21.8
"Minnesota" "27" "2014" "2014" 1144 5108530 22.4
"Minnesota" "27" "2015" "2015" 1251 5139060 24.3
"Minnesota" "27" "2016" "2016" 1419 5167448 27.5
"Mississippi" "28" "1999" "1999" 256 2624620 9.8
"Mississippi" "28" "2000" "2000" 291 2640294 11.0
"Mississippi" "28" "2001" "2001" 350 2648547 13.2
"Mississippi" "28" "2002" "2002" 358 2654190 13.5
"Mississippi" "28" "2003" "2003" 359 2663711 13.5
"Mississippi" "28" "2004" "2004" 435 2682391 16.2
"Mississippi" "28" "2005" "2005" 423 2698610 15.7
"Mississippi" "28" "2006" "2006" 524 2700310 19.4
"Mississippi" "28" "2007" "2007" 492 2718832 18.1
"Mississippi" "28" "2008" "2008" 493 2734735 18.0
"Mississippi" "28" "2009" "2009" 502 2746287 18.3
"Mississippi" "28" "2010" "2010" 518 2756341 18.8
"Mississippi" "28" "2011" "2011" 475 2769262 17.2
"Mississippi" "28" "2012" "2012" 500 2781098 18.0
"Mississippi" "28" "2013" "2013" 503 2792781 18.0
"Mississippi" "28" "2014" "2014" 548 2799971 19.6
"Mississippi" "28" "2015" "2015" 543 2799551 19.4
"Mississippi" "28" "2016" "2016" 552 2800025 19.7
"Missouri" "29" "1999" "1999" 692 5192819 13.3
"Missouri" "29" "2000" "2000" 653 5225313 12.5
"Missouri" "29" "2001" "2001" 752 5270912 14.3
"Missouri" "29" "2002" "2002" 769 5303061 14.5
"Missouri" "29" "2003" "2003" 890 5337059 16.7
"Missouri" "29" "2004" "2004" 958 5372525 17.8
"Missouri" "29" "2005" "2005" 979 5412054 18.1
"Missouri" "29" "2006" "2006" 1146 5461456 21.0
"Missouri" "29" "2007" "2007" 1054 5501812 19.2
"Missouri" "29" "2008" "2008" 1175 5534826 21.2
"Missouri" "29" "2009" "2009" 1254 5571379 22.5
"Missouri" "29" "2010" "2010" 1420 5598690 25.4
"Missouri" "29" "2011" "2011" 1356 5626395 24.1
"Missouri" "29" "2012" "2012" 1409 5642742 25.0
"Missouri" "29" "2013" "2013" 1490 5667334 26.3
"Missouri" "29" "2014" "2014" 1579 5689271 27.8
"Missouri" "29" "2015" "2015" 1608 5709312 28.2
"Missouri" "29" "2016" "2016" 1951 5719042 34.1
"Montana" "30" "1999" "1999" 124 842816 14.7
"Montana" "30" "2000" "2000" 127 847326 15.0
"Montana" "30" "2001" "2001" 169 852521 19.8
"Montana" "30" "2002" "2002" 196 857067 22.9
"Montana" "30" "2003" "2003" 224 864212 25.9
"Montana" "30" "2004" "2004" 219 873836 25.1
"Montana" "30" "2005" "2005" 244 883042 27.6
"Montana" "30" "2006" "2006" 269 894619 30.1
"Montana" "30" "2007" "2007" 275 905346 30.4
"Montana" "30" "2008" "2008" 302 915737 33.0
"Montana" "30" "2009" "2009" 294 922324 31.9
"Montana" "30" "2010" "2010" 269 926992 29.0
"Montana" "30" "2011" "2011" 288 936431 30.8
"Montana" "30" "2012" "2012" 295 944177 31.2
"Montana" "30" "2013" "2013" 347 953893 36.4
"Montana" "30" "2014" "2014" 307 962385 31.9
"Montana" "30" "2015" "2015" 346 971063 35.6
"Montana" "30" "2016" "2016" 319 979491 32.6
"Nebraska" "31" "1999" "1999" 131 1588430 8.2
"Nebraska" "31" "2000" "2000" 122 1594215 7.7
"Nebraska" "31" "2001" "2001" 155 1602096 9.7
"Nebraska" "31" "2002" "2002" 177 1609098 11.0
"Nebraska" "31" "2003" "2003" 180 1616904 11.1
"Nebraska" "31" "2004" "2004" 194 1625092 11.9
"Nebraska" "31" "2005" "2005" 242 1635246 14.8
"Nebraska" "31" "2006" "2006" 236 1645140 14.3
"Nebraska" "31" "2007" "2007" 194 1654323 11.7
"Nebraska" "31" "2008" "2008" 250 1666254 15.0
"Nebraska" "31" "2009" "2009" 252 1681808 15.0
"Nebraska" "31" "2010" "2010" 274 1694433 16.2
"Nebraska" "31" "2011" "2011" 278 1711169 16.2
"Nebraska" "31" "2012" "2012" 328 1723257 19.0
"Nebraska" "31" "2013" "2013" 318 1738356 18.3
"Nebraska" "31" "2014" "2014" 324 1751325 18.5
"Nebraska" "31" "2015" "2015" 338 1765559 19.1
"Nebraska" "31" "2016" "2016" 366 1774307 20.6
"Nevada" "32" "1999" "1999" 489 1792634 27.3
"Nevada" "32" "2000" "2000" 498 1852440 26.9
"Nevada" "32" "2001" "2001" 518 1946713 26.6
"Nevada" "32" "2002" "2002" 542 2017503 26.9
"Nevada" "32" "2003" "2003" 594 2087465 28.5
"Nevada" "32" "2004" "2004" 626 2177525 28.7
"Nevada" "32" "2005" "2005" 686 2256436 30.4
"Nevada" "32" "2006" "2006" 688 2339051 29.4
"Nevada" "32" "2007" "2007" 768 2411139 31.9
"Nevada" "32" "2008" "2008" 810 2461083 32.9
"Nevada" "32" "2009" "2009" 871 2494195 34.9
"Nevada" "32" "2010" "2010" 917 2513073 36.5
"Nevada" "32" "2011" "2011" 985 2536882 38.8
"Nevada" "32" "2012" "2012" 980 2575630 38.0
"Nevada" "32" "2013" "2013" 990 2611942 37.9
"Nevada" "32" "2014" "2014" 931 2662702 35.0
"Nevada" "32" "2015" "2015" 1060 2714228 39.1
"Nevada" "32" "2016" "2016" 1149 2755596 41.7
"New Hampshire" "33" "1999" "1999" 151 1146228 13.2
"New Hampshire" "33" "2000" "2000" 140 1160101 12.1
"New Hampshire" "33" "2001" "2001" 207 1179719 17.5
"New Hampshire" "33" "2002" "2002" 191 1193546 16.0
"New Hampshire" "33" "2003" "2003" 232 1204710 19.3
"New Hampshire" "33" "2004" "2004" 231 1215209 19.0
"New Hampshire" "33" "2005" "2005" 262 1223202 21.4
"New Hampshire" "33" "2006" "2006" 260 1233279 21.1
"New Hampshire" "33" "2007" "2007" 306 1238522 24.7
"New Hampshire" "33" "2008" "2008" 254 1242953 20.4
"New Hampshire" "33" "2009" "2009" 303 1244873 24.3
"New Hampshire" "33" "2010" "2010" 291 1246664 23.3
"New Hampshire" "33" "2011" "2011" 347 1250544 27.7
"New Hampshire" "33" "2012" "2012" 323 1254765 25.7
"New Hampshire" "33" "2013" "2013" 391 1257798 31.1
"New Hampshire" "33" "2014" "2014" 531 1262268 42.1
"New Hampshire" "33" "2015" "2015" 605 1266014 47.8
"New Hampshire" "33" "2016" "2016" 669 1270595 52.7
"New Jersey" "34" "1999" "1999" 1223 7797016 15.7
"New Jersey" "34" "2000" "2000" 1302 7850565 16.6
"New Jersey" "34" "2001" "2001" 1294 7930880 16.3
"New Jersey" "34" "2002" "2002" 1376 7989865 17.2
"New Jersey" "34" "2003" "2003" 1230 8034936 15.3
"New Jersey" "34" "2004" "2004" 1186 8065383 14.7
"New Jersey" "34" "2005" "2005" 1450 8088141 17.9
"New Jersey" "34" "2006" "2006" 1473 8105797 18.2
"New Jersey" "34" "2007" "2007" 1209 8126609 14.9
"New Jersey" "34" "2008" "2008" 1310 8164583 16.0
"New Jersey" "34" "2009" "2009" 737 8214339 9.0
"New Jersey" "34" "2010" "2010" 1449 8250874 17.6
"New Jersey" "34" "2011" "2011" 1625 8285266 19.6
"New Jersey" "34" "2012" "2012" 1771 8336941 21.2
"New Jersey" "34" "2013" "2013" 1882 8366104 22.5
"New Jersey" "34" "2014" "2014" 1855 8405656 22.1
"New Jersey" "34" "2015" "2015" 2032 8427879 24.1
"New Jersey" "34" "2016" "2016" 2713 8423137 32.2
"New Mexico" "35" "1999" "1999" 566 1676578 33.8
"New Mexico" "35" "2000" "2000" 617 1688418 36.5
"New Mexico" "35" "2001" "2001" 605 1701620 35.6
"New Mexico" "35" "2002" "2002" 614 1723349 35.6
"New Mexico" "35" "2003" "2003" 731 1743880 41.9
"New Mexico" "35" "2004" "2004" 656 1768223 37.1
"New Mexico" "35" "2005" "2005" 704 1794504 39.2
"New Mexico" "35" "2006" "2006" 786 1822512 43.1
"New Mexico" "35" "2007" "2007" 873 1847576 47.3
"New Mexico" "35" "2008" "2008" 968 1866424 51.9
"New Mexico" "35" "2009" "2009" 872 1890978 46.1
"New Mexico" "35" "2010" "2010" 912 1914198 47.6
"New Mexico" "35" "2011" "2011" 1018 1936476 52.6
"New Mexico" "35" "2012" "2012" 998 1942002 51.4
"New Mexico" "35" "2013" "2013" 960 1946563 49.3
"New Mexico" "35" "2014" "2014" 1074 1948439 55.1
"New Mexico" "35" "2015" "2015" 1171 1950085 60.0
"New Mexico" "35" "2016" "2016" 1194 1952065 61.2
"New York" "36" "1999" "1999" 2331 17636566 13.2
"New York" "36" "2000" "2000" 2059 17737040 11.6
"New York" "36" "2001" "2001" 2451 17860827 13.7
"New York" "36" "2002" "2002" 2212 17925579 12.3
"New York" "36" "2003" "2003" 2309 17971485 12.8
"New York" "36" "2004" "2004" 2130 17973869 11.9
"New York" "36" "2005" "2005" 2238 17951865 12.5
"New York" "36" "2006" "2006" 3047 17943634 17.0
"New York" "36" "2007" "2007" 3074 17975314 17.1
"New York" "36" "2008" "2008" 3104 18053197 17.2
"New York" "36" "2009" "2009" 3026 18149723 16.7
"New York" "36" "2010" "2010" 2975 18222280 16.3
"New York" "36" "2011" "2011" 3459 18301617 18.9
"New York" "36" "2012" "2012" 3650 18403076 19.8
"New York" "36" "2013" "2013" 3956 18477500 21.4
"New York" "36" "2014" "2014" 3907 18561636 21.0
"New York" "36" "2015" "2015" 4484 18611404 24.1
"New York" "36" "2016" "2016" 5447 18585232 29.3
"North Carolina" "37" "1999" "1999" 1088 7420072 14.7
"North Carolina" "37" "2000" "2000" 1226 7509804 16.3
"North Carolina" "37" "2001" "2001" 1212 7654852 15.8
"North Carolina" "37" "2002" "2002" 1334 7759281 17.2
"North Carolina" "37" "2003" "2003" 1444 7846723 18.4
"North Carolina" "37" "2004" "2004" 1593 7969710 20.0
"North Carolina" "37" "2005" "2005" 1676 8112026 20.7
"North Carolina" "37" "2006" "2006" 1728 8315904 20.8
"North Carolina" "37" "2007" "2007" 1798 8501092 21.2
"North Carolina" "37" "2008" "2008" 1936 8679649 22.3
"North Carolina" "37" "2009" "2009" 1934 8815545 21.9
"North Carolina" "37" "2010" "2010" 1791 8903443 20.1
"North Carolina" "37" "2011" "2011" 2031 9026610 22.5
"North Carolina" "37" "2012" "2012" 2084 9132133 22.8
"North Carolina" "37" "2013" "2013" 2159 9235765 23.4
"North Carolina" "37" "2014" "2014" 2320 9336488 24.8
"North Carolina" "37" "2015" "2015" 2545 9438091 27.0
"North Carolina" "37" "2016" "2016" 2998 9540478 31.4
"North Dakota" "38" "1999" "1999" 67 604427 11.1
"North Dakota" "38" "2000" "2000" 65 602800 10.8
"North Dakota" "38" "2001" "2001" 85 600922 14.1
"North Dakota" "38" "2002" "2002" 94 600480 15.7
"North Dakota" "38" "2003" "2003" 102 601283 17.0
"North Dakota" "38" "2004" "2004" 83 606352 13.7
"North Dakota" "38" "2005" "2005" 88 607208 14.5
"North Dakota" "38" "2006" "2006" 80 609579 13.1
"North Dakota" "38" "2007" "2007" 94 611799 15.4
"North Dakota" "38" "2008" "2008" 128 615342 20.8
"North Dakota" "38" "2009" "2009" 98 621378 15.8
"North Dakota" "38" "2010" "2010" 104 627996 16.6
"North Dakota" "38" "2011" "2011" 120 638883 18.8
"North Dakota" "38" "2012" "2012" 135 653519 20.7
"North Dakota" "38" "2013" "2013" 127 674626 18.8
"North Dakota" "38" "2014" "2014" 141 688466 20.5
"North Dakota" "38" "2015" "2015" 161 703780 22.9
"North Dakota" "38" "2016" "2016" 199 702716 28.3
"Ohio" "39" "1999" "1999" 1088 10578265 10.3
"Ohio" "39" "2000" "2000" 1208 10598210 11.4
"Ohio" "39" "2001" "2001" 1428 10636895 13.4
"Ohio" "39" "2002" "2002" 1621 10661702 15.2
"Ohio" "39" "2003" "2003" 1440 10692788 13.5
"Ohio" "39" "2004" "2004" 1925 10712471 18.0
"Ohio" "39" "2005" "2005" 2132 10729389 19.9
"Ohio" "39" "2006" "2006" 2308 10754672 21.5
"Ohio" "39" "2007" "2007" 2470 10772459 22.9
"Ohio" "39" "2008" "2008" 2639 10788558 24.5
"Ohio" "39" "2009" "2009" 2072 10805528 19.2
"Ohio" "39" "2010" "2010" 2746 10815648 25.4
"Ohio" "39" "2011" "2011" 2957 10834591 27.3
"Ohio" "39" "2012" "2012" 3060 10849355 28.2
"Ohio" "39" "2013" "2013" 3345 10879987 30.7
"Ohio" "39" "2014" "2014" 3776 10903587 34.6
"Ohio" "39" "2015" "2015" 4440 10920335 40.7
"Ohio" "39" "2016" "2016" 5624 10916450 51.5
"Oklahoma" "40" "1999" "1999" 434 3202991 13.5
"Oklahoma" "40" "2000" "2000" 483 3214301 15.0
"Oklahoma" "40" "2001" "2001" 501 3230072 15.5
"Oklahoma" "40" "2002" "2002" 546 3248538 16.8
"Oklahoma" "40" "2003" "2003" 642 3262686 19.7
"Oklahoma" "40" "2004" "2004" 813 3282180 24.8
"Oklahoma" "40" "2005" "2005" 876 3302502 26.5
"Oklahoma" "40" "2006" "2006" 971 3344369 29.0
"Oklahoma" "40" "2007" "2007" 1097 3380306 32.5
"Oklahoma" "40" "2008" "2008" 1006 3411160 29.5
"Oklahoma" "40" "2009" "2009" 1125 3454945 32.6
"Oklahoma" "40" "2010" "2010" 1166 3487225 33.4
"Oklahoma" "40" "2011" "2011" 1158 3525093 32.9
"Oklahoma" "40" "2012" "2012" 1250 3552862 35.2
"Oklahoma" "40" "2013" "2013" 1264 3586089 35.2
"Oklahoma" "40" "2014" "2014" 1347 3612577 37.3
"Oklahoma" "40" "2015" "2015" 1277 3643390 35.0
"Oklahoma" "40" "2016" "2016" 1437 3656651 39.3
"Oregon" "41" "1999" "1999" 634 3172482 20.0
"Oregon" "41" "2000" "2000" 616 3198394 19.3
"Oregon" "41" "2001" "2001" 690 3243938 21.3
"Oregon" "41" "2002" "2002" 845 3288575 25.7
"Oregon" "41" "2003" "2003" 985 3321799 29.7
"Oregon" "41" "2004" "2004" 997 3344945 29.8
"Oregon" "41" "2005" "2005" 1042 3387085 30.8
"Oregon" "41" "2006" "2006" 1059 3442249 30.8
"Oregon" "41" "2007" "2007" 1105 3489482 31.7
"Oregon" "41" "2008" "2008" 1065 3532695 30.1
"Oregon" "41" "2009" "2009" 1166 3571080 32.7
"Oregon" "41" "2010" "2010" 1146 3593518 31.9
"Oregon" "41" "2011" "2011" 1241 3635231 34.1
"Oregon" "41" "2012" "2012" 1246 3666837 34.0
"Oregon" "41" "2013" "2013" 1261 3700043 34.1
"Oregon" "41" "2014" "2014" 1376 3740776 36.8
"Oregon" "41" "2015" "2015" 1505 3798187 39.6
"Oregon" "41" "2016" "2016" 1478 3857665 38.3
"Pennsylvania" "42" "1999" "1999" 1504 11531867 13.0
"Pennsylvania" "42" "2000" "2000" 1685 11553250 14.6
"Pennsylvania" "42" "2001" "2001" 1516 11578769 13.1
"Pennsylvania" "42" "2002" "2002" 1661 11613331 14.3
"Pennsylvania" "42" "2003" "2003" 1930 11655930 16.6
"Pennsylvania" "42" "2004" "2004" 2086 11688396 17.8
"Pennsylvania" "42" "2005" "2005" 2167 11727825 18.5
"Pennsylvania" "42" "2006" "2006" 2333 11789334 19.8
"Pennsylvania" "42" "2007" "2007" 2355 11837216 19.9
"Pennsylvania" "42" "2008" "2008" 2525 11882654 21.2
"Pennsylvania" "42" "2009" "2009" 2672 11936634 22.4
"Pennsylvania" "42" "2010" "2010" 2706 11972841 22.6
"Pennsylvania" "42" "2011" "2011" 3091 12019000 25.7
"Pennsylvania" "42" "2012" "2012" 3229 12043833 26.8
"Pennsylvania" "42" "2013" "2013" 3314 12057897 27.5
"Pennsylvania" "42" "2014" "2014" 3656 12072125 30.3
"Pennsylvania" "42" "2015" "2015" 4252 12087584 35.2
"Pennsylvania" "42" "2016" "2016" 5694 12072462 47.2
"Rhode Island" "44" "1999" "1999" 130 976131 13.3
"Rhode Island" "44" "2000" "2000" 152 984423 15.4
"Rhode Island" "44" "2001" "2001" 175 993682 17.6
"Rhode Island" "44" "2002" "2002" 185 1002623 18.5
"Rhode Island" "44" "2003" "2003" 222 1008053 22.0
"Rhode Island" "44" "2004" "2004" 191 1011461 18.9
"Rhode Island" "44" "2005" "2005" 219 1006251 21.8
"Rhode Island" "44" "2006" "2006" 274 1002810 27.3
"Rhode Island" "44" "2007" "2007" 235 997570 23.6
"Rhode Island" "44" "2008" "2008" 279 995922 28.0
"Rhode Island" "44" "2009" "2009" 257 995915 25.8
"Rhode Island" "44" "2010" "2010" 278 995119 27.9
"Rhode Island" "44" "2011" "2011" 323 995258 32.5
"Rhode Island" "44" "2012" "2012" 336 995224 33.8
"Rhode Island" "44" "2013" "2013" 372 996879 37.3
"Rhode Island" "44" "2014" "2014" 386 1000277 38.6
"Rhode Island" "44" "2015" "2015" 464 1001170 46.3
"Rhode Island" "44" "2016" "2016" 478 1001718 47.7
"South Carolina" "45" "1999" "1999" 596 3712616 16.1
"South Carolina" "45" "2000" "2000" 748 3747333 20.0
"South Carolina" "45" "2001" "2001" 601 3796607 15.8
"South Carolina" "45" "2002" "2002" 531 3835628 13.8
"South Carolina" "45" "2003" "2003" 660 3876022 17.0
"South Carolina" "45" "2004" "2004" 803 3933392 20.4
"South Carolina" "45" "2005" "2005" 858 3990527 21.5
"South Carolina" "45" "2006" "2006" 987 4074181 24.2
"South Carolina" "45" "2007" "2007" 944 4152392 22.7
"South Carolina" "45" "2008" "2008" 911 4229265 21.5
"South Carolina" "45" "2009" "2009" 1021 4287521 23.8
"South Carolina" "45" "2010" "2010" 1090 4323067 25.2
"South Carolina" "45" "2011" "2011" 1043 4376560 23.8
"South Carolina" "45" "2012" "2012" 1030 4427322 23.3
"South Carolina" "45" "2013" "2013" 1064 4482523 23.7
"South Carolina" "45" "2014" "2014" 1164 4541963 25.6
"South Carolina" "45" "2015" "2015" 1288 4606156 28.0
"South Carolina" "45" "2016" "2016" 1492 4667985 32.0
"South Dakota" "46" "1999" "1999" 100 699688 14.3
"South Dakota" "46" "2000" "2000" 94 703775 13.4
"South Dakota" "46" "2001" "2001" 99 707072 14.0
"South Dakota" "46" "2002" "2002" 79 709158 11.1
"South Dakota" "46" "2003" "2003" 95 712220 13.3
"South Dakota" "46" "2004" "2004" 152 717911 21.2
"South Dakota" "46" "2005" "2005" 134 722106 18.6
"South Dakota" "46" "2006" "2006" 141 728265 19.4
"South Dakota" "46" "2007" "2007" 115 735115 15.6
"South Dakota" "46" "2008" "2008" 160 741379 21.6
"South Dakota" "46" "2009" "2009" 135 748352 18.0
"South Dakota" "46" "2010" "2010" 136 754559 18.0
"South Dakota" "46" "2011" "2011" 180 764491 23.5
"South Dakota" "46" "2012" "2012" 184 774152 23.8
"South Dakota" "46" "2013" "2013" 180 784920 22.9
"South Dakota" "46" "2014" "2014" 215 792565 27.1
"South Dakota" "46" "2015" "2015" 224 797225 28.1
"South Dakota" "46" "2016" "2016" 233 804085 29.0
"Tennessee" "47" "1999" "1999" 769 5267862 14.6
"Tennessee" "47" "2000" "2000" 814 5314403 15.3
"Tennessee" "47" "2001" "2001" 877 5372573 16.3
"Tennessee" "47" "2002" "2002" 916 5414725 16.9
"Tennessee" "47" "2003" "2003" 1191 5462469 21.8
"Tennessee" "47" "2004" "2004" 1281 5522303 23.2
"Tennessee" "47" "2005" "2005" 1387 5598792 24.8
"Tennessee" "47" "2006" "2006" 1514 5693164 26.6
"Tennessee" "47" "2007" "2007" 1514 5774631 26.2
"Tennessee" "47" "2008" "2008" 1430 5840442 24.5
"Tennessee" "47" "2009" "2009" 1513 5898790 25.6
"Tennessee" "47" "2010" "2010" 1672 5938292 28.2
"Tennessee" "47" "2011" "2011" 1669 5998336 27.8
"Tennessee" "47" "2012" "2012" 1828 6052267 30.2
"Tennessee" "47" "2013" "2013" 1897 6096301 31.1
"Tennessee" "47" "2014" "2014" 1969 6148921 32.0
"Tennessee" "47" "2015" "2015" 2179 6198116 35.2
"Tennessee" "47" "2016" "2016" 2478 6243595 39.7
"Texas" "48" "1999" "1999" 2423 18941029 12.8
"Texas" "48" "2000" "2000" 2400 19227192 12.5
"Texas" "48" "2001" "2001" 2738 19650092 13.9
"Texas" "48" "2002" "2002" 3015 19979293 15.1
"Texas" "48" "2003" "2003" 3145 20277926 15.5
"Texas" "48" "2004" "2004" 3226 20598979 15.7
"Texas" "48" "2005" "2005" 3414 20950779 16.3
"Texas" "48" "2006" "2006" 3821 21496527 17.8
"Texas" "48" "2007" "2007" 3697 21939897 16.9
"Texas" "48" "2008" "2008" 3539 22391424 15.8
"Texas" "48" "2009" "2009" 3918 22872599 17.1
"Texas" "48" "2010" "2010" 4064 23217088 17.5
"Texas" "48" "2011" "2011" 4283 23715073 18.1
"Texas" "48" "2012" "2012" 4219 24117358 17.5
"Texas" "48" "2013" "2013" 4368 24507368 17.8
"Texas" "48" "2014" "2014" 4631 25000745 18.5
"Texas" "48" "2015" "2015" 4795 25485474 18.8
"Texas" "48" "2016" "2016" 5162 25843425 20.0
"Utah" "49" "1999" "1999" 337 1997049 16.9
"Utah" "49" "2000" "2000" 337 2023791 16.7
"Utah" "49" "2001" "2001" 330 2068787 16.0
"Utah" "49" "2002" "2002" 419 2104749 19.9
"Utah" "49" "2003" "2003" 482 2134973 22.6
"Utah" "49" "2004" "2004" 509 2171162 23.4
"Utah" "49" "2005" "2005" 611 2222282 27.5
"Utah" "49" "2006" "2006" 625 2282642 27.4
"Utah" "49" "2007" "2007" 689 2346485 29.4
"Utah" "49" "2008" "2008" 651 2405757 27.1
"Utah" "49" "2009" "2009" 680 2462322 27.6
"Utah" "49" "2010" "2010" 639 2499961 25.6
"Utah" "49" "2011" "2011" 686 2555101 26.8
"Utah" "49" "2012" "2012" 813 2597439 31.3
"Utah" "49" "2013" "2013" 826 2647005 31.2
"Utah" "49" "2014" "2014" 853 2690771 31.7
"Utah" "49" "2015" "2015" 932 2745216 33.9
"Utah" "49" "2016" "2016" 961 2797767 34.3
"Vermont" "50" "1999" "1999" 68 570758 11.9
"Vermont" "50" "2000" "2000" 75 574838 13.0
"Vermont" "50" "2001" "2001" 91 578694 15.7
"Vermont" "50" "2002" "2002" 122 582303 21.0
"Vermont" "50" "2003" "2003" 134 584777 22.9
"Vermont" "50" "2004" "2004" 110 586876 18.7
"Vermont" "50" "2005" "2005" 108 588259 18.4
"Vermont" "50" "2006" "2006" 146 590419 24.7
"Vermont" "50" "2007" "2007" 131 590906 22.2
"Vermont" "50" "2008" "2008" 138 591807 23.3
"Vermont" "50" "2009" "2009" 122 592805 20.6
"Vermont" "50" "2010" "2010" 126 593789 21.2
"Vermont" "50" "2011" "2011" 174 595260 29.2
"Vermont" "50" "2012" "2012" 147 595490 24.7
"Vermont" "50" "2013" "2013" 199 596152 33.4
"Vermont" "50" "2014" "2014" 183 596145 30.7
"Vermont" "50" "2015" "2015" 207 595634 34.8
"Vermont" "50" "2016" "2016" 229 593953 38.6
"Virginia" "51" "1999" "1999" 723 6541725 11.1
"Virginia" "51" "2000" "2000" 798 6616533 12.1
"Virginia" "51" "2001" "2001" 851 6729587 12.6
"Virginia" "51" "2002" "2002" 855 6811370 12.6
"Virginia" "51" "2003" "2003" 969 6884292 14.1
"Virginia" "51" "2004" "2004" 926 6982114 13.3
"Virginia" "51" "2005" "2005" 967 7076269 13.7
"Virginia" "51" "2006" "2006" 1015 7170933 14.2
"Virginia" "51" "2007" "2007" 1157 7244661 16.0
"Virginia" "51" "2008" "2008" 1190 7324282 16.2
"Virginia" "51" "2009" "2009" 1116 7417501 15.0
"Virginia" "51" "2010" "2010" 984 7491399 13.1
"Virginia" "51" "2011" "2011" 1306 7586417 17.2
"Virginia" "51" "2012" "2012" 1285 7676265 16.7
"Virginia" "51" "2013" "2013" 1382 7748290 17.8
"Virginia" "51" "2014" "2014" 1551 7811396 19.9
"Virginia" "51" "2015" "2015" 1724 7867836 21.9
"Virginia" "51" "2016" "2016" 2115 7901307 26.8
"Washington" "53" "1999" "1999" 1160 5449701 21.3
"Washington" "53" "2000" "2000" 1121 5499815 20.4
"Washington" "53" "2001" "2001" 1156 5588770 20.7
"Washington" "53" "2002" "2002" 1263 5654912 22.3
"Washington" "53" "2003" "2003" 1381 5706554 24.2
"Washington" "53" "2004" "2004" 1518 5776762 26.3
"Washington" "53" "2005" "2005" 1547 5853682 26.4
"Washington" "53" "2006" "2006" 1629 5960828 27.3
"Washington" "53" "2007" "2007" 1720 6042168 28.5
"Washington" "53" "2008" "2008" 1834 6133404 29.9
"Washington" "53" "2009" "2009" 1846 6230621 29.6
"Washington" "53" "2010" "2010" 1810 6284883 28.8
"Washington" "53" "2011" "2011" 1919 6386433 30.0
"Washington" "53" "2012" "2012" 1990 6453855 30.8
"Washington" "53" "2013" "2013" 2084 6526786 31.9
"Washington" "53" "2014" "2014" 2094 6614960 31.7
"Washington" "53" "2015" "2015" 2287 6722429 34.0
"Washington" "53" "2016" "2016" 2228 6832661 32.6
"West Virginia" "54" "1999" "1999" 197 1709287 11.5
"West Virginia" "54" "2000" "2000" 268 1706539 15.7
"West Virginia" "54" "2001" "2001" 349 1700785 20.5
"West Virginia" "54" "2002" "2002" 364 1703900 21.4
"West Virginia" "54" "2003" "2003" 434 1709883 25.4
"West Virginia" "54" "2004" "2004" 481 1712862 28.1
"West Virginia" "54" "2005" "2005" 309 1716854 18.0
"West Virginia" "54" "2006" "2006" 515 1724340 29.9
"West Virginia" "54" "2007" "2007" 570 1729821 33.0
"West Virginia" "54" "2008" "2008" 597 1735344 34.4
"West Virginia" "54" "2009" "2009" 376 1743239 21.6
"West Virginia" "54" "2010" "2010" 658 1748934 37.6
"West Virginia" "54" "2011" "2011" 813 1751908 46.4
"West Virginia" "54" "2012" "2012" 744 1752342 42.5
"West Virginia" "54" "2013" "2013" 742 1752110 42.3
"West Virginia" "54" "2014" "2014" 840 1747841 48.1
"West Virginia" "54" "2015" "2015" 942 1740718 54.1
"West Virginia" "54" "2016" "2016" 1143 1730083 66.1
"Wisconsin" "55" "1999" "1999" 593 4996842 11.9
"Wisconsin" "55" "2000" "2000" 673 5021335 13.4
"Wisconsin" "55" "2001" "2001" 686 5063417 13.5
"Wisconsin" "55" "2002" "2002" 744 5100265 14.6
"Wisconsin" "55" "2003" "2003" 849 5132450 16.5
"Wisconsin" "55" "2004" "2004" 900 5164924 17.4
"Wisconsin" "55" "2005" "2005" 1029 5196682 19.8
"Wisconsin" "55" "2006" "2006" 1065 5226765 20.4
"Wisconsin" "55" "2007" "2007" 1125 5255432 21.4
"Wisconsin" "55" "2008" "2008" 1083 5283075 20.5
"Wisconsin" "55" "2009" "2009" 1108 5310894 20.9
"Wisconsin" "55" "2010" "2010" 1135 5328543 21.3
"Wisconsin" "55" "2011" "2011" 1215 5357185 22.7
"Wisconsin" "55" "2012" "2012" 1271 5375817 23.6
"Wisconsin" "55" "2013" "2013" 1457 5398382 27.0
"Wisconsin" "55" "2014" "2014" 1503 5416196 27.8
"Wisconsin" "55" "2015" "2015" 1531 5431611 28.2
"Wisconsin" "55" "2016" "2016" 1842 5441802 33.8
"Wyoming" "56" "1999" "1999" 80 460689 17.4
"Wyoming" "56" "2000" "2000" 91 462842 19.7
"Wyoming" "56" "2001" "2001" 82 463766 17.7
"Wyoming" "56" "2002" "2002" 112 468445 23.9
"Wyoming" "56" "2003" "2003" 96 471420 20.4
"Wyoming" "56" "2004" "2004" 130 476441 27.3
"Wyoming" "56" "2005" "2005" 108 480719 22.5
"Wyoming" "56" "2006" "2006" 152 487920 31.2
"Wyoming" "56" "2007" "2007" 156 498014 31.3
"Wyoming" "56" "2008" "2008" 163 507866 32.1
"Wyoming" "56" "2009" "2009" 128 519873 24.6
"Wyoming" "56" "2010" "2010" 168 523423 32.1
"Wyoming" "56" "2011" "2011" 178 528609 33.7
"Wyoming" "56" "2012" "2012" 205 537820 38.1
"Wyoming" "56" "2013" "2013" 204 544311 37.5
"Wyoming" "56" "2014" "2014" 215 545982 39.4
"Wyoming" "56" "2015" "2015" 251 547712 45.8
"Wyoming" "56" "2016" "2016" 241 547356 44.0
"---"
"Dataset: Multiple Cause of Death, 1999-2016"
"Query Parameters:"
"Title:"
"2013 Urbanization: All"
"Autopsy: All"
"Gender: All"
"Hispanic Origin: All"
"MCD - Drug/Alcohol Induced Causes: Drug-induced causes, Alcohol-induced causes"
"Place of Death: All"
"Race: All"
"States: All"
"Ten-Year Age Groups: 5-14 years, 15-24 years, 25-34 years, 35-44 years, 45-54 years, 55-64 years, 65-74 years, 75-84 years, 85+"
"years"
"UCD - Drug/Alcohol Induced Causes: Drug-induced causes, Alcohol-induced causes"
"Weekday: All"
"Year/Month: All"
"Group By: State, Year"
"Show Totals: False"
"Show Zero Values: False"
"Show Suppressed: False"
"Calculate Rates Per: 100,000"
"Rate Options: Default intercensal populations for years 2001-2009 (except Infant Age Groups)"
"---"
"Help: See http://wonder.cdc.gov/wonder/help/mcd.html for more information."
"---"
"Query Date: May 13, 2018 12:41:18 PM"
"---"
"Suggested Citation: Centers for Disease Control and Prevention, National Center for Health Statistics. Multiple Cause of Death"
"1999-2016 on CDC WONDER Online Database, released December, 2017. Data are from the Multiple Cause of Death Files, 1999-2016, as"
"compiled from data provided by the 57 vital statistics jurisdictions through the Vital Statistics Cooperative Program. Accessed"
"at http://wonder.cdc.gov/mcd-icd10.html on May 13, 2018 12:41:18 PM"
"---"
Caveats:
"1. As of April 3, 2017, the underlying cause of death has been revised for 125 deaths in 2014. More information:"
"http://wonder.cdc.gov/wonder/help/mcd.html#2014-Revision."
"2. Circumstances in Georgia for the years 2008 and 2009 have resulted in unusually high death counts for the ICD-10 cause of"
"death code R99, ""Other ill-defined and unspecified causes of mortality."" Caution should be used in interpreting these data."
"More information: http://wonder.cdc.gov/wonder/help/mcd.html#Georgia-Reporting-Anomalies."
"3. Circumstances in New Jersey for the year 2009 have resulted in unusually high death counts for the ICD-10 cause of death code"
"R99, ""Other ill-defined and unspecified causes of mortality"" and therefore unusually low death counts in other ICD-10 codes,"
"most notably R95, ""Sudden Infant Death Syndrome"" and X40-X49, ""Unintentional poisoning."" Caution should be used in"
"interpreting these data. More information: http://wonder.cdc.gov/wonder/help/mcd.html#New-Jersey-Reporting-Anomalies."
"4. Circumstances in California resulted in unusually high death counts for the ICD-10 cause of death code R99, ""Other"
"ill-defined and unspecified causes of mortality"" for deaths occurring in years 2000 and 2001. Caution should be used in"
"interpreting these data. More information: http://wonder.cdc.gov/wonder/help/mcd.html#California-Reporting-Anomalies."
"5. Deaths of persons with Age ""Not Stated"" are included in ""All"" counts and rates, but are not distributed among age groups,"
"so are not included in age-specific counts, age-specific rates or in any age-adjusted rates. More information:"
"http://wonder.cdc.gov/wonder/help/mcd.html#Not Stated."
"6. The population figures for year 2016 are bridged-race estimates of the July 1 resident population, from the Vintage 2016"
"postcensal series released by NCHS on June 26, 2017. The population figures for year 2015 are bridged-race estimates of the July"
"1 resident population, from the Vintage 2015 postcensal series released by NCHS on June 28, 2016. The population figures for"
"year 2014 are bridged-race estimates of the July 1 resident population, from the Vintage 2014 postcensal series released by NCHS"
"on June 30, 2015. The population figures for year 2013 are bridged-race estimates of the July 1 resident population, from the"
"Vintage 2013 postcensal series released by NCHS on June 26, 2014. The population figures for year 2012 are bridged-race"
"estimates of the July 1 resident population, from the Vintage 2012 postcensal series released by NCHS on June 13, 2013."
"Population figures for 2011 are bridged-race estimates of the July 1 resident population, from the county-level postcensal"
"Vintage 2011 series released by NCHS on July 18, 2012. Population figures for 2010 are April 1 Census counts. The population"
"figures for years 2001 - 2009, are bridged-race estimates of the July 1 resident population, from the revised intercensal"
"county-level 2000 - 2009 series released by NCHS on October 26, 2012. Population figures for 2000 are April 1 Census counts."
"Population figures for 1999 are from the 1990-1999 intercensal series of July 1 estimates. Population figures for Infant Age"
"Groups are the number of live births. <br/><b>Note:</b> Rates and population figures for years 2001 - 2009 differ slightly from"
"previously published reports, due to use of the population estimates which were available at the time of release."