-
-
Save cogs15/28d3f59df3dc26c6c3cd7419948a3fb8 to your computer and use it in GitHub Desktop.
New Hampshire Democratic results map
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>New Hampshire 2016</title> | |
<script type="text/javascript" src="http://d3js.org/d3.v3.min.js"></script> | |
<script type="text/javascript" src="http://d3js.org/queue.v1.min.js"></script> | |
<script type="text/javascript" src="http://d3js.org/topojson.v1.min.js"></script> | |
</head> | |
<!-- CSS --> | |
<style> | |
path { | |
stroke:white; | |
fill: #d3d3d3; | |
stroke-width: 1px; | |
} | |
body { | |
font-family: 'Proxima Nova', sans-serif; | |
} | |
.precinct { | |
font: .75em; | |
font-weight: bold; | |
} | |
div.tooltip { | |
position: absolute; | |
left: 75px; | |
text-align: center; | |
height: 16px; | |
padding: 10px; | |
font-size: .85em; | |
background: #FFFFFF; | |
border: 1px solid #989898; | |
pointer-events: none; | |
} | |
.chart { | |
max-width: 300px; | |
} | |
h1{ | |
font-size: 1.25em; | |
} | |
.source{ | |
font-size: 0.75em; | |
} | |
.Sanders { | |
color: #cfdceb; | |
} | |
.Clinton { | |
color: #2f5491; | |
} | |
</style> | |
<body> | |
<div class="info"> | |
<h1>Democratic Primary Results</h1> | |
<p class="key"> | |
<span class="Clinton">■</span> Clinton | |
<span class="Sanders">■</span> Sanders | |
</p> | |
<div class="g-chart"></div> | |
<p class="source"> Source: ABC News analysis, Associated Press</p> | |
</div> | |
<script type="text/javascript"> | |
var width = 300, height = 520; | |
var div = d3.select(".g-chart").append("div") | |
.attr("class", "tooltip") | |
.style("opacity", 0); | |
var svg = d3.select(".g-chart").append("svg") | |
.attr("width", width) | |
.attr("height", height) | |
.style("margin", "-15px auto"); | |
queue() | |
.defer(d3.json, "us.json") | |
.defer(d3.csv, "povrate.csv") | |
.await(ready); | |
function ready(error, us, data) { | |
var pairRateWithId = {}; | |
var pairNameWithId = {}; | |
var pairStateWithId = {}; | |
//Moves selction to front | |
d3.selection.prototype.moveToFront = function() { | |
return this.each(function(){ | |
this.parentNode.appendChild(this); | |
}); | |
}; | |
//Moves selction to back | |
d3.selection.prototype.moveToBack = function() { | |
return this.each(function() { | |
var firstChild = this.parentNode.firstChild; | |
if (firstChild) { | |
this.parentNode.insertBefore(this, firstChild); | |
} | |
}); | |
}; | |
data.forEach(function(d) { | |
pairRateWithId[d.id] = +d.rate; | |
pairNameWithId[d.id] = d.name; | |
pairStateWithId[d.id] = d.state; | |
}); | |
svg.append("g") | |
.attr("class", "county") | |
.selectAll("path") | |
.data(topojson.feature(us, us.objects.counties).features) | |
.enter().append("path") | |
.attr("d", path) | |
.style ( "fill" , function (d) { | |
return color (pairRateWithId[d.id]); | |
}) | |
.style("opacity", 0.8) | |
.on("mouseover", function(d) { | |
var sel = d3.select(this); | |
sel.moveToFront(); | |
d3.select(this).transition().duration(300).style({'opacity': 1, 'stroke': 'black', 'stroke-width': 1.5}); | |
div.transition().duration(300) | |
.style("opacity", 1) | |
div.text(pairNameWithId[d.id] + ", " + pairStateWithId[d.id] + ": " + pairRateWithId[d.id]) | |
.style("left", (d3.event.pageX) + "px") | |
.style("top", (d3.event.pageY -30) + "px"); | |
}) | |
.on("mouseout", function() { | |
var sel = d3.select(this); | |
sel.moveToBack(); | |
d3.select(this) | |
.transition().duration(300) | |
.style({'opacity': 0.8, 'stroke': 'white', 'stroke-width': 1}); | |
div.transition().duration(300) | |
.style("opacity", 0); | |
}) | |
}; | |
var legend = svg.selectAll("g.legend") | |
.data(ext_color_domain) | |
.enter().append("g") | |
.attr("class", "legend"); | |
var ls_w = 160, ls_h = 20; | |
legend.append("rect") | |
.attr("x", function(d, i){ return width - (i*ls_w) - ls_w;}) | |
.attr("y", 530) | |
.attr("width", ls_w) | |
.attr("height", ls_h) | |
.style("fill", function(d, i) { return color(d); }) | |
.style("opacity", 0.8); | |
legend.append("text") | |
.attr("x", function(d, i){ return width - (i*ls_w) - ls_w;}) | |
.attr("y", 570) | |
.text(function(d, i){ return legend_labels[i]; }); | |
</script> | |
<p>Data Organized by Brian Coughlin</p> | |
</body> | |
</html> | |
fill: #aaa; | |
} | |
#states .active { | |
display: none; | |
} | |
#state-borders { | |
fill: none; | |
stroke: black; | |
stroke-width: 1.5px; | |
stroke-linejoin: round; | |
stroke-linecap: round; | |
pointer-events: none; | |
} | |
.county-boundary { | |
fill: #ccc; | |
stroke: black; | |
stroke-width: .2px; | |
} | |
.county-boundary:hover, | |
.state:hover { | |
fill: #ccc; | |
} | |
div.tooltip { | |
position: absolute; | |
left: 75px; | |
text-align: center; | |
height: 16px; | |
padding: 10px; | |
font-size: 14px; | |
background: #FFFFFF; | |
border: 1px solid #989898; | |
pointer-events: none; | |
} | |
p { | |
font-family: 'Proxima Nova', sans-serif; | |
font-size:10px; | |
} | |
@media (max-width: 400px) { | |
.d3map { | |
display: none; | |
} | |
} | |
</style> | |
<body> | |
<h1>DI Men's Lacrosse Commits by County: 2014-2020</h1> | |
<script type="text/javascript"> | |
var width = 960, height = 600; | |
var color_domain = [1, 5, 15, 25, 50, 500] | |
var ext_color_domain = [0, 2, 6, 16, 26, 51, 500] | |
var legend_labels = ["0-1", "2-5", "6-15", "16-25", "26-50", "51+"] | |
var color = d3.scale.threshold() | |
.domain(color_domain) | |
.range(["#ffffff", "#85C1E9", "#3498DB", "#2874A6", "#1B4F72", "#212F3D", "#17202A"]); | |
var div = d3.select("body").append("div") | |
.attr("class", "tooltip") | |
.style("opacity", 0); | |
var svg = d3.select("body").append("svg") | |
.attr("width", width) | |
.attr("height", height) | |
.style("margin", "-15px auto"); | |
var path = d3.geo.path() | |
queue() | |
.defer(d3.json, "us.json") | |
.defer(d3.csv, "povrate.csv") | |
.await(ready); | |
var g = svg.append("g") | |
.attr('class', 'center-container center-items us-state') | |
.attr('transform', 'translate('+margin.left+','+margin.top+')') | |
.attr('width', width + margin.left + margin.right) | |
.attr('height', height + margin.top + margin.bottom) | |
function render(us) { | |
g.append("g") | |
.attr("id", "states") | |
.selectAll("path") | |
.data(topojson.feature(us, us.objects.states).features) | |
.enter().append("path") | |
.attr("d", path) | |
.attr("class", "state active") | |
.on("click", clicked); | |
g.append("path") | |
.datum(topojson.mesh(us, us.objects.states, function(a, b) { return a !== b; })) | |
.attr("id", "state-borders") | |
.attr("d", path); | |
} | |
function ready(error, us, data) { | |
var pairRateWithId = {}; | |
var pairNameWithId = {}; | |
var pairStateWithId = {}; | |
//Moves selction to front | |
d3.selection.prototype.moveToFront = function() { | |
return this.each(function(){ | |
this.parentNode.appendChild(this); | |
}); | |
}; | |
//Moves selction to back | |
d3.selection.prototype.moveToBack = function() { | |
return this.each(function() { | |
var firstChild = this.parentNode.firstChild; | |
if (firstChild) { | |
this.parentNode.insertBefore(this, firstChild); | |
} | |
}); | |
}; | |
data.forEach(function(d) { | |
pairRateWithId[d.id] = +d.rate; | |
pairNameWithId[d.id] = d.name; | |
pairStateWithId[d.id] = d.state; | |
}); | |
svg.append("g") | |
.attr("class", "county") | |
.selectAll("path") | |
.data(topojson.feature(us, us.objects.counties).features) | |
.enter().append("path") | |
.attr("d", path) | |
.style ( "fill" , function (d) { | |
return color (pairRateWithId[d.id]); | |
}) | |
.style("opacity", 0.8) | |
.on("mouseover", function(d) { | |
var sel = d3.select(this); | |
sel.moveToFront(); | |
d3.select(this).transition().duration(300).style({'opacity': 1, 'stroke': 'black', 'stroke-width': 1.5}); | |
div.transition().duration(300) | |
.style("opacity", 1) | |
div.text(pairNameWithId[d.id] + ", " + pairStateWithId[d.id] + ": " + pairRateWithId[d.id]) | |
.style("left", (d3.event.pageX) + "px") | |
.style("top", (d3.event.pageY -30) + "px"); | |
}) | |
.on("mouseout", function() { | |
var sel = d3.select(this); | |
sel.moveToBack(); | |
d3.select(this) | |
.transition().duration(300) | |
.style({'opacity': 0.8, 'stroke': 'white', 'stroke-width': 1}); | |
div.transition().duration(300) | |
.style("opacity", 0); | |
}) | |
}; | |
var legend = svg.selectAll("g.legend") | |
.data(ext_color_domain) | |
.enter().append("g") | |
.attr("class", "legend"); | |
var ls_w = 160, ls_h = 20; | |
legend.append("rect") | |
.attr("x", function(d, i){ return width - (i*ls_w) - ls_w;}) | |
.attr("y", 530) | |
.attr("width", ls_w) | |
.attr("height", ls_h) | |
.style("fill", function(d, i) { return color(d); }) | |
.style("opacity", 0.8); | |
legend.append("text") | |
.attr("x", function(d, i){ return width - (i*ls_w) - ls_w;}) | |
.attr("y", 570) | |
.text(function(d, i){ return legend_labels[i]; }); | |
</script> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
id | state | name | rate | |
---|---|---|---|---|
36103 | New York | Suffolk | 471 | |
36059 | New York | Nassau | 367 | |
9001 | Connecticut | Fairfield | 225 | |
36119 | New York | Westchester | 165 | |
24031 | Maryland | Montgomery | 152 | |
42029 | Pennsylvania | Chester | 152 | |
34027 | New Jersey | Morris | 141 | |
24003 | Maryland | Anne Arundel | 139 | |
42045 | Pennsylvania | Delaware | 133 | |
24005 | Maryland | Baltimore | 132 | |
25017 | Massachusetts | Middlesex | 118 | |
25021 | Massachusetts | Norfolk | 118 | |
42091 | Pennsylvania | Montgomery | 110 | |
36067 | New York | Onondaga | 107 | |
6073 | California | San Diego | 95 | |
34003 | New Jersey | Bergen | 94 | |
51107 | Virginia | Loudoun | 93 | |
34035 | New Jersey | Somerset | 89 | |
8005 | Colorado | Arapahoe | 88 | |
51059 | Virginia | Fairfax | 80 | |
34039 | New Jersey | Union | 71 | |
13121 | Georgia | Fulton | 66 | |
42017 | Pennsylvania | Bucks | 64 | |
36055 | New York | Monroe | 62 | |
48113 | Texas | Dallas | 62 | |
24510 | Maryland | Baltimore city | 57 | |
25023 | Massachusetts | Plymouth | 56 | |
34005 | New Jersey | Burlington | 56 | |
34025 | New Jersey | Monmouth | 56 | |
26125 | Michigan | Oakland | 52 | |
12099 | Florida | Palm Beach | 50 | |
39049 | Ohio | Franklin | 49 | |
6059 | California | Orange | 48 | |
34013 | New Jersey | Essex | 48 | |
25009 | Massachusetts | Essex | 46 | |
24027 | Maryland | Howard | 45 | |
36029 | New York | Erie | 43 | |
24013 | Maryland | Carroll | 40 | |
53033 | Washington | King | 40 | |
24025 | Maryland | Harford | 39 | |
36069 | New York | Ontario | 39 | |
37183 | North Carolina | Wake | 39 | |
8035 | Colorado | Douglas | 38 | |
9003 | Connecticut | Hartford | 38 | |
37119 | North Carolina | Mecklenburg | 38 | |
17031 | Illinois | Cook | 37 | |
34019 | New Jersey | Hunterdon | 35 | |
6013 | California | Contra Costa | 33 | |
6037 | California | Los Angeles | 33 | |
17043 | Illinois | DuPage | 32 | |
27053 | Minnesota | Hennepin | 31 | |
42071 | Pennsylvania | Lancaster | 31 | |
9009 | Connecticut | New Haven | 30 | |
33011 | New Hampshire | Hillsborough | 30 | |
42077 | Pennsylvania | Lehigh | 29 | |
24021 | Maryland | Frederick | 27 | |
39061 | Ohio | Hamilton | 27 | |
33015 | New Hampshire | Rockingham | 26 | |
34021 | New Jersey | Mercer | 26 | |
10003 | Delaware | New Castle | 25 | |
39035 | Ohio | Cuyahoga | 25 | |
51760 | Virginia | Richmond city | 24 | |
13067 | Georgia | Cobb | 24 | |
41005 | Oregon | Clackamas | 24 | |
48453 | Texas | Travis | 24 | |
13135 | Georgia | Gwinnett | 23 | |
6041 | California | Marin | 22 | |
6075 | California | San Francisco | 22 | |
36001 | New York | Albany | 22 | |
42003 | Pennsylvania | Allegheny | 22 | |
12095 | Florida | Orange | 21 | |
36061 | New York | New York | 20 | |
42101 | Pennsylvania | Philadelphia | 20 | |
25027 | Massachusetts | Worcester | 19 | |
27037 | Minnesota | Dakota | 19 | |
36093 | New York | Schenectady | 19 | |
12011 | Florida | Broward | 18 | |
17097 | Illinois | Lake | 18 | |
24035 | Maryland | Queen Anne's | 18 | |
4013 | Arizona | Maricopa | 17 | |
6081 | California | San Mateo | 17 | |
26081 | Michigan | Kent | 17 | |
26163 | Michigan | Wayne | 17 | |
48085 | Texas | Collin | 17 | |
34007 | New Jersey | Camden | 16 | |
36053 | New York | Madison | 16 | |
37179 | North Carolina | Union | 16 | |
49035 | Utah | Salt Lake | 16 | |
21111 | Kentucky | Jefferson | 15 | |
24009 | Maryland | Calvert | 15 | |
32003 | Nevada | Clark | 15 | |
34015 | New Jersey | Gloucester | 15 | |
36087 | New York | Rockland | 15 | |
36091 | New York | Saratoga | 15 | |
8041 | Colorado | El Paso | 14 | |
25013 | Massachusetts | Hampden | 14 | |
44007 | Rhode Island | Providence | 14 | |
47157 | Tennessee | Shelby | 14 | |
25001 | Massachusetts | Barnstable | 13 | |
34023 | New Jersey | Middlesex | 13 | |
34037 | New Jersey | Sussex | 13 | |
37081 | North Carolina | Guilford | 13 | |
37129 | North Carolina | New Hanover | 13 | |
51003 | Virginia | Albemarle | 13 | |
18057 | Indiana | Hamilton | 12 | |
34031 | New Jersey | Passaic | 12 | |
36007 | New York | Broome | 12 | |
36079 | New York | Putnam | 12 | |
44009 | Rhode Island | Washington | 12 | |
48201 | Texas | Harris | 12 | |
50007 | Vermont | Chittenden | 12 | |
6111 | California | Ventura | 11 | |
27163 | Minnesota | Washington | 11 | |
36109 | New York | Tompkins | 11 | |
42011 | Pennsylvania | Berks | 11 | |
48439 | Texas | Tarrant | 11 | |
51153 | Virginia | Prince William | 11 | |
9005 | Connecticut | Litchfield | 10 | |
12117 | Florida | Seminole | 10 | |
13117 | Georgia | Forsyth | 10 | |
23005 | Maine | Cumberland | 10 | |
34001 | New Jersey | Atlantic | 10 | |
34029 | New Jersey | Ocean | 10 | |
36071 | New York | Orange | 10 | |
36101 | New York | Steuben | 10 | |
39153 | Ohio | Summit | 10 | |
48339 | Texas | Montgomery | 10 | |
8059 | Colorado | Jefferson | 9 | |
36027 | New York | Dutchess | 9 | |
36123 | New York | Yates | 9 | |
42133 | Pennsylvania | York | 9 | |
1073 | Alabama | Jefferson | 8 | |
8013 | Colorado | Boulder | 8 | |
12001 | Florida | Alachua | 8 | |
12031 | Florida | Duval | 8 | |
18097 | Indiana | Marion | 8 | |
39095 | Ohio | Lucas | 8 | |
42095 | Pennsylvania | Northampton | 8 | |
51041 | Virginia | Chesterfield | 8 | |
51683 | Virginia | Manassas city | 7 | |
24041 | Maryland | Talbot | 7 | |
27123 | Minnesota | Ramsey | 7 | |
36045 | New York | Jefferson | 7 | |
37063 | North Carolina | Durham | 7 | |
39041 | Ohio | Delaware | 7 | |
39165 | Ohio | Warren | 7 | |
48121 | Texas | Denton | 7 | |
51179 | Virginia | Stafford | 7 | |
55133 | Wisconsin | Waukesha | 7 | |
51810 | Virginia | Virginia Beach city | 6 | |
6085 | California | Santa Clara | 6 | |
10005 | Delaware | Sussex | 6 | |
12057 | Florida | Hillsborough | 6 | |
12081 | Florida | Manatee | 6 | |
20091 | Kansas | Johnson | 6 | |
24043 | Maryland | Washington | 6 | |
25025 | Massachusetts | Suffolk | 6 | |
26065 | Michigan | Ingham | 6 | |
26161 | Michigan | Washtenaw | 6 | |
27019 | Minnesota | Carver | 6 | |
27139 | Minnesota | Scott | 6 | |
36011 | New York | Cayuga | 6 | |
36065 | New York | Oneida | 6 | |
37067 | North Carolina | Forsyth | 6 | |
37097 | North Carolina | Iredell | 6 | |
37135 | North Carolina | Orange | 6 | |
42019 | Pennsylvania | Butler | 6 | |
44003 | Rhode Island | Kent | 6 | |
49043 | Utah | Summit | 6 | |
51061 | Virginia | Fauquier | 6 | |
9013 | Connecticut | Tolland | 5 | |
10001 | Delaware | Kent | 5 | |
12021 | Florida | Collier | 5 | |
13057 | Georgia | Cherokee | 5 | |
13113 | Georgia | Fayette | 5 | |
26093 | Michigan | Livingston | 5 | |
33009 | New Hampshire | Grafton | 5 | |
33013 | New Hampshire | Merrimack | 5 | |
36005 | New York | Bronx | 5 | |
39025 | Ohio | Clermont | 5 | |
39151 | Ohio | Stark | 5 | |
45019 | South Carolina | Charleston | 5 | |
6001 | California | Alameda | 4 | |
6061 | California | Placer | 4 | |
6065 | California | Riverside | 4 | |
8069 | Colorado | Larimer | 4 | |
9007 | Connecticut | Middlesex | 4 | |
9011 | Connecticut | New London | 4 | |
12061 | Florida | Indian River | 4 | |
12073 | Florida | Leon | 4 | |
12115 | Florida | Sarasota | 4 | |
17089 | Illinois | Kane | 4 | |
24017 | Maryland | Charles | 4 | |
25005 | Massachusetts | Bristol | 4 | |
26099 | Michigan | Macomb | 4 | |
33003 | New Hampshire | Carroll | 4 | |
44001 | Rhode Island | Bristol | 4 | |
47065 | Tennessee | Hamilton | 4 | |
47187 | Tennessee | Williamson | 4 | |
53035 | Washington | Kitsap | 4 | |
55025 | Wisconsin | Dane | 4 | |
6017 | California | El Dorado | 3 | |
6097 | California | Sonoma | 3 | |
12086 | Florida | Miami-Dade | 3 | |
25015 | Massachusetts | Hampshire | 3 | |
26055 | Michigan | Grand Traverse | 3 | |
26139 | Michigan | Ottawa | 3 | |
27003 | Minnesota | Anoka | 3 | |
32031 | Nevada | Washoe | 3 | |
34009 | New Jersey | Cape May | 3 | |
34041 | New Jersey | Warren | 3 | |
36009 | New York | Cattaraugus | 3 | |
36013 | New York | Chautauqua | 3 | |
36033 | New York | Franklin | 3 | |
36063 | New York | Niagara | 3 | |
39045 | Ohio | Fairfield | 3 | |
42041 | Pennsylvania | Cumberland | 3 | |
42075 | Pennsylvania | Lebanon | 3 | |
45045 | South Carolina | Greenville | 3 | |
47037 | Tennessee | Davidson | 3 | |
48209 | Texas | Hays | 3 | |
51085 | Virginia | Hanover | 3 | |
53011 | Washington | Clark | 3 | |
53053 | Washington | Pierce | 3 | |
51630 | Virginia | Fredericksburg city | 2 | |
4019 | Arizona | Pima | 2 | |
6053 | California | Monterey | 2 | |
6055 | California | Napa | 2 | |
6113 | California | Yolo | 2 | |
12069 | Florida | Lake | 2 | |
13051 | Georgia | Chatham | 2 | |
13089 | Georgia | DeKalb | 2 | |
17197 | Illinois | Will | 2 | |
18011 | Indiana | Boone | 2 | |
18099 | Indiana | Marshall | 2 | |
23031 | Maine | York | 2 | |
24029 | Maryland | Kent | 2 | |
25019 | Massachusetts | Nantucket | 2 | |
26025 | Michigan | Calhoun | 2 | |
26049 | Michigan | Genesee | 2 | |
26077 | Michigan | Kalamazoo | 2 | |
27145 | Minnesota | Stearns | 2 | |
29095 | Missouri | Jackson | 2 | |
33017 | New Hampshire | Strafford | 2 | |
36015 | New York | Chemung | 2 | |
36023 | New York | Cortland | 2 | |
36047 | New York | Kings | 2 | |
36073 | New York | Orleans | 2 | |
36075 | New York | Oswego | 2 | |
36083 | New York | Rensselaer | 2 | |
36111 | New York | Ulster | 2 | |
36113 | New York | Warren | 2 | |
36117 | New York | Wayne | 2 | |
39017 | Ohio | Butler | 2 | |
39037 | Ohio | Darke | 2 | |
39085 | Ohio | Lake | 2 | |
39097 | Ohio | Madison | 2 | |
39103 | Ohio | Medina | 2 | |
40109 | Oklahoma | Oklahoma | 2 | |
41017 | Oregon | Deschutes | 2 | |
41067 | Oregon | Washington | 2 | |
42027 | Pennsylvania | Centre | 2 | |
42043 | Pennsylvania | Dauphin | 2 | |
45015 | South Carolina | Berkeley | 2 | |
45057 | South Carolina | Lancaster | 2 | |
45091 | South Carolina | York | 2 | |
48029 | Texas | Bexar | 2 | |
48397 | Texas | Rockwall | 2 | |
51087 | Virginia | Henrico | 2 | |
51550 | Virginia | Chesapeake city | 1 | |
51680 | Virginia | Lynchburg city | 1 | |
51710 | Virginia | Norfolk city | 1 | |
51770 | Virginia | Roanoke city | 1 | |
6067 | California | Sacramento | 1 | |
6077 | California | San Joaquin | 1 | |
8014 | Colorado | Broomfield | 1 | |
8037 | Colorado | Eagle | 1 | |
8097 | Colorado | Pitkin | 1 | |
8107 | Colorado | Routt | 1 | |
12009 | Florida | Brevard | 1 | |
12019 | Florida | Clay | 1 | |
12035 | Florida | Flagler | 1 | |
12085 | Florida | Martin | 1 | |
12121 | Florida | Suwannee | 1 | |
13015 | Georgia | Bartow | 1 | |
13021 | Georgia | Bibb | 1 | |
13029 | Georgia | Bryan | 1 | |
13077 | Georgia | Coweta | 1 | |
13157 | Georgia | Jackson | 1 | |
16001 | Idaho | Ada | 1 | |
18021 | Indiana | Clay | 1 | |
18059 | Indiana | Hancock | 1 | |
18089 | Indiana | Lake | 1 | |
18163 | Indiana | Vanderburgh | 1 | |
21067 | Kentucky | Fayette | 1 | |
21117 | Kentucky | Kenton | 1 | |
24011 | Maryland | Caroline | 1 | |
24047 | Maryland | Worcester | 1 | |
25003 | Massachusetts | Berkshire | 1 | |
25007 | Massachusetts | Dukes | 1 | |
25011 | Massachusetts | Franklin | 1 | |
26037 | Michigan | Clinton | 1 | |
26091 | Michigan | Lenawee | 1 | |
26115 | Michigan | Monroe | 1 | |
27109 | Minnesota | Olmsted | 1 | |
28067 | Mississippi | Jones | 1 | |
31055 | Nebraska | Douglas | 1 | |
33001 | New Hampshire | Belknap | 1 | |
33005 | New Hampshire | Cheshire | 1 | |
36037 | New York | Genesee | 1 | |
36051 | New York | Livingston | 1 | |
36077 | New York | Otsego | 1 | |
36085 | New York | Richmond | 1 | |
36107 | New York | Tioga | 1 | |
36115 | New York | Washington | 1 | |
37025 | North Carolina | Cabarrus | 1 | |
38017 | North Dakota | Cass | 1 | |
39125 | Ohio | Paulding | 1 | |
42049 | Pennsylvania | Erie | 1 | |
42067 | Pennsylvania | Juniata | 1 | |
42085 | Pennsylvania | Mercer | 1 | |
42089 | Pennsylvania | Monroe | 1 | |
42103 | Pennsylvania | Pike | 1 | |
42119 | Pennsylvania | Union | 1 | |
42125 | Pennsylvania | Washington | 1 | |
42129 | Pennsylvania | Westmoreland | 1 | |
44005 | Rhode Island | Newport | 1 | |
45013 | South Carolina | Beaufort | 1 | |
47019 | Tennessee | Carter | 1 | |
47093 | Tennessee | Knox | 1 | |
47141 | Tennessee | Putnam | 1 | |
47165 | Tennessee | Sumner | 1 | |
48171 | Texas | Gillespie | 1 | |
48367 | Texas | Parker | 1 | |
48491 | Texas | Williamson | 1 | |
49005 | Utah | Cache | 1 | |
49011 | Utah | Davis | 1 | |
49049 | Utah | Utah | 1 | |
50001 | Vermont | Addison | 1 | |
50003 | Vermont | Bennington | 1 | |
50013 | Vermont | Grand Isle | 1 | |
50015 | Vermont | Lamoille | 1 | |
51067 | Virginia | Franklin | 1 | |
51079 | Virginia | Greene | 1 | |
51095 | Virginia | James City | 1 | |
51115 | Virginia | Mathews | 1 | |
51145 | Virginia | Powhatan | 1 | |
51161 | Virginia | Roanoke | 1 | |
51177 | Virginia | Spotsylvania | 1 | |
51199 | Virginia | York | 1 | |
53061 | Washington | Snohomish | 1 | |
55079 | Wisconsin | Milwaukee | 1 | |
55131 | Wisconsin | Washington | 1 | |
1001 | Alabama | Autauga | 0 | |
1003 | Alabama | Baldwin | 0 | |
1005 | Alabama | Barbour | 0 | |
1007 | Alabama | Bibb | 0 | |
1009 | Alabama | Blount | 0 | |
1011 | Alabama | Bullock | 0 | |
1013 | Alabama | Butler | 0 | |
1015 | Alabama | Calhoun | 0 | |
1017 | Alabama | Chambers | 0 | |
1019 | Alabama | Cherokee | 0 | |
1021 | Alabama | Chilton | 0 | |
1023 | Alabama | Choctaw | 0 | |
1025 | Alabama | Clarke | 0 | |
1027 | Alabama | Clay | 0 | |
1029 | Alabama | Cleburne | 0 | |
1031 | Alabama | Coffee | 0 | |
1033 | Alabama | Colbert | 0 | |
1035 | Alabama | Conecuh | 0 | |
1037 | Alabama | Coosa | 0 | |
1039 | Alabama | Covington | 0 | |
1041 | Alabama | Crenshaw | 0 | |
1043 | Alabama | Cullman | 0 | |
1045 | Alabama | Dale | 0 | |
1047 | Alabama | Dallas | 0 | |
1049 | Alabama | DeKalb | 0 | |
1051 | Alabama | Elmore | 0 | |
1053 | Alabama | Escambia | 0 | |
1055 | Alabama | Etowah | 0 | |
1057 | Alabama | Fayette | 0 | |
1059 | Alabama | Franklin | 0 | |
1061 | Alabama | Geneva | 0 | |
1063 | Alabama | Greene | 0 | |
1065 | Alabama | Hale | 0 | |
1067 | Alabama | Henry | 0 | |
1069 | Alabama | Houston | 0 | |
1071 | Alabama | Jackson | 0 | |
1075 | Alabama | Lamar | 0 | |
1077 | Alabama | Lauderdale | 0 | |
1079 | Alabama | Lawrence | 0 | |
1081 | Alabama | Lee | 0 | |
1083 | Alabama | Limestone | 0 | |
1085 | Alabama | Lowndes | 0 | |
1087 | Alabama | Macon | 0 | |
1089 | Alabama | Madison | 0 | |
1091 | Alabama | Marengo | 0 | |
1093 | Alabama | Marion | 0 | |
1095 | Alabama | Marshall | 0 | |
1097 | Alabama | Mobile | 0 | |
1099 | Alabama | Monroe | 0 | |
1101 | Alabama | Montgomery | 0 | |
1103 | Alabama | Morgan | 0 | |
1105 | Alabama | Perry | 0 | |
1107 | Alabama | Pickens | 0 | |
1109 | Alabama | Pike | 0 | |
1111 | Alabama | Randolph | 0 | |
1113 | Alabama | Russell | 0 | |
1117 | Alabama | Shelby | 0 | |
1115 | Alabama | St. Clair | 0 | |
1119 | Alabama | Sumter | 0 | |
1121 | Alabama | Talladega | 0 | |
1123 | Alabama | Tallapoosa | 0 | |
1125 | Alabama | Tuscaloosa | 0 | |
1127 | Alabama | Walker | 0 | |
1129 | Alabama | Washington | 0 | |
1131 | Alabama | Wilcox | 0 | |
1133 | Alabama | Winston | 0 | |
2013 | Alaska | Aleutians East Borough | 0 | |
2016 | Alaska | Aleutians West Census Area | 0 | |
2020 | Alaska | Anchorage Municipality | 0 | |
2050 | Alaska | Bethel Census Area | 0 | |
2060 | Alaska | Bristol Bay Borough | 0 | |
2068 | Alaska | Denali Borough | 0 | |
2070 | Alaska | Dillingham Census Area | 0 | |
2090 | Alaska | Fairbanks North Star Borough | 0 | |
2100 | Alaska | Haines Borough | 0 | |
2105 | Alaska | Hoonah-Angoon Census Area | 0 | |
2110 | Alaska | Juneau City and Borough | 0 | |
2122 | Alaska | Kenai Peninsula Borough | 0 | |
2130 | Alaska | Ketchikan Gateway Borough | 0 | |
2150 | Alaska | Kodiak Island Borough | 0 | |
2164 | Alaska | Lake and Peninsula Borough | 0 | |
2170 | Alaska | Matanuska-Susitna Borough | 0 | |
2180 | Alaska | Nome Census Area | 0 | |
2185 | Alaska | North Slope Borough | 0 | |
2188 | Alaska | Northwest Arctic Borough | 0 | |
2195 | Alaska | Petersburg Census Area | 0 | |
2198 | Alaska | Prince of Wales-Hyder Census Area | 0 | |
2220 | Alaska | Sitka City and Borough | 0 | |
2230 | Alaska | Skagway Municipality | 0 | |
2240 | Alaska | Southeast Fairbanks Census Area | 0 | |
2261 | Alaska | Valdez-Cordova Census Area | 0 | |
2270 | Alaska | Wade Hampton Census Area | 0 | |
2275 | Alaska | Wrangell City and Borough | 0 | |
2282 | Alaska | Yakutat City and Borough | 0 | |
2290 | Alaska | Yukon-Koyukuk Census Area | 0 | |
4001 | Arizona | Apache | 0 | |
4003 | Arizona | Cochise | 0 | |
4005 | Arizona | Coconino | 0 | |
4007 | Arizona | Gila | 0 | |
4009 | Arizona | Graham | 0 | |
4011 | Arizona | Greenlee | 0 | |
4012 | Arizona | La Paz | 0 | |
4015 | Arizona | Mohave | 0 | |
4017 | Arizona | Navajo | 0 | |
4021 | Arizona | Pinal | 0 | |
4023 | Arizona | Santa Cruz | 0 | |
4025 | Arizona | Yavapai | 0 | |
4027 | Arizona | Yuma | 0 | |
5001 | Arkansas | Arkansas | 0 | |
5003 | Arkansas | Ashley | 0 | |
5005 | Arkansas | Baxter | 0 | |
5007 | Arkansas | Benton | 0 | |
5009 | Arkansas | Boone | 0 | |
5011 | Arkansas | Bradley | 0 | |
5013 | Arkansas | Calhoun | 0 | |
5015 | Arkansas | Carroll | 0 | |
5017 | Arkansas | Chicot | 0 | |
5019 | Arkansas | Clark | 0 | |
5021 | Arkansas | Clay | 0 | |
5023 | Arkansas | Cleburne | 0 | |
5025 | Arkansas | Cleveland | 0 | |
5027 | Arkansas | Columbia | 0 | |
5029 | Arkansas | Conway | 0 | |
5031 | Arkansas | Craighead | 0 | |
5033 | Arkansas | Crawford | 0 | |
5035 | Arkansas | Crittenden | 0 | |
5037 | Arkansas | Cross | 0 | |
5039 | Arkansas | Dallas | 0 | |
5041 | Arkansas | Desha | 0 | |
5043 | Arkansas | Drew | 0 | |
5045 | Arkansas | Faulkner | 0 | |
5047 | Arkansas | Franklin | 0 | |
5049 | Arkansas | Fulton | 0 | |
5051 | Arkansas | Garland | 0 | |
5053 | Arkansas | Grant | 0 | |
5055 | Arkansas | Greene | 0 | |
5057 | Arkansas | Hempstead | 0 | |
5059 | Arkansas | Hot Spring | 0 | |
5061 | Arkansas | Howard | 0 | |
5063 | Arkansas | Independence | 0 | |
5065 | Arkansas | Izard | 0 | |
5067 | Arkansas | Jackson | 0 | |
5069 | Arkansas | Jefferson | 0 | |
5071 | Arkansas | Johnson | 0 | |
5073 | Arkansas | Lafayette | 0 | |
5075 | Arkansas | Lawrence | 0 | |
5077 | Arkansas | Lee | 0 | |
5079 | Arkansas | Lincoln | 0 | |
5081 | Arkansas | Little River | 0 | |
5083 | Arkansas | Logan | 0 | |
5085 | Arkansas | Lonoke | 0 | |
5087 | Arkansas | Madison | 0 | |
5089 | Arkansas | Marion | 0 | |
5091 | Arkansas | Miller | 0 | |
5093 | Arkansas | Mississippi | 0 | |
5095 | Arkansas | Monroe | 0 | |
5097 | Arkansas | Montgomery | 0 | |
5099 | Arkansas | Nevada | 0 | |
5101 | Arkansas | Newton | 0 | |
5103 | Arkansas | Ouachita | 0 | |
5105 | Arkansas | Perry | 0 | |
5107 | Arkansas | Phillips | 0 | |
5109 | Arkansas | Pike | 0 | |
5111 | Arkansas | Poinsett | 0 | |
5113 | Arkansas | Polk | 0 | |
5115 | Arkansas | Pope | 0 | |
5117 | Arkansas | Prairie | 0 | |
5119 | Arkansas | Pulaski | 0 | |
5121 | Arkansas | Randolph | 0 | |
5125 | Arkansas | Saline | 0 | |
5127 | Arkansas | Scott | 0 | |
5129 | Arkansas | Searcy | 0 | |
5131 | Arkansas | Sebastian | 0 | |
5133 | Arkansas | Sevier | 0 | |
5135 | Arkansas | Sharp | 0 | |
5123 | Arkansas | St. Francis | 0 | |
5137 | Arkansas | Stone | 0 | |
5139 | Arkansas | Union | 0 | |
5141 | Arkansas | Van Buren | 0 | |
5143 | Arkansas | Washington | 0 | |
5145 | Arkansas | White | 0 | |
5147 | Arkansas | Woodruff | 0 | |
5149 | Arkansas | Yell | 0 | |
6003 | California | Alpine | 0 | |
6005 | California | Amador | 0 | |
6007 | California | Butte | 0 | |
6009 | California | Calaveras | 0 | |
6011 | California | Colusa | 0 | |
6015 | California | Del Norte | 0 | |
6019 | California | Fresno | 0 | |
6021 | California | Glenn | 0 | |
6023 | California | Humboldt | 0 | |
6025 | California | Imperial | 0 | |
6027 | California | Inyo | 0 | |
6029 | California | Kern | 0 | |
6031 | California | Kings | 0 | |
6033 | California | Lake | 0 | |
6035 | California | Lassen | 0 | |
6039 | California | Madera | 0 | |
6043 | California | Mariposa | 0 | |
6045 | California | Mendocino | 0 | |
6047 | California | Merced | 0 | |
6049 | California | Modoc | 0 | |
6051 | California | Mono | 0 | |
6057 | California | Nevada | 0 | |
6063 | California | Plumas | 0 | |
6069 | California | San Benito | 0 | |
6071 | California | San Bernardino | 0 | |
6079 | California | San Luis Obispo | 0 | |
6083 | California | Santa Barbara | 0 | |
6087 | California | Santa Cruz | 0 | |
6089 | California | Shasta | 0 | |
6091 | California | Sierra | 0 | |
6093 | California | Siskiyou | 0 | |
6095 | California | Solano | 0 | |
6099 | California | Stanislaus | 0 | |
6101 | California | Sutter | 0 | |
6103 | California | Tehama | 0 | |
6105 | California | Trinity | 0 | |
6107 | California | Tulare | 0 | |
6109 | California | Tuolumne | 0 | |
6115 | California | Yuba | 0 | |
8001 | Colorado | Adams | 0 | |
8003 | Colorado | Alamosa | 0 | |
8007 | Colorado | Archuleta | 0 | |
8009 | Colorado | Baca | 0 | |
8011 | Colorado | Bent | 0 | |
8015 | Colorado | Chaffee | 0 | |
8017 | Colorado | Cheyenne | 0 | |
8019 | Colorado | Clear Creek | 0 | |
8021 | Colorado | Conejos | 0 | |
8023 | Colorado | Costilla | 0 | |
8025 | Colorado | Crowley | 0 | |
8027 | Colorado | Custer | 0 | |
8029 | Colorado | Delta | 0 | |
8031 | Colorado | Denver | 0 | |
8033 | Colorado | Dolores | 0 | |
8039 | Colorado | Elbert | 0 | |
8043 | Colorado | Fremont | 0 | |
8045 | Colorado | Garfield | 0 | |
8047 | Colorado | Gilpin | 0 | |
8049 | Colorado | Grand | 0 | |
8051 | Colorado | Gunnison | 0 | |
8053 | Colorado | Hinsdale | 0 | |
8055 | Colorado | Huerfano | 0 | |
8057 | Colorado | Jackson | 0 | |
8061 | Colorado | Kiowa | 0 | |
8063 | Colorado | Kit Carson | 0 | |
8067 | Colorado | La Plata | 0 | |
8065 | Colorado | Lake | 0 | |
8071 | Colorado | Las Animas | 0 | |
8073 | Colorado | Lincoln | 0 | |
8075 | Colorado | Logan | 0 | |
8077 | Colorado | Mesa | 0 | |
8079 | Colorado | Mineral | 0 | |
8081 | Colorado | Moffat | 0 | |
8083 | Colorado | Montezuma | 0 | |
8085 | Colorado | Montrose | 0 | |
8087 | Colorado | Morgan | 0 | |
8089 | Colorado | Otero | 0 | |
8091 | Colorado | Ouray | 0 | |
8093 | Colorado | Park | 0 | |
8095 | Colorado | Phillips | 0 | |
8099 | Colorado | Prowers | 0 | |
8101 | Colorado | Pueblo | 0 | |
8103 | Colorado | Rio Blanco | 0 | |
8105 | Colorado | Rio Grande | 0 | |
8109 | Colorado | Saguache | 0 | |
8111 | Colorado | San Juan | 0 | |
8113 | Colorado | San Miguel | 0 | |
8115 | Colorado | Sedgwick | 0 | |
8117 | Colorado | Summit | 0 | |
8119 | Colorado | Teller | 0 | |
8121 | Colorado | Washington | 0 | |
8123 | Colorado | Weld | 0 | |
8125 | Colorado | Yuma | 0 | |
9015 | Connecticut | Windham | 0 | |
12003 | Florida | Baker | 0 | |
12005 | Florida | Bay | 0 | |
12007 | Florida | Bradford | 0 | |
12013 | Florida | Calhoun | 0 | |
12015 | Florida | Charlotte | 0 | |
12017 | Florida | Citrus | 0 | |
12023 | Florida | Columbia | 0 | |
12027 | Florida | DeSoto | 0 | |
12029 | Florida | Dixie | 0 | |
12033 | Florida | Escambia | 0 | |
12037 | Florida | Franklin | 0 | |
12039 | Florida | Gadsden | 0 | |
12041 | Florida | Gilchrist | 0 | |
12043 | Florida | Glades | 0 | |
12045 | Florida | Gulf | 0 | |
12047 | Florida | Hamilton | 0 | |
12049 | Florida | Hardee | 0 | |
12051 | Florida | Hendry | 0 | |
12053 | Florida | Hernando | 0 | |
12055 | Florida | Highlands | 0 | |
12059 | Florida | Holmes | 0 | |
12063 | Florida | Jackson | 0 | |
12065 | Florida | Jefferson | 0 | |
12067 | Florida | Lafayette | 0 | |
12071 | Florida | Lee | 0 | |
12075 | Florida | Levy | 0 | |
12077 | Florida | Liberty | 0 | |
12079 | Florida | Madison | 0 | |
12083 | Florida | Marion | 0 | |
12087 | Florida | Monroe | 0 | |
12089 | Florida | Nassau | 0 | |
12091 | Florida | Okaloosa | 0 | |
12093 | Florida | Okeechobee | 0 | |
12097 | Florida | Osceola | 0 | |
12101 | Florida | Pasco | 0 | |
12103 | Florida | Pinellas | 0 | |
12105 | Florida | Polk | 0 | |
12107 | Florida | Putnam | 0 | |
12113 | Florida | Santa Rosa | 0 | |
12109 | Florida | St. Johns | 15 | |
12111 | Florida | St. Lucie | 0 | |
12119 | Florida | Sumter | 0 | |
12123 | Florida | Taylor | 0 | |
12125 | Florida | Union | 0 | |
12127 | Florida | Volusia | 0 | |
12129 | Florida | Wakulla | 0 | |
12131 | Florida | Walton | 0 | |
12133 | Florida | Washington | 0 | |
13001 | Georgia | Appling | 0 | |
13003 | Georgia | Atkinson | 0 | |
13005 | Georgia | Bacon | 0 | |
13007 | Georgia | Baker | 0 | |
13009 | Georgia | Baldwin | 0 | |
13011 | Georgia | Banks | 0 | |
13013 | Georgia | Barrow | 0 | |
13017 | Georgia | Ben Hill | 0 | |
13019 | Georgia | Berrien | 0 | |
13023 | Georgia | Bleckley | 0 | |
13025 | Georgia | Brantley | 0 | |
13027 | Georgia | Brooks | 0 | |
13031 | Georgia | Bulloch | 0 | |
13033 | Georgia | Burke | 0 | |
13035 | Georgia | Butts | 0 | |
13037 | Georgia | Calhoun | 0 | |
13039 | Georgia | Camden | 0 | |
13043 | Georgia | Candler | 0 | |
13045 | Georgia | Carroll | 0 | |
13047 | Georgia | Catoosa | 0 | |
13049 | Georgia | Charlton | 0 | |
13053 | Georgia | Chattahoochee | 0 | |
13055 | Georgia | Chattooga | 0 | |
13059 | Georgia | Clarke | 0 | |
13061 | Georgia | Clay | 0 | |
13063 | Georgia | Clayton | 0 | |
13065 | Georgia | Clinch | 0 | |
13069 | Georgia | Coffee | 0 | |
13071 | Georgia | Colquitt | 0 | |
13073 | Georgia | Columbia | 0 | |
13075 | Georgia | Cook | 0 | |
13079 | Georgia | Crawford | 0 | |
13081 | Georgia | Crisp | 0 | |
13083 | Georgia | Dade | 0 | |
13085 | Georgia | Dawson | 0 | |
13087 | Georgia | Decatur | 0 | |
13091 | Georgia | Dodge | 0 | |
13093 | Georgia | Dooly | 0 | |
13095 | Georgia | Dougherty | 0 | |
13097 | Georgia | Douglas | 0 | |
13099 | Georgia | Early | 0 | |
13101 | Georgia | Echols | 0 | |
13103 | Georgia | Effingham | 0 | |
13105 | Georgia | Elbert | 0 | |
13107 | Georgia | Emanuel | 0 | |
13109 | Georgia | Evans | 0 | |
13111 | Georgia | Fannin | 0 | |
13115 | Georgia | Floyd | 0 | |
13119 | Georgia | Franklin | 0 | |
13123 | Georgia | Gilmer | 0 | |
13125 | Georgia | Glascock | 0 | |
13127 | Georgia | Glynn | 0 | |
13129 | Georgia | Gordon | 0 | |
13131 | Georgia | Grady | 0 | |
13133 | Georgia | Greene | 0 | |
13137 | Georgia | Habersham | 0 | |
13139 | Georgia | Hall | 0 | |
13141 | Georgia | Hancock | 0 | |
13143 | Georgia | Haralson | 0 | |
13145 | Georgia | Harris | 0 | |
13147 | Georgia | Hart | 0 | |
13149 | Georgia | Heard | 0 | |
13151 | Georgia | Henry | 0 | |
13153 | Georgia | Houston | 0 | |
13155 | Georgia | Irwin | 0 | |
13159 | Georgia | Jasper | 0 | |
13161 | Georgia | Jeff Davis | 0 | |
13163 | Georgia | Jefferson | 0 | |
13165 | Georgia | Jenkins | 0 | |
13167 | Georgia | Johnson | 0 | |
13169 | Georgia | Jones | 0 | |
13171 | Georgia | Lamar | 0 | |
13173 | Georgia | Lanier | 0 | |
13175 | Georgia | Laurens | 0 | |
13177 | Georgia | Lee | 0 | |
13179 | Georgia | Liberty | 0 | |
13181 | Georgia | Lincoln | 0 | |
13183 | Georgia | Long | 0 | |
13185 | Georgia | Lowndes | 0 | |
13187 | Georgia | Lumpkin | 0 | |
13193 | Georgia | Macon | 0 | |
13195 | Georgia | Madison | 0 | |
13197 | Georgia | Marion | 0 | |
13189 | Georgia | McDuffie | 0 | |
13191 | Georgia | McIntosh | 0 | |
13199 | Georgia | Meriwether | 0 | |
13201 | Georgia | Miller | 0 | |
13205 | Georgia | Mitchell | 0 | |
13207 | Georgia | Monroe | 0 | |
13209 | Georgia | Montgomery | 0 | |
13211 | Georgia | Morgan | 0 | |
13213 | Georgia | Murray | 0 | |
13215 | Georgia | Muscogee | 0 | |
13217 | Georgia | Newton | 0 | |
13219 | Georgia | Oconee | 0 | |
13221 | Georgia | Oglethorpe | 0 | |
13223 | Georgia | Paulding | 0 | |
13225 | Georgia | Peach | 0 | |
13227 | Georgia | Pickens | 0 | |
13229 | Georgia | Pierce | 0 | |
13231 | Georgia | Pike | 0 | |
13233 | Georgia | Polk | 0 | |
13235 | Georgia | Pulaski | 0 | |
13237 | Georgia | Putnam | 0 | |
13239 | Georgia | Quitman | 0 | |
13241 | Georgia | Rabun | 0 | |
13243 | Georgia | Randolph | 0 | |
13245 | Georgia | Richmond | 0 | |
13247 | Georgia | Rockdale | 0 | |
13249 | Georgia | Schley | 0 | |
13251 | Georgia | Screven | 0 | |
13253 | Georgia | Seminole | 0 | |
13255 | Georgia | Spalding | 0 | |
13257 | Georgia | Stephens | 0 | |
13259 | Georgia | Stewart | 0 | |
13261 | Georgia | Sumter | 0 | |
13263 | Georgia | Talbot | 0 | |
13265 | Georgia | Taliaferro | 0 | |
13267 | Georgia | Tattnall | 0 | |
13269 | Georgia | Taylor | 0 | |
13271 | Georgia | Telfair | 0 | |
13273 | Georgia | Terrell | 0 | |
13275 | Georgia | Thomas | 0 | |
13277 | Georgia | Tift | 0 | |
13279 | Georgia | Toombs | 0 | |
13281 | Georgia | Towns | 0 | |
13283 | Georgia | Treutlen | 0 | |
13285 | Georgia | Troup | 0 | |
13287 | Georgia | Turner | 0 | |
13289 | Georgia | Twiggs | 0 | |
13291 | Georgia | Union | 0 | |
13293 | Georgia | Upson | 0 | |
13295 | Georgia | Walker | 0 | |
13297 | Georgia | Walton | 0 | |
13299 | Georgia | Ware | 0 | |
13301 | Georgia | Warren | 0 | |
13303 | Georgia | Washington | 0 | |
13305 | Georgia | Wayne | 0 | |
13307 | Georgia | Webster | 0 | |
13309 | Georgia | Wheeler | 0 | |
13311 | Georgia | White | 0 | |
13313 | Georgia | Whitfield | 0 | |
13315 | Georgia | Wilcox | 0 | |
13317 | Georgia | Wilkes | 0 | |
13319 | Georgia | Wilkinson | 0 | |
13321 | Georgia | Worth | 0 | |
15001 | Hawaii | Hawaii | 0 | |
15003 | Hawaii | Honolulu | 0 | |
15005 | Hawaii | Kalawao | 0 | |
15007 | Hawaii | Kauai | 0 | |
15009 | Hawaii | Maui | 0 | |
16003 | Idaho | Adams | 0 | |
16005 | Idaho | Bannock | 0 | |
16007 | Idaho | Bear Lake | 0 | |
16009 | Idaho | Benewah | 0 | |
16011 | Idaho | Bingham | 0 | |
16013 | Idaho | Blaine | 0 | |
16015 | Idaho | Boise | 0 | |
16017 | Idaho | Bonner | 0 | |
16019 | Idaho | Bonneville | 0 | |
16021 | Idaho | Boundary | 0 | |
16023 | Idaho | Butte | 0 | |
16025 | Idaho | Camas | 0 | |
16027 | Idaho | Canyon | 0 | |
16029 | Idaho | Caribou | 0 | |
16031 | Idaho | Cassia | 0 | |
16033 | Idaho | Clark | 0 | |
16035 | Idaho | Clearwater | 0 | |
16037 | Idaho | Custer | 0 | |
16039 | Idaho | Elmore | 0 | |
16041 | Idaho | Franklin | 0 | |
16043 | Idaho | Fremont | 0 | |
16045 | Idaho | Gem | 0 | |
16047 | Idaho | Gooding | 0 | |
16049 | Idaho | Idaho | 0 | |
16051 | Idaho | Jefferson | 0 | |
16053 | Idaho | Jerome | 0 | |
16055 | Idaho | Kootenai | 0 | |
16057 | Idaho | Latah | 0 | |
16059 | Idaho | Lemhi | 0 | |
16061 | Idaho | Lewis | 0 | |
16063 | Idaho | Lincoln | 0 | |
16065 | Idaho | Madison | 0 | |
16067 | Idaho | Minidoka | 0 | |
16069 | Idaho | Nez Perce | 0 | |
16071 | Idaho | Oneida | 0 | |
16073 | Idaho | Owyhee | 0 | |
16075 | Idaho | Payette | 0 | |
16077 | Idaho | Power | 0 | |
16079 | Idaho | Shoshone | 0 | |
16081 | Idaho | Teton | 0 | |
16083 | Idaho | Twin Falls | 0 | |
16085 | Idaho | Valley | 0 | |
16087 | Idaho | Washington | 0 | |
17001 | Illinois | Adams | 0 | |
17003 | Illinois | Alexander | 0 | |
17005 | Illinois | Bond | 0 | |
17007 | Illinois | Boone | 0 | |
17009 | Illinois | Brown | 0 | |
17011 | Illinois | Bureau | 0 | |
17013 | Illinois | Calhoun | 0 | |
17015 | Illinois | Carroll | 0 | |
17017 | Illinois | Cass | 0 | |
17019 | Illinois | Champaign | 0 | |
17021 | Illinois | Christian | 0 | |
17023 | Illinois | Clark | 0 | |
17025 | Illinois | Clay | 0 | |
17027 | Illinois | Clinton | 0 | |
17029 | Illinois | Coles | 0 | |
17033 | Illinois | Crawford | 0 | |
17035 | Illinois | Cumberland | 0 | |
17039 | Illinois | De Witt | 0 | |
17037 | Illinois | DeKalb | 0 | |
17041 | Illinois | Douglas | 0 | |
17045 | Illinois | Edgar | 0 | |
17047 | Illinois | Edwards | 0 | |
17049 | Illinois | Effingham | 0 | |
17051 | Illinois | Fayette | 0 | |
17053 | Illinois | Ford | 0 | |
17055 | Illinois | Franklin | 0 | |
17057 | Illinois | Fulton | 0 | |
17059 | Illinois | Gallatin | 0 | |
17061 | Illinois | Greene | 0 | |
17063 | Illinois | Grundy | 0 | |
17065 | Illinois | Hamilton | 0 | |
17067 | Illinois | Hancock | 0 | |
17069 | Illinois | Hardin | 0 | |
17071 | Illinois | Henderson | 0 | |
17073 | Illinois | Henry | 0 | |
17075 | Illinois | Iroquois | 0 | |
17077 | Illinois | Jackson | 0 | |
17079 | Illinois | Jasper | 0 | |
17081 | Illinois | Jefferson | 0 | |
17083 | Illinois | Jersey | 0 | |
17085 | Illinois | Jo Daviess | 0 | |
17087 | Illinois | Johnson | 0 | |
17091 | Illinois | Kankakee | 0 | |
17093 | Illinois | Kendall | 0 | |
17095 | Illinois | Knox | 0 | |
17099 | Illinois | LaSalle | 0 | |
17101 | Illinois | Lawrence | 0 | |
17103 | Illinois | Lee | 0 | |
17105 | Illinois | Livingston | 0 | |
17107 | Illinois | Logan | 0 | |
17115 | Illinois | Macon | 0 | |
17117 | Illinois | Macoupin | 0 | |
17119 | Illinois | Madison | 0 | |
17121 | Illinois | Marion | 0 | |
17123 | Illinois | Marshall | 0 | |
17125 | Illinois | Mason | 0 | |
17127 | Illinois | Massac | 0 | |
17109 | Illinois | McDonough | 0 | |
17111 | Illinois | McHenry | 0 | |
17113 | Illinois | McLean | 0 | |
17129 | Illinois | Menard | 0 | |
17131 | Illinois | Mercer | 0 | |
17133 | Illinois | Monroe | 0 | |
17135 | Illinois | Montgomery | 0 | |
17137 | Illinois | Morgan | 0 | |
17139 | Illinois | Moultrie | 0 | |
17141 | Illinois | Ogle | 0 | |
17143 | Illinois | Peoria | 0 | |
17145 | Illinois | Perry | 0 | |
17147 | Illinois | Piatt | 0 | |
17149 | Illinois | Pike | 0 | |
17151 | Illinois | Pope | 0 | |
17153 | Illinois | Pulaski | 0 | |
17155 | Illinois | Putnam | 0 | |
17157 | Illinois | Randolph | 0 | |
17159 | Illinois | Richland | 0 | |
17161 | Illinois | Rock Island | 0 | |
17165 | Illinois | Saline | 0 | |
17167 | Illinois | Sangamon | 0 | |
17169 | Illinois | Schuyler | 0 | |
17171 | Illinois | Scott | 0 | |
17173 | Illinois | Shelby | 0 | |
17163 | Illinois | St. Clair | 1 | |
17175 | Illinois | Stark | 0 | |
17177 | Illinois | Stephenson | 0 | |
17179 | Illinois | Tazewell | 0 | |
17181 | Illinois | Union | 0 | |
17183 | Illinois | Vermilion | 0 | |
17185 | Illinois | Wabash | 0 | |
17187 | Illinois | Warren | 0 | |
17189 | Illinois | Washington | 0 | |
17191 | Illinois | Wayne | 0 | |
17193 | Illinois | White | 0 | |
17195 | Illinois | Whiteside | 0 | |
17199 | Illinois | Williamson | 0 | |
17201 | Illinois | Winnebago | 0 | |
17203 | Illinois | Woodford | 0 | |
18001 | Indiana | Adams | 0 | |
18003 | Indiana | Allen | 0 | |
18005 | Indiana | Bartholomew | 0 | |
18007 | Indiana | Benton | 0 | |
18009 | Indiana | Blackford | 0 | |
18013 | Indiana | Brown | 0 | |
18015 | Indiana | Carroll | 0 | |
18017 | Indiana | Cass | 0 | |
18019 | Indiana | Clark | 0 | |
18023 | Indiana | Clinton | 0 | |
18025 | Indiana | Crawford | 0 | |
18027 | Indiana | Daviess | 0 | |
18029 | Indiana | Dearborn | 0 | |
18031 | Indiana | Decatur | 0 | |
18033 | Indiana | DeKalb | 0 | |
18035 | Indiana | Delaware | 0 | |
18037 | Indiana | Dubois | 0 | |
18039 | Indiana | Elkhart | 0 | |
18041 | Indiana | Fayette | 0 | |
18043 | Indiana | Floyd | 0 | |
18045 | Indiana | Fountain | 0 | |
18047 | Indiana | Franklin | 0 | |
18049 | Indiana | Fulton | 0 | |
18051 | Indiana | Gibson | 0 | |
18053 | Indiana | Grant | 0 | |
18055 | Indiana | Greene | 0 | |
18061 | Indiana | Harrison | 0 | |
18063 | Indiana | Hendricks | 0 | |
18065 | Indiana | Henry | 0 | |
18067 | Indiana | Howard | 0 | |
18069 | Indiana | Huntington | 0 | |
18071 | Indiana | Jackson | 0 | |
18073 | Indiana | Jasper | 0 | |
18075 | Indiana | Jay | 0 | |
18077 | Indiana | Jefferson | 0 | |
18079 | Indiana | Jennings | 0 | |
18081 | Indiana | Johnson | 0 | |
18083 | Indiana | Knox | 0 | |
18085 | Indiana | Kosciusko | 0 | |
18087 | Indiana | LaGrange | 0 | |
18091 | Indiana | LaPorte | 1 | |
18093 | Indiana | Lawrence | 0 | |
18095 | Indiana | Madison | 0 | |
18101 | Indiana | Martin | 0 | |
18103 | Indiana | Miami | 0 | |
18105 | Indiana | Monroe | 0 | |
18107 | Indiana | Montgomery | 0 | |
18109 | Indiana | Morgan | 0 | |
18111 | Indiana | Newton | 0 | |
18113 | Indiana | Noble | 0 | |
18115 | Indiana | Ohio | 0 | |
18117 | Indiana | Orange | 0 | |
18119 | Indiana | Owen | 0 | |
18121 | Indiana | Parke | 0 | |
18123 | Indiana | Perry | 0 | |
18125 | Indiana | Pike | 0 | |
18127 | Indiana | Porter | 0 | |
18129 | Indiana | Posey | 0 | |
18131 | Indiana | Pulaski | 0 | |
18133 | Indiana | Putnam | 0 | |
18135 | Indiana | Randolph | 0 | |
18137 | Indiana | Ripley | 0 | |
18139 | Indiana | Rush | 0 | |
18143 | Indiana | Scott | 0 | |
18145 | Indiana | Shelby | 0 | |
18147 | Indiana | Spencer | 0 | |
18141 | Indiana | St. Joseph | 1 | |
18149 | Indiana | Starke | 0 | |
18151 | Indiana | Steuben | 0 | |
18153 | Indiana | Sullivan | 0 | |
18155 | Indiana | Switzerland | 0 | |
18157 | Indiana | Tippecanoe | 0 | |
18159 | Indiana | Tipton | 0 | |
18161 | Indiana | Union | 0 | |
18165 | Indiana | Vermillion | 0 | |
18167 | Indiana | Vigo | 0 | |
18169 | Indiana | Wabash | 0 | |
18171 | Indiana | Warren | 0 | |
18173 | Indiana | Warrick | 0 | |
18175 | Indiana | Washington | 0 | |
18177 | Indiana | Wayne | 0 | |
18179 | Indiana | Wells | 0 | |
18181 | Indiana | White | 0 | |
18183 | Indiana | Whitley | 0 | |
19001 | Iowa | Adair | 0 | |
19003 | Iowa | Adams | 0 | |
19005 | Iowa | Allamakee | 0 | |
19007 | Iowa | Appanoose | 0 | |
19009 | Iowa | Audubon | 0 | |
19011 | Iowa | Benton | 0 | |
19013 | Iowa | Black Hawk | 0 | |
19015 | Iowa | Boone | 0 | |
19017 | Iowa | Bremer | 0 | |
19019 | Iowa | Buchanan | 0 | |
19021 | Iowa | Buena Vista | 0 | |
19023 | Iowa | Butler | 0 | |
19025 | Iowa | Calhoun | 0 | |
19027 | Iowa | Carroll | 0 | |
19029 | Iowa | Cass | 0 | |
19031 | Iowa | Cedar | 0 | |
19033 | Iowa | Cerro Gordo | 0 | |
19035 | Iowa | Cherokee | 0 | |
19037 | Iowa | Chickasaw | 0 | |
19039 | Iowa | Clarke | 0 | |
19041 | Iowa | Clay | 0 | |
19043 | Iowa | Clayton | 0 | |
19045 | Iowa | Clinton | 0 | |
19047 | Iowa | Crawford | 0 | |
19049 | Iowa | Dallas | 0 | |
19051 | Iowa | Davis | 0 | |
19053 | Iowa | Decatur | 0 | |
19055 | Iowa | Delaware | 0 | |
19057 | Iowa | Des Moines | 0 | |
19059 | Iowa | Dickinson | 0 | |
19061 | Iowa | Dubuque | 0 | |
19063 | Iowa | Emmet | 0 | |
19065 | Iowa | Fayette | 0 | |
19067 | Iowa | Floyd | 0 | |
19069 | Iowa | Franklin | 0 | |
19071 | Iowa | Fremont | 0 | |
19073 | Iowa | Greene | 0 | |
19075 | Iowa | Grundy | 0 | |
19077 | Iowa | Guthrie | 0 | |
19079 | Iowa | Hamilton | 0 | |
19081 | Iowa | Hancock | 0 | |
19083 | Iowa | Hardin | 0 | |
19085 | Iowa | Harrison | 0 | |
19087 | Iowa | Henry | 0 | |
19089 | Iowa | Howard | 0 | |
19091 | Iowa | Humboldt | 0 | |
19093 | Iowa | Ida | 0 | |
19095 | Iowa | Iowa | 0 | |
19097 | Iowa | Jackson | 0 | |
19099 | Iowa | Jasper | 0 | |
19101 | Iowa | Jefferson | 0 | |
19103 | Iowa | Johnson | 0 | |
19105 | Iowa | Jones | 0 | |
19107 | Iowa | Keokuk | 0 | |
19109 | Iowa | Kossuth | 0 | |
19111 | Iowa | Lee | 0 | |
19113 | Iowa | Linn | 0 | |
19115 | Iowa | Louisa | 0 | |
19117 | Iowa | Lucas | 0 | |
19119 | Iowa | Lyon | 0 | |
19121 | Iowa | Madison | 0 | |
19123 | Iowa | Mahaska | 0 | |
19125 | Iowa | Marion | 0 | |
19127 | Iowa | Marshall | 0 | |
19129 | Iowa | Mills | 0 | |
19131 | Iowa | Mitchell | 0 | |
19133 | Iowa | Monona | 0 | |
19135 | Iowa | Monroe | 0 | |
19137 | Iowa | Montgomery | 0 | |
19139 | Iowa | Muscatine | 0 | |
19141 | Iowa | O'Brien | 0 | |
19143 | Iowa | Osceola | 0 | |
19145 | Iowa | Page | 0 | |
19147 | Iowa | Palo Alto | 0 | |
19149 | Iowa | Plymouth | 0 | |
19151 | Iowa | Pocahontas | 0 | |
19153 | Iowa | Polk | 0 | |
19155 | Iowa | Pottawattamie | 0 | |
19157 | Iowa | Poweshiek | 0 | |
19159 | Iowa | Ringgold | 0 | |
19161 | Iowa | Sac | 0 | |
19163 | Iowa | Scott | 0 | |
19165 | Iowa | Shelby | 0 | |
19167 | Iowa | Sioux | 0 | |
19169 | Iowa | Story | 0 | |
19171 | Iowa | Tama | 0 | |
19173 | Iowa | Taylor | 0 | |
19175 | Iowa | Union | 0 | |
19177 | Iowa | Van Buren | 0 | |
19179 | Iowa | Wapello | 0 | |
19181 | Iowa | Warren | 0 | |
19183 | Iowa | Washington | 0 | |
19185 | Iowa | Wayne | 0 | |
19187 | Iowa | Webster | 0 | |
19189 | Iowa | Winnebago | 0 | |
19191 | Iowa | Winneshiek | 0 | |
19193 | Iowa | Woodbury | 0 | |
19195 | Iowa | Worth | 0 | |
19197 | Iowa | Wright | 0 | |
20001 | Kansas | Allen | 0 | |
20003 | Kansas | Anderson | 0 | |
20005 | Kansas | Atchison | 0 | |
20007 | Kansas | Barber | 0 | |
20009 | Kansas | Barton | 0 | |
20011 | Kansas | Bourbon | 0 | |
20013 | Kansas | Brown | 0 | |
20015 | Kansas | Butler | 0 | |
20017 | Kansas | Chase | 0 | |
20019 | Kansas | Chautauqua | 0 | |
20021 | Kansas | Cherokee | 0 | |
20023 | Kansas | Cheyenne | 0 | |
20025 | Kansas | Clark | 0 | |
20027 | Kansas | Clay | 0 | |
20029 | Kansas | Cloud | 0 | |
20031 | Kansas | Coffey | 0 | |
20033 | Kansas | Comanche | 0 | |
20035 | Kansas | Cowley | 0 | |
20037 | Kansas | Crawford | 0 | |
20039 | Kansas | Decatur | 0 | |
20041 | Kansas | Dickinson | 0 | |
20043 | Kansas | Doniphan | 0 | |
20045 | Kansas | Douglas | 0 | |
20047 | Kansas | Edwards | 0 | |
20049 | Kansas | Elk | 0 | |
20051 | Kansas | Ellis | 0 | |
20053 | Kansas | Ellsworth | 0 | |
20055 | Kansas | Finney | 0 | |
20057 | Kansas | Ford | 0 | |
20059 | Kansas | Franklin | 0 | |
20061 | Kansas | Geary | 0 | |
20063 | Kansas | Gove | 0 | |
20065 | Kansas | Graham | 0 | |
20067 | Kansas | Grant | 0 | |
20069 | Kansas | Gray | 0 | |
20071 | Kansas | Greeley | 0 | |
20073 | Kansas | Greenwood | 0 | |
20075 | Kansas | Hamilton | 0 | |
20077 | Kansas | Harper | 0 | |
20079 | Kansas | Harvey | 0 | |
20081 | Kansas | Haskell | 0 | |
20083 | Kansas | Hodgeman | 0 | |
20085 | Kansas | Jackson | 0 | |
20087 | Kansas | Jefferson | 0 | |
20089 | Kansas | Jewell | 0 | |
20093 | Kansas | Kearny | 0 | |
20095 | Kansas | Kingman | 0 | |
20097 | Kansas | Kiowa | 0 | |
20099 | Kansas | Labette | 0 | |
20101 | Kansas | Lane | 0 | |
20103 | Kansas | Leavenworth | 0 | |
20105 | Kansas | Lincoln | 0 | |
20107 | Kansas | Linn | 0 | |
20109 | Kansas | Logan | 0 | |
20111 | Kansas | Lyon | 0 | |
20115 | Kansas | Marion | 0 | |
20117 | Kansas | Marshall | 0 | |
20113 | Kansas | McPherson | 0 | |
20119 | Kansas | Meade | 0 | |
20121 | Kansas | Miami | 0 | |
20123 | Kansas | Mitchell | 0 | |
20125 | Kansas | Montgomery | 0 | |
20127 | Kansas | Morris | 0 | |
20129 | Kansas | Morton | 0 | |
20131 | Kansas | Nemaha | 0 | |
20133 | Kansas | Neosho | 0 | |
20135 | Kansas | Ness | 0 | |
20137 | Kansas | Norton | 0 | |
20139 | Kansas | Osage | 0 | |
20141 | Kansas | Osborne | 0 | |
20143 | Kansas | Ottawa | 0 | |
20145 | Kansas | Pawnee | 0 | |
20147 | Kansas | Phillips | 0 | |
20149 | Kansas | Pottawatomie | 0 | |
20151 | Kansas | Pratt | 0 | |
20153 | Kansas | Rawlins | 0 | |
20155 | Kansas | Reno | 0 | |
20157 | Kansas | Republic | 0 | |
20159 | Kansas | Rice | 0 | |
20161 | Kansas | Riley | 0 | |
20163 | Kansas | Rooks | 0 | |
20165 | Kansas | Rush | 0 | |
20167 | Kansas | Russell | 0 | |
20169 | Kansas | Saline | 0 | |
20171 | Kansas | Scott | 0 | |
20173 | Kansas | Sedgwick | 0 | |
20175 | Kansas | Seward | 0 | |
20177 | Kansas | Shawnee | 0 | |
20179 | Kansas | Sheridan | 0 | |
20181 | Kansas | Sherman | 0 | |
20183 | Kansas | Smith | 0 | |
20185 | Kansas | Stafford | 0 | |
20187 | Kansas | Stanton | 0 | |
20189 | Kansas | Stevens | 0 | |
20191 | Kansas | Sumner | 0 | |
20193 | Kansas | Thomas | 0 | |
20195 | Kansas | Trego | 0 | |
20197 | Kansas | Wabaunsee | 0 | |
20199 | Kansas | Wallace | 0 | |
20201 | Kansas | Washington | 0 | |
20203 | Kansas | Wichita | 0 | |
20205 | Kansas | Wilson | 0 | |
20207 | Kansas | Woodson | 0 | |
20209 | Kansas | Wyandotte | 0 | |
21001 | Kentucky | Adair | 0 | |
21003 | Kentucky | Allen | 0 | |
21005 | Kentucky | Anderson | 0 | |
21007 | Kentucky | Ballard | 0 | |
21009 | Kentucky | Barren | 0 | |
21011 | Kentucky | Bath | 0 | |
21013 | Kentucky | Bell | 0 | |
21015 | Kentucky | Boone | 0 | |
21017 | Kentucky | Bourbon | 0 | |
21019 | Kentucky | Boyd | 0 | |
21021 | Kentucky | Boyle | 0 | |
21023 | Kentucky | Bracken | 0 | |
21025 | Kentucky | Breathitt | 0 | |
21027 | Kentucky | Breckinridge | 0 | |
21029 | Kentucky | Bullitt | 0 | |
21031 | Kentucky | Butler | 0 | |
21033 | Kentucky | Caldwell | 0 | |
21035 | Kentucky | Calloway | 0 | |
21037 | Kentucky | Campbell | 0 | |
21039 | Kentucky | Carlisle | 0 | |
21041 | Kentucky | Carroll | 0 | |
21043 | Kentucky | Carter | 0 | |
21045 | Kentucky | Casey | 0 | |
21047 | Kentucky | Christian | 0 | |
21049 | Kentucky | Clark | 0 | |
21051 | Kentucky | Clay | 0 | |
21053 | Kentucky | Clinton | 0 | |
21055 | Kentucky | Crittenden | 0 | |
21057 | Kentucky | Cumberland | 0 | |
21059 | Kentucky | Daviess | 0 | |
21061 | Kentucky | Edmonson | 0 | |
21063 | Kentucky | Elliott | 0 | |
21065 | Kentucky | Estill | 0 | |
21069 | Kentucky | Fleming | 0 | |
21071 | Kentucky | Floyd | 0 | |
21073 | Kentucky | Franklin | 0 | |
21075 | Kentucky | Fulton | 0 | |
21077 | Kentucky | Gallatin | 0 | |
21079 | Kentucky | Garrard | 0 | |
21081 | Kentucky | Grant | 0 | |
21083 | Kentucky | Graves | 0 | |
21085 | Kentucky | Grayson | 0 | |
21087 | Kentucky | Green | 0 | |
21089 | Kentucky | Greenup | 0 | |
21091 | Kentucky | Hancock | 0 | |
21093 | Kentucky | Hardin | 0 | |
21095 | Kentucky | Harlan | 0 | |
21097 | Kentucky | Harrison | 0 | |
21099 | Kentucky | Hart | 0 | |
21101 | Kentucky | Henderson | 0 | |
21103 | Kentucky | Henry | 0 | |
21105 | Kentucky | Hickman | 0 | |
21107 | Kentucky | Hopkins | 0 | |
21109 | Kentucky | Jackson | 0 | |
21113 | Kentucky | Jessamine | 0 | |
21115 | Kentucky | Johnson | 0 | |
21119 | Kentucky | Knott | 0 | |
21121 | Kentucky | Knox | 0 | |
21123 | Kentucky | Larue | 0 | |
21125 | Kentucky | Laurel | 0 | |
21127 | Kentucky | Lawrence | 0 | |
21129 | Kentucky | Lee | 0 | |
21131 | Kentucky | Leslie | 0 | |
21133 | Kentucky | Letcher | 0 | |
21135 | Kentucky | Lewis | 0 | |
21137 | Kentucky | Lincoln | 0 | |
21139 | Kentucky | Livingston | 0 | |
21141 | Kentucky | Logan | 0 | |
21143 | Kentucky | Lyon | 0 | |
21151 | Kentucky | Madison | 0 | |
21153 | Kentucky | Magoffin | 0 | |
21155 | Kentucky | Marion | 0 | |
21157 | Kentucky | Marshall | 0 | |
21159 | Kentucky | Martin | 0 | |
21161 | Kentucky | Mason | 0 | |
21145 | Kentucky | McCracken | 0 | |
21147 | Kentucky | McCreary | 0 | |
21149 | Kentucky | McLean | 0 | |
21163 | Kentucky | Meade | 0 | |
21165 | Kentucky | Menifee | 0 | |
21167 | Kentucky | Mercer | 0 | |
21169 | Kentucky | Metcalfe | 0 | |
21171 | Kentucky | Monroe | 0 | |
21173 | Kentucky | Montgomery | 0 | |
21175 | Kentucky | Morgan | 0 | |
21177 | Kentucky | Muhlenberg | 0 | |
21179 | Kentucky | Nelson | 0 | |
21181 | Kentucky | Nicholas | 0 | |
21183 | Kentucky | Ohio | 0 | |
21185 | Kentucky | Oldham | 0 | |
21187 | Kentucky | Owen | 0 | |
21189 | Kentucky | Owsley | 0 | |
21191 | Kentucky | Pendleton | 0 | |
21193 | Kentucky | Perry | 0 | |
21195 | Kentucky | Pike | 0 | |
21197 | Kentucky | Powell | 0 | |
21199 | Kentucky | Pulaski | 0 | |
21201 | Kentucky | Robertson | 0 | |
21203 | Kentucky | Rockcastle | 0 | |
21205 | Kentucky | Rowan | 0 | |
21207 | Kentucky | Russell | 0 | |
21209 | Kentucky | Scott | 0 | |
21211 | Kentucky | Shelby | 0 | |
21213 | Kentucky | Simpson | 0 | |
21215 | Kentucky | Spencer | 0 | |
21217 | Kentucky | Taylor | 0 | |
21219 | Kentucky | Todd | 0 | |
21221 | Kentucky | Trigg | 0 | |
21223 | Kentucky | Trimble | 0 | |
21225 | Kentucky | Union | 0 | |
21227 | Kentucky | Warren | 0 | |
21229 | Kentucky | Washington | 0 | |
21231 | Kentucky | Wayne | 0 | |
21233 | Kentucky | Webster | 0 | |
21235 | Kentucky | Whitley | 0 | |
21237 | Kentucky | Wolfe | 0 | |
21239 | Kentucky | Woodford | 0 | |
22001 | Louisiana | Acadia Parish | 0 | |
22003 | Louisiana | Allen Parish | 0 | |
22005 | Louisiana | Ascension Parish | 0 | |
22007 | Louisiana | Assumption Parish | 0 | |
22009 | Louisiana | Avoyelles Parish | 0 | |
22011 | Louisiana | Beauregard Parish | 0 | |
22013 | Louisiana | Bienville Parish | 0 | |
22015 | Louisiana | Bossier Parish | 0 | |
22017 | Louisiana | Caddo Parish | 0 | |
22019 | Louisiana | Calcasieu Parish | 0 | |
22021 | Louisiana | Caldwell Parish | 0 | |
22023 | Louisiana | Cameron Parish | 0 | |
22025 | Louisiana | Catahoula Parish | 0 | |
22027 | Louisiana | Claiborne Parish | 0 | |
22029 | Louisiana | Concordia Parish | 0 | |
22031 | Louisiana | De Soto Parish | 0 | |
22033 | Louisiana | East Baton Rouge Parish | 0 | |
22035 | Louisiana | East Carroll Parish | 0 | |
22037 | Louisiana | East Feliciana Parish | 0 | |
22039 | Louisiana | Evangeline Parish | 0 | |
22041 | Louisiana | Franklin Parish | 0 | |
22043 | Louisiana | Grant Parish | 0 | |
22045 | Louisiana | Iberia Parish | 0 | |
22047 | Louisiana | Iberville Parish | 0 | |
22049 | Louisiana | Jackson Parish | 0 | |
22053 | Louisiana | Jefferson Davis Parish | 0 | |
22051 | Louisiana | Jefferson Parish | 0 | |
22055 | Louisiana | Lafayette Parish | 0 | |
22057 | Louisiana | Lafourche Parish | 0 | |
22059 | Louisiana | LaSalle Parish | 0 | |
22061 | Louisiana | Lincoln Parish | 0 | |
22063 | Louisiana | Livingston Parish | 0 | |
22065 | Louisiana | Madison Parish | 0 | |
22067 | Louisiana | Morehouse Parish | 0 | |
22069 | Louisiana | Natchitoches Parish | 0 | |
22071 | Louisiana | Orleans Parish | 1 | |
22073 | Louisiana | Ouachita Parish | 0 | |
22075 | Louisiana | Plaquemines Parish | 0 | |
22077 | Louisiana | Pointe Coupee Parish | 0 | |
22079 | Louisiana | Rapides Parish | 0 | |
22081 | Louisiana | Red River Parish | 0 | |
22083 | Louisiana | Richland Parish | 0 | |
22085 | Louisiana | Sabine Parish | 0 | |
22087 | Louisiana | St. Bernard Parish | 0 | |
22089 | Louisiana | St. Charles Parish | 0 | |
22091 | Louisiana | St. Helena Parish | 0 | |
22093 | Louisiana | St. James Parish | 0 | |
22095 | Louisiana | St. John the Baptist Parish | 0 | |
22097 | Louisiana | St. Landry Parish | 0 | |
22099 | Louisiana | St. Martin Parish | 0 | |
22101 | Louisiana | St. Mary Parish | 0 | |
22103 | Louisiana | St. Tammany Parish | 0 | |
22105 | Louisiana | Tangipahoa Parish | 0 | |
22107 | Louisiana | Tensas Parish | 0 | |
22109 | Louisiana | Terrebonne Parish | 0 | |
22111 | Louisiana | Union Parish | 0 | |
22113 | Louisiana | Vermilion Parish | 0 | |
22115 | Louisiana | Vernon Parish | 0 | |
22117 | Louisiana | Washington Parish | 0 | |
22119 | Louisiana | Webster Parish | 0 | |
22121 | Louisiana | West Baton Rouge Parish | 0 | |
22123 | Louisiana | West Carroll Parish | 0 | |
22125 | Louisiana | West Feliciana Parish | 0 | |
22127 | Louisiana | Winn Parish | 0 | |
23001 | Maine | Androscoggin | 0 | |
23003 | Maine | Aroostook | 0 | |
23007 | Maine | Franklin | 0 | |
23009 | Maine | Hancock | 0 | |
23011 | Maine | Kennebec | 0 | |
23013 | Maine | Knox | 0 | |
23015 | Maine | Lincoln | 0 | |
23017 | Maine | Oxford | 0 | |
23019 | Maine | Penobscot | 0 | |
23021 | Maine | Piscataquis | 0 | |
23023 | Maine | Sagadahoc | 0 | |
23025 | Maine | Somerset | 0 | |
23027 | Maine | Waldo | 0 | |
23029 | Maine | Washington | 0 | |
24001 | Maryland | Allegany | 0 | |
24015 | Maryland | Cecil | 0 | |
24019 | Maryland | Dorchester | 0 | |
24023 | Maryland | Garrett | 0 | |
24033 | Maryland | Prince George's | 11 | |
24039 | Maryland | Somerset | 0 | |
24037 | Maryland | St. Mary's | 2 | |
24045 | Maryland | Wicomico | 0 | |
26001 | Michigan | Alcona | 0 | |
26003 | Michigan | Alger | 0 | |
26005 | Michigan | Allegan | 0 | |
26007 | Michigan | Alpena | 0 | |
26009 | Michigan | Antrim | 0 | |
26011 | Michigan | Arenac | 0 | |
26013 | Michigan | Baraga | 0 | |
26015 | Michigan | Barry | 0 | |
26017 | Michigan | Bay | 0 | |
26019 | Michigan | Benzie | 0 | |
26021 | Michigan | Berrien | 0 | |
26023 | Michigan | Branch | 0 | |
26027 | Michigan | Cass | 0 | |
26029 | Michigan | Charlevoix | 0 | |
26031 | Michigan | Cheboygan | 0 | |
26033 | Michigan | Chippewa | 0 | |
26035 | Michigan | Clare | 0 | |
26039 | Michigan | Crawford | 0 | |
26041 | Michigan | Delta | 0 | |
26043 | Michigan | Dickinson | 0 | |
26045 | Michigan | Eaton | 0 | |
26047 | Michigan | Emmet | 0 | |
26051 | Michigan | Gladwin | 0 | |
26053 | Michigan | Gogebic | 0 | |
26057 | Michigan | Gratiot | 0 | |
26059 | Michigan | Hillsdale | 0 | |
26061 | Michigan | Houghton | 0 | |
26063 | Michigan | Huron | 0 | |
26067 | Michigan | Ionia | 0 | |
26069 | Michigan | Iosco | 0 | |
26071 | Michigan | Iron | 0 | |
26073 | Michigan | Isabella | 0 | |
26075 | Michigan | Jackson | 0 | |
26079 | Michigan | Kalkaska | 0 | |
26083 | Michigan | Keweenaw | 0 | |
26085 | Michigan | Lake | 0 | |
26087 | Michigan | Lapeer | 0 | |
26089 | Michigan | Leelanau | 0 | |
26095 | Michigan | Luce | 0 | |
26097 | Michigan | Mackinac | 0 | |
26101 | Michigan | Manistee | 0 | |
26103 | Michigan | Marquette | 0 | |
26105 | Michigan | Mason | 0 | |
26107 | Michigan | Mecosta | 0 | |
26109 | Michigan | Menominee | 0 | |
26111 | Michigan | Midland | 0 | |
26113 | Michigan | Missaukee | 0 | |
26117 | Michigan | Montcalm | 0 | |
26119 | Michigan | Montmorency | 0 | |
26121 | Michigan | Muskegon | 0 | |
26123 | Michigan | Newaygo | 0 | |
26127 | Michigan | Oceana | 0 | |
26129 | Michigan | Ogemaw | 0 | |
26131 | Michigan | Ontonagon | 0 | |
26133 | Michigan | Osceola | 0 | |
26135 | Michigan | Oscoda | 0 | |
26137 | Michigan | Otsego | 0 | |
26141 | Michigan | Presque Isle | 0 | |
26143 | Michigan | Roscommon | 0 | |
26145 | Michigan | Saginaw | 0 | |
26151 | Michigan | Sanilac | 0 | |
26153 | Michigan | Schoolcraft | 0 | |
26155 | Michigan | Shiawassee | 0 | |
26147 | Michigan | St. Clair | 0 | |
26149 | Michigan | St. Joseph | 0 | |
26157 | Michigan | Tuscola | 0 | |
26159 | Michigan | Van Buren | 0 | |
26165 | Michigan | Wexford | 0 | |
27001 | Minnesota | Aitkin | 0 | |
27005 | Minnesota | Becker | 0 | |
27007 | Minnesota | Beltrami | 0 | |
27009 | Minnesota | Benton | 0 | |
27011 | Minnesota | Big Stone | 0 | |
27013 | Minnesota | Blue Earth | 0 | |
27015 | Minnesota | Brown | 0 | |
27017 | Minnesota | Carlton | 0 | |
27021 | Minnesota | Cass | 0 | |
27023 | Minnesota | Chippewa | 0 | |
27025 | Minnesota | Chisago | 0 | |
27027 | Minnesota | Clay | 0 | |
27029 | Minnesota | Clearwater | 0 | |
27031 | Minnesota | Cook | 0 | |
27033 | Minnesota | Cottonwood | 0 | |
27035 | Minnesota | Crow Wing | 0 | |
27039 | Minnesota | Dodge | 0 | |
27041 | Minnesota | Douglas | 0 | |
27043 | Minnesota | Faribault | 0 | |
27045 | Minnesota | Fillmore | 0 | |
27047 | Minnesota | Freeborn | 0 | |
27049 | Minnesota | Goodhue | 0 | |
27051 | Minnesota | Grant | 0 | |
27055 | Minnesota | Houston | 0 | |
27057 | Minnesota | Hubbard | 0 | |
27059 | Minnesota | Isanti | 0 | |
27061 | Minnesota | Itasca | 0 | |
27063 | Minnesota | Jackson | 0 | |
27065 | Minnesota | Kanabec | 0 | |
27067 | Minnesota | Kandiyohi | 0 | |
27069 | Minnesota | Kittson | 0 | |
27071 | Minnesota | Koochiching | 0 | |
27073 | Minnesota | Lac qui Parle | 0 | |
27075 | Minnesota | Lake | 0 | |
27077 | Minnesota | Lake of the Woods | 0 | |
27079 | Minnesota | Le Sueur | 0 | |
27081 | Minnesota | Lincoln | 0 | |
27083 | Minnesota | Lyon | 0 | |
27087 | Minnesota | Mahnomen | 0 | |
27089 | Minnesota | Marshall | 0 | |
27091 | Minnesota | Martin | 0 | |
27085 | Minnesota | McLeod | 0 | |
27093 | Minnesota | Meeker | 0 | |
27095 | Minnesota | Mille Lacs | 0 | |
27097 | Minnesota | Morrison | 0 | |
27099 | Minnesota | Mower | 0 | |
27101 | Minnesota | Murray | 0 | |
27103 | Minnesota | Nicollet | 0 | |
27105 | Minnesota | Nobles | 0 | |
27107 | Minnesota | Norman | 0 | |
27111 | Minnesota | Otter Tail | 0 | |
27113 | Minnesota | Pennington | 0 | |
27115 | Minnesota | Pine | 0 | |
27117 | Minnesota | Pipestone | 0 | |
27119 | Minnesota | Polk | 0 | |
27121 | Minnesota | Pope | 0 | |
27125 | Minnesota | Red Lake | 0 | |
27127 | Minnesota | Redwood | 0 | |
27129 | Minnesota | Renville | 0 | |
27131 | Minnesota | Rice | 0 | |
27133 | Minnesota | Rock | 0 | |
27135 | Minnesota | Roseau | 0 | |
27141 | Minnesota | Sherburne | 0 | |
27143 | Minnesota | Sibley | 0 | |
27137 | Minnesota | St. Louis | 1 | |
27147 | Minnesota | Steele | 0 | |
27149 | Minnesota | Stevens | 0 | |
27151 | Minnesota | Swift | 0 | |
27153 | Minnesota | Todd | 0 | |
27155 | Minnesota | Traverse | 0 | |
27157 | Minnesota | Wabasha | 0 | |
27159 | Minnesota | Wadena | 0 | |
27161 | Minnesota | Waseca | 0 | |
27165 | Minnesota | Watonwan | 0 | |
27167 | Minnesota | Wilkin | 0 | |
27169 | Minnesota | Winona | 0 | |
27171 | Minnesota | Wright | 0 | |
27173 | Minnesota | Yellow Medicine | 0 | |
28001 | Mississippi | Adams | 0 | |
28003 | Mississippi | Alcorn | 0 | |
28005 | Mississippi | Amite | 0 | |
28007 | Mississippi | Attala | 0 | |
28009 | Mississippi | Benton | 0 | |
28011 | Mississippi | Bolivar | 0 | |
28013 | Mississippi | Calhoun | 0 | |
28015 | Mississippi | Carroll | 0 | |
28017 | Mississippi | Chickasaw | 0 | |
28019 | Mississippi | Choctaw | 0 | |
28021 | Mississippi | Claiborne | 0 | |
28023 | Mississippi | Clarke | 0 | |
28025 | Mississippi | Clay | 0 | |
28027 | Mississippi | Coahoma | 0 | |
28029 | Mississippi | Copiah | 0 | |
28031 | Mississippi | Covington | 0 | |
28033 | Mississippi | DeSoto | 0 | |
28035 | Mississippi | Forrest | 0 | |
28037 | Mississippi | Franklin | 0 | |
28039 | Mississippi | George | 0 | |
28041 | Mississippi | Greene | 0 | |
28043 | Mississippi | Grenada | 0 | |
28045 | Mississippi | Hancock | 0 | |
28047 | Mississippi | Harrison | 0 | |
28049 | Mississippi | Hinds | 0 | |
28051 | Mississippi | Holmes | 0 | |
28053 | Mississippi | Humphreys | 0 | |
28055 | Mississippi | Issaquena | 0 | |
28057 | Mississippi | Itawamba | 0 | |
28059 | Mississippi | Jackson | 0 | |
28061 | Mississippi | Jasper | 0 | |
28063 | Mississippi | Jefferson | 0 | |
28065 | Mississippi | Jefferson Davis | 0 | |
28069 | Mississippi | Kemper | 0 | |
28071 | Mississippi | Lafayette | 0 | |
28073 | Mississippi | Lamar | 0 | |
28075 | Mississippi | Lauderdale | 0 | |
28077 | Mississippi | Lawrence | 0 | |
28079 | Mississippi | Leake | 0 | |
28081 | Mississippi | Lee | 0 | |
28083 | Mississippi | Leflore | 0 | |
28085 | Mississippi | Lincoln | 0 | |
28087 | Mississippi | Lowndes | 0 | |
28089 | Mississippi | Madison | 0 | |
28091 | Mississippi | Marion | 0 | |
28093 | Mississippi | Marshall | 0 | |
28095 | Mississippi | Monroe | 0 | |
28097 | Mississippi | Montgomery | 0 | |
28099 | Mississippi | Neshoba | 0 | |
28101 | Mississippi | Newton | 0 | |
28103 | Mississippi | Noxubee | 0 | |
28105 | Mississippi | Oktibbeha | 0 | |
28107 | Mississippi | Panola | 0 | |
28109 | Mississippi | Pearl River | 0 | |
28111 | Mississippi | Perry | 0 | |
28113 | Mississippi | Pike | 0 | |
28115 | Mississippi | Pontotoc | 0 | |
28117 | Mississippi | Prentiss | 0 | |
28119 | Mississippi | Quitman | 0 | |
28121 | Mississippi | Rankin | 0 | |
28123 | Mississippi | Scott | 0 | |
28125 | Mississippi | Sharkey | 0 | |
28127 | Mississippi | Simpson | 0 | |
28129 | Mississippi | Smith | 0 | |
28131 | Mississippi | Stone | 0 | |
28133 | Mississippi | Sunflower | 0 | |
28135 | Mississippi | Tallahatchie | 0 | |
28137 | Mississippi | Tate | 0 | |
28139 | Mississippi | Tippah | 0 | |
28141 | Mississippi | Tishomingo | 0 | |
28143 | Mississippi | Tunica | 0 | |
28145 | Mississippi | Union | 0 | |
28147 | Mississippi | Walthall | 0 | |
28149 | Mississippi | Warren | 0 | |
28151 | Mississippi | Washington | 0 | |
28153 | Mississippi | Wayne | 0 | |
28155 | Mississippi | Webster | 0 | |
28157 | Mississippi | Wilkinson | 0 | |
28159 | Mississippi | Winston | 0 | |
28161 | Mississippi | Yalobusha | 0 | |
28163 | Mississippi | Yazoo | 0 | |
29001 | Missouri | Adair | 0 | |
29003 | Missouri | Andrew | 0 | |
29005 | Missouri | Atchison | 0 | |
29007 | Missouri | Audrain | 0 | |
29009 | Missouri | Barry | 0 | |
29011 | Missouri | Barton | 0 | |
29013 | Missouri | Bates | 0 | |
29015 | Missouri | Benton | 0 | |
29017 | Missouri | Bollinger | 0 | |
29019 | Missouri | Boone | 0 | |
29021 | Missouri | Buchanan | 0 | |
29023 | Missouri | Butler | 0 | |
29025 | Missouri | Caldwell | 0 | |
29027 | Missouri | Callaway | 0 | |
29029 | Missouri | Camden | 0 | |
29031 | Missouri | Cape Girardeau | 0 | |
29033 | Missouri | Carroll | 0 | |
29035 | Missouri | Carter | 0 | |
29037 | Missouri | Cass | 0 | |
29039 | Missouri | Cedar | 0 | |
29041 | Missouri | Chariton | 0 | |
29043 | Missouri | Christian | 0 | |
29045 | Missouri | Clark | 0 | |
29047 | Missouri | Clay | 0 | |
29049 | Missouri | Clinton | 0 | |
29051 | Missouri | Cole | 0 | |
29053 | Missouri | Cooper | 0 | |
29055 | Missouri | Crawford | 0 | |
29057 | Missouri | Dade | 0 | |
29059 | Missouri | Dallas | 0 | |
29061 | Missouri | Daviess | 0 | |
29063 | Missouri | DeKalb | 0 | |
29065 | Missouri | Dent | 0 | |
29067 | Missouri | Douglas | 0 | |
29069 | Missouri | Dunklin | 0 | |
29071 | Missouri | Franklin | 0 | |
29073 | Missouri | Gasconade | 0 | |
29075 | Missouri | Gentry | 0 | |
29077 | Missouri | Greene | 0 | |
29079 | Missouri | Grundy | 0 | |
29081 | Missouri | Harrison | 0 | |
29083 | Missouri | Henry | 0 | |
29085 | Missouri | Hickory | 0 | |
29087 | Missouri | Holt | 0 | |
29089 | Missouri | Howard | 0 | |
29091 | Missouri | Howell | 0 | |
29093 | Missouri | Iron | 0 | |
29097 | Missouri | Jasper | 0 | |
29099 | Missouri | Jefferson | 0 | |
29101 | Missouri | Johnson | 0 | |
29103 | Missouri | Knox | 0 | |
29105 | Missouri | Laclede | 0 | |
29107 | Missouri | Lafayette | 0 | |
29109 | Missouri | Lawrence | 0 | |
29111 | Missouri | Lewis | 0 | |
29113 | Missouri | Lincoln | 0 | |
29115 | Missouri | Linn | 0 | |
29117 | Missouri | Livingston | 0 | |
29121 | Missouri | Macon | 0 | |
29123 | Missouri | Madison | 0 | |
29125 | Missouri | Maries | 0 | |
29127 | Missouri | Marion | 0 | |
29119 | Missouri | McDonald | 0 | |
29129 | Missouri | Mercer | 0 | |
29131 | Missouri | Miller | 0 | |
29133 | Missouri | Mississippi | 0 | |
29135 | Missouri | Moniteau | 0 | |
29137 | Missouri | Monroe | 0 | |
29139 | Missouri | Montgomery | 0 | |
29141 | Missouri | Morgan | 0 | |
29143 | Missouri | New Madrid | 0 | |
29145 | Missouri | Newton | 0 | |
29147 | Missouri | Nodaway | 0 | |
29149 | Missouri | Oregon | 0 | |
29151 | Missouri | Osage | 0 | |
29153 | Missouri | Ozark | 0 | |
29155 | Missouri | Pemiscot | 0 | |
29157 | Missouri | Perry | 0 | |
29159 | Missouri | Pettis | 0 | |
29161 | Missouri | Phelps | 0 | |
29163 | Missouri | Pike | 0 | |
29165 | Missouri | Platte | 0 | |
29167 | Missouri | Polk | 0 | |
29169 | Missouri | Pulaski | 0 | |
29171 | Missouri | Putnam | 0 | |
29173 | Missouri | Ralls | 0 | |
29175 | Missouri | Randolph | 0 | |
29177 | Missouri | Ray | 0 | |
29179 | Missouri | Reynolds | 0 | |
29181 | Missouri | Ripley | 0 | |
29195 | Missouri | Saline | 0 | |
29197 | Missouri | Schuyler | 0 | |
29199 | Missouri | Scotland | 0 | |
29201 | Missouri | Scott | 0 | |
29203 | Missouri | Shannon | 0 | |
29205 | Missouri | Shelby | 0 | |
29183 | Missouri | St. Charles | 2 | |
29185 | Missouri | St. Clair | 0 | |
29187 | Missouri | St. Francois | 0 | |
29189 | Missouri | St. Louis | 3 | |
29510 | Missouri | St. Louis city | 15 | |
29186 | Missouri | Ste. Genevieve | 0 | |
29207 | Missouri | Stoddard | 0 | |
29209 | Missouri | Stone | 0 | |
29211 | Missouri | Sullivan | 0 | |
29213 | Missouri | Taney | 0 | |
29215 | Missouri | Texas | 0 | |
29217 | Missouri | Vernon | 0 | |
29219 | Missouri | Warren | 0 | |
29221 | Missouri | Washington | 0 | |
29223 | Missouri | Wayne | 0 | |
29225 | Missouri | Webster | 0 | |
29227 | Missouri | Worth | 0 | |
29229 | Missouri | Wright | 0 | |
30001 | Montana | Beaverhead | 0 | |
30003 | Montana | Big Horn | 0 | |
30005 | Montana | Blaine | 0 | |
30007 | Montana | Broadwater | 0 | |
30009 | Montana | Carbon | 0 | |
30011 | Montana | Carter | 0 | |
30013 | Montana | Cascade | 0 | |
30015 | Montana | Chouteau | 0 | |
30017 | Montana | Custer | 0 | |
30019 | Montana | Daniels | 0 | |
30021 | Montana | Dawson | 0 | |
30023 | Montana | Deer Lodge | 0 | |
30025 | Montana | Fallon | 0 | |
30027 | Montana | Fergus | 0 | |
30029 | Montana | Flathead | 0 | |
30031 | Montana | Gallatin | 0 | |
30033 | Montana | Garfield | 0 | |
30035 | Montana | Glacier | 0 | |
30037 | Montana | Golden Valley | 0 | |
30039 | Montana | Granite | 0 | |
30041 | Montana | Hill | 0 | |
30043 | Montana | Jefferson | 0 | |
30045 | Montana | Judith Basin | 0 | |
30047 | Montana | Lake | 0 | |
30049 | Montana | Lewis and Clark | 0 | |
30051 | Montana | Liberty | 0 | |
30053 | Montana | Lincoln | 0 | |
30057 | Montana | Madison | 0 | |
30055 | Montana | McCone | 0 | |
30059 | Montana | Meagher | 0 | |
30061 | Montana | Mineral | 0 | |
30063 | Montana | Missoula | 0 | |
30065 | Montana | Musselshell | 0 | |
30067 | Montana | Park | 0 | |
30069 | Montana | Petroleum | 0 | |
30071 | Montana | Phillips | 0 | |
30073 | Montana | Pondera | 0 | |
30075 | Montana | Powder River | 0 | |
30077 | Montana | Powell | 0 | |
30079 | Montana | Prairie | 0 | |
30081 | Montana | Ravalli | 0 | |
30083 | Montana | Richland | 0 | |
30085 | Montana | Roosevelt | 0 | |
30087 | Montana | Rosebud | 0 | |
30089 | Montana | Sanders | 0 | |
30091 | Montana | Sheridan | 0 | |
30093 | Montana | Silver Bow | 0 | |
30095 | Montana | Stillwater | 0 | |
30097 | Montana | Sweet Grass | 0 | |
30099 | Montana | Teton | 0 | |
30101 | Montana | Toole | 0 | |
30103 | Montana | Treasure | 0 | |
30105 | Montana | Valley | 0 | |
30107 | Montana | Wheatland | 0 | |
30109 | Montana | Wibaux | 0 | |
30111 | Montana | Yellowstone | 0 | |
31001 | Nebraska | Adams | 0 | |
31003 | Nebraska | Antelope | 0 | |
31005 | Nebraska | Arthur | 0 | |
31007 | Nebraska | Banner | 0 | |
31009 | Nebraska | Blaine | 0 | |
31011 | Nebraska | Boone | 0 | |
31013 | Nebraska | Box Butte | 0 | |
31015 | Nebraska | Boyd | 0 | |
31017 | Nebraska | Brown | 0 | |
31019 | Nebraska | Buffalo | 0 | |
31021 | Nebraska | Burt | 0 | |
31023 | Nebraska | Butler | 0 | |
31025 | Nebraska | Cass | 0 | |
31027 | Nebraska | Cedar | 0 | |
31029 | Nebraska | Chase | 0 | |
31031 | Nebraska | Cherry | 0 | |
31033 | Nebraska | Cheyenne | 0 | |
31035 | Nebraska | Clay | 0 | |
31037 | Nebraska | Colfax | 0 | |
31039 | Nebraska | Cuming | 0 | |
31041 | Nebraska | Custer | 0 | |
31043 | Nebraska | Dakota | 0 | |
31045 | Nebraska | Dawes | 0 | |
31047 | Nebraska | Dawson | 0 | |
31049 | Nebraska | Deuel | 0 | |
31051 | Nebraska | Dixon | 0 | |
31053 | Nebraska | Dodge | 0 | |
31057 | Nebraska | Dundy | 0 | |
31059 | Nebraska | Fillmore | 0 | |
31061 | Nebraska | Franklin | 0 | |
31063 | Nebraska | Frontier | 0 | |
31065 | Nebraska | Furnas | 0 | |
31067 | Nebraska | Gage | 0 | |
31069 | Nebraska | Garden | 0 | |
31071 | Nebraska | Garfield | 0 | |
31073 | Nebraska | Gosper | 0 | |
31075 | Nebraska | Grant | 0 | |
31077 | Nebraska | Greeley | 0 | |
31079 | Nebraska | Hall | 0 | |
31081 | Nebraska | Hamilton | 0 | |
31083 | Nebraska | Harlan | 0 | |
31085 | Nebraska | Hayes | 0 | |
31087 | Nebraska | Hitchcock | 0 | |
31089 | Nebraska | Holt | 0 | |
31091 | Nebraska | Hooker | 0 | |
31093 | Nebraska | Howard | 0 | |
31095 | Nebraska | Jefferson | 0 | |
31097 | Nebraska | Johnson | 0 | |
31099 | Nebraska | Kearney | 0 | |
31101 | Nebraska | Keith | 0 | |
31103 | Nebraska | Keya Paha | 0 | |
31105 | Nebraska | Kimball | 0 | |
31107 | Nebraska | Knox | 0 | |
31109 | Nebraska | Lancaster | 0 | |
31111 | Nebraska | Lincoln | 0 | |
31113 | Nebraska | Logan | 0 | |
31115 | Nebraska | Loup | 0 | |
31119 | Nebraska | Madison | 0 | |
31117 | Nebraska | McPherson | 0 | |
31121 | Nebraska | Merrick | 0 | |
31123 | Nebraska | Morrill | 0 | |
31125 | Nebraska | Nance | 0 | |
31127 | Nebraska | Nemaha | 0 | |
31129 | Nebraska | Nuckolls | 0 | |
31131 | Nebraska | Otoe | 0 | |
31133 | Nebraska | Pawnee | 0 | |
31135 | Nebraska | Perkins | 0 | |
31137 | Nebraska | Phelps | 0 | |
31139 | Nebraska | Pierce | 0 | |
31141 | Nebraska | Platte | 0 | |
31143 | Nebraska | Polk | 0 | |
31145 | Nebraska | Red Willow | 0 | |
31147 | Nebraska | Richardson | 0 | |
31149 | Nebraska | Rock | 0 | |
31151 | Nebraska | Saline | 0 | |
31153 | Nebraska | Sarpy | 0 | |
31155 | Nebraska | Saunders | 0 | |
31157 | Nebraska | Scotts Bluff | 0 | |
31159 | Nebraska | Seward | 0 | |
31161 | Nebraska | Sheridan | 0 | |
31163 | Nebraska | Sherman | 0 | |
31165 | Nebraska | Sioux | 0 | |
31167 | Nebraska | Stanton | 0 | |
31169 | Nebraska | Thayer | 0 | |
31171 | Nebraska | Thomas | 0 | |
31173 | Nebraska | Thurston | 0 | |
31175 | Nebraska | Valley | 0 | |
31177 | Nebraska | Washington | 0 | |
31179 | Nebraska | Wayne | 0 | |
31181 | Nebraska | Webster | 0 | |
31183 | Nebraska | Wheeler | 0 | |
31185 | Nebraska | York | 0 | |
32510 | Nevada | Carson City | 0 | |
32001 | Nevada | Churchill | 0 | |
32005 | Nevada | Douglas | 0 | |
32007 | Nevada | Elko | 0 | |
32009 | Nevada | Esmeralda | 0 | |
32011 | Nevada | Eureka | 0 | |
32013 | Nevada | Humboldt | 0 | |
32015 | Nevada | Lander | 0 | |
32017 | Nevada | Lincoln | 0 | |
32019 | Nevada | Lyon | 0 | |
32021 | Nevada | Mineral | 0 | |
32023 | Nevada | Nye | 0 | |
32027 | Nevada | Pershing | 0 | |
32029 | Nevada | Storey | 0 | |
32033 | Nevada | White Pine | 0 | |
33007 | New Hampshire | Coos | 0 | |
33019 | New Hampshire | Sullivan | 0 | |
34011 | New Jersey | Cumberland | 0 | |
34017 | New Jersey | Hudson | 0 | |
34033 | New Jersey | Salem | 0 | |
35001 | New Mexico | Bernalillo | 0 | |
35003 | New Mexico | Catron | 0 | |
35005 | New Mexico | Chaves | 0 | |
35006 | New Mexico | Cibola | 0 | |
35007 | New Mexico | Colfax | 0 | |
35009 | New Mexico | Curry | 0 | |
35011 | New Mexico | De Baca | 0 | |
35013 | New Mexico | Do–a Ana | 0 | |
35015 | New Mexico | Eddy | 0 | |
35017 | New Mexico | Grant | 0 | |
35019 | New Mexico | Guadalupe | 0 | |
35021 | New Mexico | Harding | 0 | |
35023 | New Mexico | Hidalgo | 0 | |
35025 | New Mexico | Lea | 0 | |
35027 | New Mexico | Lincoln | 0 | |
35028 | New Mexico | Los Alamos | 0 | |
35029 | New Mexico | Luna | 0 | |
35031 | New Mexico | McKinley | 0 | |
35033 | New Mexico | Mora | 0 | |
35035 | New Mexico | Otero | 0 | |
35037 | New Mexico | Quay | 0 | |
35039 | New Mexico | Rio Arriba | 0 | |
35041 | New Mexico | Roosevelt | 0 | |
35045 | New Mexico | San Juan | 0 | |
35047 | New Mexico | San Miguel | 0 | |
35043 | New Mexico | Sandoval | 0 | |
35049 | New Mexico | Santa Fe | 0 | |
35051 | New Mexico | Sierra | 0 | |
35053 | New Mexico | Socorro | 0 | |
35055 | New Mexico | Taos | 0 | |
35057 | New Mexico | Torrance | 0 | |
35059 | New Mexico | Union | 0 | |
35061 | New Mexico | Valencia | 0 | |
36003 | New York | Allegany | 0 | |
36017 | New York | Chenango | 0 | |
36019 | New York | Clinton | 0 | |
36021 | New York | Columbia | 0 | |
36025 | New York | Delaware | 0 | |
36031 | New York | Essex | 0 | |
36035 | New York | Fulton | 0 | |
36039 | New York | Greene | 0 | |
36041 | New York | Hamilton | 0 | |
36043 | New York | Herkimer | 0 | |
36049 | New York | Lewis | 0 | |
36057 | New York | Montgomery | 0 | |
36081 | New York | Queens | 0 | |
36095 | New York | Schoharie | 0 | |
36097 | New York | Schuyler | 0 | |
36099 | New York | Seneca | 0 | |
36089 | New York | St. Lawrence | 1 | |
36105 | New York | Sullivan | 0 | |
36121 | New York | Wyoming | 0 | |
37001 | North Carolina | Alamance | 0 | |
37003 | North Carolina | Alexander | 0 | |
37005 | North Carolina | Alleghany | 0 | |
37007 | North Carolina | Anson | 0 | |
37009 | North Carolina | Ashe | 0 | |
37011 | North Carolina | Avery | 0 | |
37013 | North Carolina | Beaufort | 0 | |
37015 | North Carolina | Bertie | 0 | |
37017 | North Carolina | Bladen | 0 | |
37019 | North Carolina | Brunswick | 0 | |
37021 | North Carolina | Buncombe | 0 | |
37023 | North Carolina | Burke | 0 | |
37027 | North Carolina | Caldwell | 0 | |
37029 | North Carolina | Camden | 0 | |
37031 | North Carolina | Carteret | 0 | |
37033 | North Carolina | Caswell | 0 | |
37035 | North Carolina | Catawba | 0 | |
37037 | North Carolina | Chatham | 0 | |
37039 | North Carolina | Cherokee | 0 | |
37041 | North Carolina | Chowan | 0 | |
37043 | North Carolina | Clay | 0 | |
37045 | North Carolina | Cleveland | 0 | |
37047 | North Carolina | Columbus | 0 | |
37049 | North Carolina | Craven | 0 | |
37051 | North Carolina | Cumberland | 0 | |
37053 | North Carolina | Currituck | 0 | |
37055 | North Carolina | Dare | 0 | |
37057 | North Carolina | Davidson | 0 | |
37059 | North Carolina | Davie | 0 | |
37061 | North Carolina | Duplin | 0 | |
37065 | North Carolina | Edgecombe | 0 | |
37069 | North Carolina | Franklin | 0 | |
37071 | North Carolina | Gaston | 0 | |
37073 | North Carolina | Gates | 0 | |
37075 | North Carolina | Graham | 0 | |
37077 | North Carolina | Granville | 0 | |
37079 | North Carolina | Greene | 0 | |
37083 | North Carolina | Halifax | 0 | |
37085 | North Carolina | Harnett | 0 | |
37087 | North Carolina | Haywood | 0 | |
37089 | North Carolina | Henderson | 0 | |
37091 | North Carolina | Hertford | 0 | |
37093 | North Carolina | Hoke | 0 | |
37095 | North Carolina | Hyde | 0 | |
37099 | North Carolina | Jackson | 0 | |
37101 | North Carolina | Johnston | 0 | |
37103 | North Carolina | Jones | 0 | |
37105 | North Carolina | Lee | 0 | |
37107 | North Carolina | Lenoir | 0 | |
37109 | North Carolina | Lincoln | 0 | |
37113 | North Carolina | Macon | 0 | |
37115 | North Carolina | Madison | 0 | |
37117 | North Carolina | Martin | 0 | |
37111 | North Carolina | McDowell | 0 | |
37121 | North Carolina | Mitchell | 0 | |
37123 | North Carolina | Montgomery | 0 | |
37125 | North Carolina | Moore | 0 | |
37127 | North Carolina | Nash | 0 | |
37131 | North Carolina | Northampton | 0 | |
37133 | North Carolina | Onslow | 0 | |
37137 | North Carolina | Pamlico | 0 | |
37139 | North Carolina | Pasquotank | 0 | |
37141 | North Carolina | Pender | 0 | |
37143 | North Carolina | Perquimans | 0 | |
37145 | North Carolina | Person | 0 | |
37147 | North Carolina | Pitt | 0 | |
37149 | North Carolina | Polk | 0 | |
37151 | North Carolina | Randolph | 0 | |
37153 | North Carolina | Richmond | 0 | |
37155 | North Carolina | Robeson | 0 | |
37157 | North Carolina | Rockingham | 0 | |
37159 | North Carolina | Rowan | 0 | |
37161 | North Carolina | Rutherford | 0 | |
37163 | North Carolina | Sampson | 0 | |
37165 | North Carolina | Scotland | 0 | |
37167 | North Carolina | Stanly | 0 | |
37169 | North Carolina | Stokes | 0 | |
37171 | North Carolina | Surry | 0 | |
37173 | North Carolina | Swain | 0 | |
37175 | North Carolina | Transylvania | 0 | |
37177 | North Carolina | Tyrrell | 0 | |
37181 | North Carolina | Vance | 0 | |
37185 | North Carolina | Warren | 0 | |
37187 | North Carolina | Washington | 0 | |
37189 | North Carolina | Watauga | 0 | |
37191 | North Carolina | Wayne | 0 | |
37193 | North Carolina | Wilkes | 0 | |
37195 | North Carolina | Wilson | 0 | |
37197 | North Carolina | Yadkin | 0 | |
37199 | North Carolina | Yancey | 0 | |
38001 | North Dakota | Adams | 0 | |
38003 | North Dakota | Barnes | 0 | |
38005 | North Dakota | Benson | 0 | |
38007 | North Dakota | Billings | 0 | |
38009 | North Dakota | Bottineau | 0 | |
38011 | North Dakota | Bowman | 0 | |
38013 | North Dakota | Burke | 0 | |
38015 | North Dakota | Burleigh | 0 | |
38019 | North Dakota | Cavalier | 0 | |
38021 | North Dakota | Dickey | 0 | |
38023 | North Dakota | Divide | 0 | |
38025 | North Dakota | Dunn | 0 | |
38027 | North Dakota | Eddy | 0 | |
38029 | North Dakota | Emmons | 0 | |
38031 | North Dakota | Foster | 0 | |
38033 | North Dakota | Golden Valley | 0 | |
38035 | North Dakota | Grand Forks | 0 | |
38037 | North Dakota | Grant | 0 | |
38039 | North Dakota | Griggs | 0 | |
38041 | North Dakota | Hettinger | 0 | |
38043 | North Dakota | Kidder | 0 | |
38045 | North Dakota | LaMoure | 0 | |
38047 | North Dakota | Logan | 0 | |
38049 | North Dakota | McHenry | 0 | |
38051 | North Dakota | McIntosh | 0 | |
38053 | North Dakota | McKenzie | 0 | |
38055 | North Dakota | McLean | 0 | |
38057 | North Dakota | Mercer | 0 | |
38059 | North Dakota | Morton | 0 | |
38061 | North Dakota | Mountrail | 0 | |
38063 | North Dakota | Nelson | 0 | |
38065 | North Dakota | Oliver | 0 | |
38067 | North Dakota | Pembina | 0 | |
38069 | North Dakota | Pierce | 0 | |
38071 | North Dakota | Ramsey | 0 | |
38073 | North Dakota | Ransom | 0 | |
38075 | North Dakota | Renville | 0 | |
38077 | North Dakota | Richland | 0 | |
38079 | North Dakota | Rolette | 0 | |
38081 | North Dakota | Sargent | 0 | |
38083 | North Dakota | Sheridan | 0 | |
38085 | North Dakota | Sioux | 0 | |
38087 | North Dakota | Slope | 0 | |
38089 | North Dakota | Stark | 0 | |
38091 | North Dakota | Steele | 0 | |
38093 | North Dakota | Stutsman | 0 | |
38095 | North Dakota | Towner | 0 | |
38097 | North Dakota | Traill | 0 | |
38099 | North Dakota | Walsh | 0 | |
38101 | North Dakota | Ward | 0 | |
38103 | North Dakota | Wells | 0 | |
38105 | North Dakota | Williams | 0 | |
39001 | Ohio | Adams | 0 | |
39003 | Ohio | Allen | 0 | |
39005 | Ohio | Ashland | 0 | |
39007 | Ohio | Ashtabula | 0 | |
39009 | Ohio | Athens | 0 | |
39011 | Ohio | Auglaize | 0 | |
39013 | Ohio | Belmont | 0 | |
39015 | Ohio | Brown | 0 | |
39019 | Ohio | Carroll | 0 | |
39021 | Ohio | Champaign | 0 | |
39023 | Ohio | Clark | 0 | |
39027 | Ohio | Clinton | 0 | |
39029 | Ohio | Columbiana | 0 | |
39031 | Ohio | Coshocton | 0 | |
39033 | Ohio | Crawford | 0 | |
39039 | Ohio | Defiance | 0 | |
39043 | Ohio | Erie | 0 | |
39047 | Ohio | Fayette | 0 | |
39051 | Ohio | Fulton | 0 | |
39053 | Ohio | Gallia | 0 | |
39055 | Ohio | Geauga | 0 | |
39057 | Ohio | Greene | 0 | |
39059 | Ohio | Guernsey | 0 | |
39063 | Ohio | Hancock | 0 | |
39065 | Ohio | Hardin | 0 | |
39067 | Ohio | Harrison | 0 | |
39069 | Ohio | Henry | 0 | |
39071 | Ohio | Highland | 0 | |
39073 | Ohio | Hocking | 0 | |
39075 | Ohio | Holmes | 0 | |
39077 | Ohio | Huron | 0 | |
39079 | Ohio | Jackson | 0 | |
39081 | Ohio | Jefferson | 0 | |
39083 | Ohio | Knox | 0 | |
39087 | Ohio | Lawrence | 0 | |
39089 | Ohio | Licking | 0 | |
39091 | Ohio | Logan | 0 | |
39093 | Ohio | Lorain | 0 | |
39099 | Ohio | Mahoning | 0 | |
39101 | Ohio | Marion | 0 | |
39105 | Ohio | Meigs | 0 | |
39107 | Ohio | Mercer | 0 | |
39109 | Ohio | Miami | 0 | |
39111 | Ohio | Monroe | 0 | |
39113 | Ohio | Montgomery | 0 | |
39115 | Ohio | Morgan | 0 | |
39117 | Ohio | Morrow | 0 | |
39119 | Ohio | Muskingum | 0 | |
39121 | Ohio | Noble | 0 | |
39123 | Ohio | Ottawa | 0 | |
39127 | Ohio | Perry | 0 | |
39129 | Ohio | Pickaway | 0 | |
39131 | Ohio | Pike | 0 | |
39133 | Ohio | Portage | 0 | |
39135 | Ohio | Preble | 0 | |
39137 | Ohio | Putnam | 0 | |
39139 | Ohio | Richland | 0 | |
39141 | Ohio | Ross | 0 | |
39143 | Ohio | Sandusky | 0 | |
39145 | Ohio | Scioto | 0 | |
39147 | Ohio | Seneca | 0 | |
39149 | Ohio | Shelby | 0 | |
39155 | Ohio | Trumbull | 0 | |
39157 | Ohio | Tuscarawas | 0 | |
39159 | Ohio | Union | 0 | |
39161 | Ohio | Van Wert | 0 | |
39163 | Ohio | Vinton | 0 | |
39167 | Ohio | Washington | 0 | |
39169 | Ohio | Wayne | 0 | |
39171 | Ohio | Williams | 0 | |
39173 | Ohio | Wood | 0 | |
39175 | Ohio | Wyandot | 0 | |
40001 | Oklahoma | Adair | 0 | |
40003 | Oklahoma | Alfalfa | 0 | |
40005 | Oklahoma | Atoka | 0 | |
40007 | Oklahoma | Beaver | 0 | |
40009 | Oklahoma | Beckham | 0 | |
40011 | Oklahoma | Blaine | 0 | |
40013 | Oklahoma | Bryan | 0 | |
40015 | Oklahoma | Caddo | 0 | |
40017 | Oklahoma | Canadian | 0 | |
40019 | Oklahoma | Carter | 0 | |
40021 | Oklahoma | Cherokee | 0 | |
40023 | Oklahoma | Choctaw | 0 | |
40025 | Oklahoma | Cimarron | 0 | |
40027 | Oklahoma | Cleveland | 0 | |
40029 | Oklahoma | Coal | 0 | |
40031 | Oklahoma | Comanche | 0 | |
40033 | Oklahoma | Cotton | 0 | |
40035 | Oklahoma | Craig | 0 | |
40037 | Oklahoma | Creek | 0 | |
40039 | Oklahoma | Custer | 0 | |
40041 | Oklahoma | Delaware | 0 | |
40043 | Oklahoma | Dewey | 0 | |
40045 | Oklahoma | Ellis | 0 | |
40047 | Oklahoma | Garfield | 0 | |
40049 | Oklahoma | Garvin | 0 | |
40051 | Oklahoma | Grady | 0 | |
40053 | Oklahoma | Grant | 0 | |
40055 | Oklahoma | Greer | 0 | |
40057 | Oklahoma | Harmon | 0 | |
40059 | Oklahoma | Harper | 0 | |
40061 | Oklahoma | Haskell | 0 | |
40063 | Oklahoma | Hughes | 0 | |
40065 | Oklahoma | Jackson | 0 | |
40067 | Oklahoma | Jefferson | 0 | |
40069 | Oklahoma | Johnston | 0 | |
40071 | Oklahoma | Kay | 0 | |
40073 | Oklahoma | Kingfisher | 0 | |
40075 | Oklahoma | Kiowa | 0 | |
40077 | Oklahoma | Latimer | 0 | |
40079 | Oklahoma | Le Flore | 0 | |
40081 | Oklahoma | Lincoln | 0 | |
40083 | Oklahoma | Logan | 0 | |
40085 | Oklahoma | Love | 0 | |
40093 | Oklahoma | Major | 0 | |
40095 | Oklahoma | Marshall | 0 | |
40097 | Oklahoma | Mayes | 0 | |
40087 | Oklahoma | McClain | 0 | |
40089 | Oklahoma | McCurtain | 0 | |
40091 | Oklahoma | McIntosh | 0 | |
40099 | Oklahoma | Murray | 0 | |
40101 | Oklahoma | Muskogee | 0 | |
40103 | Oklahoma | Noble | 0 | |
40105 | Oklahoma | Nowata | 0 | |
40107 | Oklahoma | Okfuskee | 0 | |
40111 | Oklahoma | Okmulgee | 0 | |
40113 | Oklahoma | Osage | 0 | |
40115 | Oklahoma | Ottawa | 0 | |
40117 | Oklahoma | Pawnee | 0 | |
40119 | Oklahoma | Payne | 0 | |
40121 | Oklahoma | Pittsburg | 0 | |
40123 | Oklahoma | Pontotoc | 0 | |
40125 | Oklahoma | Pottawatomie | 0 | |
40127 | Oklahoma | Pushmataha | 0 | |
40129 | Oklahoma | Roger Mills | 0 | |
40131 | Oklahoma | Rogers | 0 | |
40133 | Oklahoma | Seminole | 0 | |
40135 | Oklahoma | Sequoyah | 0 | |
40137 | Oklahoma | Stephens | 0 | |
40139 | Oklahoma | Texas | 0 | |
40141 | Oklahoma | Tillman | 0 | |
40143 | Oklahoma | Tulsa | 0 | |
40145 | Oklahoma | Wagoner | 0 | |
40147 | Oklahoma | Washington | 0 | |
40149 | Oklahoma | Washita | 0 | |
40151 | Oklahoma | Woods | 0 | |
40153 | Oklahoma | Woodward | 0 | |
41001 | Oregon | Baker | 0 | |
41003 | Oregon | Benton | 0 | |
41007 | Oregon | Clatsop | 0 | |
41009 | Oregon | Columbia | 0 | |
41011 | Oregon | Coos | 0 | |
41013 | Oregon | Crook | 0 | |
41015 | Oregon | Curry | 0 | |
41019 | Oregon | Douglas | 0 | |
41021 | Oregon | Gilliam | 0 | |
41023 | Oregon | Grant | 0 | |
41025 | Oregon | Harney | 0 | |
41027 | Oregon | Hood River | 0 | |
41029 | Oregon | Jackson | 0 | |
41031 | Oregon | Jefferson | 0 | |
41033 | Oregon | Josephine | 0 | |
41035 | Oregon | Klamath | 0 | |
41037 | Oregon | Lake | 0 | |
41039 | Oregon | Lane | 0 | |
41041 | Oregon | Lincoln | 0 | |
41043 | Oregon | Linn | 0 | |
41045 | Oregon | Malheur | 0 | |
41047 | Oregon | Marion | 0 | |
41049 | Oregon | Morrow | 0 | |
41051 | Oregon | Multnomah | 0 | |
41053 | Oregon | Polk | 0 | |
41055 | Oregon | Sherman | 0 | |
41057 | Oregon | Tillamook | 0 | |
41059 | Oregon | Umatilla | 0 | |
41061 | Oregon | Union | 0 | |
41063 | Oregon | Wallowa | 0 | |
41065 | Oregon | Wasco | 0 | |
41069 | Oregon | Wheeler | 0 | |
41071 | Oregon | Yamhill | 0 | |
42001 | Pennsylvania | Adams | 0 | |
42005 | Pennsylvania | Armstrong | 0 | |
42007 | Pennsylvania | Beaver | 0 | |
42009 | Pennsylvania | Bedford | 0 | |
42013 | Pennsylvania | Blair | 0 | |
42015 | Pennsylvania | Bradford | 0 | |
42021 | Pennsylvania | Cambria | 0 | |
42023 | Pennsylvania | Cameron | 0 | |
42025 | Pennsylvania | Carbon | 0 | |
42031 | Pennsylvania | Clarion | 0 | |
42033 | Pennsylvania | Clearfield | 0 | |
42035 | Pennsylvania | Clinton | 0 | |
42037 | Pennsylvania | Columbia | 0 | |
42039 | Pennsylvania | Crawford | 0 | |
42047 | Pennsylvania | Elk | 0 | |
42051 | Pennsylvania | Fayette | 0 | |
42053 | Pennsylvania | Forest | 0 | |
42055 | Pennsylvania | Franklin | 0 | |
42057 | Pennsylvania | Fulton | 0 | |
42059 | Pennsylvania | Greene | 0 | |
42061 | Pennsylvania | Huntingdon | 0 | |
42063 | Pennsylvania | Indiana | 0 | |
42065 | Pennsylvania | Jefferson | 0 | |
42069 | Pennsylvania | Lackawanna | 0 | |
42073 | Pennsylvania | Lawrence | 0 | |
42079 | Pennsylvania | Luzerne | 0 | |
42081 | Pennsylvania | Lycoming | 0 | |
42083 | Pennsylvania | McKean | 0 | |
42087 | Pennsylvania | Mifflin | 0 | |
42093 | Pennsylvania | Montour | 0 | |
42097 | Pennsylvania | Northumberland | 0 | |
42099 | Pennsylvania | Perry | 0 | |
42105 | Pennsylvania | Potter | 0 | |
42107 | Pennsylvania | Schuylkill | 0 | |
42109 | Pennsylvania | Snyder | 0 | |
42111 | Pennsylvania | Somerset | 0 | |
42113 | Pennsylvania | Sullivan | 0 | |
42115 | Pennsylvania | Susquehanna | 0 | |
42117 | Pennsylvania | Tioga | 0 | |
42121 | Pennsylvania | Venango | 0 | |
42123 | Pennsylvania | Warren | 0 | |
42127 | Pennsylvania | Wayne | 0 | |
42131 | Pennsylvania | Wyoming | 0 | |
45001 | South Carolina | Abbeville | 0 | |
45003 | South Carolina | Aiken | 0 | |
45005 | South Carolina | Allendale | 0 | |
45007 | South Carolina | Anderson | 0 | |
45009 | South Carolina | Bamberg | 0 | |
45011 | South Carolina | Barnwell | 0 | |
45017 | South Carolina | Calhoun | 0 | |
45021 | South Carolina | Cherokee | 0 | |
45023 | South Carolina | Chester | 0 | |
45025 | South Carolina | Chesterfield | 0 | |
45027 | South Carolina | Clarendon | 0 | |
45029 | South Carolina | Colleton | 0 | |
45031 | South Carolina | Darlington | 0 | |
45033 | South Carolina | Dillon | 0 | |
45035 | South Carolina | Dorchester | 0 | |
45037 | South Carolina | Edgefield | 0 | |
45039 | South Carolina | Fairfield | 0 | |
45041 | South Carolina | Florence | 0 | |
45043 | South Carolina | Georgetown | 0 | |
45047 | South Carolina | Greenwood | 0 | |
45049 | South Carolina | Hampton | 0 | |
45051 | South Carolina | Horry | 0 | |
45053 | South Carolina | Jasper | 0 | |
45055 | South Carolina | Kershaw | 0 | |
45059 | South Carolina | Laurens | 0 | |
45061 | South Carolina | Lee | 0 | |
45063 | South Carolina | Lexington | 0 | |
45067 | South Carolina | Marion | 0 | |
45069 | South Carolina | Marlboro | 0 | |
45065 | South Carolina | McCormick | 0 | |
45071 | South Carolina | Newberry | 0 | |
45073 | South Carolina | Oconee | 0 | |
45075 | South Carolina | Orangeburg | 0 | |
45077 | South Carolina | Pickens | 0 | |
45079 | South Carolina | Richland | 0 | |
45081 | South Carolina | Saluda | 0 | |
45083 | South Carolina | Spartanburg | 0 | |
45085 | South Carolina | Sumter | 0 | |
45087 | South Carolina | Union | 0 | |
45089 | South Carolina | Williamsburg | 0 | |
46003 | South Dakota | Aurora | 0 | |
46005 | South Dakota | Beadle | 0 | |
46007 | South Dakota | Bennett | 0 | |
46009 | South Dakota | Bon Homme | 0 | |
46011 | South Dakota | Brookings | 0 | |
46013 | South Dakota | Brown | 0 | |
46015 | South Dakota | Brule | 0 | |
46017 | South Dakota | Buffalo | 0 | |
46019 | South Dakota | Butte | 0 | |
46021 | South Dakota | Campbell | 0 | |
46023 | South Dakota | Charles Mix | 0 | |
46025 | South Dakota | Clark | 0 | |
46027 | South Dakota | Clay | 0 | |
46029 | South Dakota | Codington | 0 | |
46031 | South Dakota | Corson | 0 | |
46033 | South Dakota | Custer | 0 | |
46035 | South Dakota | Davison | 0 | |
46037 | South Dakota | Day | 0 | |
46039 | South Dakota | Deuel | 0 | |
46041 | South Dakota | Dewey | 0 | |
46043 | South Dakota | Douglas | 0 | |
46045 | South Dakota | Edmunds | 0 | |
46047 | South Dakota | Fall River | 0 | |
46049 | South Dakota | Faulk | 0 | |
46051 | South Dakota | Grant | 0 | |
46053 | South Dakota | Gregory | 0 | |
46055 | South Dakota | Haakon | 0 | |
46057 | South Dakota | Hamlin | 0 | |
46059 | South Dakota | Hand | 0 | |
46061 | South Dakota | Hanson | 0 | |
46063 | South Dakota | Harding | 0 | |
46065 | South Dakota | Hughes | 0 | |
46067 | South Dakota | Hutchinson | 0 | |
46069 | South Dakota | Hyde | 0 | |
46071 | South Dakota | Jackson | 0 | |
46073 | South Dakota | Jerauld | 0 | |
46075 | South Dakota | Jones | 0 | |
46077 | South Dakota | Kingsbury | 0 | |
46079 | South Dakota | Lake | 0 | |
46081 | South Dakota | Lawrence | 0 | |
46083 | South Dakota | Lincoln | 0 | |
46085 | South Dakota | Lyman | 0 | |
46091 | South Dakota | Marshall | 0 | |
46087 | South Dakota | McCook | 0 | |
46089 | South Dakota | McPherson | 0 | |
46093 | South Dakota | Meade | 0 | |
46095 | South Dakota | Mellette | 0 | |
46097 | South Dakota | Miner | 0 | |
46099 | South Dakota | Minnehaha | 0 | |
46101 | South Dakota | Moody | 0 | |
46103 | South Dakota | Pennington | 0 | |
46105 | South Dakota | Perkins | 0 | |
46107 | South Dakota | Potter | 0 | |
46109 | South Dakota | Roberts | 0 | |
46111 | South Dakota | Sanborn | 0 | |
46113 | South Dakota | Shannon | 0 | |
46115 | South Dakota | Spink | 0 | |
46117 | South Dakota | Stanley | 0 | |
46119 | South Dakota | Sully | 0 | |
46121 | South Dakota | Todd | 0 | |
46123 | South Dakota | Tripp | 0 | |
46125 | South Dakota | Turner | 0 | |
46127 | South Dakota | Union | 0 | |
46129 | South Dakota | Walworth | 0 | |
46135 | South Dakota | Yankton | 0 | |
46137 | South Dakota | Ziebach | 0 | |
47001 | Tennessee | Anderson | 0 | |
47003 | Tennessee | Bedford | 0 | |
47005 | Tennessee | Benton | 0 | |
47007 | Tennessee | Bledsoe | 0 | |
47009 | Tennessee | Blount | 0 | |
47011 | Tennessee | Bradley | 0 | |
47013 | Tennessee | Campbell | 0 | |
47015 | Tennessee | Cannon | 0 | |
47017 | Tennessee | Carroll | 0 | |
47021 | Tennessee | Cheatham | 0 | |
47023 | Tennessee | Chester | 0 | |
47025 | Tennessee | Claiborne | 0 | |
47027 | Tennessee | Clay | 0 | |
47029 | Tennessee | Cocke | 0 | |
47031 | Tennessee | Coffee | 0 | |
47033 | Tennessee | Crockett | 0 | |
47035 | Tennessee | Cumberland | 0 | |
47039 | Tennessee | Decatur | 0 | |
47041 | Tennessee | DeKalb | 0 | |
47043 | Tennessee | Dickson | 0 | |
47045 | Tennessee | Dyer | 0 | |
47047 | Tennessee | Fayette | 0 | |
47049 | Tennessee | Fentress | 0 | |
47051 | Tennessee | Franklin | 0 | |
47053 | Tennessee | Gibson | 0 | |
47055 | Tennessee | Giles | 0 | |
47057 | Tennessee | Grainger | 0 | |
47059 | Tennessee | Greene | 0 | |
47061 | Tennessee | Grundy | 0 | |
47063 | Tennessee | Hamblen | 0 | |
47067 | Tennessee | Hancock | 0 | |
47069 | Tennessee | Hardeman | 0 | |
47071 | Tennessee | Hardin | 0 | |
47073 | Tennessee | Hawkins | 0 | |
47075 | Tennessee | Haywood | 0 | |
47077 | Tennessee | Henderson | 0 | |
47079 | Tennessee | Henry | 0 | |
47081 | Tennessee | Hickman | 0 | |
47083 | Tennessee | Houston | 0 | |
47085 | Tennessee | Humphreys | 0 | |
47087 | Tennessee | Jackson | 0 | |
47089 | Tennessee | Jefferson | 0 | |
47091 | Tennessee | Johnson | 0 | |
47095 | Tennessee | Lake | 0 | |
47097 | Tennessee | Lauderdale | 0 | |
47099 | Tennessee | Lawrence | 0 | |
47101 | Tennessee | Lewis | 0 | |
47103 | Tennessee | Lincoln | 0 | |
47105 | Tennessee | Loudon | 0 | |
47111 | Tennessee | Macon | 0 | |
47113 | Tennessee | Madison | 0 | |
47115 | Tennessee | Marion | 0 | |
47117 | Tennessee | Marshall | 0 | |
47119 | Tennessee | Maury | 0 | |
47107 | Tennessee | McMinn | 0 | |
47109 | Tennessee | McNairy | 0 | |
47121 | Tennessee | Meigs | 0 | |
47123 | Tennessee | Monroe | 0 | |
47125 | Tennessee | Montgomery | 0 | |
47127 | Tennessee | Moore | 0 | |
47129 | Tennessee | Morgan | 0 | |
47131 | Tennessee | Obion | 0 | |
47133 | Tennessee | Overton | 0 | |
47135 | Tennessee | Perry | 0 | |
47137 | Tennessee | Pickett | 0 | |
47139 | Tennessee | Polk | 0 | |
47143 | Tennessee | Rhea | 0 | |
47145 | Tennessee | Roane | 0 | |
47147 | Tennessee | Robertson | 0 | |
47149 | Tennessee | Rutherford | 0 | |
47151 | Tennessee | Scott | 0 | |
47153 | Tennessee | Sequatchie | 0 | |
47155 | Tennessee | Sevier | 0 | |
47159 | Tennessee | Smith | 0 | |
47161 | Tennessee | Stewart | 0 | |
47163 | Tennessee | Sullivan | 0 | |
47167 | Tennessee | Tipton | 0 | |
47169 | Tennessee | Trousdale | 0 | |
47171 | Tennessee | Unicoi | 0 | |
47173 | Tennessee | Union | 0 | |
47175 | Tennessee | Van Buren | 0 | |
47177 | Tennessee | Warren | 0 | |
47179 | Tennessee | Washington | 0 | |
47181 | Tennessee | Wayne | 0 | |
47183 | Tennessee | Weakley | 0 | |
47185 | Tennessee | White | 0 | |
47189 | Tennessee | Wilson | 0 | |
48001 | Texas | Anderson | 0 | |
48003 | Texas | Andrews | 0 | |
48005 | Texas | Angelina | 0 | |
48007 | Texas | Aransas | 0 | |
48009 | Texas | Archer | 0 | |
48011 | Texas | Armstrong | 0 | |
48013 | Texas | Atascosa | 0 | |
48015 | Texas | Austin | 0 | |
48017 | Texas | Bailey | 0 | |
48019 | Texas | Bandera | 0 | |
48021 | Texas | Bastrop | 0 | |
48023 | Texas | Baylor | 0 | |
48025 | Texas | Bee | 0 | |
48027 | Texas | Bell | 0 | |
48031 | Texas | Blanco | 0 | |
48033 | Texas | Borden | 0 | |
48035 | Texas | Bosque | 0 | |
48037 | Texas | Bowie | 0 | |
48039 | Texas | Brazoria | 0 | |
48041 | Texas | Brazos | 0 | |
48043 | Texas | Brewster | 0 | |
48045 | Texas | Briscoe | 0 | |
48047 | Texas | Brooks | 0 | |
48049 | Texas | Brown | 0 | |
48051 | Texas | Burleson | 0 | |
48053 | Texas | Burnet | 0 | |
48055 | Texas | Caldwell | 0 | |
48057 | Texas | Calhoun | 0 | |
48059 | Texas | Callahan | 0 | |
48061 | Texas | Cameron | 0 | |
48063 | Texas | Camp | 0 | |
48065 | Texas | Carson | 0 | |
48067 | Texas | Cass | 0 | |
48069 | Texas | Castro | 0 | |
48071 | Texas | Chambers | 0 | |
48073 | Texas | Cherokee | 0 | |
48075 | Texas | Childress | 0 | |
48077 | Texas | Clay | 0 | |
48079 | Texas | Cochran | 0 | |
48081 | Texas | Coke | 0 | |
48083 | Texas | Coleman | 0 | |
48087 | Texas | Collingsworth | 0 | |
48089 | Texas | Colorado | 0 | |
48091 | Texas | Comal | 0 | |
48093 | Texas | Comanche | 0 | |
48095 | Texas | Concho | 0 | |
48097 | Texas | Cooke | 0 | |
48099 | Texas | Coryell | 0 | |
48101 | Texas | Cottle | 0 | |
48103 | Texas | Crane | 0 | |
48105 | Texas | Crockett | 0 | |
48107 | Texas | Crosby | 0 | |
48109 | Texas | Culberson | 0 | |
48111 | Texas | Dallam | 0 | |
48115 | Texas | Dawson | 0 | |
48117 | Texas | Deaf Smith | 0 | |
48119 | Texas | Delta | 0 | |
48123 | Texas | DeWitt | 0 | |
48125 | Texas | Dickens | 0 | |
48127 | Texas | Dimmit | 0 | |
48129 | Texas | Donley | 0 | |
48131 | Texas | Duval | 0 | |
48133 | Texas | Eastland | 0 | |
48135 | Texas | Ector | 0 | |
48137 | Texas | Edwards | 0 | |
48141 | Texas | El Paso | 0 | |
48139 | Texas | Ellis | 0 | |
48143 | Texas | Erath | 0 | |
48145 | Texas | Falls | 0 | |
48147 | Texas | Fannin | 0 | |
48149 | Texas | Fayette | 0 | |
48151 | Texas | Fisher | 0 | |
48153 | Texas | Floyd | 0 | |
48155 | Texas | Foard | 0 | |
48157 | Texas | Fort Bend | 0 | |
48159 | Texas | Franklin | 0 | |
48161 | Texas | Freestone | 0 | |
48163 | Texas | Frio | 0 | |
48165 | Texas | Gaines | 0 | |
48167 | Texas | Galveston | 0 | |
48169 | Texas | Garza | 0 | |
48173 | Texas | Glasscock | 0 | |
48175 | Texas | Goliad | 0 | |
48177 | Texas | Gonzales | 0 | |
48179 | Texas | Gray | 0 | |
48181 | Texas | Grayson | 0 | |
48183 | Texas | Gregg | 0 | |
48185 | Texas | Grimes | 0 | |
48187 | Texas | Guadalupe | 0 | |
48189 | Texas | Hale | 0 | |
48191 | Texas | Hall | 0 | |
48193 | Texas | Hamilton | 0 | |
48195 | Texas | Hansford | 0 | |
48197 | Texas | Hardeman | 0 | |
48199 | Texas | Hardin | 0 | |
48203 | Texas | Harrison | 0 | |
48205 | Texas | Hartley | 0 | |
48207 | Texas | Haskell | 0 | |
48211 | Texas | Hemphill | 0 | |
48213 | Texas | Henderson | 0 | |
48215 | Texas | Hidalgo | 0 | |
48217 | Texas | Hill | 0 | |
48219 | Texas | Hockley | 0 | |
48221 | Texas | Hood | 0 | |
48223 | Texas | Hopkins | 0 | |
48225 | Texas | Houston | 0 | |
48227 | Texas | Howard | 0 | |
48229 | Texas | Hudspeth | 0 | |
48231 | Texas | Hunt | 0 | |
48233 | Texas | Hutchinson | 0 | |
48235 | Texas | Irion | 0 | |
48237 | Texas | Jack | 0 | |
48239 | Texas | Jackson | 0 | |
48241 | Texas | Jasper | 0 | |
48243 | Texas | Jeff Davis | 0 | |
48245 | Texas | Jefferson | 0 | |
48247 | Texas | Jim Hogg | 0 | |
48249 | Texas | Jim Wells | 0 | |
48251 | Texas | Johnson | 0 | |
48253 | Texas | Jones | 0 | |
48255 | Texas | Karnes | 0 | |
48257 | Texas | Kaufman | 0 | |
48259 | Texas | Kendall | 0 | |
48261 | Texas | Kenedy | 0 | |
48263 | Texas | Kent | 0 | |
48265 | Texas | Kerr | 0 | |
48267 | Texas | Kimble | 0 | |
48269 | Texas | King | 0 | |
48271 | Texas | Kinney | 0 | |
48273 | Texas | Kleberg | 0 | |
48275 | Texas | Knox | 0 | |
48283 | Texas | La Salle | 0 | |
48277 | Texas | Lamar | 0 | |
48279 | Texas | Lamb | 0 | |
48281 | Texas | Lampasas | 0 | |
48285 | Texas | Lavaca | 0 | |
48287 | Texas | Lee | 0 | |
48289 | Texas | Leon | 0 | |
48291 | Texas | Liberty | 0 | |
48293 | Texas | Limestone | 0 | |
48295 | Texas | Lipscomb | 0 | |
48297 | Texas | Live Oak | 0 | |
48299 | Texas | Llano | 0 | |
48301 | Texas | Loving | 0 | |
48303 | Texas | Lubbock | 0 | |
48305 | Texas | Lynn | 0 | |
48313 | Texas | Madison | 0 | |
48315 | Texas | Marion | 0 | |
48317 | Texas | Martin | 0 | |
48319 | Texas | Mason | 0 | |
48321 | Texas | Matagorda | 0 | |
48323 | Texas | Maverick | 0 | |
48307 | Texas | McCulloch | 0 | |
48309 | Texas | McLennan | 0 | |
48311 | Texas | McMullen | 0 | |
48325 | Texas | Medina | 0 | |
48327 | Texas | Menard | 0 | |
48329 | Texas | Midland | 0 | |
48331 | Texas | Milam | 0 | |
48333 | Texas | Mills | 0 | |
48335 | Texas | Mitchell | 0 | |
48337 | Texas | Montague | 0 | |
48341 | Texas | Moore | 0 | |
48343 | Texas | Morris | 0 | |
48345 | Texas | Motley | 0 | |
48347 | Texas | Nacogdoches | 0 | |
48349 | Texas | Navarro | 0 | |
48351 | Texas | Newton | 0 | |
48353 | Texas | Nolan | 0 | |
48355 | Texas | Nueces | 0 | |
48357 | Texas | Ochiltree | 0 | |
48359 | Texas | Oldham | 0 | |
48361 | Texas | Orange | 0 | |
48363 | Texas | Palo Pinto | 0 | |
48365 | Texas | Panola | 0 | |
48369 | Texas | Parmer | 0 | |
48371 | Texas | Pecos | 0 | |
48373 | Texas | Polk | 0 | |
48375 | Texas | Potter | 0 | |
48377 | Texas | Presidio | 0 | |
48379 | Texas | Rains | 0 | |
48381 | Texas | Randall | 0 | |
48383 | Texas | Reagan | 0 | |
48385 | Texas | Real | 0 | |
48387 | Texas | Red River | 0 | |
48389 | Texas | Reeves | 0 | |
48391 | Texas | Refugio | 0 | |
48393 | Texas | Roberts | 0 | |
48395 | Texas | Robertson | 0 | |
48399 | Texas | Runnels | 0 | |
48401 | Texas | Rusk | 0 | |
48403 | Texas | Sabine | 0 | |
48405 | Texas | San Augustine | 0 | |
48407 | Texas | San Jacinto | 0 | |
48409 | Texas | San Patricio | 0 | |
48411 | Texas | San Saba | 0 | |
48413 | Texas | Schleicher | 0 | |
48415 | Texas | Scurry | 0 | |
48417 | Texas | Shackelford | 0 | |
48419 | Texas | Shelby | 0 | |
48421 | Texas | Sherman | 0 | |
48423 | Texas | Smith | 0 | |
48425 | Texas | Somervell | 0 | |
48427 | Texas | Starr | 0 | |
48429 | Texas | Stephens | 0 | |
48431 | Texas | Sterling | 0 | |
48433 | Texas | Stonewall | 0 | |
48435 | Texas | Sutton | 0 | |
48437 | Texas | Swisher | 0 | |
48441 | Texas | Taylor | 0 | |
48443 | Texas | Terrell | 0 | |
48445 | Texas | Terry | 0 | |
48447 | Texas | Throckmorton | 0 | |
48449 | Texas | Titus | 0 | |
48451 | Texas | Tom Green | 0 | |
48455 | Texas | Trinity | 0 | |
48457 | Texas | Tyler | 0 | |
48459 | Texas | Upshur | 0 | |
48461 | Texas | Upton | 0 | |
48463 | Texas | Uvalde | 0 | |
48465 | Texas | Val Verde | 0 | |
48467 | Texas | Van Zandt | 0 | |
48469 | Texas | Victoria | 0 | |
48471 | Texas | Walker | 0 | |
48473 | Texas | Waller | 0 | |
48475 | Texas | Ward | 0 | |
48477 | Texas | Washington | 0 | |
48479 | Texas | Webb | 0 | |
48481 | Texas | Wharton | 0 | |
48483 | Texas | Wheeler | 0 | |
48485 | Texas | Wichita | 0 | |
48487 | Texas | Wilbarger | 0 | |
48489 | Texas | Willacy | 0 | |
48493 | Texas | Wilson | 0 | |
48495 | Texas | Winkler | 0 | |
48497 | Texas | Wise | 0 | |
48499 | Texas | Wood | 0 | |
48501 | Texas | Yoakum | 0 | |
48503 | Texas | Young | 0 | |
48505 | Texas | Zapata | 0 | |
48507 | Texas | Zavala | 0 | |
49001 | Utah | Beaver | 0 | |
49003 | Utah | Box Elder | 0 | |
49007 | Utah | Carbon | 0 | |
49009 | Utah | Daggett | 0 | |
49013 | Utah | Duchesne | 0 | |
49015 | Utah | Emery | 0 | |
49017 | Utah | Garfield | 0 | |
49019 | Utah | Grand | 0 | |
49021 | Utah | Iron | 0 | |
49023 | Utah | Juab | 0 | |
49025 | Utah | Kane | 0 | |
49027 | Utah | Millard | 0 | |
49029 | Utah | Morgan | 0 | |
49031 | Utah | Piute | 0 | |
49033 | Utah | Rich | 0 | |
49037 | Utah | San Juan | 0 | |
49039 | Utah | Sanpete | 0 | |
49041 | Utah | Sevier | 0 | |
49045 | Utah | Tooele | 0 | |
49047 | Utah | Uintah | 0 | |
49051 | Utah | Wasatch | 0 | |
49053 | Utah | Washington | 0 | |
49055 | Utah | Wayne | 0 | |
49057 | Utah | Weber | 0 | |
50005 | Vermont | Caledonia | 0 | |
50009 | Vermont | Essex | 0 | |
50011 | Vermont | Franklin | 0 | |
50017 | Vermont | Orange | 0 | |
50019 | Vermont | Orleans | 0 | |
50021 | Vermont | Rutland | 0 | |
50023 | Vermont | Washington | 0 | |
50025 | Vermont | Windham | 0 | |
50027 | Vermont | Windsor | 0 | |
51001 | Virginia | Accomack | 0 | |
51510 | Virginia | Alexandria city | 0 | |
51005 | Virginia | Alleghany | 0 | |
51007 | Virginia | Amelia | 0 | |
51009 | Virginia | Amherst | 0 | |
51011 | Virginia | Appomattox | 0 | |
51013 | Virginia | Arlington | 0 | |
51015 | Virginia | Augusta | 0 | |
51017 | Virginia | Bath | 0 | |
51019 | Virginia | Bedford | 0 | |
51515 | Virginia | Bedford city | 0 | |
51021 | Virginia | Bland | 0 | |
51023 | Virginia | Botetourt | 0 | |
51520 | Virginia | Bristol city | 0 | |
51025 | Virginia | Brunswick | 0 | |
51027 | Virginia | Buchanan | 0 | |
51029 | Virginia | Buckingham | 0 | |
51530 | Virginia | Buena Vista city | 0 | |
51031 | Virginia | Campbell | 0 | |
51033 | Virginia | Caroline | 0 | |
51035 | Virginia | Carroll | 0 | |
51036 | Virginia | Charles City | 0 | |
51037 | Virginia | Charlotte | 0 | |
51540 | Virginia | Charlottesville city | 0 | |
51043 | Virginia | Clarke | 0 | |
51570 | Virginia | Colonial Heights city | 0 | |
51580 | Virginia | Covington city | 0 | |
51045 | Virginia | Craig | 0 | |
51047 | Virginia | Culpeper | 0 | |
51049 | Virginia | Cumberland | 0 | |
51590 | Virginia | Danville city | 0 | |
51051 | Virginia | Dickenson | 0 | |
51053 | Virginia | Dinwiddie | 0 | |
51595 | Virginia | Emporia city | 0 | |
51057 | Virginia | Essex | 0 | |
51600 | Virginia | Fairfax city | 0 | |
51610 | Virginia | Falls Church city | 0 | |
51063 | Virginia | Floyd | 0 | |
51065 | Virginia | Fluvanna | 0 | |
51620 | Virginia | Franklin city | 0 | |
51069 | Virginia | Frederick | 0 | |
51640 | Virginia | Galax city | 0 | |
51071 | Virginia | Giles | 0 | |
51073 | Virginia | Gloucester | 0 | |
51075 | Virginia | Goochland | 0 | |
51077 | Virginia | Grayson | 0 | |
51081 | Virginia | Greensville | 0 | |
51083 | Virginia | Halifax | 0 | |
51650 | Virginia | Hampton city | 0 | |
51660 | Virginia | Harrisonburg city | 0 | |
51089 | Virginia | Henry | 0 | |
51091 | Virginia | Highland | 0 | |
51670 | Virginia | Hopewell city | 0 | |
51093 | Virginia | Isle of Wight | 0 | |
51097 | Virginia | King and Queen | 0 | |
51099 | Virginia | King George | 0 | |
51101 | Virginia | King William | 0 | |
51103 | Virginia | Lancaster | 0 | |
51105 | Virginia | Lee | 0 | |
51678 | Virginia | Lexington city | 0 | |
51109 | Virginia | Louisa | 0 | |
51111 | Virginia | Lunenburg | 0 | |
51113 | Virginia | Madison | 0 | |
51685 | Virginia | Manassas Park city | 0 | |
51690 | Virginia | Martinsville city | 0 | |
51117 | Virginia | Mecklenburg | 0 | |
51119 | Virginia | Middlesex | 0 | |
51121 | Virginia | Montgomery | 0 | |
51125 | Virginia | Nelson | 0 | |
51127 | Virginia | New Kent | 0 | |
51700 | Virginia | Newport News city | 0 | |
51131 | Virginia | Northampton | 0 | |
51133 | Virginia | Northumberland | 0 | |
51720 | Virginia | Norton city | 0 | |
51135 | Virginia | Nottoway | 0 | |
51137 | Virginia | Orange | 0 | |
51139 | Virginia | Page | 0 | |
51141 | Virginia | Patrick | 0 | |
51730 | Virginia | Petersburg city | 0 | |
51143 | Virginia | Pittsylvania | 0 | |
51735 | Virginia | Poquoson city | 0 | |
51740 | Virginia | Portsmouth city | 0 | |
51147 | Virginia | Prince Edward | 0 | |
51149 | Virginia | Prince George | 0 | |
51155 | Virginia | Pulaski | 0 | |
51750 | Virginia | Radford city | 0 | |
51157 | Virginia | Rappahannock | 0 | |
51159 | Virginia | Richmond | 0 | |
51163 | Virginia | Rockbridge | 0 | |
51165 | Virginia | Rockingham | 0 | |
51167 | Virginia | Russell | 0 | |
51775 | Virginia | Salem city | 1 | |
51169 | Virginia | Scott | 0 | |
51171 | Virginia | Shenandoah | 0 | |
51173 | Virginia | Smyth | 0 | |
51175 | Virginia | Southampton | 0 | |
51790 | Virginia | Staunton city | 0 | |
51800 | Virginia | Suffolk city | 0 | |
51181 | Virginia | Surry | 0 | |
51183 | Virginia | Sussex | 0 | |
51185 | Virginia | Tazewell | 0 | |
51187 | Virginia | Warren | 0 | |
51191 | Virginia | Washington | 0 | |
51820 | Virginia | Waynesboro city | 0 | |
51193 | Virginia | Westmoreland | 0 | |
51830 | Virginia | Williamsburg city | 0 | |
51840 | Virginia | Winchester city | 0 | |
51195 | Virginia | Wise | 0 | |
51197 | Virginia | Wythe | 0 | |
53001 | Washington | Adams | 0 | |
53003 | Washington | Asotin | 0 | |
53005 | Washington | Benton | 0 | |
53007 | Washington | Chelan | 0 | |
53009 | Washington | Clallam | 0 | |
53013 | Washington | Columbia | 0 | |
53015 | Washington | Cowlitz | 0 | |
53017 | Washington | Douglas | 0 | |
53019 | Washington | Ferry | 0 | |
53021 | Washington | Franklin | 0 | |
53023 | Washington | Garfield | 0 | |
53025 | Washington | Grant | 0 | |
53027 | Washington | Grays Harbor | 0 | |
53029 | Washington | Island | 0 | |
53031 | Washington | Jefferson | 0 | |
53037 | Washington | Kittitas | 0 | |
53039 | Washington | Klickitat | 0 | |
53041 | Washington | Lewis | 0 | |
53043 | Washington | Lincoln | 0 | |
53045 | Washington | Mason | 0 | |
53047 | Washington | Okanogan | 0 | |
53049 | Washington | Pacific | 0 | |
53051 | Washington | Pend Oreille | 0 | |
53055 | Washington | San Juan | 0 | |
53057 | Washington | Skagit | 0 | |
53059 | Washington | Skamania | 0 | |
53063 | Washington | Spokane | 0 | |
53065 | Washington | Stevens | 0 | |
53067 | Washington | Thurston | 0 | |
53069 | Washington | Wahkiakum | 0 | |
53071 | Washington | Walla Walla | 0 | |
53073 | Washington | Whatcom | 0 | |
53075 | Washington | Whitman | 0 | |
53077 | Washington | Yakima | 0 | |
54001 | West Virginia | Barbour | 0 | |
54003 | West Virginia | Berkeley | 0 | |
54005 | West Virginia | Boone | 0 | |
54007 | West Virginia | Braxton | 0 | |
54009 | West Virginia | Brooke | 0 | |
54011 | West Virginia | Cabell | 0 | |
54013 | West Virginia | Calhoun | 0 | |
54015 | West Virginia | Clay | 0 | |
54017 | West Virginia | Doddridge | 0 | |
54019 | West Virginia | Fayette | 0 | |
54021 | West Virginia | Gilmer | 0 | |
54023 | West Virginia | Grant | 0 | |
54025 | West Virginia | Greenbrier | 0 | |
54027 | West Virginia | Hampshire | 0 | |
54029 | West Virginia | Hancock | 0 | |
54031 | West Virginia | Hardy | 0 | |
54033 | West Virginia | Harrison | 0 | |
54035 | West Virginia | Jackson | 0 | |
54037 | West Virginia | Jefferson | 0 | |
54039 | West Virginia | Kanawha | 0 | |
54041 | West Virginia | Lewis | 0 | |
54043 | West Virginia | Lincoln | 0 | |
54045 | West Virginia | Logan | 0 | |
54049 | West Virginia | Marion | 0 | |
54051 | West Virginia | Marshall | 0 | |
54053 | West Virginia | Mason | 0 | |
54047 | West Virginia | McDowell | 0 | |
54055 | West Virginia | Mercer | 0 | |
54057 | West Virginia | Mineral | 0 | |
54059 | West Virginia | Mingo | 0 | |
54061 | West Virginia | Monongalia | 0 | |
54063 | West Virginia | Monroe | 0 | |
54065 | West Virginia | Morgan | 0 | |
54067 | West Virginia | Nicholas | 0 | |
54069 | West Virginia | Ohio | 0 | |
54071 | West Virginia | Pendleton | 0 | |
54073 | West Virginia | Pleasants | 0 | |
54075 | West Virginia | Pocahontas | 0 | |
54077 | West Virginia | Preston | 0 | |
54079 | West Virginia | Putnam | 0 | |
54081 | West Virginia | Raleigh | 0 | |
54083 | West Virginia | Randolph | 0 | |
54085 | West Virginia | Ritchie | 0 | |
54087 | West Virginia | Roane | 0 | |
54089 | West Virginia | Summers | 0 | |
54091 | West Virginia | Taylor | 0 | |
54093 | West Virginia | Tucker | 0 | |
54095 | West Virginia | Tyler | 0 | |
54097 | West Virginia | Upshur | 0 | |
54099 | West Virginia | Wayne | 0 | |
54101 | West Virginia | Webster | 0 | |
54103 | West Virginia | Wetzel | 0 | |
54105 | West Virginia | Wirt | 0 | |
54107 | West Virginia | Wood | 0 | |
54109 | West Virginia | Wyoming | 0 | |
55001 | Wisconsin | Adams | 0 | |
55003 | Wisconsin | Ashland | 0 | |
55005 | Wisconsin | Barron | 0 | |
55007 | Wisconsin | Bayfield | 0 | |
55009 | Wisconsin | Brown | 0 | |
55011 | Wisconsin | Buffalo | 0 | |
55013 | Wisconsin | Burnett | 0 | |
55015 | Wisconsin | Calumet | 0 | |
55017 | Wisconsin | Chippewa | 0 | |
55019 | Wisconsin | Clark | 0 | |
55021 | Wisconsin | Columbia | 0 | |
55023 | Wisconsin | Crawford | 0 | |
55027 | Wisconsin | Dodge | 0 | |
55029 | Wisconsin | Door | 0 | |
55031 | Wisconsin | Douglas | 0 | |
55033 | Wisconsin | Dunn | 0 | |
55035 | Wisconsin | Eau Claire | 0 | |
55037 | Wisconsin | Florence | 0 | |
55039 | Wisconsin | Fond du Lac | 0 | |
55041 | Wisconsin | Forest | 0 | |
55043 | Wisconsin | Grant | 0 | |
55045 | Wisconsin | Green | 0 | |
55047 | Wisconsin | Green Lake | 0 | |
55049 | Wisconsin | Iowa | 0 | |
55051 | Wisconsin | Iron | 0 | |
55053 | Wisconsin | Jackson | 0 | |
55055 | Wisconsin | Jefferson | 0 | |
55057 | Wisconsin | Juneau | 0 | |
55059 | Wisconsin | Kenosha | 0 | |
55061 | Wisconsin | Kewaunee | 0 | |
55063 | Wisconsin | La Crosse | 0 | |
55065 | Wisconsin | Lafayette | 0 | |
55067 | Wisconsin | Langlade | 0 | |
55069 | Wisconsin | Lincoln | 0 | |
55071 | Wisconsin | Manitowoc | 0 | |
55073 | Wisconsin | Marathon | 0 | |
55075 | Wisconsin | Marinette | 0 | |
55077 | Wisconsin | Marquette | 0 | |
55078 | Wisconsin | Menominee | 0 | |
55081 | Wisconsin | Monroe | 0 | |
55083 | Wisconsin | Oconto | 0 | |
55085 | Wisconsin | Oneida | 0 | |
55087 | Wisconsin | Outagamie | 0 | |
55089 | Wisconsin | Ozaukee | 0 | |
55091 | Wisconsin | Pepin | 0 | |
55093 | Wisconsin | Pierce | 0 | |
55095 | Wisconsin | Polk | 0 | |
55097 | Wisconsin | Portage | 0 | |
55099 | Wisconsin | Price | 0 | |
55101 | Wisconsin | Racine | 0 | |
55103 | Wisconsin | Richland | 0 | |
55105 | Wisconsin | Rock | 0 | |
55107 | Wisconsin | Rusk | 0 | |
55111 | Wisconsin | Sauk | 0 | |
55113 | Wisconsin | Sawyer | 0 | |
55115 | Wisconsin | Shawano | 0 | |
55117 | Wisconsin | Sheboygan | 0 | |
55109 | Wisconsin | St. Croix | 0 | |
55119 | Wisconsin | Taylor | 0 | |
55121 | Wisconsin | Trempealeau | 0 | |
55123 | Wisconsin | Vernon | 0 | |
55125 | Wisconsin | Vilas | 0 | |
55127 | Wisconsin | Walworth | 0 | |
55129 | Wisconsin | Washburn | 0 | |
55135 | Wisconsin | Waupaca | 0 | |
55137 | Wisconsin | Waushara | 0 | |
55139 | Wisconsin | Winnebago | 0 | |
55141 | Wisconsin | Wood | 0 | |
56001 | Wyoming | Albany | 0 | |
56003 | Wyoming | Big Horn | 0 | |
56005 | Wyoming | Campbell | 0 | |
56007 | Wyoming | Carbon | 0 | |
56009 | Wyoming | Converse | 0 | |
56011 | Wyoming | Crook | 0 | |
56013 | Wyoming | Fremont | 0 | |
56015 | Wyoming | Goshen | 0 | |
56017 | Wyoming | Hot Springs | 0 | |
56019 | Wyoming | Johnson | 0 | |
56021 | Wyoming | Laramie | 0 | |
56023 | Wyoming | Lincoln | 0 | |
56025 | Wyoming | Natrona | 0 | |
56027 | Wyoming | Niobrara | 0 | |
56029 | Wyoming | Park | 0 | |
56031 | Wyoming | Platte | 0 | |
56033 | Wyoming | Sheridan | 0 | |
56035 | Wyoming | Sublette | 0 | |
56037 | Wyoming | Sweetwater | 0 | |
56039 | Wyoming | Teton | 0 | |
56041 | Wyoming | Uinta | 0 | |
56043 | Wyoming | Washakie | 0 | |
56045 | Wyoming | Weston | 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment