File size: 162,140 Bytes
791ec51 | 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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 | Metro,Block,Atlanta Dream,Chicago Sky,Connecticut Sun,Dallas Wings,Indiana Fever,Las Vegas Aces,Los Angeles Sparks,Minnesota Lynx,New York Liberty,Phoenix Mercury,Seattle Storm,Washington Mystics
Abilene-Sweetwater TX,2012-2014,0.0,0.0,0.0,1.11111111111111,0.0,0.0,0.0,1.03092783505155,0.0,0.0,0.0,0.0
Abilene-Sweetwater TX,2015-2017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Abilene-Sweetwater TX,2018-2020,0.0,0.0,1.72,0.0,0.0,1.08791208791209,0.0,1.0989010989011,0.0,2.22222222222222,0.0,0.866666666666667
Abilene-Sweetwater TX,2021-2023,0.0,0.8125,0.0,0.0,0.45625,0.0,0.3625,0.0,0.0,0.45,0.41875,0.0
Abilene-Sweetwater TX,2024-2026,0.0,0.0,0.016260162601626,0.0474254742547425,0.539703903095559,0.0148048452220726,0.0,0.0,0.0134589502018842,0.0,0.0121130551816958,0.0
Albany GA,2012-2014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Albany GA,2015-2017,0.833333333333333,0.0,0.0,2.83333333333333,1.0989010989011,0.0,0.0,0.0,0.0,1.0989010989011,1.75824175824176,0.0
Albany GA,2018-2020,0.0,0.0,1.36986301369863,0.0,0.0,1.78571428571429,0.0,1.73214285714286,0.0,0.0,1.33333333333333,1.44927536231884
Albany GA,2021-2023,0.0,0.0578651685393258,0.0,0.0191011235955056,0.0,0.0314606741573033,0.0820224719101123,0.0,0.0230337078651685,0.0,0.0,0.0
Albany GA,2024-2026,0.0188216039279869,0.0531914893617021,0.0065466448445171,0.0147299509001636,0.313677313677314,0.0393120393120393,0.0,0.0139230139230139,0.0221130221130221,0.0,0.0065520065520065,0.0139230139230139
Albany-Schenectady-Troy NY,2012-2014,0.0,0.203473945409429,0.0,0.431761786600496,0.0,0.146401985111663,0.0,0.0,0.0,0.228287841191067,0.153846153846154,0.163771712158809
Albany-Schenectady-Troy NY,2015-2017,0.0,0.0,1.45917001338688,0.0,0.0,0.0,0.0,0.107238605898123,0.0790884718498659,0.0,0.0,0.0522788203753351
Albany-Schenectady-Troy NY,2018-2020,0.0152817574021012,0.0,0.0,0.0167144221585482,0.0,0.0,0.0157819225251076,0.0,0.0,0.0,0.0,0.0
Albany-Schenectady-Troy NY,2021-2023,0.0,0.0,0.0056469432850478,0.0,0.0,0.0105573287503069,0.0186594647679842,0.0112938865700957,0.0893690154677142,0.0056469432850478,0.0056469432850478,0.0
Albany-Schenectady-Troy NY,2024-2026,0.0093776641091219,0.0409207161125319,0.0247229326513214,0.0196078431372549,0.474850809889173,0.0511508951406649,0.0119352088661551,0.0289855072463768,0.116794543904518,0.011082693947144,0.0102301790281329,0.011082693947144
Albuquerque-Santa Fe NM,2012-2014,0.0680907877169559,0.0,0.154873164218959,0.0720961281708945,0.0,0.109017496635262,0.0,0.0,0.0,0.0,0.263245033112583,0.0
Albuquerque-Santa Fe NM,2015-2017,0.0,0.0799059929494712,0.0,0.0,0.0,0.0,0.0,0.0870588235294117,0.0,0.0,0.265882352941176,0.0670588235294117
Albuquerque-Santa Fe NM,2018-2020,0.0,0.0,0.0,0.0193832599118942,0.0,0.0459161147902869,0.0,0.0,0.0,0.027373068432671,0.0,0.0
Albuquerque-Santa Fe NM,2021-2023,0.0047287207565953,0.0146839223494275,0.0059731209556993,0.0064708810353409,0.0,0.0537128712871287,0.0,0.0,0.0,0.0643564356435643,0.0,0.0
Albuquerque-Santa Fe NM,2024-2026,0.0103806228373702,0.0441176470588235,0.0242214532871972,0.0242214532871972,0.45580589254766,0.0788561525129982,0.0095320623916811,0.0459272097053726,0.0450606585788561,0.0381282495667244,0.0173310225303292,0.0181975736568457
Alexandria LA,2012-2014,0.0,1.01010101010101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.09574468085106,0.0
Alexandria LA,2015-2017,0.0,0.0,0.0,0.98,0.0,0.87,0.0,0.0,0.0,1.1123595505618,1.76404494382022,0.0
Alexandria LA,2018-2020,0.74,0.63,0.55,0.0,0.0,0.65,0.0,0.71,0.0,0.61,0.0,0.0
Alexandria LA,2021-2023,0.0,0.0,0.354609929078014,0.0,0.336805555555556,0.0,0.625,0.0,0.0,0.336805555555556,0.34375,0.0
Alexandria LA,2024-2026,0.0,0.115145228215768,0.0,0.0321576763485477,0.201892744479495,0.0189274447949526,0.0147213459516298,0.0,0.0,0.021030494216614,0.0,0.0325972660357518
Alpena MI,2012-2014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Alpena MI,2015-2017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Alpena MI,2018-2020,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Alpena MI,2021-2023,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0
Alpena MI,2024-2026,0.0,0.0,0.0,0.0,1.25,0.0,0.0,0.0,1.13636363636364,0.0,0.0,0.0
Amarillo TX,2012-2014,0.0,0.86,0.77,0.0,0.0,1.06382978723404,0.0,0.0,0.0,0.0,0.99,0.0
Amarillo TX,2015-2017,0.0,1.11111111111111,0.0,0.0,0.0,0.0,0.93,0.0,0.0,0.0,1.63934426229508,1.29508196721311
Amarillo TX,2018-2020,0.0,0.0,0.0,0.0,0.0,0.0,0.502762430939227,0.414364640883978,0.0,0.0,1.05747126436782,0.0
Amarillo TX,2021-2023,0.0398981324278438,0.0492359932088285,0.0,0.0,0.0771186440677966,0.0,0.0415254237288135,0.0,0.0,0.0559322033898305,0.0847457627118644,0.0745762711864406
Amarillo TX,2024-2026,0.0068493150684931,0.0285388127853881,0.0091324200913242,0.0091324200913242,0.583427922814983,0.0374574347332576,0.0090805902383654,0.0,0.0068104426787741,0.0068104426787741,0.0,0.0170261066969353
Anchorage AK,2012-2014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Anchorage AK,2015-2017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Anchorage AK,2018-2020,0.235849056603774,0.0,0.0,0.0,0.0,0.0,0.388174807197944,0.663239074550129,0.0,0.172340425531915,0.212765957446809,0.0
Anchorage AK,2021-2023,0.048348106365834,0.0,0.0515713134568896,0.0612409347300564,0.0,0.0657084188911704,0.213552361396304,0.068788501026694,0.0,0.0468497576736672,0.109046849757674,0.0549273021001615
Anchorage AK,2024-2026,0.0,0.0052137643378519,0.0093847758081334,0.0062565172054223,0.392075078206465,0.0177267987486965,0.0,0.0250260688216892,0.0052137643378519,0.0062565172054223,0.0125130344108446,0.0
Atlanta GA,2012-2014,0.525742574257426,0.0023102310231023,0.0,0.0023102310231023,0.0,0.0,0.0016409583196586,0.0131276665572694,0.0055792582868395,0.003610108303249,0.0019691499835904,0.0
Atlanta GA,2015-2017,0.446879466412577,0.003096712720343,0.0042877560743211,0.003096712720343,0.0045454545454545,0.0,0.0255980861244019,0.0267942583732057,0.0014354066985645,0.0,0.0052631578947368,0.0045454545454545
Atlanta GA,2018-2020,0.33584296853993,0.0024200053777897,0.0018822264049475,0.0013444474321054,0.0018822264049475,0.013444474321054,0.0293089540198978,0.0021511158913686,0.0010755579456843,0.0040333422963162,0.0099489109975799,0.0252756117235816
Atlanta GA,2021-2023,0.300782075671106,0.0300147960262101,0.0107799619530754,0.0103572183470725,0.0139505389980976,0.0545339251743817,0.025575988163179,0.0078207567110547,0.0329740012682308,0.0272669625871908,0.0205030648911435,0.0122595645740858
Atlanta GA,2024-2026,0.207686622320769,0.104951958610495,0.0391722099039172,0.0369549150036954,0.27790096082779,0.0968218773096821,0.0384331116038433,0.0598669623059867,0.073170731707317,0.0421286031042128,0.0369549150036954,0.0295639320029563
Augusta GA,2012-2014,0.377777777777778,0.482539682539683,0.0,0.0,0.0,0.92542372881356,0.0,0.0,0.0,0.352112676056338,0.0,0.0
Augusta GA,2015-2017,0.278745644599303,0.0,0.0,0.247386759581882,0.0,0.0,0.222996515679443,0.0,0.0,0.0,0.0,0.0
Augusta GA,2018-2020,0.0287730727470141,0.0385450597176981,0.0,0.0363735070575461,0.0,0.0280929227444624,0.0,0.0367368989735278,0.0,0.0,0.0,0.0
Augusta GA,2021-2023,0.0093786635404454,0.0082063305978898,0.0,0.0113325517780382,0.0183235867446393,0.0237816764132553,0.0,0.0,0.0081871345029239,0.0152046783625731,0.0,0.0
Augusta GA,2024-2026,0.0486158001350438,0.0904794058068872,0.0222822417285617,0.0087778528021607,0.301490514905149,0.0853658536585365,0.0142276422764227,0.016260162601626,0.037940379403794,0.0169376693766937,0.0128726287262872,0.0033875338753387
Austin TX,2012-2014,0.0294888597640891,0.0,0.0170380078636959,0.0249017038007863,0.018843404808317,0.0,0.0,0.0,0.0136452241715399,0.0116959064327485,0.0116959064327485,0.0194931773879142
Austin TX,2015-2017,0.0,0.0,0.0219058050383351,0.0,0.0,0.0,0.0126262626262626,0.0,0.0,0.0,0.0,0.0
Austin TX,2018-2020,0.0080348175426849,0.0,0.0107130900569132,0.0077000334784064,0.0169322709163346,0.0066401062416998,0.0063081009296148,0.0,0.0083001328021248,0.0073041168658698,0.0,0.0
Austin TX,2021-2023,0.0,0.011861893666596,0.002965473416649,0.0127091717856386,0.0027736291871132,0.0356304672498399,0.0,0.0083208875613398,0.0093876680179219,0.0155749946660977,0.0038404096436953,0.0072541071047578
Austin TX,2024-2026,0.0092879256965944,0.0515995872033023,0.0165118679050567,0.0701754385964912,0.344364012409514,0.0713547052740434,0.0175801447776628,0.0423991726990692,0.0372285418821096,0.0206825232678386,0.0175801447776628,0.0113753877973112
Bakersfield CA,2012-2014,0.0,1.49253731343284,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.19047619047619,0.0,0.0
Bakersfield CA,2015-2017,0.0,0.285714285714286,0.0,0.244897959183674,0.0,0.158783783783784,0.469594594594595,0.0,0.0,0.0,0.0,0.209459459459459
Bakersfield CA,2018-2020,0.0,0.0,0.0,0.0,0.317164179104478,0.305970149253731,0.373134328358209,0.0,0.0,0.0,0.0,0.313479623824451
Bakersfield CA,2021-2023,0.0504672897196261,0.0,0.0,0.0,0.104399212081418,0.103086014445174,0.0,0.0,0.0,0.0394088669950738,0.0,0.0
Bakersfield CA,2024-2026,0.0043541364296081,0.0087082728592162,0.0043541364296081,0.0058055152394775,0.306240928882438,0.0304789550072568,0.0130624092888243,0.0,0.0159420289855072,0.0043478260869565,0.0,0.0
Baltimore MD,2012-2014,0.0152038700760193,0.0324809951624049,0.0,0.0172771250863856,0.0,0.013103448275862,0.0234482758620689,0.0110344827586206,0.0,0.0,0.0,0.0
Baltimore MD,2015-2017,0.0121533187909005,0.0133998130258647,0.0102835774384543,0.0,0.0,0.0,0.0102835774384543,0.0,0.0,0.0,0.0,0.0934870676223122
Baltimore MD,2018-2020,0.0,0.0,0.0099601593625498,0.0,0.0,0.0089775561097256,0.0044887780548628,0.0059850374064837,0.0,0.0040032025620496,0.0,0.357886309047238
Baltimore MD,2021-2023,0.0057336460776648,0.0078186082877247,0.0075579880114672,0.0036486838676048,0.0062548866301798,0.0247589262444618,0.0091217096690122,0.0033880635913474,0.0143341151941621,0.0192859004430544,0.0078186082877247,0.170185040396143
Baltimore MD,2024-2026,0.0293436293436293,0.118146718146718,0.0393822393822393,0.0393822393822393,0.323552123552124,0.0934362934362934,0.0347490347490347,0.0594594594594594,0.0741312741312741,0.0339768339768339,0.0347490347490347,0.11969111969112
Bangor ME,2012-2014,,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Bangor ME,2015-2017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Bangor ME,2018-2020,1.0,0.0,1.20481927710843,0.0,0.0,1.02173913043478,0.0,1.08695652173913,0.0,0.0,0.0,2.11111111111111
Bangor ME,2021-2023,0.0,0.0,0.0,0.0,0.0,0.441326530612245,0.0,0.0,0.0,0.0,0.0,0.0
Bangor ME,2024-2026,0.0,0.0058910162002945,0.008100147275405,0.0058910162002945,0.581912527798369,0.0007412898443291,0.0088954781319495,0.0074128984432913,0.0,0.0,0.0,0.0
Baton Rouge LA,2012-2014,0.578034682080925,0.0,1.14450867052023,0.433526011560694,0.0,0.0,0.0,0.0,0.680272108843538,0.564625850340136,0.0,0.0
Baton Rouge LA,2015-2017,0.0751381215469613,0.0,0.0850828729281768,0.0,0.0823271130625686,0.0,0.0,0.0801317233809001,0.0,0.26063829787234,0.129432624113475,0.0
Baton Rouge LA,2018-2020,0.0,0.0,0.0,0.0,0.0,0.0252187339166237,0.0283067421513124,0.0,0.0,0.0303654143077714,0.0221307256819351,0.0
Baton Rouge LA,2021-2023,0.006375227686703,0.01183970856102,0.0136612021857923,0.0081967213114754,0.0,0.015496809480401,0.0082041932543299,0.0,0.0127620783956244,0.0164083865086599,0.0082041932543299,0.0
Baton Rouge LA,2024-2026,0.0104370515329419,0.281800391389433,0.0221787345075016,0.0254403131115459,0.313111545988258,0.108284409654273,0.04044357469015,0.04044357469015,0.0587084148727984,0.0313111545988258,0.035225048923679,0.020221787345075
Beaumont-Port Arthur TX,2012-2014,0.0,0.9,1.44,1.48,0.0,0.0,0.0,0.64,0.0,0.0,0.0,0.0
Beaumont-Port Arthur TX,2015-2017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.85
Beaumont-Port Arthur TX,2018-2020,0.0,0.0,0.0,0.71,0.0,0.66,0.69,0.0,0.0,0.0,0.0,0.0
Beaumont-Port Arthur TX,2021-2023,0.0,0.0,0.0,0.027027027027027,0.0450716090985678,0.0,0.0,0.0164279696714406,0.0181128896377422,0.0,0.0433866891322662,0.0
Beaumont-Port Arthur TX,2024-2026,0.0067049808429118,0.0507662835249042,0.0,0.0153256704980842,0.368773946360153,0.0258620689655172,0.0172413793103448,0.0134099616858237,0.0210727969348659,0.0,0.0,0.0
Bend OR,2012-2014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Bend OR,2015-2017,0.0,1.14084507042254,0.0,1.40845070422535,0.0,0.0,0.0,0.0,0.0,1.41935483870968,2.7258064516129,0.0
Bend OR,2018-2020,0.0,0.0,0.416666666666667,0.0,0.395209580838323,0.0,0.0,0.401197604790419,0.431137724550898,0.0,0.0,0.0
Bend OR,2021-2023,0.0,0.0,0.304932735426009,0.224215246636771,0.0,0.0,0.341414141414141,0.0,0.470707070707071,0.0,0.0,0.181818181818182
Bend OR,2024-2026,0.0,0.0357142857142857,0.0,0.0207641196013289,0.234042553191489,0.0327332242225859,0.0,0.0,0.0180032733224222,0.0,0.0,0.0
"Billings, MT",2012-2014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
"Billings, MT",2015-2017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,
"Billings, MT",2018-2020,,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
"Billings, MT",2021-2023,0.0,2.44594594594595,0.0,1.17567567567568,0.0,0.0,0.0,0.99,0.0,0.0,1.85714285714286,2.20238095238095
"Billings, MT",2024-2026,0.0,0.0247440273037542,0.0102389078498293,0.0,0.607508532423208,0.0,0.0,0.0,0.0119453924914675,0.0,0.0145051194539249,0.0
Biloxi-Gulfport MS,2012-2014,,,,,0.0,0.0,0.0,0.0,,,,
Biloxi-Gulfport MS,2015-2017,,,,,,,,,0.0,0.0,0.0,0.0
Biloxi-Gulfport MS,2018-2020,0.0,0.0,0.0,0.0,0.0,0.0512820512820512,0.0619658119658119,0.10042735042735,0.0,0.0,0.0,0.0
Biloxi-Gulfport MS,2021-2023,0.0,0.0247078464106844,0.0,0.0103505843071786,0.0,0.0,0.0113446780113446,0.0103436770103436,0.024024024024024,0.0126793460126793,0.0193526860193526,0.0106773440106773
Biloxi-Gulfport MS,2024-2026,0.0,0.0503246753246753,0.0064935064935064,0.0081168831168831,0.356564019448947,0.0162074554294975,0.0,0.006482982171799,0.0,0.0,0.0089141004862236,0.006482982171799
Binghamton NY,2012-2014,0.0,0.0,0.0,0.9,0.0,1.19047619047619,0.0,0.0,0.87,0.9,0.0,0.0
Binghamton NY,2015-2017,1.86,0.0,0.0,0.0,0.0,0.0,1.63934426229508,0.0,0.87,0.0,0.98,0.86
Binghamton NY,2018-2020,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Binghamton NY,2021-2023,0.0,0.0,0.0,0.0,0.118971061093248,0.0,0.0,0.0,0.154340836012862,0.0,0.133440514469453,0.0
Binghamton NY,2024-2026,0.0100456621004566,0.0200913242009132,0.0091324200913242,0.0228310502283105,0.441441441441441,0.009009009009009,0.0,0.0189189189189189,0.0423423423423423,0.0,0.0099099099099099,0.0
Birmingham AL,2012-2014,0.0,0.0,0.104361370716511,0.0,0.109034267912773,0.138629283489097,0.11214953271028,0.0,0.0,0.199376947040498,0.0903426791277258,0.101246105919003
Birmingham AL,2015-2017,0.0426356589147286,0.0,0.0,0.0343992248062015,0.0,0.080019398642095,0.059650824442289,0.0,0.0242483026188166,0.0373423860329776,0.0300678952473326,0.0
Birmingham AL,2018-2020,0.0,0.0076824583866837,0.014404609475032,0.0057618437900128,0.0076824583866837,0.0080025608194622,0.0,0.0,0.0,0.0099231754161331,0.0,0.0
Birmingham AL,2021-2023,0.0031180400890868,0.0,0.0,0.0035634743875278,0.0040035587188612,0.0093416370106761,0.0062277580071174,0.0,0.0026690391459074,0.0053380782918149,0.002891459074733,0.0035587188612099
Birmingham AL,2024-2026,0.0372388737511353,0.102633969118983,0.0236148955495004,0.0317892824704813,0.326975476839237,0.0917347865576748,0.0217983651226158,0.0435967302452316,0.0617620345140781,0.0208900999091734,0.0217983651226158,0.0172570390554041
Bluefield-Beckley-Oak Hill WV,2012-2014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Bluefield-Beckley-Oak Hill WV,2015-2017,0.0,0.0,0.0,0.425806451612903,0.454545454545455,0.0,0.0,0.0,0.0,0.0,0.746268656716418,0.0
Bluefield-Beckley-Oak Hill WV,2018-2020,0.0,1.23456790123457,0.0,0.0,0.0,0.0,1.16279069767442,1.08139534883721,1.66666666666667,0.0,0.0,1.53333333333333
Bluefield-Beckley-Oak Hill WV,2021-2023,0.72,0.0,0.0,0.0,0.0,1.19047619047619,0.0,0.0,0.0,0.0,0.0,0.0
Bluefield-Beckley-Oak Hill WV,2024-2026,0.0,0.02291917973462,0.0,0.0217129071170084,0.614355231143552,0.0194647201946472,0.0218978102189781,0.0,0.0,0.0,0.0170316301703163,0.0
Boise ID,2012-2014,0.974683544303798,0.0,1.26582278481013,0.0,0.0,2.10714285714286,0.0,0.0,0.0,0.0,0.0,3.24444444444444
Boise ID,2015-2017,2.67,0.0,1.68,0.0,0.78,0.0,0.0,0.0,0.0,0.84,0.0,0.84
Boise ID,2018-2020,0.20578231292517,0.0,0.0,0.0,0.0950764006791171,0.0,0.0,0.0,0.0,0.0,0.0713073005093378,0.0865874363327674
Boise ID,2021-2023,0.0222748815165876,0.024170616113744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0216063879755753,0.0371066228276186,0.0
Boise ID,2024-2026,0.0,0.0187110187110187,0.0093555093555093,0.0041580041580041,0.541103017689906,0.0197710718002081,0.0114464099895941,0.0052029136316337,0.0083246618106139,0.0093652445369406,0.0,0.0083246618106139
Boston MA-Manchester NH,2012-2014,0.0,0.0032706459525756,0.0208503679476696,0.0,0.0032679738562091,0.0,0.0,0.0147058823529411,0.0,0.0073529411764705,0.0,0.0
Boston MA-Manchester NH,2015-2017,0.0,0.0104106419895893,1.09832272990168,0.0028918449971081,0.0,0.0,0.0027855153203342,0.0103461997612415,0.007958615200955,0.0,0.0029844807003581,0.0
Boston MA-Manchester NH,2018-2020,0.0,0.0015572281339216,0.0617700493122242,0.0,0.0,0.0046716844017648,0.0033739942901635,0.0119387490267324,0.006747988580327,0.0020763041785621,0.0145341292499351,0.0137555151829743
Boston MA-Manchester NH,2021-2023,0.0033504138746551,0.023058730784391,0.10524241229799,0.0057154119038234,0.0059124950729207,0.0372487189594008,0.0019708316909735,0.0021679148600709,0.0317303902246748,0.0149783208513992,0.0201024832479306,0.005518328734726
Boston MA-Manchester NH,2024-2026,0.0206677265500794,0.0484896661367249,0.10731319554849,0.0476947535771065,0.353736089030207,0.0659777424483306,0.0286168521462639,0.0508744038155802,0.068362480127186,0.0286168521462639,0.0254372019077901,0.0222575516693163
Bowling Green KY,2012-2014,0.689655172413793,0.0,0.662068965517241,0.0,0.0,0.0,1.5625,0.0,0.0,0.0,0.25706940874036,0.0
Bowling Green KY,2015-2017,0.0,0.0,0.72,0.0,0.0,0.0,0.0,0.0,0.910112359550562,1.12359550561798,1.80898876404494,0.0
Bowling Green KY,2018-2020,0.0,0.430939226519337,0.0,0.0,0.685314685314685,0.0,0.699300699300699,0.643356643356643,0.0,0.0,0.0,0.0
Bowling Green KY,2021-2023,0.0,0.0,0.0,0.0,0.0,0.37593984962406,0.0,0.0,0.0,0.0,0.0,0.0
Bowling Green KY,2024-2026,0.0,0.0180878552971576,0.0,0.0,0.701686121919585,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Buffalo NY,2012-2014,0.0,0.0,0.0,0.349315068493151,0.0,0.2,0.0,0.0,0.230508474576271,0.145762711864407,0.172881355932203,0.0
Buffalo NY,2015-2017,0.119730185497471,0.168634064080944,0.0,0.0,0.0,0.0,0.124523506988564,0.0,0.0927573062261753,0.0,0.0,0.0
Buffalo NY,2018-2020,0.0143570536828963,0.0,0.029338327091136,0.0405742821473158,0.0149812734082396,0.0,0.0324594257178526,0.0,0.0,0.0424469413233458,0.0131086142322097,0.0
Buffalo NY,2021-2023,0.0065456709312704,0.0,0.0056530794406426,0.0068432014281463,0.0,0.0059276822762299,0.0,0.0056312981624184,0.0248962655601659,0.0062240663900414,0.0127445168938944,0.0168938944872554
Buffalo NY,2024-2026,0.0113835376532399,0.063922942206655,0.0253940455341506,0.0201401050788091,0.42169728783902,0.0533683289588801,0.0157480314960629,0.0376202974628171,0.0656167979002624,0.0139982502187226,0.0131233595800524,0.0104986876640419
Burlington VT-Plattsburgh NY,2012-2014,0.0,0.0,0.0,0.377926421404682,0.0,0.0,0.0,0.0,0.0,0.160535117056856,0.0,0.0
Burlington VT-Plattsburgh NY,2015-2017,0.270161290322581,0.0,1.44758064516129,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.303703703703704
Burlington VT-Plattsburgh NY,2018-2020,0.061271676300578,0.0,0.0601156069364161,0.0,0.0,0.0,0.0493685419058553,0.0,0.0688863375430539,0.0608495981630309,0.0,0.0482204362801377
Burlington VT-Plattsburgh NY,2021-2023,0.0,0.0,0.0165386887182516,0.0159480212640283,0.0,0.0161859917598587,0.0,0.0176574455562095,0.0311948204826368,0.0,0.0258975868157739,0.0
Burlington VT-Plattsburgh NY,2024-2026,0.0058479532163742,0.0160818713450292,0.0219298245614035,0.0175438596491228,0.493782004389173,0.0307242136064374,0.0095098756400877,0.0292611558156547,0.0365764447695684,0.0,0.0065837600585223,0.0065837600585223
Butte-Bozeman MT,2012-2014,0.0,0.0,1.51515151515152,1.22727272727273,0.0,0.0,2.12765957446809,0.0,0.0,0.0,0.0,0.0
Butte-Bozeman MT,2015-2017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0989010989011,0.0,0.0,1.67045454545455,1.98863636363636
Butte-Bozeman MT,2018-2020,,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Butte-Bozeman MT,2021-2023,0.0,0.0,0.0,0.377551020408163,0.694444444444445,0.625,0.527777777777778,0.0,0.511111111111111,0.740740740740741,0.0,0.0
Butte-Bozeman MT,2024-2026,0.0,0.0,0.0,0.0145413870246085,0.727678571428572,0.0167410714285714,0.0323660714285714,0.0,0.0189732142857142,0.0,0.0167410714285714,0.0
Casper-Riverton WY,2012-2014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Casper-Riverton WY,2015-2017,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0
Casper-Riverton WY,2018-2020,0.0,1.31578947368421,2.92105263157895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.28205128205128,0.0
Casper-Riverton WY,2021-2023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,
Casper-Riverton WY,2024-2026,0.121588089330025,0.0,0.0,0.0,0.402469135802469,0.0641975308641975,0.0518518518518518,0.0,0.0,0.0,0.0,0.0
Cedar Rapids-Waterloo-Iowa City & Dubuque IA,2012-2014,1.47422680412371,0.0,1.62886597938144,0.0,0.392857142857143,0.0,0.0,0.0,1.06547619047619,0.0,0.0,0.547619047619048
Cedar Rapids-Waterloo-Iowa City & Dubuque IA,2015-2017,0.0,0.0,0.0,0.9,0.0,0.0,0.0,0.0,0.0,0.91,0.0,0.0
Cedar Rapids-Waterloo-Iowa City & Dubuque IA,2018-2020,0.0,0.0,0.0334728033472803,0.338912133891213,0.0543933054393305,0.0,0.0292887029288702,0.0711297071129707,0.0251046025104602,0.0,0.0,0.0
Cedar Rapids-Waterloo-Iowa City & Dubuque IA,2021-2023,0.0,0.0241837968561064,0.0,0.0,0.0060459492140266,0.0253929866989117,0.0060459492140266,0.0,0.0,0.0,0.0120918984280532,0.0
Cedar Rapids-Waterloo-Iowa City & Dubuque IA,2024-2026,0.0388704318936877,0.109634551495017,0.0461794019933554,0.03421926910299,1.93875968992248,0.178294573643411,0.0395348837209302,0.0837209302325581,0.0642785403414797,0.0358218948778038,0.0354871108135252,0.0552393706059591
Champaign & Springfield-Decatur IL,2012-2014,0.541095890410959,0.582191780821918,0.684931506849315,0.0,0.0,0.0,0.0,0.826446280991736,0.429411764705882,0.0,0.0,0.388235294117647
Champaign & Springfield-Decatur IL,2015-2017,1.9468085106383,0.0,0.0,0.0,0.0,2.11940298507463,3.32835820895522,0.0,0.0,0.830188679245283,1.88679245283019,0.0
Champaign & Springfield-Decatur IL,2018-2020,0.141361256544503,0.0,0.164921465968586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Champaign & Springfield-Decatur IL,2021-2023,0.0,0.0891608391608391,0.0,0.0,0.0,0.0144230769230769,0.0144230769230769,0.0,0.0,0.0,0.0,0.0222902097902097
Champaign & Springfield-Decatur IL,2024-2026,0.0039577836411609,0.106200527704485,0.0131926121372031,0.0065963060686015,0.80718954248366,0.0562091503267973,0.0169934640522875,0.0300653594771241,0.0254901960784313,0.0098039215686274,0.0137254901960784,0.0111111111111111
Charleston SC,2012-2014,0.523489932885906,0.671140939597316,0.0,0.0,0.0,0.0,0.863874345549738,0.0,0.0,0.0,0.523560209424084,0.0
Charleston SC,2015-2017,0.0,0.0,0.0,0.271739130434783,0.0,0.293255131964809,0.0,0.0,0.0,0.0,0.276635514018692,0.0
Charleston SC,2018-2020,0.0374220374220374,0.0,0.0311850311850311,0.0,0.0,0.0,0.0,0.0446985446985447,0.0,0.027027027027027,0.0265072765072765,0.0
Charleston SC,2021-2023,0.0165084605860503,0.0074288072637226,0.0066033842344201,0.0053652496904663,0.0,0.0408584399504746,0.0,0.0,0.0053652496904663,0.0123813454395377,0.0140321914981427,0.0066033842344201
Charleston SC,2024-2026,0.0165125495376486,0.0785997357992074,0.0158520475561426,0.0145310435931307,0.370661427635887,0.100196463654224,0.0117878192534381,0.0399476096922069,0.0569744597249508,0.0216110019646365,0.0117878192534381,0.0137524557956777
Charleston-Huntington WV,2012-2014,0.845070422535211,1.40845070422535,0.0,0.0,0.0,0.0,0.0,0.0,2.75294117647059,0.0,0.0,0.0
Charleston-Huntington WV,2015-2017,0.0,0.0,0.0,0.0,,,,,,,,
Charleston-Huntington WV,2018-2020,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Charleston-Huntington WV,2021-2023,0.0321158690176322,0.0,0.0,0.0610831234256926,0.0,0.0629675810473815,0.0330423940149625,0.0,0.0,0.0,0.0355361596009975,0.0
Charleston-Huntington WV,2024-2026,0.0,0.021321961620469,0.009594882729211,0.0042643923240938,0.663113006396588,0.0287846481876332,0.0042643923240938,0.0223880597014925,0.0149253731343283,0.0085287846481876,0.009594882729211,0.0085287846481876
Charlotte NC,2012-2014,0.0,0.0101387406616862,0.0,0.0090715048025613,0.0,0.0,0.0176565008025682,0.0,0.0,0.0128410914927768,0.0,0.0101658640984483
Charlotte NC,2015-2017,0.0,0.0,0.0,0.0,0.0041463414634146,0.0153658536585365,0.0097560975609756,0.0148780487804878,0.0,0.0,0.0046341463414634,0.0
Charlotte NC,2018-2020,0.0036764705882352,0.0,0.0,0.0042420814479638,0.0,0.0050732807215332,0.0031003382187147,0.0109921082299887,0.0,0.0039458850056369,0.0064825253664036,0.0157835400225479
Charlotte NC,2021-2023,0.0068330362448009,0.0106951871657754,0.0023767082590612,0.0032679738562091,0.0062388591800356,0.0457516339869281,0.005941770647653,0.0017825311942959,0.0139631610219845,0.0092097445038621,0.0,0.0017825311942959
Charlotte NC,2024-2026,0.0386861313868613,0.0970802919708029,0.0401459854014598,0.0474452554744525,0.363503649635037,0.103649635036496,0.0372262773722627,0.0642335766423357,0.0781021897810219,0.0386861313868613,0.0386861313868613,0.0386861313868613
Charlottesville VA,2012-2014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Charlottesville VA,2015-2017,0.0,0.85,0.0,0.0,0.957142857142857,0.957142857142857,1.1,1.42857142857143,0.0,0.83,0.0,0.0
Charlottesville VA,2018-2020,0.0,0.0,2.65079365079365,1.95238095238095,0.0,0.0,0.0,1.11111111111111,0.0,3.33962264150943,0.924528301886792,0.0
Charlottesville VA,2021-2023,0.0,0.102409638554217,0.0,0.0,0.0,0.0,0.126262626262626,0.0,0.0,0.0531062124248497,0.109218436873748,0.0350701402805611
Charlottesville VA,2024-2026,0.0121107266435986,0.0112456747404844,0.0129757785467128,0.0,0.556131260794473,0.0293609671848013,0.0,0.0112262521588946,0.0,0.0172711571675302,0.0,0.0
Chattanooga TN,2012-2014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.82,0.97,0.0,0.0,0.0
Chattanooga TN,2015-2017,0.0,0.0,0.0,0.0,0.0,0.0,0.85,2.9125,0.0,0.0,2.22222222222222,0.0
Chattanooga TN,2018-2020,0.0941704035874439,0.0,0.0,0.0,0.0,0.0833333333333333,0.0,0.0,0.0,0.0822072072072072,0.0,0.0
Chattanooga TN,2021-2023,0.0241481971551438,0.0,0.0,0.0115779027456169,0.0,0.0112174199934015,0.0,0.0145166611679313,0.0122071923457604,0.0316727152754866,0.0,0.0
Chattanooga TN,2024-2026,0.0295801526717557,0.0505725190839694,0.0133587786259541,0.0085877862595419,0.518624641833811,0.041069723018147,0.0162368672397325,0.0200573065902578,0.0162368672397325,0.0105062082139446,0.0085959885386819,0.0066857688634192
Cheyenne WY-Scottsbluff NE,2012-2014,0.0,0.0,0.0,0.0,,,,,,,,
Cheyenne WY-Scottsbluff NE,2015-2017,0.0,0.0,0.0,0.0,1.23270440251572,0.0,0.534591194968554,0.49685534591195,0.0,0.0,0.689655172413793,0.406896551724138
Cheyenne WY-Scottsbluff NE,2018-2020,1.0,0.0,0.0,0.95,0.0,0.0,0.94,0.0,0.0,0.0,0.0,0.0
Cheyenne WY-Scottsbluff NE,2021-2023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,
Cheyenne WY-Scottsbluff NE,2024-2026,0.0,0.0277008310249307,0.0,0.0,0.59612724757953,0.0,0.0,0.0262793914246196,0.0,0.0,0.0290456431535269,0.0276625172890733
Chicago IL,2012-2014,0.0031347962382445,0.596656217345873,0.0,0.0048763497039359,0.0615815255423373,0.0024492652204338,0.0017494751574527,0.0461861441567529,0.0017494751574527,0.0090972708187543,0.0013995801259622,0.0
Chicago IL,2015-2017,0.0,0.517367853290183,0.0028047464940668,0.0023732470334412,0.0439869989165763,0.0013001083423618,0.0173347778981581,0.144962080173348,0.0032502708559046,0.0028169014084507,0.0036836403033586,0.0015167930660888
Chicago IL,2018-2020,0.0025799793601651,0.406862745098039,0.0023219814241486,0.0054179566563467,0.0103923096908287,0.0070148090413094,0.0075344245258508,0.0423486619901273,0.0010392309690828,0.0072746167835801,0.0124707716289945,0.0119511561444531
Chicago IL,2021-2023,0.0152365677626303,0.81074578989575,0.0264635124298315,0.0216519647153167,0.0171073094867807,0.0594867807153965,0.0272161741835147,0.0089424572317262,0.0299377916018662,0.0365474339035769,0.0252721617418351,0.0136080870917573
Chicago IL,2024-2026,0.0264097073518915,0.406138472519629,0.0349750178443968,0.0364025695931477,0.46395431834404,0.0856531049250535,0.0378301213418986,0.0635260528194147,0.0620985010706638,0.038543897216274,0.0342612419700214,0.0285510349750178
Chico-Redding CA,2012-2014,1.31578947368421,2.18421052631579,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Chico-Redding CA,2015-2017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Chico-Redding CA,2018-2020,1.04166666666667,0.0,0.0,0.0,0.0,0.0,1.38888888888889,1.01388888888889,0.0,0.0,0.0,0.0
Chico-Redding CA,2021-2023,0.0,0.0,0.2734375,0.0,0.0,0.390957446808511,0.0,0.0,0.213541666666667,0.166666666666667,0.127604166666667,0.0
Chico-Redding CA,2024-2026,0.0083333333333333,0.0,0.0083333333333333,0.0095238095238095,0.444047619047619,0.0,0.0,0.0071428571428571,0.0154761904761904,0.0,0.0,0.0
Cincinnati OH,2012-2014,0.0391644908616188,0.0,0.0,0.0,0.0539473684210526,0.0513157894736842,0.0,0.0,0.0,0.0,0.0,0.0828947368421052
Cincinnati OH,2015-2017,0.0,0.0462427745664739,0.0178665265370467,0.0,0.0159235668789808,0.0,0.0,0.0,0.0276008492569002,0.0,0.0,0.0
Cincinnati OH,2018-2020,0.0078178110129163,0.0,0.0,0.0057783820530251,0.0078391274710293,0.0,0.0068166325835037,0.0,0.0095432856169052,0.0,0.0078391274710293,0.0
Cincinnati OH,2021-2023,0.0034346103038309,0.0211360634081902,0.0079260237780713,0.0,0.0170424750917671,0.018091242789722,0.0031463030938647,0.0,0.0188778185631882,0.0165180912427897,0.0,0.0034084950183534
Cincinnati OH,2024-2026,0.0186385737439222,0.0810372771474878,0.0324149108589951,0.0364667747163695,0.645056726094003,0.0786061588330632,0.0202593192868719,0.0551053484602917,0.0526742301458671,0.0283630470016207,0.0235008103727714,0.0235008103727714
Clarksburg-Weston WV,2012-2014,0.92,0.0,0.0,0.0,1.40845070422535,0.0,0.0,0.0,0.0,0.0,0.0,1.83950617283951
Clarksburg-Weston WV,2015-2017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Clarksburg-Weston WV,2018-2020,0.0,0.67,0.0,0.0,0.0,0.0,0.0,0.52,0.0,0.0,0.0,0.0
Clarksburg-Weston WV,2021-2023,0.0,0.0,0.0,0.0,0.0,0.0,0.82,0.0,0.0,0.0,1.2987012987013,0.0
Clarksburg-Weston WV,2024-2026,0.0,0.0474358974358974,0.0448717948717948,0.0,0.571785268414482,0.0174781523096129,0.0,0.0224719101123595,0.0174781523096129,0.0187265917602996,0.0224719101123595,0.0
Cleveland-Akron (Canton) OH,2012-2014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0216070222822417,0.0,0.0,0.0,0.0195813639432815
Cleveland-Akron (Canton) OH,2015-2017,0.0,0.00650524033249,0.0,0.0,0.0,0.0,0.0154620640057533,0.0262495505213951,0.0071916576770945,0.0089895720963682,0.0068320747932398,0.0
Cleveland-Akron (Canton) OH,2018-2020,0.0039741679085941,0.0,0.0,0.0,0.0059612518628912,0.0,0.0086934923000496,0.0,0.0089418777943368,0.0047193243914555,0.0039741679085941,0.0044709388971684
Cleveland-Akron (Canton) OH,2021-2023,0.0,0.0173772011121408,0.0078776645041705,0.0048656163113994,0.0044361428904973,0.0417931356525799,0.0021013308428671,0.0037356992762082,0.0128414662619659,0.0098062106000466,0.0070044361428904,0.0032687368666822
Cleveland-Akron (Canton) OH,2024-2026,0.0215331610680447,0.0852713178294573,0.0284237726098191,0.0361757105943152,0.454780361757106,0.0861326442721791,0.032730404823428,0.053402239448751,0.0628768303186907,0.0284237726098191,0.0310077519379844,0.0292850990525409
Colorado Springs-Pueblo CO,2012-2014,0.188284518828452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.447698744769875,0.0
Colorado Springs-Pueblo CO,2015-2017,0.0,0.0,0.0,0.0,0.0,0.0,0.240677966101695,0.0,0.0,0.0,0.230508474576271,0.0
Colorado Springs-Pueblo CO,2018-2020,0.0795306388526727,0.0964797913950456,0.130378096479791,0.0,0.0,0.0,0.0854800936768149,0.0,0.0984578884934756,0.221826809015421,0.0,0.142348754448399
Colorado Springs-Pueblo CO,2021-2023,0.0151950718685831,0.0209445585215605,0.0,0.0,0.0,0.015478615071283,0.0,0.0,0.0,0.0,0.015071283095723,0.0
Colorado Springs-Pueblo CO,2024-2026,0.0093196644920782,0.0363466915191053,0.0111835973904939,0.0027958993476234,0.531974050046339,0.0481927710843373,0.0166821130676552,0.0305838739573679,0.0333642261353104,0.0111214087117701,0.0027803521779425,0.0027803521779425
Columbia SC,2012-2014,0.0,0.0,0.232876712328767,0.332191780821918,0.0,0.296296296296296,0.531986531986532,0.0,0.250909090909091,0.327272727272727,0.0,0.363636363636364
Columbia SC,2015-2017,0.0162337662337662,0.0373376623376623,0.0,0.0,0.019543973941368,0.0,0.0,0.019543973941368,0.0,0.0,0.0,0.0
Columbia SC,2018-2020,0.0077730275942479,0.0,0.0,0.0,0.0073872472783825,0.0855365474339035,0.0,0.0089424572317262,0.0077760497667185,0.0,0.0,0.0
Columbia SC,2021-2023,0.0110314396028681,0.0,0.0044125758411472,0.0044125758411472,0.0646929824561403,0.102521929824561,0.0142543859649122,0.0,0.0,0.0043859649122807,0.0027412280701754,0.0021929824561403
Columbia SC,2024-2026,0.044816414686825,0.107451403887689,0.025377969762419,0.0286177105831533,0.273610361575823,0.164597949271452,0.0447922288181327,0.0582838640043173,0.0706961683756071,0.0264436049649217,0.0280626011872639,0.0339989206691851
Columbia-Jefferson City MO,2012-2014,0.0,0.0,1.0379746835443,1.26582278481013,0.0,0.0,0.0,1.04166666666667,0.0,0.0,0.0,0.0
Columbia-Jefferson City MO,2015-2017,0.0,0.0,0.93,0.0,0.72,0.64,0.72,0.66,0.825,0.0,0.0,1.25
Columbia-Jefferson City MO,2018-2020,0.0,0.0,0.16260162601626,0.0,0.0,0.0,0.0,0.0,0.245901639344262,0.475409836065574,0.114754098360656,0.155737704918033
Columbia-Jefferson City MO,2021-2023,0.0,0.0914285714285714,0.0,0.0842857142857142,0.120567375886525,0.0,0.0,0.0,0.216793893129771,0.537404580152672,0.0,0.0
Columbia-Jefferson City MO,2024-2026,0.0060085836909871,0.0206008583690987,0.0120171673819742,0.0171673819742489,0.903418803418803,0.0256410256410256,0.0,0.0,0.0136752136752136,0.0102564102564102,0.0068376068376068,0.0068376068376068
Columbus GA,2012-2014,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0
Columbus GA,2015-2017,0.289017341040462,0.0,0.0,0.0,0.0,0.0,0.0,0.205655526992288,0.0,0.0,0.226221079691517,0.0
Columbus GA,2018-2020,0.0,0.0,0.0377094972067039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0853743876836948
Columbus GA,2021-2023,0.0319619177150629,0.0078204692281536,0.0353621217273036,0.0,0.0173410404624277,0.0204012240734444,0.0193811628697721,0.0,0.0,0.0098605916354981,0.0,0.0
Columbus GA,2024-2026,0.0442260442260442,0.107289107289107,0.0196560196560196,0.004095004095004,0.30958230958231,0.0704340704340704,0.0196560196560196,0.0155610155610155,0.0384930384930384,0.0155610155610155,0.0122850122850122,0.018018018018018
Columbus OH,2012-2014,0.0,0.0,0.0164609053497942,0.0189300411522633,0.0164609053497942,0.0,0.0,0.0,0.0,0.0,0.0452674897119341,0.0
Columbus OH,2015-2017,0.0,0.0163461538461538,0.0163461538461538,0.0,0.0268199233716475,0.0205938697318007,0.0,0.0,0.0,0.0124521072796934,0.0,0.0
Columbus OH,2018-2020,0.0,0.0,0.0183211192538307,0.0,0.0183211192538307,0.0,0.0,0.0,0.0089940039973351,0.0079946702198534,0.0069953364423717,0.0079946702198534
Columbus OH,2021-2023,0.005206525511975,0.01457827143353,0.0,0.0,0.0133015006821282,0.0136425648021828,0.0030695770804911,0.0078444747612551,0.0071623465211459,0.0040927694406548,0.0051159618008185,0.0
Columbus OH,2024-2026,0.016453382084095,0.0795246800731261,0.026508226691042,0.0484460694698354,0.494977168949772,0.0694063926940639,0.0264840182648401,0.0502283105022831,0.0611872146118721,0.0273972602739726,0.0228310502283105,0.0255707762557077
Columbus-Tupelo-West Point MS,2012-2014,0.13953488372093,1.27906976744186,0.0,0.0,0.510204081632653,0.163265306122449,0.0,0.0,0.0,0.0,0.773480662983425,0.0
Columbus-Tupelo-West Point MS,2015-2017,0.0,0.0,1.54081632653061,0.836734693877551,0.0,0.0,0.65,0.49,1.25,0.0,0.0,0.4375
Columbus-Tupelo-West Point MS,2018-2020,0.0,0.0,0.0,0.0,0.0145228215767634,0.0,0.0,0.0,0.0,0.0331950207468879,0.0912863070539419,0.0
Columbus-Tupelo-West Point MS,2021-2023,0.0,0.0253164556962025,0.0229053646775165,0.0,0.0,0.0,0.0216998191681736,0.0265220012055455,0.0,0.0391802290536467,0.0,0.0440024110910186
Columbus-Tupelo-West Point MS,2024-2026,0.0104923325262308,0.0589184826472962,0.006456820016142,0.0056497175141242,0.409638554216867,0.0377510040160642,0.0128514056224899,0.0184738955823293,0.0144578313253012,0.0,0.0,0.0
Corpus Christi TX,2012-2014,0.922222222222222,1.0,1.11111111111111,0.0,0.0,0.0,1.0,0.0,1.03092783505155,0.0,0.896907216494845,0.0
Corpus Christi TX,2015-2017,0.0,0.0,0.0,0.54,0.0,0.0,0.0,2.015625,0.0,0.0,0.0,0.0
Corpus Christi TX,2018-2020,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Corpus Christi TX,2021-2023,0.0,0.0,0.0,0.0,0.0,0.103163686382393,0.0,0.0,0.0852819807427785,0.0,0.107290233837689,0.0
Corpus Christi TX,2024-2026,0.0,0.05470737913486,0.0063613231552162,0.0139949109414758,0.518424396442186,0.0343074968233799,0.0063532401524777,0.0,0.0063532401524777,0.013977128335451,0.0063532401524777,0.0
Dallas-Ft. Worth TX,2012-2014,0.0,0.0,0.0,0.002422480620155,0.004880429477794,0.0,0.0034163006344558,0.002440214738897,0.0019521717911176,0.0131771595900439,0.0019521717911176,0.0
Dallas-Ft. Worth TX,2015-2017,0.0,0.0,0.0014144271570014,0.444130127298444,0.0,0.0,0.0082036775106082,0.0161244695898161,0.0,0.0033946251768033,0.0025459688826025,0.0
Dallas-Ft. Worth TX,2018-2020,0.0040779338468509,0.0,0.0027186225645672,0.32079746261894,0.0013593112822836,0.00747621205256,0.0183507023108291,0.0009062075215224,0.0020389669234254,0.006343452650657,0.0088355233348436,0.0081558676937018
Dallas-Ft. Worth TX,2021-2023,0.0062803889789303,0.0204619124797406,0.0119529983792544,0.364262560777958,0.0066855753646677,0.0508508914100486,0.0277552674230145,0.0062803889789303,0.0204619124797406,0.03322528363047,0.0153970826580226,0.0107374392220421
Dallas-Ft. Worth TX,2024-2026,0.0234578627280625,0.0877497827975673,0.0304083405734144,0.284969591659427,0.306689834926151,0.0860121633362293,0.0347523892267593,0.0529973935708079,0.0590790616854908,0.0364900086880973,0.0321459600347523,0.0269331016507384
Davenport IA-Rock Island-Moline IL,2012-2014,0.666666666666667,0.0,0.0,0.0,0.0,0.4375,0.5,0.859375,0.0,0.4375,0.0,0.0
Davenport IA-Rock Island-Moline IL,2015-2017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Davenport IA-Rock Island-Moline IL,2018-2020,0.147227533460803,0.0,0.0956022944550669,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0630975143403441,0.0
Davenport IA-Rock Island-Moline IL,2021-2023,0.014018691588785,0.0591900311526479,0.0,0.0,0.0,0.0,0.0217729393468118,0.0139968895800933,0.0,0.0,0.0,0.0
Davenport IA-Rock Island-Moline IL,2024-2026,0.0217712177121771,0.112546125461255,0.0324723247232472,0.0265682656826568,1.78765060240964,0.147590361445783,0.0233433734939759,0.0602409638554216,0.0476014760147601,0.0265682656826568,0.0232472324723247,0.0391143911439114
Dayton OH,2012-2014,0.0,0.0,0.0,0.332225913621263,0.0,0.0,0.221176470588235,0.131764705882353,0.0,0.0,0.188235294117647,0.157647058823529
Dayton OH,2015-2017,0.0,0.0,0.0,0.355113636363636,0.0,0.22,0.0,0.22,0.217142857142857,0.0,0.0,0.0
Dayton OH,2018-2020,0.0,0.0420683610867659,0.0,0.0289219982471516,0.0,0.0,0.129515418502203,0.0,0.0370044052863436,0.112775330396476,0.0,0.0
Dayton OH,2021-2023,0.0,0.0100206307102858,0.0150309460654288,0.0,0.0,0.011183048852266,0.0,0.0,0.0,0.0197174808711006,0.0100058858151854,0.0
Dayton OH,2024-2026,0.014251781472684,0.0641330166270783,0.0197941409342834,0.0174188440221694,0.690894568690096,0.0710862619808306,0.0071884984025559,0.0367412140575079,0.0407348242811501,0.0167731629392971,0.011182108626198,0.0127795527156549
Denver CO,2012-2014,0.0139165009940357,0.0357852882703777,0.0,0.0109343936381709,0.0079090459713297,0.0,0.0123578843302026,0.0074147305981216,0.0,0.0,0.0138408304498269,0.0
Denver CO,2015-2017,0.0,0.0,0.0329218106995884,0.0076817558299039,0.0,0.0,0.0157415078707539,0.0618613642640154,0.0113228389947528,0.0176746755040044,0.0267881800607566,0.0
Denver CO,2018-2020,0.0,0.0062814070351758,0.0,0.0,0.0,0.0,0.0044066729619137,0.0040919106074913,0.0056657223796034,0.0044066729619137,0.0214038401007239,0.0094428706326723
Denver CO,2021-2023,0.0021821067248561,0.0148780003967466,0.0087284268994247,0.0017853600476096,0.0019837333862328,0.0559412814917675,0.0015869867089863,0.005554453481452,0.0095219202539178,0.0198373338623289,0.0152747470739932,0.0015869867089863
Denver CO,2024-2026,0.0179640718562874,0.0607356715141146,0.0256629597946963,0.0342172797262617,0.46535500427716,0.0846877673224978,0.0265183917878528,0.0607356715141146,0.0607356715141146,0.0265183917878528,0.0256629597946963,0.0222412318220701
Des Moines-Ames IA,2012-2014,0.0,0.0,0.08130081300813,0.16260162601626,0.160326086956522,0.138586956521739,0.296195652173913,0.0,0.0,0.138586956521739,0.0,0.0
Des Moines-Ames IA,2015-2017,0.328571428571429,0.154285714285714,0.208571428571429,0.0,0.0,0.0,0.0,0.524216524216524,0.0,0.173789173789174,0.199430199430199,0.0
Des Moines-Ames IA,2018-2020,0.0760095011876484,0.0,0.0,0.0,0.0,0.0,0.0400943396226415,0.070754716981132,0.0,0.0235849056603773,0.0,0.0283018867924528
Des Moines-Ames IA,2021-2023,0.007909604519774,0.0090395480225988,0.0,0.0225988700564971,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Des Moines-Ames IA,2024-2026,0.0325313453066757,0.0958996950186377,0.0430362588952897,0.0311758725855642,1.78923426838514,0.144806671721001,0.0371493555724033,0.0978013646702047,0.0598984771573604,0.0348561759729272,0.0304568527918781,0.0453468697123519
Detroit MI,2012-2014,0.0,0.0065493246009005,0.0061399918133442,0.0515759312320916,0.0057283142389525,0.0,0.0,0.0396890343698854,0.0,0.0225040916530278,0.0237315875613747,0.0077741407528641
Detroit MI,2015-2017,0.0,0.0,0.0129277566539923,0.0045627376425855,0.0096544715447154,0.0,0.0040650406504065,0.0,0.0035569105691056,0.0,0.0043191056910569,0.0
Detroit MI,2018-2020,0.0027841052898,0.0,0.0030372057706909,0.0070868134649455,0.0116751269035532,0.0109137055837563,0.0,0.0,0.0,0.0,0.0030456852791878,0.0093908629441624
Detroit MI,2021-2023,0.0,0.0244146487892735,0.0060036021612967,0.0044026415849509,0.0016009605763458,0.0442265359215529,0.0130078046828096,0.0014008405043025,0.0072043225935561,0.0130078046828096,0.01240744446668,0.0
Detroit MI,2024-2026,0.024567788898999,0.0909918107370336,0.0272975432211101,0.0709736123748862,0.407643312101911,0.0873521383075523,0.0336669699727024,0.0564149226569608,0.0600545950864422,0.0318471337579617,0.0291173794358507,0.0327570518653321
Dothan AL,2012-2014,0.840336134453782,0.680672268907563,0.0,0.0,0.943396226415094,0.0,0.0,0.754716981132076,0.0,0.0,0.0,0.0
Dothan AL,2015-2017,,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Dothan AL,2018-2020,0.0,0.0,0.0,1.98823529411765,0.0,0.0,1.26582278481013,0.0,1.02985074626866,0.0,0.0,1.49253731343284
Dothan AL,2021-2023,0.0983333333333333,0.133333333333333,0.0,0.0,0.0,0.0,0.115,0.0,0.103333333333333,0.0,0.0,0.0
Dothan AL,2024-2026,0.0154589371980676,0.0483091787439613,0.029951690821256,0.0,0.3154296875,0.015625,0.0,0.0,0.0,0.0,0.0,0.017578125
Duluth MN-Superior WI,2012-2014,0.0,0.36,0.0,0.0,0.388392857142857,0.1875,0.0,0.0,0.392857142857143,0.0,0.0,0.0
Duluth MN-Superior WI,2015-2017,0.0,0.0,0.0,0.0,0.298701298701299,0.0,0.0,2.84415584415584,0.0,0.0,0.206896551724138,0.0
Duluth MN-Superior WI,2018-2020,0.0,0.36745406824147,0.0,0.154855643044619,0.0,0.0,0.115485564304462,1.13123359580053,0.0,0.0,0.346456692913386,0.0
Duluth MN-Superior WI,2021-2023,0.0,0.0,0.0,0.0686695278969957,0.0,0.0,0.0,0.51775956284153,0.0,0.0,0.0,0.0
Duluth MN-Superior WI,2024-2026,0.0,0.0070477682067345,0.0274079874706342,0.0054815974941268,0.564266180492252,0.0164083865086599,0.0,0.663628076572471,0.043035993740219,0.0093896713615023,0.0062597809076682,0.0
El Paso TX,2012-2014,1.98823529411765,0.0,0.0,0.0,0.0,0.0,1.63,0.0,0.89,0.0,0.0,0.0
El Paso TX,2015-2017,0.0,0.0,0.0,0.0,0.38562091503268,0.140522875816993,0.137254901960784,0.0,0.0,0.0,0.0,0.904382470119522
El Paso TX,2018-2020,0.0,0.0,0.180440771349862,0.0,0.0,0.0,0.0,0.0,0.0849582172701949,0.0821727019498607,0.0,0.0
El Paso TX,2021-2023,0.0340623879526712,0.0207959842237361,0.0,0.0,0.0261742560057368,0.010397992111868,0.0,0.0125493008246683,0.0,0.0182861240588024,0.0096808892076012,0.0132664037289351
El Paso TX,2024-2026,0.007600434310532,0.0423452768729641,0.00542888165038,0.01628664495114,0.437229437229437,0.066017316017316,0.0097402597402597,0.0238095238095238,0.0335497835497835,0.0194805194805194,0.0075757575757575,0.0119047619047619
Elmira NY,2012-2014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Elmira NY,2015-2017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Elmira NY,2018-2020,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Elmira NY,2021-2023,1.06382978723404,0.0,0.0,0.0,0.0,0.0,1.17647058823529,0.882352941176471,0.0,0.0,0.73,0.0
Elmira NY,2024-2026,0.0,0.0169014084507042,0.0408450704225352,0.0197183098591549,0.492220650636492,0.0169731258840169,0.0,0.0183875530410183,0.0353606789250353,0.0,0.0183875530410183,0.0
Erie PA,2012-2014,0.0,1.31578947368421,1.05263157894737,0.0,0.0,0.0,2.3972602739726,0.0,0.85,1.94,0.0,0.0
Erie PA,2015-2017,2.17391304347826,0.0,0.0,1.93478260869565,1.53846153846154,0.0,0.0,0.0,0.0,0.0,2.17391304347826,0.0
Erie PA,2018-2020,0.0,0.440528634361234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.446428571428571,0.0,0.383928571428571
Erie PA,2021-2023,0.0,0.266666666666667,0.0,0.186666666666667,0.0,0.0,0.0,0.0,0.165725047080979,0.188323917137476,0.0,0.0
Erie PA,2024-2026,0.0,0.0,0.0,0.0116504854368932,0.541747572815534,0.0077669902912621,0.0,0.0262135922330097,0.0087378640776699,0.0,0.0077669902912621,0.0
Eugene OR,2012-2014,0.0,0.0,0.684931506849315,0.0,1.64335664335664,0.391608391608392,0.0,0.664335664335664,0.0,0.43646408839779,0.0,0.0
Eugene OR,2015-2017,0.60625,0.39375,0.49375,0.0,0.46875,0.0,0.3375,0.7,0.525,0.0,0.0,0.0
Eugene OR,2018-2020,0.0,0.0,0.0218340611353711,0.0,0.019650655021834,0.0,0.0458515283842794,0.0174672489082969,0.124454148471616,0.0,0.0,0.0218340611353711
Eugene OR,2021-2023,0.0,0.0085050703303892,0.0078508341511285,0.0183186130192999,0.0183186130192999,0.0,0.0,0.0,0.378802747791953,0.0,0.0274779195289499,0.0062152437029767
Eugene OR,2024-2026,0.0,0.0119225037257824,0.0,0.0,0.268238761974945,0.0353721444362564,0.004421518054532,0.028002947678703,0.254237288135593,0.0036845983787767,0.0,0.0081061164333087
Eureka CA,2012-2014,0.0,0.0,20.0,0.0,23.4,0.0,0.8,20.0,0.0,0.0,38.4,0.0
Eureka CA,2015-2017,,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Eureka CA,2018-2020,0.0,0.0,0.0,0.0,1.14285714285714,1.05714285714286,4.2,1.57142857142857,0.0,0.0,1.26582278481013,0.0
Eureka CA,2021-2023,0.72,0.0,0.47,0.52,0.58,1.12,0.0,0.0,0.0,1.42,0.0,0.0
Eureka CA,2024-2026,0.0,0.0,0.059880239520958,0.0014970059880239,0.057057057057057,0.0,0.0405405405405405,0.027027027027027,0.03003003003003,0.0,0.0,0.0
Evansville IN,2012-2014,0.515625,0.0,0.0,0.0,0.0,0.0,0.578034682080925,0.0,0.0,0.0,0.0,0.609756097560976
Evansville IN,2015-2017,0.0,0.953846153846154,1.53846153846154,0.0,0.0,3.67307692307692,0.0,0.0,0.0,1.51515151515152,0.0,0.0
Evansville IN,2018-2020,0.0,0.0,0.0,0.0535714285714285,0.0,0.214285714285714,0.0,0.0,0.0714285714285714,0.0535714285714285,0.0625,0.0
Evansville IN,2021-2023,0.0,0.0154589371980676,0.0,0.0,0.0198067632850241,0.552173913043478,0.0,0.017391304347826,0.0,0.0202898550724637,0.0169082125603864,0.0
Evansville IN,2024-2026,0.0110726643598615,0.0442906574394463,0.0207612456747404,0.0096885813148788,1.2469387755102,0.146258503401361,0.0,0.0258503401360544,0.0340136054421768,0.0170068027210884,0.0122448979591836,0.0149659863945578
Fairbanks AK,2012-2014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Fairbanks AK,2015-2017,0.0,1.11111111111111,0.0,0.0,2.40740740740741,1.85185185185185,1.92592592592593,0.0,1.49253731343284,0.0,0.0,1.22388059701493
Fairbanks AK,2018-2020,0.0,0.0,0.0,1.32167832167832,0.0,0.699300699300699,0.0,0.0,0.0,0.0,0.0,0.0
Fairbanks AK,2021-2023,0.732283464566929,0.34251968503937,0.0,0.0,0.0,0.30859375,0.0,0.32421875,0.0,0.0,0.0,0.359375
Fairbanks AK,2024-2026,0.0,0.0235732009925558,0.0,0.0297766749379652,0.148009950248756,0.0696517412935323,0.0,0.0,0.0,0.0,0.0248756218905472,0.0
Fargo-Valley City ND,2012-2014,0.0,0.0,0.319488817891374,0.0,0.0,0.186567164179105,0.0,0.906716417910448,0.213855421686747,0.0,0.0,0.0
Fargo-Valley City ND,2015-2017,0.344202898550725,0.117753623188406,0.0869565217391304,0.0760869565217391,0.0,0.0,0.0,2.02793296089385,0.0887681159420289,0.0,0.0,0.0
Fargo-Valley City ND,2018-2020,0.0,0.0553745928338762,0.0,0.0,0.0,0.0542888165038002,0.0,0.635179153094463,0.0488599348534201,0.0,0.0,0.0597176981541802
Fargo-Valley City ND,2021-2023,0.0368196371398079,0.0,0.0,0.0,0.0,0.0,0.0170757737459978,0.218783351120598,0.0,0.0186766275346851,0.0,0.0
Fargo-Valley City ND,2024-2026,0.0027510316368638,0.0254470426409903,0.0089408528198074,0.0,0.573907009021513,0.0319222761970853,0.0027758501040943,0.533657182512144,0.0263522884882108,0.0048543689320388,0.0062413314840499,0.0027739251040221
Flint-Saginaw-Bay City MI,2012-2014,0.0,0.0,0.0,0.282142857142857,0.3,0.0,0.0,0.0,0.3584229390681,0.0,0.0,0.0
Flint-Saginaw-Bay City MI,2015-2017,0.0,0.251497005988024,0.449101796407186,0.0,0.0,0.461538461538462,0.0,0.461538461538462,0.0,0.525423728813559,0.477966101694915,0.0
Flint-Saginaw-Bay City MI,2018-2020,0.0,0.0,0.0,0.138586956521739,0.0,0.24390243902439,0.113821138211382,0.170731707317073,0.0,0.0948509485094851,0.149051490514905,0.0
Flint-Saginaw-Bay City MI,2021-2023,0.0380127963869025,0.0173127587504704,0.0,0.0,0.0171232876712328,0.0547945205479452,0.015220700152207,0.0,0.0,0.0,0.0,0.0445205479452054
Flint-Saginaw-Bay City MI,2024-2026,0.0133971291866028,0.0449760765550239,0.0095693779904306,0.0038277511961722,0.607899807321773,0.0539499036608863,0.0077071290944123,0.0067437379576107,0.0202312138728323,0.0067437379576107,0.0038535645472061,0.0086705202312138
Florence-Myrtle Beach SC,2012-2014,0.20959595959596,0.0,0.20959595959596,0.0,0.0,0.126582278481013,0.0683544303797468,0.0,0.0,0.0,0.0,0.0
Florence-Myrtle Beach SC,2015-2017,0.0,0.009765625,0.0,0.076171875,0.0,0.0,0.0,0.0,0.0,0.0419921875,0.1279296875,0.0
Florence-Myrtle Beach SC,2018-2020,0.0337798485730926,0.0,0.0693069306930693,0.0,0.0,0.0,0.0,0.0,0.0871321407963069,0.046739757645701,0.0,0.0542412002308136
Florence-Myrtle Beach SC,2021-2023,0.0,0.0195758564437194,0.0,0.0,0.0,0.0170523751522533,0.0203004466098254,0.0,0.0,0.0,0.0,0.0
Florence-Myrtle Beach SC,2024-2026,0.0151387720773759,0.0798990748528175,0.024390243902439,0.0075693860386879,0.406223717409588,0.0866274179983179,0.0260723296888141,0.0386879730866274,0.0555088309503784,0.0210260723296888,0.0126156433978132,0.0117746005046257
Fresno-Visalia CA,2012-2014,0.0,0.350180505415162,0.71841155234657,0.28158844765343,0.0,0.0,0.252707581227437,0.0,0.288808664259928,0.0,0.306859205776173,0.55956678700361
Fresno-Visalia CA,2015-2017,0.0489432703003337,0.0,0.0,0.140155728587319,0.162280701754386,0.0,0.216008771929825,0.0756578947368421,0.0723684210526315,0.0,0.0,0.0
Fresno-Visalia CA,2018-2020,0.0,0.0,0.0,0.0235426008968609,0.0196188340807174,0.0246636771300448,0.0364349775784753,0.0291479820627802,0.0,0.0325112107623318,0.0330717488789237,0.0
Fresno-Visalia CA,2021-2023,0.0,0.0104486785494775,0.0,0.0079901659496004,0.0,0.0349196538936959,0.0,0.0,0.0,0.0,0.0179233621755253,0.0
Fresno-Visalia CA,2024-2026,0.0073684210526315,0.0463157894736842,0.0199999999999999,0.0157894736842105,0.338590956887487,0.0736067297581493,0.0368033648790746,0.0325972660357518,0.0304942166140904,0.0126182965299684,0.0126182965299684,0.0063091482649842
Ft. Myers-Naples FL,2012-2014,0.0,1.24166666666667,0.716666666666667,0.0,0.0,0.598802395209581,0.526946107784431,0.532934131736527,0.0,0.0,0.0,0.704225352112676
Ft. Myers-Naples FL,2015-2017,0.0,0.0,0.169811320754717,0.0,0.467680608365019,0.650190114068441,0.0,0.0,0.0,0.0,0.163498098859316,0.315589353612167
Ft. Myers-Naples FL,2018-2020,0.0350297422339722,0.0,0.0,0.0760079312623926,0.0,0.0,0.0395256916996047,0.0,0.0447957839262187,0.0,0.0,0.0
Ft. Myers-Naples FL,2021-2023,0.0,0.0108275328692962,0.0,0.0,0.0,0.0,0.0,0.0,0.0061871616395978,0.0092807424593967,0.0058004640371229,0.0
Ft. Myers-Naples FL,2024-2026,0.0191304347826086,0.0417391304347826,0.0269565217391304,0.0113043478260869,0.58123370981755,0.0582102519548218,0.0112945264986967,0.0425716768027801,0.0417028670721112,0.0139009556907037,0.0112945264986967,0.0095569070373588
Ft. Smith-Fayetteville-Springdale-Rogers AR,2012-2014,0.0,0.99,0.0,0.0,0.0,0.0,0.0,0.0,1.11764705882353,0.0,1.17647058823529,0.0
Ft. Smith-Fayetteville-Springdale-Rogers AR,2015-2017,0.0,0.0,0.0,0.0,0.0,0.97,0.0,0.0,0.0,2.22972972972973,1.35135135135135,0.0
Ft. Smith-Fayetteville-Springdale-Rogers AR,2018-2020,0.256410256410256,0.698717948717949,0.0,0.429487179487179,0.0,0.0,0.307692307692308,0.0,0.0,0.0,0.0,0.237179487179487
Ft. Smith-Fayetteville-Springdale-Rogers AR,2021-2023,0.0,0.0357142857142857,0.0,0.0,0.0,0.026775956284153,0.0612021857923497,0.0,0.0,0.0,0.0622950819672131,0.0
Ft. Smith-Fayetteville-Springdale-Rogers AR,2024-2026,0.0049554013875123,0.020812685827552,0.0039643211100099,0.0089197224975222,0.503461918892186,0.0089020771513353,0.0039564787339268,0.0079129574678536,0.0217606330365974,0.0,0.0,0.0049455984174085
Ft. Wayne IN,2012-2014,0.0,0.0,0.412429378531073,0.564971751412429,0.0,0.0,0.0,0.584795321637427,0.0,0.0,0.0,0.0
Ft. Wayne IN,2015-2017,0.0,0.0,0.0,0.852459016393443,0.0,0.0,0.0,0.0,0.521739130434783,0.0,0.0,0.0
Ft. Wayne IN,2018-2020,0.159313725490196,0.325980392156863,0.178921568627451,0.0,0.134474327628362,0.149144254278729,0.185819070904646,0.0,0.0,0.190709046454768,0.0,0.200488997555012
Ft. Wayne IN,2021-2023,0.0365474339035769,0.0318818040435458,0.0,0.0,0.0484375,0.0,0.02734375,0.0,0.028125,0.0,0.0,0.03125
Ft. Wayne IN,2024-2026,0.015015015015015,0.0675675675675675,0.0217717717717717,0.0202702702702702,1.4016578749058,0.0633006782215523,0.0203466465712132,0.0293896006028636,0.0376789751318764,0.0037678975131876,0.0180859080633006,0.0263752825923134
Gainesville FL,2012-2014,0.0,0.0,0.0,0.0,0.0,0.0,1.28205128205128,0.0,0.0,0.0,0.0,0.0
Gainesville FL,2015-2017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Gainesville FL,2018-2020,0.272727272727273,0.0,0.264069264069264,0.61038961038961,0.0,0.779220779220779,0.0,0.0,0.285714285714286,0.0,0.0,0.0
Gainesville FL,2021-2023,0.0,0.0651583710407239,0.0714932126696832,0.0832579185520362,0.0,0.0,0.0,0.087624209575429,0.074977416440831,0.0,0.0,0.0
Gainesville FL,2024-2026,0.0119284294234592,0.0318091451292246,0.0,0.0,0.403826787512588,0.0362537764350453,0.0070493454179254,0.0070493454179254,0.0070493454179254,0.0,0.0151057401812688,0.0
Glendive MT,2012-2014,0.0,0.0,0.0,0.0,0.81,0.0,0.0,0.0,0.8,0.0,0.0,0.0
Glendive MT,2015-2017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,
Glendive MT,2018-2020,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Glendive MT,2021-2023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,
Glendive MT,2024-2026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Grand Junction-Montrose CO,2012-2014,0.0,0.0,0.0,0.0,2.66666666666667,0.0,0.0,0.0,0.0,1.78571428571429,0.0,0.0
Grand Junction-Montrose CO,2015-2017,0.0,0.0,1.0952380952381,0.0,0.625,0.0,0.0,0.0,0.0,0.0,0.0,0.479041916167665
Grand Junction-Montrose CO,2018-2020,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Grand Junction-Montrose CO,2021-2023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Grand Junction-Montrose CO,2024-2026,0.0,0.0493827160493827,0.0,0.0262345679012345,0.636222910216718,0.0386996904024767,0.0247678018575851,0.001547987616099,0.0,0.0,0.0526315789473684,0.0
Grand Rapids-Kalamazoo-Battle Creek MI,2012-2014,0.0,0.168016194331984,0.0,0.159919028340081,0.0,0.0,0.0,0.0,0.157205240174673,0.0,0.218340611353712,0.0
Grand Rapids-Kalamazoo-Battle Creek MI,2015-2017,0.0,0.323886639676113,0.0,0.0,0.0,0.0979999999999999,0.122,0.0,0.0,0.0,0.0,0.0
Grand Rapids-Kalamazoo-Battle Creek MI,2018-2020,0.0169851380042462,0.0,0.0,0.0,0.0217849613492621,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Grand Rapids-Kalamazoo-Battle Creek MI,2021-2023,0.0,0.0295001365747063,0.0046435400163889,0.0,0.0,0.0120185741600655,0.0060092870800327,0.0043703906036602,0.0,0.0060092870800327,0.005736137667304,0.0046435400163889
Grand Rapids-Kalamazoo-Battle Creek MI,2024-2026,0.0160880609652836,0.0838272650296358,0.0220152413209144,0.0186282811176968,0.665254237288136,0.0703389830508474,0.011864406779661,0.0347457627118644,0.0449152542372881,0.0169491525423728,0.0127118644067796,0.0169491525423728
Great Falls MT,2012-2014,,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Great Falls MT,2015-2017,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0
Great Falls MT,2018-2020,,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Great Falls MT,2021-2023,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0
Great Falls MT,2024-2026,0.0,0.0248868778280543,0.0260180995475113,0.0,0.655756207674944,0.0304740406320541,0.0,0.0,0.0,0.0248306997742663,0.0,0.0
Green Bay-Appleton WI,2012-2014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Green Bay-Appleton WI,2015-2017,0.261992619926199,0.0,0.20479704797048,0.0,0.0,0.0,0.229357798165138,0.0,0.0,0.0,0.0,0.0
Green Bay-Appleton WI,2018-2020,0.0,0.0,0.0,0.0,0.072265625,0.0,0.21875,0.0,0.0,0.10546875,0.0,0.0703125
Green Bay-Appleton WI,2021-2023,0.0112596762843068,0.0147783251231527,0.0292047853624208,0.0,0.0,0.0143306536176162,0.0,0.0139811254806011,0.012583012932541,0.012583012932541,0.0,0.0
Green Bay-Appleton WI,2024-2026,0.0058091286307053,0.0340248962655601,0.0091286307053941,0.0033195020746887,0.656119900083264,0.0333055786844296,0.0108243130724396,0.064113238967527,0.0124895920066611,0.0,0.0024979184013322,0.0083263946711074
Greensboro-High Point-Winston Salem NC,2012-2014,0.16289592760181,0.0,0.0,0.156108597285068,0.0,0.24390243902439,0.0,0.0,0.0,0.0,0.0,0.0
Greensboro-High Point-Winston Salem NC,2015-2017,0.0340136054421768,0.0,0.0,0.0,0.0,0.0,0.0515873015873015,0.0255102040816326,0.0,0.0379818594104308,0.0,0.0
Greensboro-High Point-Winston Salem NC,2018-2020,0.0,0.0,0.0073286918285086,0.0,0.0444526083761939,0.0216752387950036,0.0,0.0110213078618662,0.0,0.0,0.0,0.0132255694342395
Greensboro-High Point-Winston Salem NC,2021-2023,0.0113579000504795,0.0045431600201918,0.0068147400302877,0.0,0.0,0.0157560355781448,0.0043202033036848,0.0,0.0,0.0,0.0045743329097839,0.0038119440914866
Greensboro-High Point-Winston Salem NC,2024-2026,0.0364464692482915,0.0941533788914198,0.034927866362946,0.0364464692482915,0.378891419893698,0.0933940774487471,0.0273348519362186,0.058466211085801,0.0782080485952923,0.0258162490508731,0.0296127562642369,0.0341685649202733
Greenville-New Bern-Washington NC,2012-2014,1.58730158730159,0.0,0.0,0.0,0.745762711864407,0.0,1.69491525423729,0.847457627118644,0.0,0.0,1.12359550561798,1.10112359550562
Greenville-New Bern-Washington NC,2015-2017,0.0,0.5625,1.28125,1.546875,0.0,0.0,0.636942675159236,0.0,0.55,0.0,0.0,0.714285714285714
Greenville-New Bern-Washington NC,2018-2020,0.0756172839506172,0.0,0.0725308641975308,0.182098765432099,0.0,0.0,0.0,0.0,0.0,0.0,0.0770416024653312,0.104776579352851
Greenville-New Bern-Washington NC,2021-2023,0.0102761721258831,0.0,0.0147719974309569,0.0,0.0,0.0114905841046919,0.0271305458027449,0.0,0.0137248643472709,0.0223428024257899,0.0111714012128949,0.0
Greenville-New Bern-Washington NC,2024-2026,0.009700889248181,0.0719482619240097,0.0226354082457558,0.0169765561843168,0.450202429149798,0.0672064777327935,0.0186234817813765,0.031578947368421,0.0663967611336032,0.0242914979757085,0.0194331983805668,0.0105263157894736
Greenville-Spartanburg SC-Asheville NC-Anderson SC,2012-2014,0.0623441396508728,0.0,0.0,0.0,0.067556296914095,0.0683903252710592,0.049207673060884,0.0525437864887406,0.0,0.0,0.0,0.0600500417014178
Greenville-Spartanburg SC-Asheville NC-Anderson SC,2015-2017,0.0,0.0,0.045985401459854,0.0,0.0,0.0249632892804698,0.0477239353891336,0.0,0.0337738619676945,0.0,0.0,0.0
Greenville-Spartanburg SC-Asheville NC-Anderson SC,2018-2020,0.0098977235235895,0.0164962058726492,0.0,0.0,0.0,0.0108874958759485,0.0,0.0,0.0108874958759485,0.0,0.0105575717584955,0.0
Greenville-Spartanburg SC-Asheville NC-Anderson SC,2021-2023,0.0056002800140007,0.0035001750087504,0.0031501575078753,0.0,0.0135746606334841,0.0327184128089105,0.0038287504350852,0.0,0.0,0.0,0.0034806822137138,0.0
Greenville-Spartanburg SC-Asheville NC-Anderson SC,2024-2026,0.0392628205128205,0.0881410256410256,0.0304487179487179,0.0280448717948717,0.449718423169751,0.0876910699919549,0.0176991150442477,0.0442477876106194,0.0611423974255832,0.0209171359613837,0.0273531777956556,0.0193081255028157
Greenwood-Greenville MS,2012-2014,0.0,0.0,0.0,0.0,,,,,,,,
Greenwood-Greenville MS,2015-2017,0.0,0.0,0.0,1.32,0.44078947368421,1.13815789473684,0.0,0.0,0.471014492753623,1.15217391304348,0.695652173913044,0.579710144927536
Greenwood-Greenville MS,2018-2020,0.0,0.0,0.376712328767123,0.0,0.0,0.0,0.0,0.0,0.210691823899371,0.188679245283019,0.0,0.314465408805032
Greenwood-Greenville MS,2021-2023,0.0,0.0,0.0388845247446975,0.0,0.0,0.0,0.0156985871271585,0.0,0.0400313971742543,0.0,0.0,0.0
Greenwood-Greenville MS,2024-2026,0.0,0.0612947658402203,0.0,0.0,0.0653370013755158,0.0,0.0,0.0,0.0,0.0,0.0158184319119669,0.0
Harlingen-Weslaco-Brownsville-McAllen TX,2012-2014,0.0,0.0,0.0,0.0,0.81,0.0,0.0,0.0,1.85,0.0,0.0,0.0
Harlingen-Weslaco-Brownsville-McAllen TX,2015-2017,0.154296875,0.1015625,0.185546875,0.0,0.324731182795699,0.126881720430108,0.438709677419355,0.0,0.116113744075829,0.175355450236967,0.23696682464455,0.0
Harlingen-Weslaco-Brownsville-McAllen TX,2018-2020,0.0,0.0,0.0,0.0366225839267548,0.0,0.0,0.0,0.0,0.0,0.0976602238046795,0.0630722278738555,0.0
Harlingen-Weslaco-Brownsville-McAllen TX,2021-2023,0.0155610155610155,0.0233415233415233,0.0307125307125307,0.018018018018018,0.0,0.0434070434070434,0.0,0.0,0.0,0.0,0.0,0.0171990171990172
Harlingen-Weslaco-Brownsville-McAllen TX,2024-2026,0.0031104199066874,0.0342146189735614,0.0124416796267496,0.0482115085536547,0.469673405909798,0.0497667185069984,0.0093312597200622,0.0139968895800933,0.0264385692068429,0.0108864696734059,0.0031104199066874,0.0
Harrisburg-Lancaster-Lebanon-York PA,2012-2014,0.270833333333333,0.369791666666667,0.0,0.286458333333333,0.369791666666667,0.28125,0.59375,0.28125,0.395833333333333,0.0,0.0,0.0
Harrisburg-Lancaster-Lebanon-York PA,2015-2017,0.167647058823529,0.267647058823529,0.2,0.294117647058824,0.0,0.0,0.0,0.0,0.0,0.0,0.185279187817259,0.0
Harrisburg-Lancaster-Lebanon-York PA,2018-2020,0.0,0.0,0.0208333333333333,0.0,0.0182398540811673,0.0145918832649338,0.0,0.0,0.0191518467852257,0.0296397628818969,0.0,0.0414956680346557
Harrisburg-Lancaster-Lebanon-York PA,2021-2023,0.008258064516129,0.0,0.0069677419354838,0.0,0.017503805175038,0.0162354134956874,0.0,0.0147133434804667,0.0,0.0083713850837138,0.0068493150684931,0.0142059868087265
Harrisburg-Lancaster-Lebanon-York PA,2024-2026,0.011353711790393,0.0471615720524017,0.0218340611353711,0.0262008733624454,0.498689956331878,0.0637554585152838,0.0183406113537117,0.034061135371179,0.0445414847161572,0.016593886462882,0.0139737991266375,0.0314410480349345
Harrisonburg VA,2012-2014,0.41717791411043,0.613496932515337,0.0,0.423312883435583,0.0,0.0,0.0,0.657894736842105,0.0,0.0,0.0,0.0
Harrisonburg VA,2015-2017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Harrisonburg VA,2018-2020,0.495798319327731,0.0,0.0,0.840336134453782,0.0,0.0,0.0,0.0,0.450549450549451,0.0,0.0,0.543956043956044
Harrisonburg VA,2021-2023,0.0,1.02409638554217,1.19277108433735,0.0,0.0,0.474747474747475,0.0,0.0,0.900900900900901,0.0,0.0,0.0
Harrisonburg VA,2024-2026,0.0,0.030560271646859,0.0118845500848896,0.0220713073005093,0.541136556403732,0.0,0.0161153519932145,0.0254452926208651,0.0,0.010178117048346,0.0,0.0008481764206955
Hartford & New Haven CT,2012-2014,0.0,0.0070967741935483,0.458709677419355,0.0,0.0,0.0064516129032258,0.0,0.0,0.0,0.0,0.0051612903225806,0.0141935483870967
Hartford & New Haven CT,2015-2017,0.0058823529411764,0.0029411764705882,2.71323529411765,0.0073529411764705,0.0,0.0,0.0098461538461538,0.0067692307692307,0.003076923076923,0.003076923076923,0.0036923076923076,0.003076923076923
Hartford & New Haven CT,2018-2020,0.005414410662224,0.0,0.409412744689713,0.0016659725114535,0.0,0.0040420371867421,0.0056588520614389,0.0084882780921584,0.0105092966855295,0.0040420371867421,0.0169765561843168,0.0194017784963621
Hartford & New Haven CT,2021-2023,0.0031562335612835,0.0199894792214623,0.524197790636507,0.0065754865860073,0.002440214738897,0.0217179111761835,0.0031722791605661,0.0117130307467057,0.0446559297218155,0.0231820400195217,0.0224499755978526,0.0063445583211322
Hartford & New Haven CT,2024-2026,0.01707779886148,0.0506008855154965,0.333965844402277,0.0942441492726122,0.231158961367954,0.0576314122862571,0.0246991766941101,0.0576314122862571,0.0861304623179227,0.0310322989233692,0.0348321722609246,0.0284990500316656
Hattiesburg-Laurel MS,2012-2014,0.53072625698324,0.156424581005587,0.290502793296089,0.0,0.0,0.0,0.432584269662921,0.0,0.0,0.0,0.0,0.0
Hattiesburg-Laurel MS,2015-2017,0.426666666666667,0.293333333333333,1.33333333333333,0.0,0.3,0.0,0.337931034482759,0.0,0.0,0.0,0.0,0.0
Hattiesburg-Laurel MS,2018-2020,0.0,0.0,0.339041095890411,0.0,0.243986254295533,0.0,0.25085910652921,0.0,0.219931271477663,0.0,0.0,0.199312714776632
Hattiesburg-Laurel MS,2021-2023,0.0,0.0368608799048751,0.0416171224732461,0.0338882282996432,0.0,0.0647268408551069,0.0,0.0,0.0385985748218527,0.0,0.0,0.0
Hattiesburg-Laurel MS,2024-2026,0.0202839756592292,0.0294117647058823,0.0182555780933062,0.0,0.31237322515213,0.0517241379310344,0.0131845841784989,0.0,0.0,0.0,0.0,0.0101419878296146
Helena MT,2012-2014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Helena MT,2015-2017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Helena MT,2018-2020,,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Helena MT,2021-2023,1.11111111111111,0.0,1.52222222222222,0.766666666666667,0.0,0.0,0.0,0.0,0.0,0.0,0.88,0.0
Helena MT,2024-2026,0.0967741935483871,0.0,0.0,0.0913978494623655,0.17741935483871,0.0,0.0,0.0,0.0,0.0,0.082437275985663,0.0
Honolulu HI,2012-2014,0.045045045045045,0.0,0.0,0.0,0.0886302596239928,0.0,0.0,0.0716204118173679,0.0,0.0,0.0572963294538943,0.0501342882721575
Honolulu HI,2015-2017,0.0,0.0145167980091248,0.0,0.0153463293239319,0.0223973454997926,0.0,0.0232268768145997,0.0165906262961426,0.0460389879717959,0.0232268768145997,0.034425549564496,0.0302778929904603
Honolulu HI,2018-2020,0.0092317837124958,0.0,0.0,0.0323112429937355,0.0134957208689927,0.0,0.0,0.0,0.0134957208689927,0.0111915734035549,0.031599736668861,0.010204081632653
Honolulu HI,2021-2023,0.0074358974358974,0.0,0.0053846153846153,0.0,0.0,0.0119775739041794,0.0249745158002038,0.0,0.0050968399592252,0.0,0.0068807339449541,0.0
Honolulu HI,2024-2026,0.0060975609756097,0.0261324041811846,0.0104529616724738,0.0087108013937282,0.374233128834356,0.0499561787905346,0.0105170902716914,0.0227870289219982,0.0262927256792287,0.0052585451358457,0.0131463628396143,0.0122699386503067
Houston TX,2012-2014,0.0078534031413612,0.0,0.0082897033158813,0.0052356020942408,0.0043630017452006,0.006544502617801,0.0143979057591623,0.0047993019197207,0.0,0.0165794066317626,0.0,0.0
Houston TX,2015-2017,0.0081833060556464,0.0022504091653027,0.0,0.0053191489361702,0.0024014408645187,0.0,0.014208525115069,0.0082049229537722,0.0052031218731238,0.0,0.0050030018010806,0.0
Houston TX,2018-2020,0.0020431328036322,0.001816118047673,0.0,0.0022701475595913,0.0,0.0,0.0084901330885727,0.0057365764111977,0.0,0.0018357044515832,0.0055071133547498,0.0091785222579164
Houston TX,2021-2023,0.0020004445432318,0.0153367414981106,0.0048899755501222,0.0193376305845743,0.0060013336296954,0.0486774838853078,0.0135585685707935,0.0020004445432318,0.0168926428095132,0.0186708157368304,0.0117803956434763,0.0026672593909757
Houston TX,2024-2026,0.0261121856866537,0.0986460348162475,0.0338491295938104,0.0589941972920696,0.294003868471954,0.09284332688588,0.034816247582205,0.0551257253384913,0.0618955512572533,0.0377176015473887,0.0328820116054158,0.0222437137330754
Huntsville-Decatur (Florence) AL,2012-2014,0.0,0.1875,0.0,0.195,0.0,0.0,0.21,0.0,0.0,0.0,0.0,0.758364312267658
Huntsville-Decatur (Florence) AL,2015-2017,0.0,0.187643020594966,0.0,0.0,0.0,0.2710027100271,0.0,0.0,0.0,0.0,0.0,0.0
Huntsville-Decatur (Florence) AL,2018-2020,0.0822831727205337,0.0859896219421793,0.0,0.0511489992587101,0.0431226765799256,0.0,0.0401486988847583,0.0386617100371747,0.0988847583643122,0.0,0.0483271375464684,0.0713754646840148
Huntsville-Decatur (Florence) AL,2021-2023,0.0131712259371833,0.0106382978723404,0.0,0.0,0.0141843971631205,0.0,0.0,0.0,0.0,0.0126646403242147,0.0212765957446808,0.0177304964539007
Huntsville-Decatur (Florence) AL,2024-2026,0.0097345132743362,0.0628318584070796,0.0203539823008849,0.0079646017699115,0.479185119574845,0.0682019486271036,0.012400354295837,0.0132860938883968,0.0336581045172719,0.0088573959255978,0.0,0.0035429583702391
Idaho Falls-Pocatello ID,2012-2014,0.0,0.0,0.93,0.0,0.939024390243902,1.21951219512195,0.0,1.19512195121951,0.89,0.0,0.0,0.0
Idaho Falls-Pocatello ID,2015-2017,0.0,1.08695652173913,0.0,0.0,1.19047619047619,0.0,0.0,0.0,1.08163265306122,2.04081632653061,0.0,0.0
Idaho Falls-Pocatello ID,2018-2020,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0
Idaho Falls-Pocatello ID,2021-2023,1.67,0.56,0.0,1.0,0.0,0.0,0.0,0.854700854700855,0.0,0.763358778625954,0.755725190839695,0.0
Idaho Falls-Pocatello ID,2024-2026,0.0224438902743142,0.0,0.0112219451371571,0.0112219451371571,0.520754716981132,0.0088050314465408,0.0,0.0,0.0,0.0,0.0,0.0113207547169811
Indianapolis IN,2012-2014,0.0140449438202247,0.0070224719101123,0.0105337078651685,0.0,1.20215311004785,0.0095693779904306,0.0,0.0071770334928229,0.0,0.0,0.0,0.0
Indianapolis IN,2015-2017,0.0101867572156196,0.0,0.0101867572156196,0.0113186191284663,1.10353982300885,0.0123893805309734,0.0053097345132743,0.0088495575221238,0.0113122171945701,0.0,0.004524886877828,0.004524886877828
Indianapolis IN,2018-2020,0.0,0.0,0.0,0.0,0.597058823529412,0.007563025210084,0.0033613445378151,0.0,0.0,0.0084033613445378,0.0046218487394957,0.0134453781512605
Indianapolis IN,2021-2023,0.0,0.0249318270354499,0.008180755746007,0.003895597974289,0.510132501948558,0.0268901013250194,0.005066250974279,0.0054559625876851,0.0140296180826188,0.0179267342166796,0.0015588464536243,0.0062353858144972
Indianapolis IN,2024-2026,0.0344108446298227,0.08133472367049,0.0458811261730969,0.038060479666319,1.88064733648011,0.0910316925151719,0.0343897505057316,0.062036412677006,0.0599582898852971,0.0364963503649635,0.0344108446298227,0.0427528675703858
Jackson MS,2012-2014,0.403508771929825,0.25062656641604,0.223057644110276,0.0,0.0,0.17948717948718,0.481481481481482,0.0,0.0,0.0,0.0,0.0
Jackson MS,2015-2017,0.0,0.0449438202247191,0.0864304235090752,0.0,0.0640243902439024,0.101626016260163,0.0,0.0,0.0,0.0,0.0,0.0475825019186492
Jackson MS,2018-2020,0.0,0.0,0.022105657549644,0.0,0.0282334986646318,0.0,0.0,0.0,0.0454025181228538,0.007249141549027,0.0,0.0
Jackson MS,2021-2023,0.0,0.0100834492350486,0.0,0.0100834492350486,0.0048442906574394,0.0138408304498269,0.0058823529411764,0.0,0.0062283737024221,0.0058823529411764,0.0,0.0
Jackson MS,2024-2026,0.0141542816702052,0.125973106864827,0.0226468506723283,0.0205237084217975,0.321554770318021,0.0770318021201413,0.0148409893992932,0.0318021201413427,0.0318021201413427,0.0318021201413427,0.0289752650176678,0.0197879858657243
Jackson TN,2012-2014,0.0,0.86,1.95,0.0,0.0,2.075,0.8375,0.0,0.949367088607595,0.810126582278481,1.26582278481013,0.0
Jackson TN,2015-2017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Jackson TN,2018-2020,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,
Jackson TN,2021-2023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Jackson TN,2024-2026,0.0279114533205004,0.0153994225216554,0.0,0.0,0.426386233269598,0.0,0.0,0.0,0.0,0.0,0.0277246653919694,0.0
Jacksonville FL,2012-2014,0.133177570093458,0.233644859813084,0.191588785046729,0.378504672897196,0.0,0.0,0.0,0.0,0.182389937106918,0.0,0.0,0.0
Jacksonville FL,2015-2017,0.0,0.089430894308943,0.0,0.124274099883856,0.103806228373702,0.0,0.0,0.0,0.0,0.0,0.0,0.0599769319492502
Jacksonville FL,2018-2020,0.0145214521452145,0.0118811881188118,0.0,0.0108910891089108,0.0103161397670549,0.0,0.0079866888519134,0.0,0.0,0.0,0.0123128119800332,0.0106489184692179
Jacksonville FL,2021-2023,0.0035030359645025,0.0046707146193367,0.0035030359645025,0.0,0.0035120580660266,0.0133458206509014,0.0245844064621868,0.0037461952704284,0.0072582533364551,0.0067899789276516,0.0,0.0039803324748302
Jacksonville FL,2024-2026,0.0287511230907457,0.101527403414196,0.0359389038634321,0.0278526504941599,0.394973070017953,0.0798922800718132,0.0269299820466786,0.0547576301615798,0.0574506283662477,0.0305206463195691,0.018850987432675,0.0278276481149012
Johnstown-Altoona PA,2012-2014,0.0,0.0,0.257142857142857,0.0,0.0,0.0,0.0,0.0,0.251428571428571,0.0,0.0,0.274285714285714
Johnstown-Altoona PA,2015-2017,0.0,0.0,0.0,0.447368421052632,0.0,0.0,0.473684210526316,0.4,0.0,0.537634408602151,0.795698924731183,0.0
Johnstown-Altoona PA,2018-2020,0.0,0.0,0.138671875,0.0,0.0,0.0,0.161417322834646,0.0,0.0,0.0,0.0,0.181102362204724
Johnstown-Altoona PA,2021-2023,0.0,0.0899149453219927,0.0,0.0,0.0,0.0,0.0965770171149144,0.0,0.0,0.0,0.0,0.0
Johnstown-Altoona PA,2024-2026,0.0054229934924078,0.0184381778741865,0.0054229934924078,0.0065075921908893,0.640997830802603,0.0184381778741865,0.0,0.009761388286334,0.0130151843817787,0.0065075921908893,0.0184381778741865,0.0206073752711496
Jonesboro AR,2012-2014,0.0,0.0,0.0,2.23170731707317,0.0,0.0,0.9,0.0,1.0752688172043,0.849462365591398,0.0,0.0
Jonesboro AR,2015-2017,0.0,0.0,0.0,1.03092783505155,0.0,0.0,0.0,0.0,0.0,0.8,0.0,0.0
Jonesboro AR,2018-2020,0.0,0.0,0.0,0.0,,,,,,,,
Jonesboro AR,2021-2023,0.151447661469933,0.0,0.180400890868597,0.398663697104677,0.0,0.0,0.366279069767442,0.176356589147287,0.135658914728682,0.0,0.0,0.164728682170543
Jonesboro AR,2024-2026,0.0185528756957328,0.0139146567717996,0.0,0.0,0.401480111008326,0.0,0.0148011100832562,0.0,0.0,0.0,0.0185013876040703,0.0148011100832562
Joplin MO-Pittsburg KS,2012-2014,0.0,0.0,0.709219858156028,0.517730496453901,0.0,0.537634408602151,0.0,0.0,0.0,0.0,0.0,0.0
Joplin MO-Pittsburg KS,2015-2017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Joplin MO-Pittsburg KS,2018-2020,0.0,0.86,0.0,0.0,0.804597701149425,0.0,0.816091954022989,1.14942528735632,0.0,1.08695652173913,0.0,0.0
Joplin MO-Pittsburg KS,2021-2023,0.37890625,0.3203125,0.609375,0.0,0.274509803921569,0.247058823529412,0.0,0.333333333333333,0.0,0.0,0.485436893203884,0.0
Joplin MO-Pittsburg KS,2024-2026,0.0,0.0140664961636828,0.0,0.0140664961636828,0.89386189258312,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Juneau AK,2012-2014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Juneau AK,2015-2017,0.0,0.0,0.0,2.2,0.0,0.0,0.84,0.0,0.639175257731959,1.01030927835052,0.0,1.03092783505155
Juneau AK,2018-2020,0.0,0.0,0.0,1.02040816326531,0.0,1.12359550561798,0.0,1.78651685393258,0.0,0.0,0.0,0.0
Juneau AK,2021-2023,0.0,0.0,0.0,1.56462585034014,0.0,0.0,0.0,0.0,0.0,0.0,0.408163265306122,1.14285714285714
Juneau AK,2024-2026,0.0,0.0605612998522895,0.0,0.0,0.12960235640648,0.0,0.0,0.0,0.187039764359352,0.0,0.0,0.0
Kansas City MO,2012-2014,0.041497975708502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Kansas City MO,2015-2017,0.0321897501058873,0.0224481152054214,0.0,0.0177890724269377,0.0,0.0,0.0,0.0432020330368487,0.0,0.0364252435408725,0.0309191020753917,0.0
Kansas City MO,2018-2020,0.0103141115799343,0.0,0.0,0.0290670417252695,0.0,0.0,0.0,0.0,0.0,0.0121779859484777,0.0,0.0
Kansas City MO,2021-2023,0.0,0.0045871559633027,0.0,0.0097477064220183,0.0,0.0189220183486238,0.0083142201834862,0.0,0.0028669724770642,0.0151949541284403,0.0091743119266055,0.0045871559633027
Kansas City MO,2024-2026,0.009417808219178,0.0702054794520548,0.0231164383561643,0.0325342465753424,0.542808219178082,0.071917808219178,0.0188356164383561,0.0436643835616438,0.0445205479452054,0.0231164383561643,0.0162671232876712,0.0196917808219178
Knoxville TN,2012-2014,0.0,0.0,0.0886699507389162,0.0,0.0,0.113861386138614,0.0,0.0,0.0,0.0,0.0,0.0
Knoxville TN,2015-2017,0.16750418760469,0.0,0.0,0.0787269681742043,0.0,0.0,0.0,0.0,0.141496598639456,0.0,0.0,0.0789115646258503
Knoxville TN,2018-2020,0.0,0.0,0.0,0.0,0.0227513227513227,0.0,0.0,0.0,0.0,0.0476190476190476,0.0238095238095238,0.0206349206349206
Knoxville TN,2021-2023,0.0076960076960076,0.0283790283790283,0.0096200096200096,0.0072150072150072,0.0068593826555609,0.0117589416952474,0.0063694267515923,0.0,0.0088192062714355,0.0068593826555609,0.0362567368936795,0.0
Knoxville TN,2024-2026,0.0114394661582459,0.0552907530981887,0.0133460438512869,0.0181124880838894,0.597328244274809,0.0572519083969465,0.0143129770992366,0.0429389312977099,0.0353053435114503,0.0047709923664122,0.0104961832061068,0.0162213740458015
La Crosse-Eau Claire WI,2012-2014,0.0,0.0,3.16129032258065,1.43548387096774,0.0,0.0,2.72,3.0,2.81132075471698,1.83018867924528,0.0,0.0
La Crosse-Eau Claire WI,2015-2017,0.0,0.0,0.0,0.0,0.0,0.0,0.418918918918919,1.22972972972973,0.0,0.234234234234234,0.45045045045045,0.0
La Crosse-Eau Claire WI,2018-2020,0.262759924385633,0.0,0.0,0.0,0.175803402646503,0.0,0.30812854442344,0.0,0.172022684310019,0.0,0.0,0.119092627599244
La Crosse-Eau Claire WI,2021-2023,0.0,0.0607394366197183,0.0457746478873239,0.0,0.0,0.0,0.0,0.0477031802120141,0.058303886925795,0.0,0.0,0.0662544169611307
La Crosse-Eau Claire WI,2024-2026,0.0106382978723404,0.0235562310030395,0.0091185410334346,0.0098784194528875,0.860394537177542,0.0341426403641881,0.015174506828528,0.286039453717754,0.0174506828528072,0.0098634294385432,0.0053110773899848,0.0
Lafayette IN,2012-2014,0.0,0.0,3.79411764705882,1.35294117647059,1.14285714285714,2.31428571428571,0.0,0.814285714285714,0.0,0.0,0.0,1.28205128205128
Lafayette IN,2015-2017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,
Lafayette IN,2018-2020,0.0,0.118811881188119,0.0,0.244224422442244,0.160655737704918,0.318032786885246,0.0,0.4,0.0,0.0,0.534426229508197,0.0
Lafayette IN,2021-2023,0.0,1.17241379310345,0.456896551724138,1.6551724137931,0.0,0.0,0.62111801242236,0.0,0.0,0.0,0.826446280991736,1.60330578512397
Lafayette IN,2024-2026,0.0,0.0215384615384615,0.0153846153846153,0.0153846153846153,1.78893442622951,0.0143442622950819,0.0,0.0307377049180327,0.0133196721311475,0.0,0.0256147540983606,0.019467213114754
Lafayette LA,2012-2014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Lafayette LA,2015-2017,0.216470588235294,0.0,0.214117647058824,0.0,0.0,0.0,0.0,0.29940119760479,0.0,0.248756218905473,0.216417910447761,0.0
Lafayette LA,2018-2020,0.0,0.554285714285714,0.0,0.0,1.09554140127389,0.439490445859873,0.0,0.363057324840764,0.0,0.497142857142857,0.428571428571429,0.468571428571429
Lafayette LA,2021-2023,0.0,0.0,0.0985048372911169,0.040457343887423,0.0228270412642669,0.0307287093942054,0.0359964881474978,0.0,0.0,0.0,0.135206321334504,0.0
Lafayette LA,2024-2026,0.0070422535211267,0.186116700201207,0.0181086519114688,0.0181086519114688,0.372329603255341,0.0437436419125127,0.0101729399796541,0.0183112919633774,0.0284842319430315,0.0111902339776195,0.0233977619532044,0.005086469989827
Lake Charles LA,2012-2014,0.0,0.0,0.0,0.0,,,,,,,,
Lake Charles LA,2015-2017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Lake Charles LA,2018-2020,,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Lake Charles LA,2021-2023,0.989637305699482,0.202072538860104,0.0,0.0,0.214659685863874,0.0,0.0,0.0,0.246073298429319,0.172774869109948,0.0,0.345549738219895
Lake Charles LA,2024-2026,0.0,0.109700815956482,0.0117860380779691,0.0,0.307339449541284,0.0275229357798165,0.018348623853211,0.0266055045871559,0.0146788990825688,0.0146788990825688,0.0128440366972477,0.0
Lansing MI,2012-2014,0.0,0.0,0.694444444444445,0.0,0.0,0.0,0.471502590673575,0.0,0.512953367875648,0.461139896373057,0.0,0.0
Lansing MI,2015-2017,0.302114803625378,0.676737160120846,0.175226586102719,0.208459214501511,0.163265306122449,0.0,0.0,0.0,0.5,0.0,0.0,0.25
Lansing MI,2018-2020,0.0,0.341414141414141,0.0,0.0,0.140540540540541,0.0,0.0,0.0,0.0,0.0,0.136936936936937,0.151351351351351
Lansing MI,2021-2023,0.0640287769784172,0.0,0.0237410071942446,0.0,0.0,0.0,0.0,0.0,0.0273381294964028,0.0,0.0,0.0
Lansing MI,2024-2026,0.0043478260869565,0.0513043478260869,0.0121739130434782,0.0139130434782608,0.586236933797909,0.0418118466898954,0.0043554006968641,0.0156794425087108,0.0130662020905923,0.0034843205574912,0.0130662020905923,0.0
Laredo TX,2012-2014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,
Laredo TX,2015-2017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Laredo TX,2018-2020,1.35135135135135,1.7027027027027,0.0,0.0,2.3780487804878,0.98780487804878,0.926829268292683,0.0,0.0,0.769230769230769,0.0,1.0989010989011
Laredo TX,2021-2023,0.448430493273543,0.443946188340807,0.0,0.0,0.0,0.0,0.279693486590038,0.383141762452107,0.0,0.0,0.0,0.0
Laredo TX,2024-2026,0.0327868852459016,0.0176544766708701,0.0,0.0163934426229508,0.244640605296343,0.0151324085750315,0.0,0.0,0.0,0.0,0.0,0.0151324085750315
Las Vegas NV,2012-2014,0.0,0.009647853352629,0.0,0.0,0.0,0.0110950313555234,0.0328027013989387,0.0,0.0,0.0699469368065605,0.0,0.0
Las Vegas NV,2015-2017,0.0,0.0,0.0,0.0,0.0047637951568082,0.0043668122270742,0.0337435490273918,0.0,0.0047637951568082,0.0043668122270742,0.0043668122270742,0.0067487098054783
Las Vegas NV,2018-2020,0.0032310177705977,0.0052504038772213,0.0,0.0,0.0020193861066235,0.697092084006462,0.0125201938610662,0.0032310177705977,0.0016155088852988,0.005654281098546,0.0113085621970921,0.012924071082391
Las Vegas NV,2021-2023,0.004627844195912,0.020053991515619,0.0107983031237948,0.0077130736598534,0.0032133676092545,0.943444730077121,0.0173521850899743,0.006426735218509,0.0196683378326263,0.0239105283455457,0.0165831083686849,0.0053991515618974
Las Vegas NV,2024-2026,0.0182432432432432,0.0527027027027027,0.0263513513513514,0.025,0.224324324324324,0.761486486486487,0.0445945945945946,0.0587837837837838,0.0709459459459459,0.0466216216216216,0.0317567567567568,0.0263513513513514
Lexington KY,2012-2014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.436170212765957
Lexington KY,2015-2017,0.0,0.358208955223881,0.119402985074627,0.0,0.0,0.114427860696517,0.1318407960199,0.0,0.0,0.415422885572139,0.171641791044776,0.141791044776119
Lexington KY,2018-2020,0.0,0.0,0.148957298907646,0.0,0.0526315789473684,0.0,0.0,0.0,0.0685203574975174,0.132075471698113,0.0486593843098312,0.0
Lexington KY,2021-2023,0.0086107921928817,0.0218140068886338,0.0137772675086108,0.0,0.0,0.0109070034443169,0.0,0.0,0.0126291618828932,0.0,0.0126291618828932,0.0114810562571757
Lexington KY,2024-2026,0.009322033898305,0.0508474576271187,0.0186440677966102,0.0059322033898305,0.608474576271187,0.0559322033898305,0.0127118644067797,0.0296610169491525,0.038135593220339,0.0101694915254237,0.0033898305084745,0.0110169491525424
Lima OH,2012-2014,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0
Lima OH,2015-2017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Lima OH,2018-2020,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0
Lima OH,2021-2023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Lima OH,2024-2026,0.0,0.0,0.0453808752025932,0.0388978930307942,0.752025931928687,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Lincoln & Hastings-Kearney NE,2012-2014,0.0,0.232558139534884,0.688372093023256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Lincoln & Hastings-Kearney NE,2015-2017,0.0,0.0,0.53475935828877,0.86096256684492,0.446666666666667,0.0,1.21333333333333,0.0,0.0,0.0,0.425641025641026,0.0
Lincoln & Hastings-Kearney NE,2018-2020,0.358695652173913,0.22554347826087,0.0,0.271739130434783,0.4,0.202352941176471,0.16,0.0,0.0,0.482051282051282,0.0,0.0
Lincoln & Hastings-Kearney NE,2021-2023,0.0,0.0,0.0,0.0,0.0,0.0,0.0509868421052632,0.0304276315789474,0.0353618421052632,0.0,0.0271381578947368,0.0
Lincoln & Hastings-Kearney NE,2024-2026,0.0,0.0308641975308642,0.0133744855967078,0.0,0.637860082304527,0.0236625514403292,0.0,0.0246913580246914,0.0154320987654321,0.0,0.0061728395061728,0.0051440329218107
Little Rock-Pine Bluff AR,2012-2014,0.0,0.0,0.0,0.28310502283105,0.287671232876712,0.0,0.515981735159817,0.237442922374429,0.210045662100457,0.0,0.237442922374429,0.223744292237443
Little Rock-Pine Bluff AR,2015-2017,0.0299572039942939,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0427960057061341,0.0349500713266762,0.0,0.0320970042796006
Little Rock-Pine Bluff AR,2018-2020,0.0129160457029309,0.0,0.0293094883258818,0.0168902136115251,0.0,0.0,0.0,0.0163934426229508,0.0,0.0,0.0,0.0
Little Rock-Pine Bluff AR,2021-2023,0.0,0.0,0.0,0.0105088495575221,0.0116150442477876,0.0058075221238938,0.005254424778761,0.0058075221238938,0.0055309734513274,0.0063606194690265,0.0,0.0
Little Rock-Pine Bluff AR,2024-2026,0.0124610591900312,0.103582554517134,0.0155763239875389,0.0210280373831776,0.440809968847352,0.0841121495327103,0.028816199376947,0.0350467289719626,0.043613707165109,0.0116822429906542,0.0093457943925233,0.0093457943925233
Los Angeles CA,2012-2014,0.0,0.0049032258064516,0.0028387096774193,0.0041290322580645,0.0,0.0015483870967741,0.430967741935484,0.0113548387096774,0.0015483870967741,0.0379354838709677,0.0059354838709677,0.0
Los Angeles CA,2015-2017,0.0007012622720897,0.0042075736325385,0.0014025245441795,0.0038569424964936,0.0014025245441795,0.0021037868162692,0.50140252454418,0.0224403927068724,0.0010518934081346,0.0238429172510519,0.0129733520336606,0.005610098176718
Los Angeles CA,2018-2020,0.0017421602787456,0.0029865604778496,0.0039820806371329,0.0027376804380288,0.0,0.0500248880039821,0.336983573917372,0.0102040816326531,0.0044798407167745,0.0161772025883524,0.0318566450970632,0.0204081632653061
Los Angeles CA,2021-2023,0.011339323919555,0.0323063756953359,0.0136927685066324,0.0109114249037227,0.0092512908777969,0.0983218588640275,0.251506024096386,0.0066695352839931,0.03184165232358,0.0417383820998279,0.0410929432013769,0.0141996557659208
Los Angeles CA,2024-2026,0.0176744186046512,0.0576744186046512,0.0241860465116279,0.0344186046511628,0.263500931098697,0.0800744878957169,0.155493482309125,0.0474860335195531,0.0567970204841713,0.0316573556797021,0.0325884543761639,0.021415270018622
Louisville KY,2012-2014,0.143356643356643,0.0332167832167832,0.0,0.0576923076923077,0.0646853146853147,0.0384615384615385,0.034965034965035,0.0821678321678322,0.0,0.0,0.0,0.0
Louisville KY,2015-2017,0.0,0.0555144337527757,0.0,0.0,0.0,0.0,0.0717986676535899,0.0,0.0,0.0,0.0,0.0
Louisville KY,2018-2020,0.0,0.0088028169014084,0.0,0.0,0.0,0.0132042253521127,0.0176056338028169,0.0096830985915493,0.0316901408450704,0.0,0.0158450704225352,0.0132042253521127
Louisville KY,2021-2023,0.0031779661016949,0.0233050847457627,0.0045903954802259,0.0,0.0572033898305085,0.0063559322033898,0.0,0.0,0.0116525423728814,0.0120056497175141,0.0045903954802259,0.0
Louisville KY,2024-2026,0.0193885160328113,0.104399701715138,0.0283370618941089,0.0335570469798658,0.832214765100671,0.0879940343027591,0.0283370618941089,0.0529455630126771,0.0551826994780015,0.0357941834451902,0.0178970917225951,0.0216256524981357
Lubbock TX,2012-2014,0.0,1.01587301587302,0.0,0.873015873015873,0.0,0.657894736842105,0.0,0.368421052631579,0.0,0.386934673366834,0.0,0.0
Lubbock TX,2015-2017,1.25,0.0,0.0,0.8875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Lubbock TX,2018-2020,0.0,0.727272727272727,0.826446280991736,0.429752066115703,0.518716577540107,0.513368983957219,0.0,0.443850267379679,0.0,0.0,0.0,0.595238095238095
Lubbock TX,2021-2023,0.234880450070324,0.240506329113924,0.125175808720113,0.0,0.149911816578483,0.0987654320987654,0.388007054673721,0.0,0.0,0.0,0.125166444740346,0.085219707057257
Lubbock TX,2024-2026,0.0,0.0,0.0,0.0303921568627451,0.537254901960784,0.0068627450980392,0.0078431372549019,0.0088235294117647,0.0,0.0058823529411764,0.0,0.0
Macon GA,2012-2014,0.359756097560976,0.0,0.0,0.609756097560976,0.0,0.322097378277154,0.359550561797753,0.636704119850187,0.0,0.278846153846154,0.0,0.480769230769231
Macon GA,2015-2017,0.14572864321608,0.0,0.0,0.0,0.0703517587939699,0.0,0.0,0.0,0.226244343891403,0.0,0.0,0.131221719457014
Macon GA,2018-2020,0.0,0.0734265734265734,0.0,0.0725524475524476,0.13884007029877,0.0,0.0,0.0711775043936731,0.0,0.117132867132867,0.0,0.0
Macon GA,2021-2023,0.0403050108932462,0.028322440087146,0.0,0.0,0.0,0.0,0.0,0.0101670297748729,0.0101670297748729,0.0185185185185185,0.0,0.0
Macon GA,2024-2026,0.0915824915824916,0.0787878787878788,0.0255892255892256,0.0087542087542087,0.312457912457913,0.0936026936026936,0.0235690235690236,0.0478114478114478,0.0397306397306397,0.0249158249158249,0.0114478114478115,0.0074074074074074
Madison WI,2012-2014,0.0,0.0,0.161061946902655,0.0,0.0,0.111504424778761,0.0,0.125663716814159,0.0725663716814159,0.0,0.0690265486725664,0.0
Madison WI,2015-2017,0.0,0.0,0.0,0.111613876319759,0.111613876319759,0.081447963800905,0.0,0.0,0.116138763197587,0.0,0.0,0.113122171945701
Madison WI,2018-2020,0.0,0.0,0.0510304219823356,0.1099116781158,0.0628066732090285,0.0618253189401374,0.0853778213935231,0.0,0.0,0.0588812561334642,0.0696761530912659,0.0637880274779195
Madison WI,2021-2023,0.0,0.0525762355415352,0.0,0.0,0.0,0.0220820189274448,0.0,0.0,0.0,0.0,0.0108657553452506,0.0
Madison WI,2024-2026,0.0088,0.0728,0.0104,0.0048,0.6712,0.0432,0.0096,0.0368,0.0272,0.0,0.0056,0.0112
Mankato MN,2012-2014,0.0,0.0,0.754010695187166,0.46524064171123,0.32620320855615,0.0,0.385026737967914,1.75401069518717,1.06417112299465,0.401069518716578,0.0,0.502673796791444
Mankato MN,2015-2017,0.401673640167364,0.0,0.313807531380753,0.0,0.582677165354331,0.0,0.259842519685039,5.07874015748032,0.0,0.0,0.0,0.351464435146444
Mankato MN,2018-2020,0.0,0.387596899224806,0.0,0.0,0.380208333333333,1.15104166666667,0.0,0.8125,1.16591928251121,0.417040358744395,0.309417040358744,0.0
Mankato MN,2021-2023,0.0,0.680272108843538,0.0,0.394557823129252,0.3125,0.408333333333333,0.0,0.7875,0.0,0.0,0.0,0.0
Mankato MN,2024-2026,0.0,0.0,0.0351506456241033,0.0,0.5625,0.0141509433962264,0.0,1.03419811320755,0.04519368723099,0.0143472022955524,0.0007173601147776,0.0
Marquette MI,2012-2014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Marquette MI,2015-2017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Marquette MI,2018-2020,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Marquette MI,2021-2023,0.689922480620155,0.0,0.775193798449612,0.0,0.542372881355932,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Marquette MI,2024-2026,0.0135265700483092,0.0154589371980676,0.0,0.0202898550724638,0.864734299516908,0.0338164251207729,0.0,0.0,0.0,0.0,0.0193236714975845,0.0
Medford-Klamath Falls OR,2012-2014,1.64,0.0,0.0,2.0,1.07692307692308,0.0,0.0,1.92307692307692,0.0,0.0,0.0,1.0752688172043
Medford-Klamath Falls OR,2015-2017,0.0,0.0,0.0,0.0,0.0,1.02040816326531,0.0,0.0,0.0,2.92537313432836,2.32835820895522,1.19402985074627
Medford-Klamath Falls OR,2018-2020,0.0,0.0,0.497512437810945,0.358208955223881,0.296819787985866,0.296819787985866,0.0,0.0,0.390625,0.0,0.0,0.0
Medford-Klamath Falls OR,2021-2023,0.0,0.0,0.0,0.0,0.0805555555555556,0.0,0.0,0.155555555555556,0.0,0.0,0.0,0.0
Medford-Klamath Falls OR,2024-2026,0.0,0.0,0.0076263107721639,0.0085795996186844,0.468064823641563,0.0190657769304099,0.0,0.0,0.0419447092469018,0.0,0.0085795996186844,0.0085795996186844
Memphis TN,2012-2014,0.0,0.0,0.0,0.105751391465677,0.0946196660482375,0.0890538033395176,0.103896103896104,0.0,0.0797773654916512,0.0,0.0,0.0
Memphis TN,2015-2017,0.0161290322580645,0.0,0.0115207373271889,0.0110599078341014,0.0,0.0294930875576037,0.0170506912442396,0.0202764976958525,0.0,0.0502304147465438,0.0,0.0
Memphis TN,2018-2020,0.0,0.0,0.0,0.0,0.0127647229474906,0.0,0.0092834348709022,0.0147954743255004,0.0211778357992457,0.0,0.0150855816652161,0.0
Memphis TN,2021-2023,0.0029857602204869,0.0176848874598071,0.0059715204409738,0.0,0.0,0.0158474965548921,0.0025264124942581,0.0050528249885163,0.0,0.0050528249885163,0.0,0.0027560863573725
Memphis TN,2024-2026,0.0192307692307692,0.119505494505495,0.029532967032967,0.0377747252747253,0.304258241758242,0.106456043956044,0.0364010989010989,0.0625,0.0597527472527473,0.032967032967033,0.032967032967033,0.029532967032967
Meridian MS,2012-2014,0.0,0.386363636363636,0.0,0.335227272727273,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Meridian MS,2015-2017,0.0,0.481132075471698,0.660377358490566,0.943396226415095,0.461538461538462,1.28205128205128,0.538461538461538,0.0,0.0,0.0,0.0,0.0
Meridian MS,2018-2020,0.0,0.0340667139815472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Meridian MS,2021-2023,0.0,0.0,0.0,0.0,0.0,0.0152571926765475,0.0,0.0,0.018308631211857,0.0,0.0,0.0
Meridian MS,2024-2026,0.0,0.0211524434719183,0.0189642596644785,0.0,0.0736688548504741,0.0306345733041575,0.0211524434719183,0.0218818380743983,0.0,0.0211524434719183,0.0,0.050328227571116
Miami-Ft. Lauderdale FL,2012-2014,0.0,0.0,0.0,0.0,0.0063071586250394,0.0059918006937874,0.0,0.0261747082939136,0.0,0.0,0.0050457269000315,0.0
Miami-Ft. Lauderdale FL,2015-2017,0.0,0.0,0.0,0.0,0.0031428571428571,0.006,0.0097142857142857,0.0094285714285714,0.01,0.0,0.0,0.0031428571428571
Miami-Ft. Lauderdale FL,2018-2020,0.0,0.0,0.0028951939779965,0.0026056745801968,0.0031847133757961,0.0,0.0083960625361899,0.0026056745801968,0.0023161551823972,0.0,0.0,0.0118702953097858
Miami-Ft. Lauderdale FL,2021-2023,0.0028375502482856,0.0186805391345472,0.0096949633483092,0.0042563253724284,0.0028375502482856,0.0338141404587373,0.0111137384724521,0.0073303381414045,0.0198628517379995,0.0096949633483092,0.007566800662095,0.0070938756207141
Miami-Ft. Lauderdale FL,2024-2026,0.0339321357285429,0.0858283433133733,0.0409181636726547,0.0459081836327345,0.265469061876248,0.092814371257485,0.0419161676646707,0.0728542914171657,0.0818363273453094,0.0429141716566866,0.0459081836327345,0.032934131736527
Milwaukee WI,2012-2014,0.0663430420711974,0.118122977346278,0.0501618122977346,0.0436893203883495,0.0631067961165049,0.0,0.0,0.0,0.0,0.0728155339805825,0.0,0.0
Milwaukee WI,2015-2017,0.0,0.0226095148374941,0.0,0.0,0.0,0.023551577955723,0.0273198304286387,0.0221384832783797,0.0,0.0,0.0,0.0
Milwaukee WI,2018-2020,0.0,0.0157096424702059,0.0,0.0048754062838569,0.0130010834236186,0.0065005417118093,0.0059588299024918,0.0070422535211267,0.0070422535211267,0.0,0.0,0.0048754062838569
Milwaukee WI,2021-2023,0.0,0.0736794377692133,0.0,0.0036272953978689,0.0027204715484017,0.021537066424847,0.0027204715484017,0.0,0.0070278848333711,0.0136023577420086,0.0056676490591702,0.0029471775107685
Milwaukee WI,2024-2026,0.0132295719844358,0.101167315175097,0.0163424124513619,0.0272373540856031,0.454474708171206,0.0684824902723736,0.0132295719844358,0.0575875486381323,0.0396887159533074,0.0194552529182879,0.0194552529182879,0.0132295719844358
Minneapolis-St. Paul MN,2012-2014,0.0054446460980036,0.0022686025408348,0.0018148820326678,0.0,0.0112359550561798,0.0022471910112359,0.0044943820224719,1.26142322097378,0.0,0.0081669691470054,0.0022686025408348,0.0
Minneapolis-St. Paul MN,2015-2017,0.0,0.0056657223796034,0.0042492917847025,0.0014164305949008,0.0130624092888244,0.0,0.0377358490566038,1.78084179970972,0.0042492917847025,0.0035410764872521,0.0042492917847025,0.0056657223796034
Minneapolis-St. Paul MN,2018-2020,0.0031319910514541,0.0,0.0049217002237136,0.003579418344519,0.0,0.0034904013961605,0.0052356020942408,1.06050029086678,0.0013422818791946,0.0026845637583892,0.0093959731543624,0.0076062639821029
Minneapolis-St. Paul MN,2021-2023,0.0014547570555717,0.0133837649112598,0.0075647366889729,0.0040733197556008,0.0049461739889438,0.0244399185336049,0.0119290078556881,0.770730288041897,0.009310445155659,0.0165842304335176,0.0113471050334594,0.0034914169333721
Minneapolis-St. Paul MN,2024-2026,0.0124069478908189,0.0459057071960298,0.0285359801488834,0.0341191066997519,0.344717182497332,0.0533617929562433,0.0181430096051227,0.991462113127001,0.0707196029776675,0.0310173697270471,0.0204714640198511,0.0198511166253102
Minot-Bismarck-Dickinson(Williston) ND,2012-2014,0.96,0.86,0.0,0.0,0.0,0.0,0.0,0.0,1.53846153846154,0.892307692307692,0.0,0.0
Minot-Bismarck-Dickinson(Williston) ND,2015-2017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Minot-Bismarck-Dickinson(Williston) ND,2018-2020,0.0,0.384615384615385,0.0,0.0,0.0,0.0,0.0,0.357142857142857,0.0,0.0,0.0,0.0
Minot-Bismarck-Dickinson(Williston) ND,2021-2023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.296028880866426,0.0,0.184115523465704,0.0,0.0
Minot-Bismarck-Dickinson(Williston) ND,2024-2026,0.0,0.0,0.0119250425894378,0.0093696763202725,0.606473594548552,0.0340715502555366,0.0,0.0766609880749574,0.0153321976149915,0.0,0.0,0.0093696763202725
Missoula MT,2012-2014,0.4739336492891,0.322274881516588,0.0,0.279620853080569,0.0,0.628070175438596,0.0,0.0,0.0,0.354609929078014,0.0,0.0
Missoula MT,2015-2017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,
Missoula MT,2018-2020,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,0.0,0.0,0.0,0.79
Missoula MT,2021-2023,0.0,0.388888888888889,0.0,0.873737373737374,0.338345864661654,0.0,0.0,0.0,0.0,0.0,0.487804878048781,0.0
Missoula MT,2024-2026,0.0,0.0317775571002979,0.0,0.0,0.612711022840119,0.0307845084409136,0.0099304865938431,0.0317775571002979,0.0387288977159881,0.0099304865938431,0.0,0.0
Mobile AL-Pensacola (Ft. Walton Beach) FL,2012-2014,0.368029739776952,0.0,0.0,0.0,0.0,0.206349206349206,0.103174603174603,0.396825396825397,0.519187358916479,0.0,0.225733634311512,0.18510158013544
Mobile AL-Pensacola (Ft. Walton Beach) FL,2015-2017,0.0,0.0,0.110144927536232,0.0,0.0,0.0912951167728238,0.316348195329087,0.0,0.0,0.0,0.0,0.373913043478261
Mobile AL-Pensacola (Ft. Walton Beach) FL,2018-2020,0.0215686274509804,0.0235294117647059,0.0196078431372549,0.0230392156862745,0.0,0.0,0.0245098039215686,0.0235294117647059,0.0392156862745098,0.0245098039215686,0.0,0.0137254901960784
Mobile AL-Pensacola (Ft. Walton Beach) FL,2021-2023,0.0,0.0,0.0050339793606846,0.0,0.0057890762647873,0.0256732947394916,0.0060407752328215,0.0,0.0,0.01963251950667,0.0060407752328215,0.0
Mobile AL-Pensacola (Ft. Walton Beach) FL,2024-2026,0.0139146567717996,0.0946196660482375,0.012987012987013,0.0213358070500928,0.439703153988868,0.075139146567718,0.025974025974026,0.036178107606679,0.0398886827458256,0.0269016697588126,0.0222634508348794,0.0092764378478664
Monroe LA-El Dorado AR,2012-2014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Monroe LA-El Dorado AR,2015-2017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Monroe LA-El Dorado AR,2018-2020,,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Monroe LA-El Dorado AR,2021-2023,0.0421818181818182,0.0356363636363636,0.0,0.0,0.0698181818181818,0.0,0.0,0.0,0.0661818181818182,0.0,0.0,0.0
Monroe LA-El Dorado AR,2024-2026,0.0182083029861617,0.148579752367079,0.0145666423889294,0.0,0.369992716678806,0.0473415877640204,0.0072833211944646,0.0284049526584122,0.0313182811361981,0.0152949745083758,0.0,0.0174799708667152
Monterey-Salinas CA,2012-2014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Monterey-Salinas CA,2015-2017,0.0,1.0752688172043,1.01075268817204,0.0,2.53571428571429,0.0,2.75,0.0,0.0,0.875,2.08333333333333,0.0
Monterey-Salinas CA,2018-2020,0.669683257918552,0.0,0.0,0.79185520361991,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Monterey-Salinas CA,2021-2023,0.0666666666666667,0.0,0.0261168384879725,0.0,0.0,0.0268041237113402,0.0261168384879725,0.0,0.0,0.0,0.0309278350515464,0.0
Monterey-Salinas CA,2024-2026,0.0,0.0050301810865191,0.0,0.0050301810865191,0.280684104627767,0.0150905432595573,0.0,0.0120724346076459,0.0150905432595573,0.0050301810865191,0.0040241448692152,0.0040241448692152
Montgomery (Selma) AL,2012-2014,0.0,0.224719101123596,0.0,0.348314606741573,0.325842696629214,0.308988764044944,0.410112359550562,0.235955056179775,0.0,0.0,0.0,0.258426966292135
Montgomery (Selma) AL,2015-2017,0.0,0.0,0.74812030075188,0.0,0.87719298245614,0.0,0.745614035087719,0.37719298245614,0.885245901639344,0.0,0.0,0.366120218579235
Montgomery (Selma) AL,2018-2020,0.0,0.041036717062635,0.0287976961843053,0.0,0.0,0.0,0.0,0.0,0.0511159107271418,0.0,0.0,0.0
Montgomery (Selma) AL,2021-2023,0.0,0.0,0.0108741112505228,0.0108741112505228,0.0087829360100376,0.0,0.0,0.0125470514429109,0.0556252613969051,0.0,0.0,0.0238393977415307
Montgomery (Selma) AL,2024-2026,0.0098039215686274,0.0926916221033868,0.0044563279857397,0.0053475935828877,0.295900178253119,0.053475935828877,0.0,0.0044563279857397,0.0249554367201426,0.0196078431372549,0.0089126559714795,0.0044563279857397
Nashville TN,2012-2014,0.0,0.0133248730964467,0.0,0.0,0.0,0.0,0.0,0.0,0.0158629441624366,0.0120558375634518,0.0,0.0
Nashville TN,2015-2017,0.0081752779594506,0.0,0.0,0.0081752779594506,0.0,0.0222367560497057,0.0219097449313277,0.0183126226291694,0.0166775670372793,0.0,0.0078482668410726,0.0120994113799869
Nashville TN,2018-2020,0.0,0.0,0.0,0.0,0.0,0.0,0.0067468465825755,0.0061601642710472,0.0,0.0,0.0105602816075095,0.0126136696978586
Nashville TN,2021-2023,0.0,0.0317766008666346,0.0,0.0050553683196918,0.0,0.0243549553894382,0.0074752833373523,0.0028936580660718,0.0036170725825898,0.0101278032312515,0.0077164215095249,0.0053050397877984
Nashville TN,2024-2026,0.0315512708150745,0.0867659947414549,0.0262927256792288,0.0333041191936897,0.495188101487314,0.0822397200349956,0.0306211723534558,0.0533683289588801,0.0559930008748906,0.0279965004374453,0.0271216097987752,0.0236220472440945
New Orleans LA,2012-2014,0.0,0.0440565253532835,0.0182876142975894,0.0,0.0,0.0,0.0207813798836243,0.0307564422277639,0.0,0.0216126350789692,0.0174563591022444,0.0
New Orleans LA,2015-2017,0.0339425587467363,0.018798955613577,0.031331592689295,0.033420365535248,0.0,0.0,0.0,0.0,0.0,0.0302872062663185,0.0,0.0
New Orleans LA,2018-2020,0.0095133552872301,0.0,0.0,0.0084156604463959,0.0,0.0,0.0,0.0087815587266739,0.0080497621661178,0.0,0.0,0.0
New Orleans LA,2021-2023,0.0,0.0130612244897959,0.0,0.0,0.0,0.0142857142857143,0.0073469387755102,0.0,0.006938775510204,0.0061224489795918,0.0065306122448979,0.0053061224489795
New Orleans LA,2024-2026,0.0294358135731807,0.174161896974653,0.0335241210139002,0.035977105478332,0.310711365494685,0.0989370400654129,0.0310711365494685,0.0596892886345053,0.0768601798855274,0.0367947669664759,0.0408830744071954,0.0245298446443173
New York NY,2012-2014,0.0027463096464126,0.0099553724682458,0.0144181256436663,0.0010298661174047,0.0041194644696189,0.0010298661174047,0.0082389289392379,0.0154479917610711,0.23034672159286,0.0085822176450394,0.0027463096464126,0.0034328870580157
New York NY,2015-2017,0.0028549676437,0.0108488770460601,0.328701941377998,0.0070422535211267,0.0074229158736201,0.00057099352874,0.026456033498287,0.024743052912067,0.298819946707271,0.0036162923486867,0.0098972211648268,0.0081842405786067
New York NY,2018-2020,0.004984571564206,0.0135295513885592,0.0223118917635889,0.0066460954189413,0.0014241633040588,0.0185141229527653,0.0301447899359126,0.0140042724899122,0.16710182767624,0.0080702587230002,0.0215998101115595,0.0287206266318538
New York NY,2021-2023,0.0167682926829268,0.0350609756097561,0.0403963414634146,0.0236280487804878,0.0130268199233716,0.0574712643678161,0.0337164750957854,0.015581098339719,0.299872286079183,0.033205619412516,0.0337164750957854,0.0234993614303959
New York NY,2024-2026,0.0246262093227792,0.0606860158311346,0.040457343887423,0.0360598065083553,0.253075571177504,0.0746924428822496,0.0333919156414763,0.0694200351493849,0.34182776801406,0.0333919156414763,0.0289982425307557,0.0281195079086116
Norfolk-Portsmouth-Newport News VA,2012-2014,0.0248366013071895,0.0274509803921569,0.0,0.0,0.0339869281045752,0.0235294117647059,0.0,0.0,0.0,0.0352941176470588,0.0,0.101960784313725
Norfolk-Portsmouth-Newport News VA,2015-2017,0.0113522537562604,0.0,0.0,0.0,0.0093489148580968,0.0,0.0,0.0096828046744574,0.0,0.0300500834724541,0.0233722871452421,0.0
Norfolk-Portsmouth-Newport News VA,2018-2020,0.0,0.0063151247237132,0.0,0.0,0.0,0.0056836122513419,0.0110514682664983,0.0,0.0,0.0,0.0082096621408272,0.05462582886012
Norfolk-Portsmouth-Newport News VA,2021-2023,0.0023786869647954,0.010941960038059,0.0049952426260704,0.0137963843958135,0.0,0.0321122740247383,0.008325404376784,0.0,0.0107040913415794,0.0116555661274976,0.0071360608943863,0.0026165556612749
Norfolk-Portsmouth-Newport News VA,2024-2026,0.0258019525801953,0.105997210599721,0.0334728033472803,0.0369595536959554,0.375174337517434,0.095536959553696,0.0271966527196653,0.0592747559274756,0.0843793584379358,0.0320781032078103,0.0264993026499303,0.0509065550906555
North Platte NE,2012-2014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
North Platte NE,2015-2017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
North Platte NE,2018-2020,,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
North Platte NE,2021-2023,,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
North Platte NE,2024-2026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,
Odessa-Midland TX,2012-2014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Odessa-Midland TX,2015-2017,0.0,0.0,0.0,0.0,,,,,,,,
Odessa-Midland TX,2018-2020,0.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.69,0.0
Odessa-Midland TX,2021-2023,0.0,0.199124726477024,0.361050328227571,0.218818380743983,0.368951612903226,0.0,0.0,0.0,0.0,0.366108786610879,0.0,0.276150627615063
Odessa-Midland TX,2024-2026,0.0,0.0158959537572254,0.0086705202312138,0.0072254335260115,0.446531791907514,0.0346820809248555,0.0086705202312138,0.0,0.0,0.0,0.0,0.0
Oklahoma City OK,2012-2014,0.0,0.0,0.0,0.0,0.0,0.0654708520179372,0.0,0.0116591928251121,0.0,0.0,0.0,0.0
Oklahoma City OK,2015-2017,0.0,0.0,0.0404964075767472,0.0,0.0,0.0809928151534945,0.0359242325277596,0.0,0.0,0.0,0.0,0.0450685826257348
Oklahoma City OK,2018-2020,0.0,0.0138197899391929,0.0,0.0,0.0132669983416252,0.0,0.0,0.0210060807075732,0.0149253731343284,0.0,0.0353786622443339,0.0
Oklahoma City OK,2021-2023,0.0,0.0,0.0057506053268765,0.0066585956416464,0.0045399515738498,0.0111985472154964,0.0042372881355932,0.0075665859564164,0.0,0.0066585956416464,0.0060532687651331,0.0
Oklahoma City OK,2024-2026,0.0037071362372567,0.0602409638554217,0.0148285449490269,0.0333642261353105,0.378127896200185,0.0630213160333642,0.0139017608897127,0.0185356811862836,0.0407784986098239,0.0139017608897127,0.0111214087117702,0.0074142724745134
Omaha NE,2012-2014,0.149674620390456,0.0,0.0,0.127982646420824,0.13882863340564,0.0,0.0,0.106290672451193,0.0,0.114967462039046,0.0,0.147505422993492
Omaha NE,2015-2017,0.0403521643433602,0.0469552457813646,0.0,0.0440205429200294,0.0,0.0,0.0,0.070432868672047,0.0432868672046955,0.0,0.0366837857666911,0.0300807043286867
Omaha NE,2018-2020,0.0,0.0179344465058751,0.0142238713667285,0.0,0.0426716141001855,0.0,0.0,0.0,0.0,0.0,0.015460729746444,0.0117501546072975
Omaha NE,2021-2023,0.0,0.0,0.0099361249112846,0.0,0.0067423704755145,0.0085166784953868,0.0063875088715401,0.0,0.0,0.0,0.0,0.0
Omaha NE,2024-2026,0.0202403542061986,0.0619860847564833,0.0271979759645794,0.0164452877925364,0.956356736242884,0.0866540164452878,0.0139152435167615,0.0524984187223276,0.0347881087919039,0.0158127767235927,0.0189753320683112,0.0170777988614801
Orlando-Daytona Beach-Melbourne FL,2012-2014,0.0,0.0094246031746031,0.0104166666666667,0.0,0.0,0.0,0.0079365079365079,1.05357142857143,0.0089285714285714,0.0084325396825396,0.0,0.0
Orlando-Daytona Beach-Melbourne FL,2015-2017,0.0,0.0,0.0058836840914234,0.0049785019235121,0.0038470242136229,0.0,0.021724372029871,0.413894546277438,0.0090518216791129,0.0,0.0065625707173568,0.0052047974654899
Orlando-Daytona Beach-Melbourne FL,2018-2020,0.0,0.0,0.005813953488372,0.0,0.0,0.0,0.0031712473572938,0.0243128964059197,0.005813953488372,0.002906976744186,0.0050211416490486,0.0110993657505285
Orlando-Daytona Beach-Melbourne FL,2021-2023,0.0048421052631579,0.0208421052631579,0.0014736842105263,0.0069473684210526,0.003578947368421,0.0263157894736842,0.0023157894736842,0.0046315789473684,0.0326315789473684,0.0109473684210526,0.0086315789473684,0.0056842105263157
Orlando-Daytona Beach-Melbourne FL,2024-2026,0.0339449541284404,0.081651376146789,0.0385321100917431,0.036697247706422,0.428440366972477,0.0844036697247706,0.0385321100917431,0.0752293577981651,0.0779816513761468,0.0357798165137615,0.0357798165137615,0.0321100917431193
Ottumwa IA-Kirksville MO,2012-2014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Ottumwa IA-Kirksville MO,2015-2017,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0
Ottumwa IA-Kirksville MO,2018-2020,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0
Ottumwa IA-Kirksville MO,2021-2023,0.0,0.617283950617284,0.0,0.0,0.0,0.0,0.0,0.408163265306122,0.0,0.0,0.0,0.0
Ottumwa IA-Kirksville MO,2024-2026,0.0,0.0141843971631206,0.0132387706855792,0.0,1.99080036798528,0.0239190432382705,0.0358785648574057,0.0128794848206072,0.0297872340425532,0.0,0.0,0.0
Paducah KY-Cape Girardeau MO-Harrisburg-Mount Vernon IL,2012-2014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Paducah KY-Cape Girardeau MO-Harrisburg-Mount Vernon IL,2015-2017,0.0,0.0,0.0,0.0,0.71,0.0,0.0,0.0,0.0,0.0,0.0,1.08695652173913
Paducah KY-Cape Girardeau MO-Harrisburg-Mount Vernon IL,2018-2020,0.0,0.398230088495575,0.345132743362832,0.384955752212389,0.0,0.415929203539823,0.0,0.0,0.0,0.0,0.0,0.478468899521531
Paducah KY-Cape Girardeau MO-Harrisburg-Mount Vernon IL,2021-2023,0.0,0.0633245382585752,0.0510114335971856,0.0,0.0606860158311346,0.0,0.0,0.0,0.0677220756376429,0.0686015831134565,0.0545294635004398,0.0615655233069481
Paducah KY-Cape Girardeau MO-Harrisburg-Mount Vernon IL,2024-2026,0.0042517006802721,0.0552721088435374,0.0144557823129252,0.0042517006802721,0.727040816326531,0.0416666666666667,0.0102040816326531,0.0255102040816327,0.0212585034013605,0.0076530612244898,0.0068027210884353,0.0076530612244898
Palm Springs CA,2012-2014,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0
Palm Springs CA,2015-2017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Palm Springs CA,2018-2020,0.0,0.278388278388278,0.0,0.318681318681319,0.296703296703297,0.0,0.32967032967033,0.252747252747253,0.249084249084249,0.336996336996337,0.0,0.0
Palm Springs CA,2021-2023,0.0,0.08649468892261,0.101669195751138,0.0819423368740516,0.0,0.0,0.0895295902883156,0.0,0.100151745068285,0.0,0.0,0.144157814871017
Palm Springs CA,2024-2026,0.0,0.009656652360515,0.0,0.0,0.283261802575107,0.0,0.0,0.0,0.0160944206008584,0.0,0.0,0.0160944206008584
Panama City FL,2012-2014,1.04545454545455,1.01136363636364,1.13636363636364,0.0,2.20224719101124,0.0,0.752808988764045,0.0,0.88,0.0,0.0,0.0
Panama City FL,2015-2017,2.04081632653061,0.0,0.0,0.0,0.977777777777778,0.0,0.0,2.22222222222222,1.2987012987013,0.0,0.0,0.0
Panama City FL,2018-2020,0.0,0.0,0.0,0.0,0.0,0.0,1.21951219512195,0.0,0.0,0.0,0.0,0.0
Panama City FL,2021-2023,0.155619596541787,0.0,0.288184438040346,0.195965417867435,0.0,0.0,0.150709219858156,0.0957446808510638,0.0,0.0,0.0,0.0
Panama City FL,2024-2026,0.0,0.0139935414424112,0.0,0.0,0.518837459634015,0.0086114101184068,0.0,0.0,0.0247578040904198,0.0,0.0,0.0290635091496233
Parkersburg WV,2012-2014,2.08536585365854,1.21951219512195,1.20731707317073,0.0,1.01010101010101,0.0,0.0,0.0,1.12359550561798,0.0,0.0,0.0
Parkersburg WV,2015-2017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Parkersburg WV,2018-2020,0.88,0.95,0.97,0.0,0.0,0.0,0.98,0.77,0.0,1.25641025641026,0.0,1.28205128205128
Parkersburg WV,2021-2023,0.0,0.0,1.31578947368421,0.0,0.0,3.64864864864865,0.0,1.33783783783784,0.0,0.0,1.14285714285714,1.19047619047619
Parkersburg WV,2024-2026,0.049438202247191,0.110112359550562,0.0,0.0,0.555056179775281,0.0,0.0,0.0,0.0,0.0,0.0,0.0561797752808989
Peoria-Bloomington IL,2012-2014,0.0,0.0,0.0,0.0,0.0,0.34640522875817,0.0,0.0,0.0,0.0,0.0,0.169934640522876
Peoria-Bloomington IL,2015-2017,0.0,0.0,0.167381974248927,0.0,0.0,0.0,0.201716738197425,0.0,0.137339055793991,0.0,0.257510729613734,0.0
Peoria-Bloomington IL,2018-2020,0.466480446927374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Peoria-Bloomington IL,2021-2023,0.0,0.183747178329571,0.0,0.0,0.0,0.0460496613995485,0.0,0.0374717832957111,0.0203160270880361,0.0207674943566591,0.018961625282167,0.0
Peoria-Bloomington IL,2024-2026,0.006269592476489,0.10282131661442,0.0238244514106583,0.0112852664576803,0.865830721003135,0.0457680250783699,0.0,0.0200626959247649,0.0300940438871473,0.0031347962382445,0.0075235109717868,0.0081504702194357
Philadelphia PA,2012-2014,0.0064743967039435,0.087110064743967,0.0,0.0,0.0,0.0,0.0,0.0041200706297822,0.0,0.0,0.0,0.0058858151854031
Philadelphia PA,2015-2017,0.0020550760378134,0.0213727907932594,0.0682285244554049,0.0,0.0022605836415947,0.0,0.0110974106041924,0.0197287299630086,0.0,0.0049321824907521,0.002466091245376,0.0166461159062885
Philadelphia PA,2018-2020,0.0036153289949385,0.0040973728609303,0.0028922631959508,0.0021691973969631,0.002410219329959,0.0050614605929139,0.0144613159797542,0.0040973728609303,0.0086767895878525,0.0060255483248975,0.0110870089178115,0.076644974692697
Philadelphia PA,2021-2023,0.004174906613931,0.024609975829488,0.014722039112283,0.013403647549989,0.006152493957372,0.046583168534388,0.024609975829488,0.005273566249176,0.0562513733245441,0.026807295099978,0.016260162601626,0.037574159525379
Philadelphia PA,2024-2026,0.0274771024146545,0.0840965861781849,0.0324729392173189,0.0399666944213156,0.341382181515404,0.0782681099084097,0.0324729392173189,0.0557868442964197,0.0924229808492923,0.0324729392173189,0.0333055786844296,0.0374687760199834
Phoenix AZ,2012-2014,0.0039727582292849,0.0130533484676504,0.0,0.0,0.0,0.0039727582292849,0.0028376844494892,0.0090805902383654,0.0,1.01258741258741,0.0041958041958042,0.0
Phoenix AZ,2015-2017,0.0,0.0,0.0,0.0025949516395376,0.0061335220570889,0.0030667610285444,0.011795234725171,0.0141542816702052,0.0031152647975077,1.08653513326411,0.0072689511941848,0.0031152647975077
Phoenix AZ,2018-2020,0.0046689303904923,0.0021222410865874,0.0021222410865874,0.0050933786078098,0.0042444821731748,0.0055178268251273,0.0072156196943972,0.0046689303904923,0.0021574973031283,0.821467098166127,0.0167206040992449,0.0097087378640776
Phoenix AZ,2021-2023,0.0026761819803746,0.0267618198037467,0.0093666369313113,0.0049063336306868,0.0066904549509366,0.0673505798394291,0.0151650312221231,0.0057983942908117,0.0155195681511471,0.844804318488529,0.0229419703103914,0.0047233468286099
Phoenix AZ,2024-2026,0.0240384615384615,0.0570054945054945,0.0288461538461538,0.0350274725274725,0.34478021978022,0.0872252747252747,0.0350274725274725,0.0631868131868132,0.0570054945054945,0.403159340659341,0.0309065934065934,0.0226648351648352
Pittsburgh PA,2012-2014,0.0856031128404669,0.0,0.0,0.0,0.0428015564202335,0.059662775616083,0.0,0.0,0.21011673151751,0.0479896238651102,0.0,0.0
Pittsburgh PA,2015-2017,0.0213631739572737,0.0,0.0493387589013225,0.0,0.0,0.0,0.0162767039674466,0.017293997965412,0.0,0.0,0.0213631739572737,0.0559511698880977
Pittsburgh PA,2018-2020,0.0,0.0,0.0,0.0167235494880546,0.0,0.0071672354948805,0.0150170648464164,0.0136518771331058,0.009556313993174,0.0078498293515358,0.0,0.0191126279863481
Pittsburgh PA,2021-2023,0.004214469679232,0.008428939358464,0.0074923905408569,0.0,0.018028564738937,0.0140482322641068,0.0,0.0,0.0035120580660266,0.0086630765628658,0.0072582533364551,0.0067899789276516
Pittsburgh PA,2024-2026,0.0092336103416435,0.0572483841181902,0.0240073868882733,0.0415512465373961,0.483841181902124,0.0572483841181902,0.0203139427516159,0.0323176361957525,0.0535549399815328,0.023084025854109,0.0147737765466297,0.0240073868882733
Portland OR,2012-2014,0.0269473684210526,0.0,0.0218947368421053,0.0378947368421053,0.0,0.0113684210526316,0.0,0.024,0.0,0.0084210526315789,0.0,0.0105263157894737
Portland OR,2015-2017,0.0078926598263614,0.0090765588003157,0.0,0.0078926598263614,0.0,0.0086819258089976,0.0118389897395422,0.0,0.0082872928176795,0.0,0.031965272296764,0.0
Portland OR,2018-2020,0.0,0.003382949932341,0.0,0.0,0.0,0.0040595399188092,0.0040595399188092,0.0054127198917456,0.0257104194857916,0.0,0.030446549391069,0.0040595399188092
Portland OR,2021-2023,0.0,0.0130861504907306,0.0,0.0,0.0,0.0218102508178844,0.0080697928026172,0.0,0.109051254089422,0.0113413304252999,0.0826608505997819,0.0054525627044711
Portland OR,2024-2026,0.008792965627498,0.0335731414868106,0.0143884892086331,0.0183852917665867,0.273381294964029,0.0575539568345324,0.017585931254996,0.0391686650679457,0.0695443645083933,0.0191846522781775,0.0471622701838529,0.0119904076738609
Portland-Auburn ME,2012-2014,0.421940928270042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.23243243243243,0.0,0.686486486486487,1.01621621621622
Portland-Auburn ME,2015-2017,0.595744680851064,1.06382978723404,2.86170212765957,0.0,0.0,0.0,0.0,0.0,0.503496503496504,0.0,0.699300699300699,0.0
Portland-Auburn ME,2018-2020,0.0,0.0,0.0,0.0,0.0348148148148148,0.0385185185185185,0.0,0.04,0.0,0.0385185185185185,0.0,0.0348148148148148
Portland-Auburn ME,2021-2023,0.0,0.0,0.0115844544095665,0.0,0.0,0.0,0.0,0.0,0.0,0.0115844544095665,0.0,0.0089686098654708
Portland-Auburn ME,2024-2026,0.0048010973936899,0.0116598079561043,0.0390946502057613,0.0226337448559671,0.526063100137174,0.0240054869684499,0.0082304526748971,0.0267489711934156,0.0377229080932785,0.0048010973936899,0.0054869684499314,0.0075445816186556
Presque Isle ME,2012-2014,0.0,0.0,0.0,1.16279069767442,1.88679245283019,0.830188679245283,1.69811320754717,1.49056603773585,0.0,2.05813953488372,0.0,0.0
Presque Isle ME,2015-2017,0.0,0.0,2.56410256410256,0.0,0.0,1.30645161290323,2.43548387096774,0.0,0.0,0.0,0.0,0.0
Presque Isle ME,2018-2020,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Presque Isle ME,2021-2023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Presque Isle ME,2024-2026,0.0,0.45,0.0,0.0,3.7857142857142896,0.0,0.0,0.0,0.0,0.427777777777778,0.438888888888889,0.555555555555556
Providence RI-New Bedford MA,2012-2014,0.0,0.445652173913043,0.0,0.0,0.0,0.0,0.0,0.242753623188406,0.0,0.166666666666667,0.0,0.0
Providence RI-New Bedford MA,2015-2017,0.0,0.0647773279352227,6.54655870445344,0.0,0.0,0.163128491620112,0.0,0.0994413407821229,0.0,0.0,0.0759776536312849,0.0424581005586592
Providence RI-New Bedford MA,2018-2020,0.0,0.0,0.0219083309311041,0.0089362928797924,0.0100893629287979,0.0,0.0,0.0,0.0,0.0106658979533007,0.0,0.0196021908330931
Providence RI-New Bedford MA,2021-2023,0.0049597024178549,0.0084728249638355,0.115106426947716,0.0080595164290142,0.0049597024178549,0.0045463938830336,0.0,0.0035131225459805,0.0030998140111593,0.0,0.0082661706964248,0.0
Providence RI-New Bedford MA,2024-2026,0.0059372349448685,0.0415606446140797,0.110262934690416,0.0296861747243427,0.358778625954199,0.0474978795589483,0.0118744698897371,0.0229007633587786,0.0576759966072943,0.0152671755725191,0.0110262934690416,0.0101781170483461
Quincy IL-Hannibal MO-Keokuk IA,2012-2014,0.409356725146199,0.43859649122807,0.0,0.0,0.0,0.345029239766082,0.0,0.0,0.0,0.602409638554217,0.337349397590362,0.0
Quincy IL-Hannibal MO-Keokuk IA,2015-2017,,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Quincy IL-Hannibal MO-Keokuk IA,2018-2020,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Quincy IL-Hannibal MO-Keokuk IA,2021-2023,0.0,0.0,0.0,0.486033519553073,0.0,0.0,0.76551724137931,0.689655172413793,0.0,0.994413407821229,0.553072625698324,0.0
Quincy IL-Hannibal MO-Keokuk IA,2024-2026,0.0109070034443169,0.0361653272101033,0.0172215843857635,0.0,1.56146788990826,0.0324159021406728,0.0152905198776758,0.0079510703363914,0.0206659012629162,0.0086107921928817,0.0,0.0172215843857635
Raleigh-Durham (Fayetteville) NC,2012-2014,0.0,0.0229050279329609,0.0212290502793296,0.0122905027932961,0.0,0.0,0.0,0.0,0.0,0.0,0.0100558659217877,0.0
Raleigh-Durham (Fayetteville) NC,2015-2017,0.006092916984006,0.015993907083016,0.006092916984006,0.0076161462300076,0.0,0.0,0.0091393754760091,0.0058390454430058,0.0,0.0,0.0088855039350088,0.0
Raleigh-Durham (Fayetteville) NC,2018-2020,0.0027925160569673,0.0,0.0,0.0067020385367215,0.0,0.0,0.0078190449595085,0.0,0.0,0.0039095224797542,0.0061435353253281,0.0189891091873778
Raleigh-Durham (Fayetteville) NC,2021-2023,0.0016317016317016,0.0149184149184149,0.0039627039627039,0.0034965034965035,0.0,0.0358974358974359,0.0041958041958042,0.0,0.0205128205128205,0.0116550116550117,0.0072261072261072,0.0027972027972028
Raleigh-Durham (Fayetteville) NC,2024-2026,0.0335386721423683,0.0951403148528405,0.0417522245037646,0.0396988364134155,0.352498288843258,0.0951403148528405,0.0396988364134155,0.0663928815879535,0.08145106091718,0.0410677618069815,0.0383299110198494,0.0383299110198494
Rapid City SD,2012-2014,0.30625,0.35625,0.0,0.0,0.3375,0.0,0.0,0.41875,0.33125,0.33125,0.0,0.64375
Rapid City SD,2015-2017,0.0,0.337349397590362,0.0,0.0,0.0,0.0,0.614457831325301,0.0,0.0,0.0,0.0,0.0
Rapid City SD,2018-2020,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Rapid City SD,2021-2023,2.3728813559322,1.69491525423729,1.67796610169492,1.11864406779661,0.0,0.0,0.0,1.5625,1.2987012987013,0.0,0.0,1.14285714285714
Rapid City SD,2024-2026,0.0,0.0557491289198606,0.0444250871080139,0.009581881533101,0.750871080139373,0.0121951219512195,0.0,0.0,0.0,0.0113240418118467,0.0121951219512195,0.0
Reno NV,2012-2014,0.641025641025641,0.0,0.506410256410256,0.0,0.0,0.0,0.0,0.0,1.69902912621359,1.14563106796117,0.0,0.436893203883495
Reno NV,2015-2017,0.0,0.0,0.0,0.1513353115727,0.0,0.0,0.160237388724036,0.0,0.397626112759644,0.0,0.172106824925816,0.0
Reno NV,2018-2020,0.0331882480957563,0.0,0.0,0.0408052230685528,0.0364526659412405,0.0,0.0,0.0,0.0,0.0,0.0,0.0359085963003264
Reno NV,2021-2023,0.0124107973937325,0.0117902575240459,0.0,0.0102389078498294,0.0083772882407694,0.36146447409246,0.0142724170027924,0.0,0.0124107973937325,0.0,0.0,0.0
Reno NV,2024-2026,0.0,0.0,0.004995004995005,0.004995004995005,0.40959040959041,0.312687312687313,0.0089910089910089,0.0079920079920079,0.021978021978022,0.0099900099900099,0.0,0.0089910089910089
Richmond-Petersburg VA,2012-2014,0.0,0.0,0.0,0.0,0.0786516853932584,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Richmond-Petersburg VA,2015-2017,0.101710171017102,0.0468046804680468,0.0891089108910891,0.0,0.0,0.0342034203420342,0.0396039603960396,0.0522052205220522,0.0513051305130513,0.0,0.0,0.0774077407740774
Richmond-Petersburg VA,2018-2020,0.009009009009009,0.0102960102960103,0.0,0.0,0.0,0.0,0.0,0.0,0.0077220077220077,0.0132990132990133,0.0,0.0780780780780781
Richmond-Petersburg VA,2021-2023,0.0,0.0,0.0041161178509532,0.0,0.0,0.0194974003466205,0.0145147313691508,0.0,0.0,0.0,0.012998266897747,0.0227469670710572
Richmond-Petersburg VA,2024-2026,0.018910741301059,0.0960665658093797,0.0234493192133132,0.0264750378214826,0.380484114977307,0.0998487140695915,0.0279878971255673,0.0491679273827534,0.0711043872919819,0.0279878971255673,0.0234493192133132,0.0695915279878971
Roanoke-Lynchburg VA,2012-2014,0.538461538461539,0.241258741258741,0.206293706293706,0.0,0.364963503649635,0.31021897810219,0.35036496350365,0.0,0.430278884462151,0.326693227091633,0.0,0.0
Roanoke-Lynchburg VA,2015-2017,0.0,0.0,0.0,0.0,0.0,0.0,0.378787878787879,0.0,0.0,0.0,0.0,0.0
Roanoke-Lynchburg VA,2018-2020,0.0358606557377049,0.0,0.0,0.0,0.0,0.0,0.0,0.0440573770491803,0.0886270491803279,0.0,0.0,0.0271516393442623
Roanoke-Lynchburg VA,2021-2023,0.0,0.0215794306703398,0.0,0.0234159779614325,0.0,0.0096418732782369,0.0096418732782369,0.0082644628099173,0.012396694214876,0.0,0.0078053259871441,0.0229568411386593
Roanoke-Lynchburg VA,2024-2026,0.011014948859166,0.0605822187254131,0.014948859166011,0.008654602675059,0.519276160503541,0.0802517702596381,0.017309205350118,0.035405192761605,0.117230527143981,0.009441384736428,0.010228166797797,0.022029897718332
Rochester MN-Mason City IA-Austin MN,2012-2014,0.0,1.14173228346457,1.89763779527559,0.47244094488189,1.01418439716312,0.0,0.468085106382979,1.39716312056738,0.431137724550898,0.383233532934132,0.598802395209581,0.550898203592814
Rochester MN-Mason City IA-Austin MN,2015-2017,0.0,0.132394366197183,0.0,0.569014084507042,0.0,0.0,0.0,2.51948051948052,0.0,0.126760563380282,0.11830985915493,0.253521126760563
Rochester MN-Mason City IA-Austin MN,2018-2020,0.0,0.291845493562232,0.0,0.448497854077253,0.0,0.140804597701149,0.160919540229885,1.09195402298851,0.0,0.0,0.0,0.0
Rochester MN-Mason City IA-Austin MN,2021-2023,0.0,0.0536912751677852,0.0,0.0671140939597315,0.0,0.0,0.0,0.367785234899329,0.0,0.0,0.0416107382550336,0.0711409395973154
Rochester MN-Mason City IA-Austin MN,2024-2026,0.0247759620453347,0.0353189246178176,0.0158144438587243,0.0121244069583553,1.31377825618945,0.102260495156082,0.0043057050592034,0.496232508073197,0.0411175540326832,0.0084343700579862,0.0,0.0200316288877174
Rochester NY,2012-2014,0.0,0.0,0.8,0.0,0.0,0.0,1.54545454545455,0.584415584415584,0.0,0.0,0.0,0.0
Rochester NY,2015-2017,0.0,0.0,0.0,0.33718689788054,0.0,0.104361370716511,0.0,0.0,0.0,0.118380062305296,0.0,0.107476635514019
Rochester NY,2018-2020,0.0274361400189215,0.0293282876064333,0.0,0.0,0.0,0.0,0.0,0.0,0.0255439924314097,0.0264900662251656,0.0,0.053926206244087
Rochester NY,2021-2023,0.0109068245559364,0.0,0.0,0.0,0.0,0.0084138360860081,0.0,0.0090370832034901,0.0,0.0224368962293549,0.0,0.0
Rochester NY,2024-2026,0.0116640746500778,0.0497667185069984,0.0124416796267496,0.0163297045101089,0.433125972006221,0.0583203732503888,0.0132192846034215,0.0342146189735614,0.0637636080870918,0.0069984447900466,0.0124416796267496,0.0093312597200622
Rockford IL,2012-2014,1.67058823529412,0.0,0.764705882352941,2.81176470588235,0.0,0.0,0.0,0.82,0.0,0.0,0.0,0.0
Rockford IL,2015-2017,0.0,0.0,0.0,0.540540540540541,0.0,0.0,0.72992700729927,0.510948905109489,0.0,0.0,0.0,0.0
Rockford IL,2018-2020,0.0,0.0,2.04081632653061,0.0,0.0,1.29090909090909,0.0,1.81818181818182,0.0,2.65714285714286,1.42857142857143,0.0
Rockford IL,2021-2023,0.0868263473053892,0.149700598802395,0.0508982035928144,0.063622754491018,0.0,0.0,0.0,0.0,0.0,0.17814371257485,0.0,0.0
Rockford IL,2024-2026,0.0,0.0829769033361848,0.0051325919589392,0.0153977758768178,0.776732249786142,0.0205303678357571,0.0,0.0059880239520958,0.0059880239520958,0.0111206159110351,0.0051325919589392,0.0076988879384089
Sacramento-Stockton-Modesto CA,2012-2014,0.0,0.0288624787775891,0.0373514431239389,0.0328239954725524,0.032258064516129,0.089417091114884,0.0384833050367855,0.0,0.0,0.0,0.0,0.0630914826498423
Sacramento-Stockton-Modesto CA,2015-2017,0.0,0.0,0.0,0.007883565797453,0.0106124924196483,0.0,0.0063674954517889,0.0084899939357186,0.0063674954517889,0.0,0.0,0.0
Sacramento-Stockton-Modesto CA,2018-2020,0.0,0.0095023755938984,0.0,0.0070017504376094,0.0,0.0037509377344336,0.0,0.0075018754688672,0.0040010002500625,0.0,0.0130032508127032,0.0
Sacramento-Stockton-Modesto CA,2021-2023,0.0019223375624759,0.009996155324875,0.0,0.0021145713187235,0.0023068050749711,0.0509419454056132,0.011918492887351,0.0,0.0096116878123798,0.0142252979623222,0.0024990388312187,0.0
Sacramento-Stockton-Modesto CA,2024-2026,0.0106194690265487,0.0530973451327434,0.0230088495575221,0.0274336283185841,0.292035398230089,0.0778761061946903,0.0345132743362832,0.0433628318584071,0.0451327433628319,0.0238938053097345,0.0283185840707965,0.0212389380530973
Salisbury MD,2012-2014,0.0,0.657894736842105,0.5,0.453947368421053,0.0,0.0,0.0,0.0,0.0,1.01744186046512,0.0,0.0
Salisbury MD,2015-2017,,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Salisbury MD,2018-2020,0.106446776611694,0.0,0.149925037481259,0.101949025487256,0.201207243460765,0.0784708249496982,0.0,0.249496981891348,0.094017094017094,0.0811965811965812,0.198005698005698,0.142450142450142
Salisbury MD,2021-2023,0.0323084940072955,0.0,0.0276185513288171,0.0620114643043252,0.0291818655549766,0.0218863991662324,0.0,0.0,0.0,0.0,0.0,0.0302240750390829
Salisbury MD,2024-2026,0.0,0.0337552742616034,0.0118143459915612,0.0,0.50042194092827,0.0388185654008439,0.0,0.0253164556962025,0.040506329113924,0.0,0.0084388185654008,0.0084388185654008
Salt Lake City UT,2012-2014,0.0,0.0,0.0,0.0782967032967033,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Salt Lake City UT,2015-2017,0.0,0.0,0.0,0.0,0.0,0.0498687664041995,0.0,0.0,0.0,0.0583989501312336,0.020997375328084,0.0203412073490814
Salt Lake City UT,2018-2020,0.0,0.0165596485299088,0.0,0.0219668807029402,0.0064210882054748,0.0,0.009462656302805,0.0,0.0,0.0070969922271037,0.008786752281176,0.0
Salt Lake City UT,2021-2023,0.0,0.0053418803418803,0.0,0.0042735042735042,0.0038461538461538,0.0418803418803419,0.0064102564102564,0.0038461538461538,0.0081196581196581,0.0108974358974359,0.0032051282051282,0.0
Salt Lake City UT,2024-2026,0.0072689511941848,0.0342679127725857,0.0166147455867082,0.0155763239875389,0.390446521287643,0.0737279335410177,0.0134994807892004,0.0404984423676012,0.0280373831775701,0.0124610591900312,0.0124610591900312,0.0114226375908619
San Angelo TX,2012-2014,0.613496932515337,0.0,0.374233128834356,0.0,0.0,0.0,0.975609756097561,0.0,0.0,0.0,0.0,0.0
San Angelo TX,2015-2017,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0
San Angelo TX,2018-2020,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
San Angelo TX,2021-2023,0.0,0.0,0.0,0.0,1.11111111111111,2.1358024691358,0.0,0.0,1.26027397260274,0.0,0.0,1.36986301369863
San Angelo TX,2024-2026,0.0361663652802893,0.0,0.0397830018083183,0.0,0.443037974683544,0.0361663652802893,0.0,0.0,0.0,0.0,0.0,0.0
San Antonio TX,2012-2014,0.0055045871559633,0.0,0.0,0.0,0.0232415902140673,0.0,0.0,0.0088685015290519,0.0,0.0042813455657492,0.0159021406727829,0.0
San Antonio TX,2015-2017,0.0116845180136319,0.0,0.0131450827653359,0.0,0.0055988315481986,0.0,0.0180136319376826,0.0262901655306719,0.0,0.0063291139240506,0.0073028237585199,0.0051119766309639
San Antonio TX,2018-2020,0.0,0.0,0.0,0.0072546773577701,0.0,0.0,0.0068728522336769,0.0,0.0057273768613974,0.0068728522336769,0.0168003054600993,0.0087819778541428
San Antonio TX,2021-2023,0.0022876751501286,0.0142979696883043,0.0048613096940234,0.0028595939376608,0.0028595939376608,0.157849585358879,0.0025736345438947,0.0,0.0105804975693452,0.0162996854446669,0.0051472690877895,0.0031455533314269
San Antonio TX,2024-2026,0.0133333333333333,0.060952380952381,0.020952380952381,0.0552380952380952,0.378095238095238,0.131428571428571,0.0238095238095238,0.0428571428571429,0.0476190476190476,0.0257142857142857,0.0142857142857143,0.0142857142857143
San Diego CA,2012-2014,0.0,0.0,0.0,0.0,0.0150602409638554,0.0,0.0198795180722892,0.0174698795180723,0.0,0.0,0.0,0.0
San Diego CA,2015-2017,0.0,0.0096537949400798,0.0,0.0,0.0,0.008988015978695,0.0366178428761651,0.0,0.0153129161118509,0.0086551264980026,0.0216378162450067,0.0
San Diego CA,2018-2020,0.0,0.0,0.0,0.0039779681762545,0.0,0.0042839657282741,0.0214198286413709,0.0,0.0,0.0,0.0171358629130967,0.0
San Diego CA,2021-2023,0.0026672593909757,0.011335852411647,0.0022227161591464,0.0035563458546343,0.0,0.0515670148921983,0.0148921982662814,0.0024449877750611,0.0133362969548789,0.0180040008890865,0.0088908646365859,0.0026672593909757
San Diego CA,2024-2026,0.0114176974310181,0.0523311132254995,0.0171265461465271,0.0199809705042816,0.319695528068506,0.0808753568030447,0.0532825880114177,0.0418648905803996,0.0418648905803996,0.027592768791627,0.0247383444338725,0.0161750713606089
San Francisco-Oakland-San Jose CA,2012-2014,0.0046594982078853,0.0082437275985663,0.0,0.0039426523297491,0.0032258064516129,0.003584229390681,0.0043010752688172,0.0114695340501792,0.0103942652329749,0.0103942652329749,0.0068100358422939,0.0093189964157706
San Francisco-Oakland-San Jose CA,2015-2017,0.0,0.0051282051282051,0.0023310023310023,0.0,0.0046620046620046,0.0048951048951049,0.0223776223776224,0.0184149184149184,0.0,0.0025641025641025,0.0125874125874126,0.0032634032634032
San Francisco-Oakland-San Jose CA,2018-2020,0.0012610340479192,0.001765447667087,0.0015132408575031,0.0015132408575031,0.0032786885245901,0.0108448928121059,0.0121059268600252,0.0065573770491803,0.0058007566204287,0.0037831021437578,0.0277427490542245,0.0148802017654477
San Francisco-Oakland-San Jose CA,2021-2023,0.0020553064275037,0.0205530642750374,0.0054185351270553,0.0024289985052316,0.0018684603886397,0.070440956651719,0.0201793721973094,0.0009342301943198,0.0214872944693572,0.0207399103139013,0.0248505231689088,0.0014947683109118
San Francisco-Oakland-San Jose CA,2024-2026,0.0133333333333333,0.0375,0.0208333333333333,0.0258333333333333,0.200833333333333,0.0675,0.0358333333333333,0.0441666666666667,0.0508333333333333,0.03,0.03,0.0191666666666667
Santa Barbara-Santa Maria-San Luis Obispo CA,2012-2014,1.64,0.0,0.57,0.75,0.0,0.8,0.8,0.0,1.33,0.0,0.0,1.44
Santa Barbara-Santa Maria-San Luis Obispo CA,2015-2017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.360323886639676,0.0,0.0,0.0
Santa Barbara-Santa Maria-San Luis Obispo CA,2018-2020,0.0,0.0,0.0,0.129675810473815,0.0,0.0,0.0,0.0,0.129675810473815,0.316708229426434,0.154613466334165,0.211970074812968
Santa Barbara-Santa Maria-San Luis Obispo CA,2021-2023,0.0,0.0274343122102009,0.0293663060278207,0.0208655332302937,0.0,0.0,0.0,0.0,0.0,0.0,0.0212519319938176,0.0
Santa Barbara-Santa Maria-San Luis Obispo CA,2024-2026,0.0,0.0050403225806451,0.0040322580645161,0.0,0.38508064516129,0.0191532258064516,0.0050403225806451,0.0,0.0080645161290322,0.0,0.0,0.0050403225806451
Savannah GA,2012-2014,0.0,1.19047619047619,0.857142857142857,0.0,0.0,0.0,0.87,0.0,2.77272727272727,0.0,1.07954545454545,1.03409090909091
Savannah GA,2015-2017,0.0,0.0,0.435567010309278,0.0,0.413636363636364,0.0,0.0,0.0,0.0,0.171821305841924,0.195876288659794,0.343642611683849
Savannah GA,2018-2020,0.031815688425672,0.0,0.0,0.0,0.0756993965990126,0.0,0.0713110257816786,0.0394953373560066,0.0,0.0,0.0,0.0405924300603401
Savannah GA,2021-2023,0.0055338541666666,0.0,0.0,0.0,0.0071614583333333,0.0065104166666666,0.0068359375,0.0,0.0,0.033203125,0.0,0.0130208333333333
Savannah GA,2024-2026,0.0358937544867193,0.0796841349605169,0.0193826274228284,0.0150753768844221,0.334529791816224,0.0782483847810481,0.0201005025125628,0.0452261306532663,0.0552763819095477,0.0201005025125628,0.0193826274228284,0.0107681263460158
Seattle-Tacoma WA,2012-2014,0.005334914048607,0.0,0.0,0.0062240663900414,0.0,0.004742145820984,0.0,0.004149377593361,0.0,0.0095456281023291,1.20236731576938,0.0057273768613974
Seattle-Tacoma WA,2015-2017,0.0041365046535677,0.0036194415718717,0.0,0.0036194415718717,0.0031023784901758,0.0036194415718717,0.0031023784901758,0.0036194415718717,0.0135746606334842,0.0090497737556561,1.64253393665158,0.004524886877828
Seattle-Tacoma WA,2018-2020,0.0026542800265428,0.0,0.0013271400132714,0.0,0.0,0.0192435301924353,0.0033178500331785,0.0033178500331785,0.0016447368421052,0.0148026315789474,1.27138157894737,0.0246710526315789
Seattle-Tacoma WA,2021-2023,0.0024752475247524,0.0163366336633663,0.0079207920792079,0.0061881188118811,0.0019680196801968,0.0570725707257073,0.0118081180811808,0.006150061500615,0.0225127087872186,0.0225127087872186,1.22803195352215,0.0094408133623819
Seattle-Tacoma WA,2024-2026,0.0131675201170446,0.0460863204096562,0.0182882223847842,0.0263350402340893,0.29407461594733,0.06949524506218,0.0299926847110461,0.0475493782004389,0.0475493782004389,0.0248719824433065,0.552304316020483,0.0190197512801756
Sherman TX-Ada OK,2012-2014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Sherman TX-Ada OK,2015-2017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,
Sherman TX-Ada OK,2018-2020,0.0,0.0,0.0,0.96195652173913,0.0,0.0,0.0,0.537634408602151,0.641025641025641,0.0,0.0,0.0
Sherman TX-Ada OK,2021-2023,0.0,0.613496932515337,0.0,0.0,0.56,1.13714285714286,0.0,0.0,0.663934426229508,0.647540983606557,0.778688524590164,0.819672131147541
Sherman TX-Ada OK,2024-2026,0.0,0.0,0.0,0.035632183908046,0.437931034482759,0.0,0.0,0.0149425287356322,0.0,0.0,0.0,0.0137931034482759
Shreveport LA,2012-2014,0.0,1.11,0.0,0.0,0.72,2.59,0.75,0.0,0.0,0.0,0.87,0.91
Shreveport LA,2015-2017,0.0,0.0,0.110778443113772,0.29940119760479,0.0,0.345114345114345,0.0,0.180873180873181,0.11734693877551,0.118622448979592,0.0,0.0
Shreveport LA,2018-2020,0.0578947368421053,0.0,0.0570175438596491,0.0,0.0,0.0,0.0,0.0543859649122807,0.0,0.0,0.0,0.0
Shreveport LA,2021-2023,0.0113255033557047,0.0,0.0113255033557047,0.0,0.0,0.0109060402684564,0.0125838926174497,0.0113255033557047,0.0,0.0,0.0,0.0
Shreveport LA,2024-2026,0.0092165898617511,0.133640552995392,0.0153609831029186,0.0422427035330261,0.373271889400922,0.0775729646697389,0.0161290322580645,0.0299539170506912,0.0529953917050691,0.0130568356374808,0.0153609831029186,0.0192012288786482
Sioux City IA,2012-2014,0.0,0.0,0.0,0.83,0.0,0.0,0.891304347826087,1.77173913043478,0.0,0.0,0.0,1.0
Sioux City IA,2015-2017,0.0,0.0,0.0,1.05263157894737,0.0,0.0,0.0,1.12359550561798,0.0,0.0,0.0,0.0
Sioux City IA,2018-2020,0.0,0.0,0.0,0.0,1.03092783505155,0.0,0.0,0.0,2.13636363636364,0.0,0.0,0.0
Sioux City IA,2021-2023,0.129675810473815,0.134663341645885,0.249376558603491,0.139650872817955,0.133909287257019,0.0,0.129589632829374,0.155507559395248,0.0,0.172786177105832,0.0,0.0
Sioux City IA,2024-2026,0.0212201591511936,0.0791335101679929,0.0260831122900088,0.0216622458001768,1.78157894736842,0.133333333333333,0.0245614035087719,0.0605263157894737,0.0490716180371353,0.013262599469496,0.0274093722369584,0.0344827586206897
Sioux Falls(Mitchell) SD,2012-2014,0.0,1.13636363636364,0.840909090909091,0.0,1.40845070422535,2.07042253521127,2.3943661971831,0.845070422535211,0.0,1.21951219512195,0.0,0.0
Sioux Falls(Mitchell) SD,2015-2017,0.416938110749186,0.0,0.0,0.495114006514658,0.0,0.208469055374593,0.0,1.03257328990228,0.0,0.224755700325733,0.0,0.172638436482085
Sioux Falls(Mitchell) SD,2018-2020,0.116129032258065,0.109677419354839,0.0,0.0516129032258065,0.0,0.0,0.0,0.135483870967742,0.0,0.0,0.206451612903226,0.0516129032258065
Sioux Falls(Mitchell) SD,2021-2023,0.0203208556149733,0.0,0.0203208556149733,0.0,0.0641711229946524,0.0,0.0,0.122994652406417,0.0,0.0,0.0192513368983957,0.0556149732620321
Sioux Falls(Mitchell) SD,2024-2026,0.0113365155131265,0.0399761336515513,0.0083532219570405,0.0202863961813843,0.930787589498807,0.0644391408114559,0.0101431980906921,0.189737470167064,0.0399761336515513,0.0107398568019093,0.0167064439140811,0.0143198090692124
South Bend-Elkhart IN,2012-2014,0.162679425837321,0.0,0.205741626794258,0.0,0.177033492822967,0.0,0.129186602870813,0.0,0.0,0.0,0.0,0.0
South Bend-Elkhart IN,2015-2017,0.0,0.35377358490566,0.471698113207547,0.0,0.263598326359833,0.418410041841004,0.246861924686192,0.0,0.0,0.0,0.236514522821577,0.0
South Bend-Elkhart IN,2018-2020,0.0562060889929742,0.0304449648711944,0.0,0.0,0.044496487119438,0.0398126463700234,0.0374707259953162,0.0,0.0,0.0,0.0,0.0304449648711944
South Bend-Elkhart IN,2021-2023,0.0,0.058348623853211,0.0124770642201835,0.0139449541284404,0.0168807339449541,0.0260550458715596,0.0,0.0,0.0,0.028256880733945,0.0172477064220184,0.0154128440366973
South Bend-Elkhart IN,2024-2026,0.0092470277410832,0.083883751651255,0.0165125495376486,0.0151915455746367,0.941875825627477,0.0640686922060766,0.0112285336856011,0.036327608982827,0.036327608982827,0.0099075297225891,0.0125495376486129,0.0211360634081902
Spokane WA,2012-2014,0.0,0.173529411764706,0.138235294117647,0.0,0.155882352941176,0.185294117647059,0.141176470588235,0.720588235294118,0.129411764705882,0.0,0.273529411764706,0.173529411764706
Spokane WA,2015-2017,0.0,0.0,0.111814345991561,0.0,0.124472573839662,0.0,0.0,0.116033755274262,0.0,0.180124223602484,0.683229813664596,0.0
Spokane WA,2018-2020,0.0,0.0,0.0895225464190982,0.0,0.0437665782493369,0.0,0.0,0.0,0.0,0.0360685302073941,0.377817853922453,0.0
Spokane WA,2021-2023,0.0174528301886792,0.0,0.0,0.0,0.0113207547169811,0.0113207547169811,0.0,0.0,0.0,0.0136792452830189,0.136792452830189,0.0136792452830189
Spokane WA,2024-2026,0.0,0.0345149253731343,0.0149253731343284,0.0139925373134328,0.542910447761194,0.0335820895522388,0.0065298507462686,0.0177238805970149,0.0223880597014925,0.0046641791044776,0.0550373134328358,0.0093283582089552
Springfield MO,2012-2014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Springfield MO,2015-2017,0.0,0.0,1.08695652173913,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Springfield MO,2018-2020,0.401234567901235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.421810699588477
Springfield MO,2021-2023,0.0,0.022212543554007,0.0,0.0,0.0,0.0,0.024390243902439,0.0322299651567944,0.0587979094076655,0.0,0.0326655052264808,0.0
Springfield MO,2024-2026,0.0036596523330283,0.0292772186642269,0.0137236962488564,0.0036596523330283,0.854528819762123,0.0430009149130833,0.0064043915827996,0.0375114364135407,0.0173833485818847,0.0192131747483989,0.0,0.0137236962488564
Springfield-Holyoke MA,2012-2014,0.0,0.0,0.451776649746193,0.0,0.0,0.0,0.0,0.477157360406091,0.492385786802031,0.0,0.0,0.0
Springfield-Holyoke MA,2015-2017,0.0,0.0,22.7462686567164,0.567164179104478,0.285714285714286,0.0,0.0,0.0,0.304147465437788,0.0,0.0,0.0
Springfield-Holyoke MA,2018-2020,0.0,0.0,0.0,0.0641975308641975,0.0,0.0679012345679012,0.0,0.054320987654321,0.122222222222222,0.0,0.0,0.0
Springfield-Holyoke MA,2021-2023,0.0,0.0156190476190476,0.0521904761904762,0.0,0.0163809523809524,0.0,0.0491428571428571,0.0175238095238095,0.0175238095238095,0.0,0.0,0.0190476190476191
Springfield-Holyoke MA,2024-2026,0.009501187648456,0.0134600158353127,0.0775930324623912,0.007125890736342,0.367379255740301,0.0387965162311956,0.0,0.0253365003958828,0.0380047505938242,0.0142517814726841,0.0079176563737133,0.002375296912114
St. Joseph MO,2012-2014,0.0,1.35135135135135,1.22972972972973,0.0,1.0655737704918,0.0,1.63934426229508,0.0,0.0,0.0,0.0,0.0
St. Joseph MO,2015-2017,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0
St. Joseph MO,2018-2020,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
St. Joseph MO,2021-2023,1.45901639344262,1.63934426229508,0.0,3.13114754098361,0.0,1.40625,0.0,1.5625,1.35135135135135,0.0,0.0,0.0
St. Joseph MO,2024-2026,0.0,0.0623376623376623,0.0,0.0,0.537662337662338,0.0,0.0,0.0805194805194805,0.0701298701298701,0.0,0.0,0.0
St. Louis MO,2012-2014,0.0,0.0361596009975062,0.0093516209476309,0.0,0.0,0.0180798004987531,0.0099750623441396,0.0,0.0,0.0,0.0,0.0
St. Louis MO,2015-2017,0.0,0.031144211238998,0.0,0.0,0.0,0.0,0.0,0.012186865267434,0.018957345971564,0.0213270142180095,0.015572105619499,0.0
St. Louis MO,2018-2020,0.01242983159583,0.0132317562149158,0.0,0.0,0.0,0.0068163592622293,0.0,0.0292702485966319,0.0,0.0,0.0,0.0
St. Louis MO,2021-2023,0.0,0.02248126561199,0.0027060782681099,0.0,0.0054121565362198,0.0310158201498751,0.0031223980016652,0.0027060782681099,0.0,0.0299750208159867,0.0,0.0027060782681099
St. Louis MO,2024-2026,0.0121654501216545,0.0948905109489051,0.024330900243309,0.0291970802919708,0.574209245742093,0.0786699107866991,0.0235198702351987,0.0494728304947283,0.0519059205190592,0.0202757502027575,0.0186536901865369,0.0235198702351987
Syracuse NY,2012-2014,0.0,0.358620689655172,0.786206896551724,0.579310344827586,0.0,0.0,0.282758620689655,0.0,0.0,0.0,0.0,0.337931034482759
Syracuse NY,2015-2017,0.108225108225108,0.0,0.0779220779220779,0.103896103896104,0.0,0.0,0.0,0.0,0.0,0.0,0.0411255411255411,0.0
Syracuse NY,2018-2020,0.0337609723160027,0.0,0.0418636056718434,0.0,0.0,0.0,0.0,0.0310600945307225,0.0,0.0,0.0,0.0
Syracuse NY,2021-2023,0.0,0.0,0.0180785123966942,0.0,0.0,0.0,0.0183367768595041,0.0,0.0712809917355372,0.0,0.0,0.0235020661157025
Syracuse NY,2024-2026,0.0079554494828957,0.0318217979315831,0.0182975338106603,0.0095465393794749,0.438345266507558,0.0676213206046142,0.0127287191726333,0.020684168655529,0.0946698488464598,0.0095465393794749,0.0103420843277645,0.0079554494828957
Tallahassee FL-Thomasville GA,2012-2014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.359259259259259,0.603703703703704,0.366666666666667,0.0,0.0
Tallahassee FL-Thomasville GA,2015-2017,0.1417004048583,0.0647773279352227,0.0,0.0,0.0850202429149798,0.102564102564103,0.0958164642375169,0.0,0.0,0.0,0.0,0.058029689608637
Tallahassee FL-Thomasville GA,2018-2020,0.0,0.0,0.153549382716049,0.0,0.0,0.0640432098765432,0.0941358024691358,0.0478395061728395,0.0,0.0,0.0,0.0408950617283951
Tallahassee FL-Thomasville GA,2021-2023,0.0,0.0086753420086753,0.0,0.0,0.0203536870203537,0.0093426760093426,0.0176843510176844,0.0096763430096763,0.0,0.0,0.013013013013013,0.0113446780113447
Tallahassee FL-Thomasville GA,2024-2026,0.0248796147672552,0.0617977528089888,0.0272873194221509,0.0104333868378812,0.325842696629214,0.0714285714285714,0.0152487961476726,0.0256821829855538,0.0321027287319422,0.0080256821829855,0.0184590690208668,0.0096308186195826
Tampa-St. Petersburg (Sarasota) FL,2012-2014,0.0,0.0395882818685669,0.0221694378463975,0.0,0.0213776722090261,0.0,0.0205859065716548,0.0213776722090261,0.0,0.0316706254948535,0.0,0.0
Tampa-St. Petersburg (Sarasota) FL,2015-2017,0.0069025021570319,0.0,0.0250215703192407,0.0,0.0,0.0,0.0074777106701179,0.0,0.0166810468794938,0.0,0.0069025021570319,0.0083405234397469
Tampa-St. Petersburg (Sarasota) FL,2018-2020,0.0041293874741913,0.0,0.0034411562284927,0.0027529249827942,0.0061940812112869,0.0,0.0116999311768754,0.0096352374397797,0.0,0.0075705437026841,0.0,0.0151410874053682
Tampa-St. Petersburg (Sarasota) FL,2021-2023,0.0014893617021276,0.0159574468085106,0.0146808510638298,0.0046808510638297,0.0017021276595744,0.0363829787234043,0.0044680851063829,0.0034042553191489,0.0176595744680851,0.0148936170212766,0.0112765957446809,0.0040425531914893
Tampa-St. Petersburg (Sarasota) FL,2024-2026,0.0350877192982456,0.0840258541089566,0.0378578024007387,0.0424746075715605,0.463527239150508,0.0904893813481071,0.0378578024007387,0.0627885503231764,0.0766389658356417,0.03601108033241,0.0397045244690674,0.0313942751615882
Terre Haute IN,2012-2014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Terre Haute IN,2015-2017,0.0,0.0,0.0,0.0,0.0,0.741935483870968,0.0,1.61290322580645,0.0,1.23456790123457,0.0,0.0
Terre Haute IN,2018-2020,0.0,0.0,0.0,0.0,1.6,0.68,0.0,0.0,0.77,0.74,0.0,0.0
Terre Haute IN,2021-2023,0.0,0.0,0.0,0.523809523809524,0.398809523809524,0.0,0.0,0.0,0.0,0.386904761904762,0.404761904761905,0.0
Terre Haute IN,2024-2026,0.0058181818181818,0.0138181818181818,0.0152727272727273,0.0145454545454545,1.69890909090909,0.0370909090909091,0.0087272727272727,0.0,0.0218181818181818,0.0,0.0087272727272727,0.0058181818181818
Toledo OH,2012-2014,0.0,0.0,0.279693486590038,0.0,0.0,0.0,0.226053639846743,0.0,0.0,0.0,0.325670498084291,0.310344827586207
Toledo OH,2015-2017,0.0,0.494505494505495,1.08241758241758,0.489010989010989,0.0,0.581395348837209,0.0,0.0,0.0,0.0,1.83193277310924,1.03361344537815
Toledo OH,2018-2020,0.0842450765864333,0.0,0.0,0.0,0.0962800875273523,0.0,0.050328227571116,0.0897155361050328,0.0,0.0,0.0,0.0700218818380744
Toledo OH,2021-2023,0.0119331742243437,0.0182975338106603,0.0,0.0119331742243437,0.0127287191726333,0.0238663484486874,0.0127287191726333,0.0,0.0,0.0,0.0,0.0119331742243437
Toledo OH,2024-2026,0.0182481751824818,0.0638686131386861,0.0200729927007299,0.0237226277372263,0.655109489051095,0.0666058394160584,0.0155109489051095,0.0291970802919708,0.0273722627737226,0.0127737226277372,0.0282846715328467,0.0191605839416058
Topeka KS,2012-2014,1.28205128205128,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.5
Topeka KS,2015-2017,0.0,0.0,0.0,0.0,1.1,0.0,0.0,0.0,0.0,0.55,0.0,0.0
Topeka KS,2018-2020,0.0,0.0,0.0,0.0,0.0,0.385474860335196,0.0,0.407821229050279,0.0,0.0,0.0,0.519553072625698
Topeka KS,2021-2023,0.0,0.0,0.0921985815602837,0.0520094562647754,0.127659574468085,0.186761229314421,0.156028368794326,0.0780141843971631,0.0,0.0,0.0,0.0
Topeka KS,2024-2026,0.0077220077220077,0.0,0.0,0.0154440154440154,0.592664092664093,0.0106177606177606,0.0077220077220077,0.0,0.0086872586872586,0.0077220077220077,0.0086872586872586,0.0
Traverse City-Cadillac MI,2012-2014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Traverse City-Cadillac MI,2015-2017,0.0,0.0,2.09210526315789,0.0,0.76,0.0,0.0,0.0,1.78571428571429,0.0,0.0,0.0
Traverse City-Cadillac MI,2018-2020,0.0,0.0,1.06382978723404,0.0,0.0,1.03092783505155,0.0,0.907216494845361,1.58730158730159,0.0,1.3015873015873,0.0
Traverse City-Cadillac MI,2021-2023,0.0,0.0,0.0,0.130193905817175,0.0,0.119113573407202,0.0,0.0,0.110803324099723,0.0,0.0,0.171745152354571
Traverse City-Cadillac MI,2024-2026,0.0,0.0,0.0130434782608696,0.0010869565217391,1.00108695652174,0.033695652173913,0.0,0.0260869565217391,0.008695652173913,0.0,0.0,0.0152173913043478
Tri-Cities TN-VA,2012-2014,,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Tri-Cities TN-VA,2015-2017,0.0,0.91,0.0,0.0,0.0,0.84,0.0,0.0,0.0,0.0,0.77,0.0
Tri-Cities TN-VA,2018-2020,0.755102040816327,0.857142857142857,0.0,1.73469387755102,0.0,0.0,0.0,0.0,0.0,0.0,0.88,1.81
Tri-Cities TN-VA,2021-2023,0.0,0.153774464119292,0.0745573159366263,0.0615097856477167,0.0,0.0,0.133271202236719,0.0,0.0,0.0745573159366263,0.0698974836905871,0.0
Tri-Cities TN-VA,2024-2026,0.0052301255230125,0.0209205020920502,0.0073221757322175,0.0104602510460251,0.689330543933054,0.0167364016736402,0.0135983263598326,0.0,0.0052301255230125,0.0240585774058577,0.0052301255230125,0.0188284518828452
Tucson (Sierra Vista) AZ,2012-2014,0.636363636363637,0.340909090909091,0.0,0.0,0.339222614840989,0.0,0.0,0.321554770318021,0.314487632508834,0.303886925795053,0.353356890459364,0.0
Tucson (Sierra Vista) AZ,2015-2017,1.39495798319328,0.0,0.61344537815126,0.0,0.0,0.0,1.01081081081081,0.0,0.675675675675676,0.0,0.0,1.27702702702703
Tucson (Sierra Vista) AZ,2018-2020,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0431447746883989,0.0,0.0508149568552253,0.0,0.0834132310642378
Tucson (Sierra Vista) AZ,2021-2023,0.0,0.0,0.0113207547169811,0.0,0.0078616352201257,0.0176100628930818,0.0,0.0,0.0,0.278828327771598,0.0163144234334446,0.007415647015202
Tucson (Sierra Vista) AZ,2024-2026,0.0036934441366574,0.0323176361957525,0.0110803324099723,0.0073868882733148,0.448753462603878,0.0461680517082179,0.0120036934441367,0.0295475530932595,0.0313942751615882,0.12927054478301,0.0036934441366574,0.0083102493074792
Tulsa OK,2012-2014,0.0,0.0,0.0563106796116505,0.0,0.0524271844660194,0.0,0.116504854368932,0.0,0.0621359223300971,0.0699029126213592,0.0640776699029126,0.0
Tulsa OK,2015-2017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0642633228840125,0.0,0.0532915360501568,0.0705329153605016,0.0
Tulsa OK,2018-2020,0.0,0.0410607356715141,0.0,0.159965782720274,0.0,0.0436270316509838,0.0,0.0453378956372968,0.0,0.0444824636441403,0.0384944396920445,0.0
Tulsa OK,2021-2023,0.0,0.0,0.0100694444444444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0277777777777778,0.015625
Tulsa OK,2024-2026,0.0064935064935064,0.0487012987012987,0.0227272727272727,0.012987012987013,0.491341991341991,0.0432900432900433,0.0021645021645021,0.0183982683982684,0.0227272727272727,0.0108225108225108,0.0043290043290043,0.0086580086580086
Twin Falls ID,2012-2014,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0
Twin Falls ID,2015-2017,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0
Twin Falls ID,2018-2020,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Twin Falls ID,2021-2023,0.0,0.79,0.0,0.6,0.47,0.53,0.0,0.0,0.81,0.0,0.0,0.0
Twin Falls ID,2024-2026,0.0,0.0,0.0,0.043010752688172,0.660215053763441,0.0,0.0516129032258065,0.0,0.0494623655913979,0.0,0.0,0.0
Tyler-Longview(Lufkin & Nacogdoches) TX,2012-2014,0.0,0.38860103626943,0.450777202072539,0.0,0.38860103626943,0.0,0.0,0.0,0.0,0.0,0.0,1.09326424870466
Tyler-Longview(Lufkin & Nacogdoches) TX,2015-2017,0.562130177514793,0.224852071005917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.471698113207547,0.0,0.0
Tyler-Longview(Lufkin & Nacogdoches) TX,2018-2020,0.0,0.0698689956331878,0.132459970887918,0.0,0.109170305676856,0.0,0.0,0.0858806404657933,0.208151382823872,0.0815138282387191,0.0,0.0
Tyler-Longview(Lufkin & Nacogdoches) TX,2021-2023,0.0,0.0,0.0,0.0578547297297297,0.0,0.0,0.0,0.0,0.0,0.0,0.0202702702702703,0.0
Tyler-Longview(Lufkin & Nacogdoches) TX,2024-2026,0.0,0.0398582816651904,0.012400354295837,0.0655447298494243,0.422497785651019,0.0318866253321524,0.0088573959255978,0.0159433126660762,0.0141718334809566,0.0044286979627989,0.0,0.0
Utica NY,2012-2014,0.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.47,0.0,0.49
Utica NY,2015-2017,0.0,1.31578947368421,0.0,0.907894736842105,0.0,0.0,0.0,1.19047619047619,0.0,0.0,1.35616438356164,1.36986301369863
Utica NY,2018-2020,1.35135135135135,2.41891891891892,0.0,0.0,0.0,0.0,0.0,1.44927536231884,0.0,0.89,0.0,0.87
Utica NY,2021-2023,0.0,0.0,0.0,0.366300366300366,0.336879432624113,0.269503546099291,0.283687943262411,0.0,0.343971631205674,0.0,0.0,0.0
Utica NY,2024-2026,0.0102040816326531,0.0120593692022263,0.0120593692022263,0.0250463821892393,0.38961038961039,0.0,0.0,0.0120593692022263,0.0324675324675325,0.0,0.0,0.0
Victoria TX,2012-2014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Victoria TX,2015-2017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Victoria TX,2018-2020,0.0,0.0,0.0,0.94,0.806451612903226,1.0752688172043,0.0,0.0,0.0,0.0,0.0,0.95
Victoria TX,2021-2023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Victoria TX,2024-2026,0.0,0.0,0.0,0.180790960451977,0.344632768361582,0.0,0.0,0.231638418079096,0.299435028248588,0.0,0.0,0.0
Waco-Temple-Bryan TX,2012-2014,0.0,0.102639296187683,0.0,0.0821114369501466,0.225806451612903,0.105571847507331,0.0,0.129032258064516,0.0,0.0,0.0,0.0
Waco-Temple-Bryan TX,2015-2017,0.0,0.0639686684073107,0.0,0.077023498694517,0.0,0.0,0.0,0.16710182767624,0.0,0.0,0.138121546961326,0.0
Waco-Temple-Bryan TX,2018-2020,0.0,0.0,0.0,0.0190895741556535,0.0,0.0,0.0,0.0,0.0168869309838473,0.0168869309838473,0.0,0.0
Waco-Temple-Bryan TX,2021-2023,0.0,0.0185353995745974,0.0,0.0203585536311152,0.0191431175934366,0.0179276815557581,0.0075964752354907,0.0,0.0072926162260711,0.0173199635369189,0.01640838650866,0.0
Waco-Temple-Bryan TX,2024-2026,0.0032626427406199,0.066068515497553,0.0114192495921697,0.0750407830342578,0.355628058727569,0.0693311582381729,0.0114192495921697,0.0179445350734095,0.0269168026101142,0.0089722675367047,0.0114192495921697,0.0195758564437194
Washington DC (Hagerstown MD),2012-2014,0.0018921475875118,0.0094607379375591,0.0,0.0023651844843897,0.0018921475875118,0.0018921475875118,0.0047303689687795,0.0160832544938505,0.0047303689687795,0.0089877010406811,0.0028382213812677,0.260170293282876
Washington DC (Hagerstown MD),2015-2017,0.0017853600476096,0.0111089069629042,0.0287641341003769,0.0017853600476096,0.0035707200952192,0.001388613370363,0.0190438405078358,0.0210275738940686,0.0069430668518151,0.0029756000793493,0.005554453481452,0.376909343384249
Washington DC (Hagerstown MD),2018-2020,0.0047043010752688,0.0,0.0127688172043011,0.0033602150537634,0.0026881720430107,0.0134408602150538,0.0127688172043011,0.0073924731182795,0.0071942446043165,0.0028776978417266,0.018705035971223,0.768345323741007
Washington DC (Hagerstown MD),2021-2023,0.0078108049468431,0.0323280538077674,0.0164894771100022,0.0156216098936863,0.0117162074202647,0.0557604686482968,0.0247342156650033,0.0049902364938164,0.0323280538077674,0.0316771533955305,0.026903883705793,0.374050770232155
Washington DC (Hagerstown MD),2024-2026,0.0277372262773723,0.0854014598540146,0.035036496350365,0.0401459854014599,0.314598540145985,0.0817518248175182,0.035036496350365,0.0547445255474453,0.0722627737226277,0.035036496350365,0.0335766423357664,0.2
Watertown NY,2012-2014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,
Watertown NY,2015-2017,,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Watertown NY,2018-2020,0.0,0.0,0.0,1.04166666666667,0.0,0.0,1.25,0.0,0.0,0.0,1.21951219512195,0.0
Watertown NY,2021-2023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Watertown NY,2024-2026,0.0135004821600771,0.0,0.0163934426229508,0.0,0.328833172613308,0.0135004821600771,0.0,0.0,0.0154291224686596,0.0,0.0135004821600771,0.0
Wausau-Rhinelander WI,2012-2014,0.144827586206897,0.55632183908046,0.374712643678161,0.144827586206897,0.160919540229885,0.154022988505747,0.0,0.0,0.0,0.443324937027708,0.0,0.0
Wausau-Rhinelander WI,2015-2017,0.0,0.0,0.69,0.0,0.0,0.0,0.65,0.0,1.26582278481013,0.0,0.0,0.0
Wausau-Rhinelander WI,2018-2020,0.0,0.0,0.0,0.0,0.241206030150754,0.0,0.0,0.0,0.0,0.0,0.0,0.306532663316583
Wausau-Rhinelander WI,2021-2023,0.0,0.0,0.202346041055719,0.0,0.0,0.0,0.0,0.278592375366569,0.205047318611987,0.201892744479495,0.479495268138801,0.495268138801262
Wausau-Rhinelander WI,2024-2026,0.0,0.0077444336882865,0.0183930300096805,0.0,0.908034849951597,0.0087124878993223,0.0,0.0290416263310745,0.0193610842207164,0.0116166505324298,0.0096805421103581,0.0
West Palm Beach-Ft. Pierce FL,2012-2014,0.0758241758241758,0.0,0.0,0.0,0.0472527472527473,0.0395604395604396,0.168131868131868,0.0,0.0923076923076923,0.0,0.0,0.0
West Palm Beach-Ft. Pierce FL,2015-2017,0.0,0.0,0.0244897959183673,0.0285714285714286,0.0302040816326531,0.0253061224489796,0.0930612244897959,0.0,0.0506122448979592,0.0,0.0236734693877551,0.0
West Palm Beach-Ft. Pierce FL,2018-2020,0.009375,0.0090277777777777,0.0,0.0,0.0,0.0076388888888888,0.0163194444444444,0.0,0.0,0.0368055555555556,0.0291666666666667,0.0
West Palm Beach-Ft. Pierce FL,2021-2023,0.0,0.0037128712871287,0.0037128712871287,0.0047029702970297,0.0,0.0155940594059406,0.0,0.0,0.0198019801980198,0.0032178217821782,0.0,0.0
West Palm Beach-Ft. Pierce FL,2024-2026,0.0177777777777778,0.0782222222222222,0.0266666666666667,0.0275555555555556,0.385777777777778,0.0702222222222222,0.0275555555555556,0.0488888888888889,0.0666666666666667,0.0302222222222222,0.0231111111111111,0.024
Wheeling WV-Steubenville OH,2012-2014,,,,,0.0,0.0,0.0,0.0,,,,
Wheeling WV-Steubenville OH,2015-2017,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0
Wheeling WV-Steubenville OH,2018-2020,,,,,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Wheeling WV-Steubenville OH,2021-2023,0.0,0.96,0.0,0.0,0.0,0.0,0.0,0.71,0.0,0.0,0.0,0.0
Wheeling WV-Steubenville OH,2024-2026,0.0,0.0,0.0,0.0,0.568702290076336,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Wichita Falls TX & Lawton OK,2012-2014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Wichita Falls TX & Lawton OK,2015-2017,0.0,0.0,0.0,1.36986301369863,1.14516129032258,1.61290322580645,0.0,1.04838709677419,0.0,1.04166666666667,0.0,0.0
Wichita Falls TX & Lawton OK,2018-2020,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Wichita Falls TX & Lawton OK,2021-2023,0.0,0.161812297734628,0.147249190938511,0.103559870550162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.114537444933921
Wichita Falls TX & Lawton OK,2024-2026,0.0,0.010762331838565,0.0089686098654708,0.0,0.424215246636771,0.0089686098654708,0.0089686098654708,0.0331838565022422,0.0098654708520179,0.0,0.0,0.0
Wichita-Hutchinson KS,2012-2014,0.0,0.0,0.0,0.0,0.0391498881431767,0.0,0.146532438478747,0.0,0.124223602484472,0.0,0.0,0.0881987577639752
Wichita-Hutchinson KS,2015-2017,0.0,0.355555555555556,0.0,0.444444444444445,0.0,0.0,0.0,0.37593984962406,0.366300366300366,0.293040293040293,0.0,0.0
Wichita-Hutchinson KS,2018-2020,0.0,0.0,0.0,0.0487264673311185,0.0,0.0520487264673311,0.0,0.0,0.0,0.0,0.143964562569214,0.0897009966777409
Wichita-Hutchinson KS,2021-2023,0.0143306536176162,0.0244669695910521,0.011883956658511,0.0129325410695561,0.0,0.0143306536176162,0.0,0.0,0.0,0.0,0.0290108353722475,0.012233484795526
Wichita-Hutchinson KS,2024-2026,0.0146914789422135,0.0519098922624878,0.0088148873653281,0.0205680705190989,0.610186092066601,0.0568070519098923,0.0088148873653281,0.0176297747306562,0.039177277179236,0.0146914789422135,0.0029382957884427,0.0156709108716944
Wilkes Barre-Scranton PA,2012-2014,0.0,0.0,0.0,1.05325443786982,0.0,0.769230769230769,0.0,0.553846153846154,0.0,0.0,0.0,0.477272727272727
Wilkes Barre-Scranton PA,2015-2017,2.12,0.0,39.52,1.44,0.0,0.0,0.0,0.0,0.0,0.0,1.11111111111111,0.0
Wilkes Barre-Scranton PA,2018-2020,0.0395348837209302,0.0472868217054264,0.0,0.0914728682170543,0.0,0.0418604651162791,0.0,0.0387596899224806,0.0,0.0,0.0418604651162791,0.0372093023255814
Wilkes Barre-Scranton PA,2021-2023,0.0107978404319136,0.0092981403719256,0.0,0.0116976604679064,0.0092981403719256,0.026994601079784,0.0143971205758848,0.0,0.0,0.0,0.0,0.0101979604079184
Wilkes Barre-Scranton PA,2024-2026,0.0114135206321335,0.0351185250219491,0.0166812993854258,0.0175592625109745,0.522388059701493,0.0368744512730465,0.0105355575065847,0.0175592625109745,0.0719929762949956,0.009657594381036,0.009657594381036,0.0052677787532923
Wilmington NC,2012-2014,0.0,0.91,0.0,0.0,1.34,0.0,0.0,0.0,0.8,0.0,0.82,0.0
Wilmington NC,2015-2017,0.0,0.597402597402597,0.0,1.11038961038961,0.0,0.0,0.909090909090909,0.0,0.0,1.77777777777778,0.0,0.0
Wilmington NC,2018-2020,0.0,0.0,0.0,0.162074554294976,0.0,0.109923664122137,0.0,0.0,0.16,0.0,0.0,0.0
Wilmington NC,2021-2023,0.0293040293040293,0.0,0.0,0.0,0.0280830280830281,0.0256410256410256,0.0,0.0,0.0,0.0,0.0,0.0238095238095238
Wilmington NC,2024-2026,0.009936766034327,0.035230352303523,0.010840108401084,0.0,0.515808491418248,0.038843721770551,0.0,0.020776874435411,0.024390243902439,0.015356820234869,0.003613369467028,0.00903342366757
Yakima-Pasco-Richland-Kennewick WA,2012-2014,0.0,0.0,0.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Yakima-Pasco-Richland-Kennewick WA,2015-2017,0.0,0.0,0.562130177514793,0.461538461538462,0.798816568047337,0.0,0.0,0.0,0.516666666666667,0.0,1.475,0.0
Yakima-Pasco-Richland-Kennewick WA,2018-2020,0.0,0.142857142857143,0.0,0.0,0.0,0.0,0.189765458422175,0.0,0.0,0.0,1.04477611940299,0.0
Yakima-Pasco-Richland-Kennewick WA,2021-2023,0.0,0.114190687361419,0.0587583148558758,0.0742793791574279,0.0,0.0,0.172949002217295,0.0,0.0728744939271255,0.0593792172739541,0.759784075573549,0.121457489878543
Yakima-Pasco-Richland-Kennewick WA,2024-2026,0.0,0.0107913669064748,0.0059952038369304,0.0047961630695443,0.449640287769784,0.0095923261390887,0.0,0.0059952038369304,0.013189448441247,0.0,0.0479616306954436,0.0047961630695443
Youngstown OH,2012-2014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.10227272727273,0.0,0.0,0.482954545454545
Youngstown OH,2015-2017,0.408163265306123,0.0,0.0,0.0,0.251445086705202,0.245664739884393,0.0,0.0,0.355311355311355,0.326007326007326,0.366300366300366,0.0
Youngstown OH,2018-2020,0.0,0.0,0.686346863468635,0.0,0.0,0.0,0.0,0.0,0.0,0.334661354581673,0.0,0.768924302788845
Youngstown OH,2021-2023,0.0,0.0,0.0,0.0,0.0381493506493507,0.0,0.0462662337662338,0.0,0.0,0.0,0.0,0.0462662337662338
Youngstown OH,2024-2026,0.0,0.0405679513184584,0.0060851926977687,0.0081135902636916,0.586206896551724,0.0304259634888438,0.0,0.0111561866125761,0.0,0.0152129817444219,0.0050709939148073,0.0050709939148073
Yuma AZ-El Centro CA,2012-2014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Yuma AZ-El Centro CA,2015-2017,0.0,0.0,0.67,0.0,0.0,0.0,0.79,0.0,0.0,1.86021505376344,0.0,0.0
Yuma AZ-El Centro CA,2018-2020,0.93,0.94,0.0,0.0,1.0752688172043,0.0,0.0,0.0,1.83,0.84,0.0,0.0
Yuma AZ-El Centro CA,2021-2023,0.0,0.25390625,0.0,0.0,0.2734375,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Yuma AZ-El Centro CA,2024-2026,0.0121457489878543,0.0,0.0,0.0107962213225371,0.230769230769231,0.0,0.0,0.0,0.0,0.0242914979757085,0.0107962213225371,0.0
Zanesville OH,2012-2014,0.0,0.0,0.0,0.0,0.401673640167364,0.0,0.0,0.0,0.0,0.0,0.0,0.40585774058577406
Zanesville OH,2015-2017,0.0,0.0,0.0,0.0,,,,,0.0,0.0,0.0,0.0
Zanesville OH,2018-2020,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Zanesville OH,2021-2023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
Zanesville OH,2024-2026,0.0,0.0,0.0,0.0,0.49246231155778897,0.24623115577889448,0.0,0.0,0.0,0.5376884422110553,0.0,0.0
|