diff --git a/README.md b/README.md index 3a52484..13bbb39 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,11 @@ -# material-ui-superSelectField +# material-ui-superSelectField [![npm][npm-image]][npm-url] [![downloads][downloads-image]][downloads-url] [![javascript style guide][standard-image]][standard-url] + +[npm-image]: https://img.shields.io/npm/v/material-ui-superselectfield.svg +[npm-url]: https://npmjs.org/package/material-ui-superselectfield +[downloads-image]: https://img.shields.io/npm/dm/material-ui-superselectfield.svg +[downloads-url]: https://npmjs.org/package/material-ui-superselectfield +[standard-image]: https://img.shields.io/badge/code_style-standard-brightgreen.svg +[standard-url]: https://standardjs.com ## Table of Contents - [Preview](#preview) @@ -49,7 +56,7 @@ injectTapEventPlugin() | children | any | [] | Datasource is an array of any type of nodes, styled at your convenience.
/!\ REQUIRED: each node must expose a `value` property. This value property will be used by default for both option's value and label.
A `label` property can be provided to specify a different value than `value`. | | nb2show | number | 5 | Number of options displayed from the menu. | | elementHeight | number, number[] | 36 | Height in pixels of each option element. If elements have different heights, you can provide them in an array. | -| showAutocompleteThreshold | number | 10 | Maximum number of options from which to display the autocomplete search field. | +| showAutocompleteThreshold | number | 10 | Maximum number of options from which to display the autocomplete search field.
For example, if autoComplete textfield need to be disabled, just set this prop with a value higher than children length. | | autocompleteFilter | function | see below | Provide your own filtering parser. Default: case insensitive.
The search field will appear only if there are more than 10 children (see `showAutocompleteThreshold`).
By default, the parser will check for `label` props, 'value' otherwise. | ##### Note when setting value : if multiple is set, value must be at least an empty Array. diff --git a/lib/SuperSelectField.js b/lib/SuperSelectField.js index 369d61d..17d838b 100644 --- a/lib/SuperSelectField.js +++ b/lib/SuperSelectField.js @@ -8,12 +8,12 @@ var _entries = require('babel-runtime/core-js/object/entries'); var _entries2 = _interopRequireDefault(_entries); -var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; - var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }(); var _div, _div2; +var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; + var _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"]) _i["return"](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError("Invalid attempt to destructure non-iterable instance"); } }; }(); var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; @@ -65,9 +65,42 @@ function _inherits(subClass, superClass) { if (typeof superClass !== "function" function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } // Utilities +function entries(obj) { + return 'entries' in Object ? (0, _entries2.default)(obj) : function (obj) { + var entries = []; + var keys = Object.keys(obj); + var _iteratorNormalCompletion = true; + var _didIteratorError = false; + var _iteratorError = undefined; + + try { + for (var _iterator = keys[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) { + var prop = _step.value; + + entries.push([prop, obj[prop]]); + } + } catch (err) { + _didIteratorError = true; + _iteratorError = err; + } finally { + try { + if (!_iteratorNormalCompletion && _iterator.return) { + _iterator.return(); + } + } finally { + if (_didIteratorError) { + throw _iteratorError; + } + } + } + + return entries; + }; +} + function areEqual(val1, val2) { if (!val1 || !val2 || (typeof val1 === 'undefined' ? 'undefined' : _typeof(val1)) !== (typeof val2 === 'undefined' ? 'undefined' : _typeof(val2))) return false;else if (typeof val1 === 'string' || typeof val1 === 'number' || typeof val1 === 'boolean') return val1 === val2;else if ((typeof val1 === 'undefined' ? 'undefined' : _typeof(val1)) === 'object') { - return Object.keys(val1).length === Object.keys(val2).length && (0, _entries2.default)(val2).every(function (_ref) { + return Object.keys(val1).length === Object.keys(val2).length && entries(val2).every(function (_ref) { var _ref2 = _slicedToArray(_ref, 2), key2 = _ref2[0], value2 = _ref2[1]; @@ -83,6 +116,52 @@ var checkFormat = function checkFormat(value) { }); }; +var objectShape = _react.PropTypes.shape({ + value: _react.PropTypes.any.isRequired, + label: _react.PropTypes.string +}); + +// ================================================================ +// ==================== FloatingLabel ===================== +// ================================================================ + +// TODO: implement style lock when disabled = true +var FloatingLabel = function FloatingLabel(_ref3) { + var children = _ref3.children, + shrink = _ref3.shrink, + shrinkStyle = _ref3.shrinkStyle, + disabled = _ref3.disabled; + + var defaultStyles = { + position: 'absolute', + lineHeight: '22px', + transition: 'cubic-bezier(0.23, 1, 0.32, 1)', // transitions.easeOut(), + zIndex: 1, // Needed to display label above Chrome's autocomplete field background + transform: 'scale(1) translate(0, 0)', + transformOrigin: 'left top', + pointerEvents: 'auto', + userSelect: 'none' + }; + + var shrinkStyles = shrink ? _extends({ + transform: 'scale(0.75) translate(0, -28px)', + pointerEvents: 'none' + }, shrinkStyle) : null; + + // console.debug('shrink', shrink) + + return _react2.default.createElement( + 'label', + { style: _extends({}, defaultStyles, shrinkStyles) }, + children + ); +}; + +FloatingLabel.defaultProps = { + disabled: false, + shrink: false +}; + // ================================================================ // ==================== SelectionsPresenter ===================== // ================================================================ @@ -90,6 +169,7 @@ var checkFormat = function checkFormat(value) { // noinspection JSDuplicatedDeclaration var styles = { div1: (_div = { + position: 'relative', height: '100%', display: '-webkit-box' }, _defineProperty(_div, 'display', '-webkit-flex'), _defineProperty(_div, 'display', '-moz-box'), _defineProperty(_div, 'display', '-ms-flexbox'), _defineProperty(_div, 'display', '-o-flex'), _defineProperty(_div, 'display', 'flex'), _defineProperty(_div, 'WebkitBoxOrient', 'vertical'), _defineProperty(_div, 'WebkitBoxDirection', 'normal'), _defineProperty(_div, 'WebkitFlexDirection', 'column'), _defineProperty(_div, 'msFlexDirection', 'column'), _defineProperty(_div, 'OFlexDirection', 'column'), _defineProperty(_div, 'flexDirection', 'column'), _defineProperty(_div, 'WebkitBoxPack', 'end'), _defineProperty(_div, 'WebkitJustifyContent', 'flex-end'), _defineProperty(_div, 'msFlexPack', 'end'), _defineProperty(_div, 'OJustifyContent', 'flex-end'), _defineProperty(_div, 'justifyContent', 'flex-end'), _div), @@ -106,12 +186,10 @@ var styles = { } }; -var SelectionsPresenter = function SelectionsPresenter(_ref3) { - var selectedValues = _ref3.selectedValues, - hintText = _ref3.hintText, - selectionsRenderer = _ref3.selectionsRenderer; - - // TODO: add floatingLabelText +var SelectionsPresenter = function SelectionsPresenter(_ref4) { + var selectedValues = _ref4.selectedValues, + hintText = _ref4.hintText, + selectionsRenderer = _ref4.selectionsRenderer; return _react2.default.createElement( 'div', { style: styles.div1 }, @@ -129,18 +207,12 @@ var SelectionsPresenter = function SelectionsPresenter(_ref3) { ); }; -var objectShape = _react.PropTypes.shape({ - value: _react.PropTypes.any.isRequired, - label: _react.PropTypes.string -}); - SelectionsPresenter.propTypes = { value: _react.PropTypes.oneOfType([objectShape, _react.PropTypes.arrayOf(objectShape)]), selectionsRenderer: _react.PropTypes.func, hintText: _react.PropTypes.string }; -// noinspection JSUnusedGlobalSymbols SelectionsPresenter.defaultProps = { hintText: 'Click me', value: null, @@ -150,9 +222,9 @@ SelectionsPresenter.defaultProps = { label = values.label; if (Array.isArray(values)) { - return values.length ? values.map(function (_ref4) { - var value = _ref4.value, - label = _ref4.label; + return values.length ? values.map(function (_ref5) { + var value = _ref5.value, + label = _ref5.label; return label || value; }).join(', ') : hintText; } else if (label || value) return label || value;else return hintText; @@ -171,6 +243,20 @@ var SelectField = function (_Component) { var _this = _possibleConstructorReturn(this, (SelectField.__proto__ || Object.getPrototypeOf(SelectField)).call(this, props, context)); + _this.onBlur = function (event) { + var _this$state = _this.state, + isFocused = _this$state.isFocused, + isOpen = _this$state.isOpen; + /* console.debug('isFocused', isFocused, + '\nisOpen', isOpen, + '\nevent type', event.type, + '\ntarget', event.target, + '\nrelatedTarget', event.relatedTarget + ) */ + + if (!isOpen) _this.setState({ isFocused: false }); + }; + _this.closeMenu = function () { var _this$props = _this.props, onChange = _this$props.onChange, @@ -200,8 +286,8 @@ var SelectField = function (_Component) { }); }; - _this.handleTextFieldKeyDown = function (_ref5) { - var key = _ref5.key; + _this.handleTextFieldKeyDown = function (_ref6) { + var key = _ref6.key; switch (key) { case 'ArrowDown': @@ -243,9 +329,9 @@ var SelectField = function (_Component) { }; }; - _this.handleMenuKeyDown = function (_ref6) { - var key = _ref6.key, - tabIndex = _ref6.target.tabIndex; + _this.handleMenuKeyDown = function (_ref7) { + var key = _ref7.key, + tabIndex = _ref7.target.tabIndex; var cleanMenuItems = _this.menuItems.filter(function (item) { return !!item; @@ -291,12 +377,18 @@ var SelectField = function (_Component) { } }; - var itemsLength = _this.getChildrenLength(_this.props.children); + var children = props.children, + value = props.value, + multiple = props.multiple, + showAutocompleteThreshold = props.showAutocompleteThreshold; + + var itemsLength = _this.getChildrenLength(children); _this.state = { isOpen: false, + isFocused: false, itemsLength: itemsLength, - showAutocomplete: itemsLength > _this.props.showAutocompleteThreshold, - selectedItems: props.value, + showAutocomplete: itemsLength > showAutocompleteThreshold || false, + selectedItems: value || (multiple ? [] : null), searchText: '' }; _this.menuItems = []; @@ -309,44 +401,52 @@ var SelectField = function (_Component) { if (!areEqual(nextProps.value, this.state.selectedItems)) { this.setState({ selectedItems: nextProps.value }); } + if (!areEqual(nextProps.children, this.props.children)) { + var itemsLength = this.getChildrenLength(nextProps.children); + this.setState({ + itemsLength: itemsLength, + showAutocomplete: itemsLength > this.props.showAutocompleteThreshold + }); + } } + // Counts nodes with non-null value property without optgroups // noinspection JSMethodCanBeStatic }, { key: 'getChildrenLength', value: function getChildrenLength(children) { - if (!children) return 0;else if (Array.isArray(children)) { - return children.reduce(function (count, _ref7) { - var type = _ref7.type, - _ref7$props = _ref7.props, - value = _ref7$props.value, - cpc = _ref7$props.children; + if (!children) return 0;else if (Array.isArray(children) && children.length) { + return children.reduce(function (count, _ref8) { + var type = _ref8.type, + _ref8$props = _ref8.props, + value = _ref8$props.value, + cpc = _ref8$props.children; if (type === 'optgroup') { if (cpc) { if (Array.isArray(cpc)) { - var _iteratorNormalCompletion = true; - var _didIteratorError = false; - var _iteratorError = undefined; + var _iteratorNormalCompletion2 = true; + var _didIteratorError2 = false; + var _iteratorError2 = undefined; try { - for (var _iterator = cpc[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) { - var c = _step.value; + for (var _iterator2 = cpc[Symbol.iterator](), _step2; !(_iteratorNormalCompletion2 = (_step2 = _iterator2.next()).done); _iteratorNormalCompletion2 = true) { + var c = _step2.value; if (c.props.value) ++count; } } catch (err) { - _didIteratorError = true; - _iteratorError = err; + _didIteratorError2 = true; + _iteratorError2 = err; } finally { try { - if (!_iteratorNormalCompletion && _iterator.return) { - _iterator.return(); + if (!_iteratorNormalCompletion2 && _iterator2.return) { + _iterator2.return(); } } finally { - if (_didIteratorError) { - throw _iteratorError; + if (_didIteratorError2) { + throw _iteratorError2; } } } @@ -355,7 +455,7 @@ var SelectField = function (_Component) { } else if (value) ++count; return count; }, 0); - } else if ((typeof children === 'undefined' ? 'undefined' : _typeof(children)) === 'object') { + } else if (!Array.isArray(children) && (typeof children === 'undefined' ? 'undefined' : _typeof(children)) === 'object') { if (children.type === 'optgroup') return this.getChildrenLength(children.props.children);else if (children.props.value) return 1; } return 0; @@ -427,6 +527,7 @@ var SelectField = function (_Component) { var _props = this.props, children = _props.children, + floatingLabelText = _props.floatingLabelText, hintText = _props.hintText, hintTextAutocomplete = _props.hintTextAutocomplete, noMatchFound = _props.noMatchFound, @@ -452,8 +553,11 @@ var SelectField = function (_Component) { palette = _context$muiTheme.baseTheme.palette, menuItem = _context$muiTheme.menuItem; - // Default style depending on Material-UI context + // Condition for shrinking the floating Label + + var shrinkCondition = Array.isArray(this.state.selectedItems) && !!this.state.selectedItems.length || (typeof selectedValues === 'undefined' ? 'undefined' : _typeof(selectedValues)) === 'object' || this.state.isFocused; + // Default style depending on Material-UI context var mergedSelectedMenuItemStyle = _extends({ color: menuItem.selectedTextColor }, selectedMenuItemStyle); if (checkedIcon) checkedIcon.props.style.fill = mergedSelectedMenuItemStyle.color; @@ -485,8 +589,8 @@ var SelectField = function (_Component) { return [].concat(_toConsumableArray(nodes), [_react2.default.createElement(_ListItem2.default, { key: ++index, tabIndex: index, - ref: function ref(_ref8) { - return _this3.menuItems[++index] = _ref8; + ref: function ref(_ref9) { + return _this3.menuItems[++index] = _ref9; }, onTouchTap: _this3.handleMenuSelection({ value: childValue, label: label }), disableFocusRipple: true, @@ -545,10 +649,14 @@ var SelectField = function (_Component) { return _react2.default.createElement( 'div', { - ref: function ref(_ref11) { - return _this3.root = _ref11; + ref: function ref(_ref12) { + return _this3.root = _ref12; }, tabIndex: '0', + onFocus: function onFocus() { + return _this3.setState({ isFocused: true }); + }, + onBlur: this.onBlur, onKeyDown: this.handleKeyDown, onTouchTap: this.handleClick, title: !this.state.itemsLength ? 'Nothing to show' : '', @@ -557,8 +665,19 @@ var SelectField = function (_Component) { color: disabled ? palette.disabledColor : palette.textColor }, style) }, + floatingLabelText && _react2.default.createElement( + FloatingLabel, + { + shrink: shrinkCondition, + disabled: disabled + }, + floatingLabelText + ), _react2.default.createElement(SelectionsPresenter, { + isFocused: this.state.isFocused, + disabled: disabled, hintText: hintText, + floatingLabelText: floatingLabelText, selectedValues: this.state.selectedItems, selectionsRenderer: selectionsRenderer }), @@ -574,8 +693,8 @@ var SelectField = function (_Component) { style: { height: popoverHeight } }, this.state.showAutocomplete && _react2.default.createElement(_TextField2.default, { - ref: function ref(_ref9) { - return _this3.searchTextField = _ref9; + ref: function ref(_ref10) { + return _this3.searchTextField = _ref10; }, value: this.state.searchText, hintText: hintTextAutocomplete, @@ -586,8 +705,8 @@ var SelectField = function (_Component) { _react2.default.createElement( 'div', { - ref: function ref(_ref10) { - return _this3.menu = _ref10; + ref: function ref(_ref11) { + return _this3.menu = _ref11; }, onKeyDown: this.handleMenuKeyDown, style: _extends({ width: menuWidth }, menuStyle) @@ -643,29 +762,29 @@ SelectField.propTypes = { var pp = props[propName]; if (pp.type === 'optgroup' && pp.props.children) { if (Array.isArray(pp.props.children)) { - var _iteratorNormalCompletion2 = true; - var _didIteratorError2 = false; - var _iteratorError2 = undefined; + var _iteratorNormalCompletion3 = true; + var _didIteratorError3 = false; + var _iteratorError3 = undefined; try { - for (var _iterator2 = pp.props.children[Symbol.iterator](), _step2; !(_iteratorNormalCompletion2 = (_step2 = _iterator2.next()).done); _iteratorNormalCompletion2 = true) { - var child = _step2.value; + for (var _iterator3 = pp.props.children[Symbol.iterator](), _step3; !(_iteratorNormalCompletion3 = (_step3 = _iterator3.next()).done); _iteratorNormalCompletion3 = true) { + var child = _step3.value; if (!child.props.value) { return new Error('\n Missing required property \'value\' for \'' + propFullName + '\' supplied to \'' + componentName + ' ' + props.name + '\'. \n Validation failed.'); } } } catch (err) { - _didIteratorError2 = true; - _iteratorError2 = err; + _didIteratorError3 = true; + _iteratorError3 = err; } finally { try { - if (!_iteratorNormalCompletion2 && _iterator2.return) { - _iterator2.return(); + if (!_iteratorNormalCompletion3 && _iterator3.return) { + _iterator3.return(); } } finally { - if (_didIteratorError2) { - throw _iteratorError2; + if (_didIteratorError3) { + throw _iteratorError3; } } } @@ -679,29 +798,29 @@ SelectField.propTypes = { return new Error('\n Missing required property \'value\' for \'' + propFullName + '\' supplied to \'' + componentName + ' ' + props.name + '\'. \n Validation failed.'); } } else { - var _iteratorNormalCompletion3 = true; - var _didIteratorError3 = false; - var _iteratorError3 = undefined; + var _iteratorNormalCompletion4 = true; + var _didIteratorError4 = false; + var _iteratorError4 = undefined; try { - for (var _iterator3 = props[propName].props.children[Symbol.iterator](), _step3; !(_iteratorNormalCompletion3 = (_step3 = _iterator3.next()).done); _iteratorNormalCompletion3 = true) { - var child = _step3.value; + for (var _iterator4 = props[propName].props.children[Symbol.iterator](), _step4; !(_iteratorNormalCompletion4 = (_step4 = _iterator4.next()).done); _iteratorNormalCompletion4 = true) { + var child = _step4.value; if (!child.props.value) { return new Error('\n Missing required property \'value\' for \'' + propFullName + '\' supplied to \'' + componentName + ' ' + props.name + '\'. \n Validation failed.'); } } } catch (err) { - _didIteratorError3 = true; - _iteratorError3 = err; + _didIteratorError4 = true; + _iteratorError4 = err; } finally { try { - if (!_iteratorNormalCompletion3 && _iterator3.return) { - _iterator3.return(); + if (!_iteratorNormalCompletion4 && _iterator4.return) { + _iterator4.return(); } } finally { - if (_didIteratorError3) { - throw _iteratorError3; + if (_didIteratorError4) { + throw _iteratorError4; } } } @@ -711,6 +830,7 @@ SelectField.propTypes = { selectedMenuItemStyle: _react.PropTypes.object, menuFooterStyle: _react.PropTypes.object, name: _react.PropTypes.string, + floatingLabelText: _react.PropTypes.string, hintText: _react.PropTypes.string, hintTextAutocomplete: _react.PropTypes.string, noMatchFound: _react.PropTypes.string, @@ -720,6 +840,7 @@ SelectField.propTypes = { value: function value(props, propName, componentName, location, propFullName) { var multiple = props.multiple, value = props.value; + // console.debug(`value ${props.name}`, value) if (multiple) { if (!Array.isArray(value)) { @@ -740,7 +861,6 @@ SelectField.propTypes = { onChange: _react.PropTypes.func }; -// noinspection JSUnusedGlobalSymbols SelectField.defaultProps = { anchorOrigin: { vertical: 'top', horizontal: 'left' }, checkPosition: '', @@ -750,6 +870,7 @@ SelectField.defaultProps = { multiple: false, disabled: false, nb2show: 5, + floatingLabelText: '', hintText: 'Click me', hintTextAutocomplete: 'Type something', noMatchFound: 'No match found', diff --git a/package.json b/package.json index 1d544b5..d4b0e59 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "material-ui-superselectfield", - "version": "1.5.2", + "version": "1.5.3", "description": "original Material-UI's SelectField component enhanced with autocompletion, multiselection, custom renderers, and infinite loading.", "private": false, "author": "Raphaël Morineau ", @@ -22,8 +22,8 @@ "babel-plugin-transform-class-properties": "^6.23.0", "babel-plugin-transform-object-entries": "^1.0.0", "babel-plugin-transform-object-rest-spread": "^6.23.0", - "babel-preset-env": "^1.2.1", - "enzyme": "^2.7.1", + "babel-preset-env": "^1.2.2", + "enzyme": "^2.8.0", "flag-icon-css": "^2.8.0", "gh-pages": "^0.12.0", "material-ui": "^0.17.1", @@ -33,7 +33,7 @@ "react-router-dom": "^4.0.0", "react-scripts": "^0.9.5", "react-tap-event-plugin": "^2.0.1", - "standard": "^9.0.1" + "standard": "^9.0.2" }, "peerDependencies": { "material-ui": ">= 0.15 < 1", @@ -71,6 +71,7 @@ "camelcase": "off", "brace-style": "off", "no-trailing-spaces": "off", + "no-multiple-empty-lines": "off", "no-unused-vars": "warn" } }, diff --git a/src/App.js b/src/App.js index 53abe14..a3167ce 100644 --- a/src/App.js +++ b/src/App.js @@ -8,6 +8,7 @@ import CodeExample1 from './CodeExample1' import CodeExample2 from './CodeExample2' import CodeExample3 from './CodeExample3' import CodeExample4 from './CodeExample4' +import CodeExample5 from './CodeExample5' import './App.css' export default () => ( @@ -27,6 +28,7 @@ export default () => ( + diff --git a/src/CodeExample5.js b/src/CodeExample5.js index 58759fd..626f2ee 100644 --- a/src/CodeExample5.js +++ b/src/CodeExample5.js @@ -1,37 +1,79 @@ import React, { Component } from 'react' import SuperSelectField from './SuperSelectField' - -const datasource = [ - { id: 1, name: 'name1' }, - { id: 2, name: 'name2' }, - { id: 3, name: 'name3' }, - { id: 4, name: 'name4' } -] +import data from './assets/states' class CodeExample extends Component { - state = { value: null } + state = { + selectedStates: [], + stateNodes: [], + selectedCounties: [], + countyNodes: [] + } - handleSelection = (value) => this.setState({ value }) + componentDidMount = () => { + // Ideally should be externalized in a HoC, + // with stateNodes && countyNodes in props + window.setTimeout(() => { + const stateNodes = data.states.map(({code, name, capital}) => +
{name}
+ ) + this.setState({ stateNodes }) + console.log('States updated') + }, 5000) + } + + handleStateSelection = (selectedStates, name) => { + console.debug('selectedStates', selectedStates) + this.setState({ selectedStates }, () => { + const countyNodes = data.counties + .reduce((nodes, {INCITS, county, state}) => { + if (!selectedStates.find(({value}) => value === state)) return nodes + return [ ...nodes,
{county}
] + }, []) + // must also check if previous selections are still consistent with new selectedStates + const selectedCounties = this.state.selectedCounties.filter(({value}) => + countyNodes.find(node => node.props.value === value) + ) + this.setState({ countyNodes, selectedCounties }) + console.log('Counties updated') + }) + } + + handleCountySelection = (selectedCounties, name) => this.setState({ selectedCounties }) render () { - const { value } = this.state + const { selectedStates, stateNodes, selectedCounties, countyNodes } = this.state - const options = datasource.map(({ id, name }) => ( -
- {name} -
- )) + console.debug('countyNodes', countyNodes) return (
- - {options} - +
+ + {stateNodes} + + + + {countyNodes} + +
) diff --git a/src/Nav.css b/src/Nav.css index bc01932..c385980 100644 --- a/src/Nav.css +++ b/src/Nav.css @@ -8,10 +8,16 @@ text-decoration: none; color: #222; height: 100%; - width: calc(100% - 32px); + width: calc(100% - 64px); display: inline-block; } +.multiLine { + display: inline-block; + line-height: normal; + vertical-align: middle; +} + .active { font-weight: bold; color: #00BCD4; @@ -19,4 +25,4 @@ .verticallyCenter { line-height: 68px; } -.morePadding { padding-left: 32px; } \ No newline at end of file +.morePadding { padding: 0 32px; } \ No newline at end of file diff --git a/src/Nav.js b/src/Nav.js index 58cfbcf..3369f1c 100644 --- a/src/Nav.js +++ b/src/Nav.js @@ -14,9 +14,14 @@ export default () => ( { route: '/example1', label: 'Basic' }, { route: '/example2', label: 'Multiple' }, { route: '/example3', label: 'Autocomplete' }, - { route: '/example4', label: 'Options grouping' } + { route: '/example4', label: 'Options grouping' }, + { route: '/example5', label: Asynchronous loading } ].map(({ route, label }) => ( - + {label} ))} diff --git a/src/SuperSelectField.js b/src/SuperSelectField.js index 686fc5a..a11298d 100644 --- a/src/SuperSelectField.js +++ b/src/SuperSelectField.js @@ -9,6 +9,19 @@ import UnCheckedIcon from 'material-ui/svg-icons/toggle/check-box-outline-blank' import DropDownArrow from 'material-ui/svg-icons/navigation/arrow-drop-down' // Utilities +function entries (obj) { + return 'entries' in Object + ? Object.entries(obj) + : function (obj) { + let entries = [] + const keys = Object.keys(obj) + for (let prop of keys) { + entries.push([ prop, obj[prop] ]) + } + return entries + } +} + function areEqual (val1, val2) { if (!val1 || !val2 || typeof val1 !== typeof val2) return false else if (typeof val1 === 'string' || @@ -16,12 +29,56 @@ function areEqual (val1, val2) { typeof val1 === 'boolean') return val1 === val2 else if (typeof val1 === 'object') { return Object.keys(val1).length === Object.keys(val2).length && - Object.entries(val2).every(([key2, value2]) => val1[key2] === value2) + entries(val2).every(([key2, value2]) => val1[key2] === value2) } } const checkFormat = value => value.findIndex(v => typeof v !== 'object' || !('value' in v)) +const objectShape = PropTypes.shape({ + value: PropTypes.any.isRequired, + label: PropTypes.string +}) + +// ================================================================ +// ==================== FloatingLabel ===================== +// ================================================================ + +// TODO: implement style lock when disabled = true +const FloatingLabel = ({ children, shrink, shrinkStyle, disabled }) => { + const defaultStyles = { + position: 'absolute', + lineHeight: '22px', + transition: 'cubic-bezier(0.23, 1, 0.32, 1)', // transitions.easeOut(), + zIndex: 1, // Needed to display label above Chrome's autocomplete field background + transform: 'scale(1) translate(0, 0)', + transformOrigin: 'left top', + pointerEvents: 'auto', + userSelect: 'none' + } + + const shrinkStyles = shrink + ? { + transform: 'scale(0.75) translate(0, -28px)', + pointerEvents: 'none', + ...shrinkStyle + } + : null + + // console.debug('shrink', shrink) + + return ( + + ) +} + +FloatingLabel.defaultProps = { + disabled: false, + shrink: false +} + // ================================================================ // ==================== SelectionsPresenter ===================== // ================================================================ @@ -29,6 +86,7 @@ const checkFormat = value => value.findIndex(v => typeof v !== 'object' || !('va // noinspection JSDuplicatedDeclaration const styles = { div1: { + position: 'relative', height: '100%', display: '-webkit-box', display: '-webkit-flex', // eslint-disable-line no-dupe-keys @@ -76,28 +134,20 @@ const styles = { } } -const SelectionsPresenter = ({ selectedValues, hintText, selectionsRenderer }) => { - // TODO: add floatingLabelText - return ( -
+const SelectionsPresenter = ({ selectedValues, hintText, selectionsRenderer }) => ( +
-
-
- {selectionsRenderer(selectedValues, hintText)} -
- +
+
+ {selectionsRenderer(selectedValues, hintText)}
- -
- +
- ) -} -const objectShape = PropTypes.shape({ - value: PropTypes.any.isRequired, - label: PropTypes.string -}) +
+ +
+) SelectionsPresenter.propTypes = { value: PropTypes.oneOfType([ @@ -108,7 +158,6 @@ SelectionsPresenter.propTypes = { hintText: PropTypes.string } -// noinspection JSUnusedGlobalSymbols SelectionsPresenter.defaultProps = { hintText: 'Click me', value: null, @@ -132,12 +181,14 @@ SelectionsPresenter.defaultProps = { class SelectField extends Component { constructor (props, context) { super(props, context) - const itemsLength = this.getChildrenLength(this.props.children) + const { children, value, multiple, showAutocompleteThreshold } = props + const itemsLength = this.getChildrenLength(children) this.state = { isOpen: false, + isFocused: false, itemsLength, - showAutocomplete: itemsLength > this.props.showAutocompleteThreshold, - selectedItems: props.value, + showAutocomplete: (itemsLength > showAutocompleteThreshold) || false, + selectedItems: value || (multiple ? [] : null), searchText: '' } this.menuItems = [] @@ -147,12 +198,20 @@ class SelectField extends Component { if (!areEqual(nextProps.value, this.state.selectedItems)) { this.setState({ selectedItems: nextProps.value }) } + if (!areEqual(nextProps.children, this.props.children)) { + const itemsLength = this.getChildrenLength(nextProps.children) + this.setState({ + itemsLength, + showAutocomplete: itemsLength > this.props.showAutocompleteThreshold + }) + } } + // Counts nodes with non-null value property without optgroups // noinspection JSMethodCanBeStatic getChildrenLength (children) { if (!children) return 0 - else if (Array.isArray(children)) { + else if (Array.isArray(children) && children.length) { return children.reduce((count, { type, props: {value, children: cpc} }) => { if (type === 'optgroup') { if (cpc) { @@ -165,13 +224,24 @@ class SelectField extends Component { } else if (value) ++count return count }, 0) - } else if (typeof children === 'object') { + } else if (!Array.isArray(children) && typeof children === 'object') { if (children.type === 'optgroup') return this.getChildrenLength(children.props.children) else if (children.props.value) return 1 } return 0 } + onBlur = (event) => { + const { isFocused, isOpen } = this.state + /* console.debug('isFocused', isFocused, + '\nisOpen', isOpen, + '\nevent type', event.type, + '\ntarget', event.target, + '\nrelatedTarget', event.relatedTarget + ) */ + if (!isOpen) this.setState({ isFocused: false }) + } + closeMenu = () => { const { onChange, name } = this.props onChange(this.state.selectedItems, name) @@ -314,7 +384,7 @@ class SelectField extends Component { } render () { - const { children, hintText, hintTextAutocomplete, noMatchFound, multiple, disabled, nb2show, + const { children, floatingLabelText, hintText, hintTextAutocomplete, noMatchFound, multiple, disabled, nb2show, autocompleteFilter, selectionsRenderer, menuCloseButton, anchorOrigin, style, menuStyle, elementHeight, innerDivStyle, selectedMenuItemStyle, menuGroupStyle, menuFooterStyle, checkedIcon, unCheckedIcon, hoverColor, checkPosition @@ -322,6 +392,10 @@ class SelectField extends Component { const { baseTheme: {palette}, menuItem } = this.context.muiTheme + // Condition for shrinking the floating Label + const shrinkCondition = (Array.isArray(this.state.selectedItems) && !!this.state.selectedItems.length) || + typeof selectedValues === 'object' || this.state.isFocused + // Default style depending on Material-UI context const mergedSelectedMenuItemStyle = { color: menuItem.selectedTextColor, ...selectedMenuItemStyle @@ -417,6 +491,8 @@ class SelectField extends Component {
(this.root = ref)} tabIndex='0' + onFocus={() => (this.setState({ isFocused: true }))} + onBlur={this.onBlur} onKeyDown={this.handleKeyDown} onTouchTap={this.handleClick} title={!this.state.itemsLength ? 'Nothing to show' : ''} @@ -427,8 +503,20 @@ class SelectField extends Component { }} > + {floatingLabelText && + + {floatingLabelText} + + } + @@ -548,6 +636,7 @@ SelectField.propTypes = { selectedMenuItemStyle: PropTypes.object, menuFooterStyle: PropTypes.object, name: PropTypes.string, + floatingLabelText: PropTypes.string, hintText: PropTypes.string, hintTextAutocomplete: PropTypes.string, noMatchFound: PropTypes.string, @@ -559,6 +648,7 @@ SelectField.propTypes = { nb2show: PropTypes.number, value: (props, propName, componentName, location, propFullName) => { const { multiple, value } = props + // console.debug(`value ${props.name}`, value) if (multiple) { if (!Array.isArray(value)) { return new Error(` @@ -587,7 +677,6 @@ SelectField.propTypes = { onChange: PropTypes.func } -// noinspection JSUnusedGlobalSymbols SelectField.defaultProps = { anchorOrigin: { vertical: 'top', horizontal: 'left' }, checkPosition: '', @@ -597,6 +686,7 @@ SelectField.defaultProps = { multiple: false, disabled: false, nb2show: 5, + floatingLabelText: '', hintText: 'Click me', hintTextAutocomplete: 'Type something', noMatchFound: 'No match found', diff --git a/src/assets/states.js b/src/assets/states.js new file mode 100644 index 0000000..bf55721 --- /dev/null +++ b/src/assets/states.js @@ -0,0 +1,3203 @@ +const states = [ + { code: 'AL', name: 'Alabama', capital: 'Montgomery' }, + { code: 'AK', name: 'Alaska', capital: 'Juneau' }, + { code: 'AZ', name: 'Arizona', capital: 'Phoenix' }, + { code: 'AR', name: 'Arkansas', capital: 'Little Rock' }, + { code: 'CA', name: 'California', capital: 'Sacramento' }, + { code: 'CO', name: 'Colorado', capital: 'Denver' }, + { code: 'CT', name: 'Connecticut', capital: 'Hartford' }, + { code: 'DE', name: 'Delaware', capital: 'Dover' }, + { code: 'FL', name: 'Florida', capital: 'Tallahassee' }, + { code: 'GA', name: 'Georgia', capital: 'Atlanta' }, + { code: 'HI', name: 'Hawaii', capital: 'Honolulu' }, + { code: 'ID', name: 'Idaho', capital: 'Boise' }, + { code: 'IL', name: 'Illinois', capital: 'Springfield' }, + { code: 'IN', name: 'Indiana', capital: 'Indianapolis' }, + { code: 'IA', name: 'Iowa', capital: 'Des Moines' }, + { code: 'KS', name: 'Kansas', capital: 'Topeka' }, + { code: 'KY', name: 'Kentucky', capital: 'Frankfort' }, + { code: 'LA', name: 'Louisiana', capital: 'Baton Rouge' }, + { code: 'ME', name: 'Maine', capital: 'Augusta' }, + { code: 'MD', name: 'Maryland', capital: 'Annapolis' }, + { code: 'MA', name: 'Massachusetts', capital: 'Boston' }, + { code: 'MI', name: 'Michigan', capital: 'Lansing' }, + { code: 'MN', name: 'Minnesota', capital: 'Saint Paul' }, + { code: 'MS', name: 'Mississippi', capital: 'Jackson' }, + { code: 'MO', name: 'Missouri', capital: 'Jefferson City' }, + { code: 'MT', name: 'Montana', capital: 'Helena' }, + { code: 'NE', name: 'Nebraska', capital: 'Lincoln' }, + { code: 'NV', name: 'Nevada', capital: 'Carson City' }, + { code: 'NH', name: 'New Hampshire', capital: 'Concord' }, + { code: 'NJ', name: 'New Jersey', capital: 'Trenton' }, + { code: 'NM', name: 'New Mexico', capital: 'Santa Fe' }, + { code: 'NY', name: 'New York', capital: 'Albany' }, + { code: 'NC', name: 'North Carolina', capital: 'Raleigh' }, + { code: 'ND', name: 'North Dakota', capital: 'Bismarck' }, + { code: 'OH', name: 'Ohio', capital: 'Columbus' }, + { code: 'OK', name: 'Oklahoma', capital: 'Oklahoma City' }, + { code: 'OR', name: 'Oregon', capital: 'Salem' }, + { code: 'PA', name: 'Pennsylvania', capital: 'Harrisburg' }, + { code: 'RI', name: 'Rhode Island', capital: 'Providence' }, + { code: 'SC', name: 'South Carolina', capital: 'Columbia' }, + { code: 'SD', name: 'South Dakota', capital: 'Pierre' }, + { code: 'TN', name: 'Tennessee', capital: 'Nashville' }, + { code: 'TX', name: 'Texas', capital: 'Austin' }, + { code: 'UT', name: 'Utah', capital: 'Salt Lake City' }, + { code: 'VT', name: 'Vermont', capital: 'Montpelier' }, + { code: 'VA', name: 'Virginia', capital: 'Richmond' }, + { code: 'WA', name: 'Washington', capital: 'Olympia' }, + { code: 'WV', name: 'West Virginia', capital: 'Charleston' }, + { code: 'WI', name: 'Wisconsin', capital: 'Madison' }, + { code: 'WY', name: 'Wyoming', capital: 'Cheyenne' } +] + +// The 3,144 counties and county equivalents of the United States of America +// INCITS County or equivalent State or district 2013 Pop Core Based Statistical Area Combined Statistical Area + +// noinspection JSAnnotator +const counties = [ + { INCITS: '01001', county: 'Autauga County', state: 'Alabama' }, + { INCITS: '01003', county: 'Baldwin County', state: 'Alabama' }, + { INCITS: '01005', county: 'Barbour County', state: 'Alabama' }, + { INCITS: '01007', county: 'Bibb County', state: 'Alabama' }, + { INCITS: '01009', county: 'Blount County', state: 'Alabama' }, + { INCITS: '01011', county: 'Bullock County', state: 'Alabama' }, + { INCITS: '01013', county: 'Butler County', state: 'Alabama' }, + { INCITS: '01015', county: 'Calhoun County', state: 'Alabama' }, + { INCITS: '01017', county: 'Chambers County', state: 'Alabama' }, + { INCITS: '01019', county: 'Cherokee County', state: 'Alabama' }, + { INCITS: '01021', county: 'Chilton County', state: 'Alabama' }, + { INCITS: '01023', county: 'Choctaw County', state: 'Alabama' }, + { INCITS: '01025', county: 'Clarke County', state: 'Alabama' }, + { INCITS: '01027', county: 'Clay County', state: 'Alabama' }, + { INCITS: '01029', county: 'Cleburne County', state: 'Alabama' }, + { INCITS: '01031', county: 'Coffee County', state: 'Alabama' }, + { INCITS: '01033', county: 'Colbert County', state: 'Alabama' }, + { INCITS: '01035', county: 'Conecuh County', state: 'Alabama' }, + { INCITS: '01037', county: 'Coosa County', state: 'Alabama' }, + { INCITS: '01039', county: 'Covington County', state: 'Alabama' }, + { INCITS: '01041', county: 'Crenshaw County', state: 'Alabama' }, + { INCITS: '01043', county: 'Cullman County', state: 'Alabama' }, + { INCITS: '01045', county: 'Dale County', state: 'Alabama' }, + { INCITS: '01047', county: 'Dallas County', state: 'Alabama' }, + { INCITS: '01049', county: 'DeKalb County', state: 'Alabama' }, + { INCITS: '01051', county: 'Elmore County', state: 'Alabama' }, + { INCITS: '01053', county: 'Escambia County', state: 'Alabama' }, + { INCITS: '01055', county: 'Etowah County', state: 'Alabama' }, + { INCITS: '01057', county: 'Fayette County', state: 'Alabama' }, + { INCITS: '01059', county: 'Franklin County', state: 'Alabama' }, + { INCITS: '01061', county: 'Geneva County', state: 'Alabama' }, + { INCITS: '01063', county: 'Greene County', state: 'Alabama' }, + { INCITS: '01065', county: 'Hale County', state: 'Alabama' }, + { INCITS: '01067', county: 'Henry County', state: 'Alabama' }, + { INCITS: '01069', county: 'Houston County', state: 'Alabama' }, + { INCITS: '01071', county: 'Jackson County', state: 'Alabama' }, + { INCITS: '01073', county: 'Jefferson County', state: 'Alabama' }, + { INCITS: '01075', county: 'Lamar County', state: 'Alabama' }, + { INCITS: '01077', county: 'Lauderdale County', state: 'Alabama' }, + { INCITS: '01079', county: 'Lawrence County', state: 'Alabama' }, + { INCITS: '01081', county: 'Lee County', state: 'Alabama' }, + { INCITS: '01083', county: 'Limestone County', state: 'Alabama' }, + { INCITS: '01085', county: 'Lowndes County', state: 'Alabama' }, + { INCITS: '01087', county: 'Macon County', state: 'Alabama' }, + { INCITS: '01089', county: 'Madison County', state: 'Alabama' }, + { INCITS: '01091', county: 'Marengo County', state: 'Alabama' }, + { INCITS: '01093', county: 'Marion County', state: 'Alabama' }, + { INCITS: '01095', county: 'Marshall County', state: 'Alabama' }, + { INCITS: '01097', county: 'Mobile County', state: 'Alabama' }, + { INCITS: '01099', county: 'Monroe County', state: 'Alabama' }, + { INCITS: '01101', county: 'Montgomery County', state: 'Alabama' }, + { INCITS: '01103', county: 'Morgan County', state: 'Alabama' }, + { INCITS: '01105', county: 'Perry County', state: 'Alabama' }, + { INCITS: '01107', county: 'Pickens County', state: 'Alabama' }, + { INCITS: '01109', county: 'Pike County', state: 'Alabama' }, + { INCITS: '01111', county: 'Randolph County', state: 'Alabama' }, + { INCITS: '01113', county: 'Russell County', state: 'Alabama' }, + { INCITS: '01115', county: 'St. Clair County', state: 'Alabama' }, + { INCITS: '01117', county: 'Shelby County', state: 'Alabama' }, + { INCITS: '01119', county: 'Sumter County', state: 'Alabama' }, + { INCITS: '01121', county: 'Talladega County', state: 'Alabama' }, + { INCITS: '01123', county: 'Tallapoosa County', state: 'Alabama' }, + { INCITS: '01125', county: 'Tuscaloosa County', state: 'Alabama' }, + { INCITS: '01127', county: 'Walker County', state: 'Alabama' }, + { INCITS: '01129', county: 'Washington County', state: 'Alabama' }, + { INCITS: '01131', county: 'Wilcox County', state: 'Alabama' }, + { INCITS: '01133', county: 'Winston County', state: 'Alabama' }, + { INCITS: '02013', county: 'Aleutians East Borough[4]', state: 'Alaska' }, + { INCITS: '02016', county: 'Aleutians West Census Area[5]', state: 'Alaska' }, + { INCITS: '02020', county: 'Anchorage, Municipality of[6]', state: 'Alaska' }, + { INCITS: '02050', county: 'Bethel Census Area[5]', state: 'Alaska' }, + { INCITS: '02060', county: 'Bristol Bay Borough[4]', state: 'Alaska' }, + { INCITS: '02068', county: 'Denali Borough[4]', state: 'Alaska' }, + { INCITS: '02070', county: 'Dillingham Census Area[5]', state: 'Alaska' }, + { INCITS: '02090', county: 'Fairbanks North Star Borough[4]', state: 'Alaska' }, + { INCITS: '02100', county: 'Haines Borough[4]', state: 'Alaska' }, + { INCITS: '02105', county: 'Hoonah–Angoon Census Area[5]', state: 'Alaska' }, + { INCITS: '02110', county: 'Juneau, City and Borough of[7]', state: 'Alaska' }, + { INCITS: '02122', county: 'Kenai Peninsula Borough[4]', state: 'Alaska' }, + { INCITS: '02130', county: 'Ketchikan Gateway Borough[4]', state: 'Alaska' }, + { INCITS: '02150', county: 'Kodiak Island Borough[4]', state: 'Alaska' }, + { INCITS: '02164', county: 'Lake and Peninsula Borough[4]', state: 'Alaska' }, + { INCITS: '02170', county: 'Matanuska-Susitna Borough[4]', state: 'Alaska' }, + { INCITS: '02180', county: 'Nome Census Area[5]', state: 'Alaska' }, + { INCITS: '02185', county: 'North Slope Borough[4]', state: 'Alaska' }, + { INCITS: '02188', county: 'Northwest Arctic Borough[4]', state: 'Alaska' }, + { INCITS: '02195', county: 'Petersburg Borough[4]', state: 'Alaska' }, + { INCITS: '02198', county: 'Prince of Wales – Hyder Census Area[5]', state: 'Alaska' }, + { INCITS: '02220', county: 'Sitka, City and Borough of[8]', state: 'Alaska' }, + { INCITS: '02230', county: 'Skagway, Municipality of[4]', state: 'Alaska' }, + { INCITS: '02240', county: 'Southeast Fairbanks Census Area[5]', state: 'Alaska' }, + { INCITS: '02261', county: 'Valdez–Cordova Census Area[5]', state: 'Alaska' }, + { INCITS: '02270', county: 'Kusilvak Census Area[5]', state: 'Alaska' }, + { INCITS: '02275', county: 'Wrangell, City and Borough of[4]', state: 'Alaska' }, + { INCITS: '02282', county: 'Yakutat, City and Borough of[9]', state: 'Alaska' }, + { INCITS: '02290', county: 'Yukon–Koyukuk Census Area[5]', state: 'Alaska' }, + { INCITS: '04001', county: 'Apache County', state: 'Arizona' }, + { INCITS: '04003', county: 'Cochise County', state: 'Arizona' }, + { INCITS: '04005', county: 'Coconino County', state: 'Arizona' }, + { INCITS: '04007', county: 'Gila County', state: 'Arizona' }, + { INCITS: '04009', county: 'Graham County', state: 'Arizona' }, + { INCITS: '04011', county: 'Greenlee County', state: 'Arizona' }, + { INCITS: '04012', county: 'La Paz County', state: 'Arizona' }, + { INCITS: '04013', county: 'Maricopa County', state: 'Arizona' }, + { INCITS: '04015', county: 'Mohave County', state: 'Arizona' }, + { INCITS: '04017', county: 'Navajo County', state: 'Arizona' }, + { INCITS: '04019', county: 'Pima County', state: 'Arizona' }, + { INCITS: '04021', county: 'Pinal County', state: 'Arizona' }, + { INCITS: '04023', county: 'Santa Cruz County', state: 'Arizona' }, + { INCITS: '04025', county: 'Yavapai County', state: 'Arizona' }, + { INCITS: '04027', county: 'Yuma County', state: 'Arizona' }, + { INCITS: '05001', county: 'Arkansas County', state: 'Arkansas' }, + { INCITS: '05003', county: 'Ashley County', state: 'Arkansas' }, + { INCITS: '05005', county: 'Baxter County', state: 'Arkansas' }, + { INCITS: '05007', county: 'Benton County', state: 'Arkansas' }, + { INCITS: '05009', county: 'Boone County', state: 'Arkansas' }, + { INCITS: '05011', county: 'Bradley County', state: 'Arkansas' }, + { INCITS: '05013', county: 'Calhoun County', state: 'Arkansas' }, + { INCITS: '05015', county: 'Carroll County', state: 'Arkansas' }, + { INCITS: '05017', county: 'Chicot County', state: 'Arkansas' }, + { INCITS: '05019', county: 'Clark County', state: 'Arkansas' }, + { INCITS: '05021', county: 'Clay County', state: 'Arkansas' }, + { INCITS: '05023', county: 'Cleburne County', state: 'Arkansas' }, + { INCITS: '05025', county: 'Cleveland County', state: 'Arkansas' }, + { INCITS: '05027', county: 'Columbia County', state: 'Arkansas' }, + { INCITS: '05029', county: 'Conway County', state: 'Arkansas' }, + { INCITS: '05031', county: 'Craighead County', state: 'Arkansas' }, + { INCITS: '05033', county: 'Crawford County', state: 'Arkansas' }, + { INCITS: '05035', county: 'Crittenden County', state: 'Arkansas' }, + { INCITS: '05037', county: 'Cross County', state: 'Arkansas' }, + { INCITS: '05039', county: 'Dallas County', state: 'Arkansas' }, + { INCITS: '05041', county: 'Desha County', state: 'Arkansas' }, + { INCITS: '05043', county: 'Drew County', state: 'Arkansas' }, + { INCITS: '05045', county: 'Faulkner County', state: 'Arkansas' }, + { INCITS: '05047', county: 'Franklin County', state: 'Arkansas' }, + { INCITS: '05049', county: 'Fulton County', state: 'Arkansas' }, + { INCITS: '05051', county: 'Garland County', state: 'Arkansas' }, + { INCITS: '05053', county: 'Grant County', state: 'Arkansas' }, + { INCITS: '05055', county: 'Greene County', state: 'Arkansas' }, + { INCITS: '05057', county: 'Hempstead County', state: 'Arkansas' }, + { INCITS: '05059', county: 'Hot Spring County', state: 'Arkansas' }, + { INCITS: '05061', county: 'Howard County', state: 'Arkansas' }, + { INCITS: '05063', county: 'Independence County', state: 'Arkansas' }, + { INCITS: '05065', county: 'Izard County', state: 'Arkansas' }, + { INCITS: '05067', county: 'Jackson County', state: 'Arkansas' }, + { INCITS: '05069', county: 'Jefferson County', state: 'Arkansas' }, + { INCITS: '05071', county: 'Johnson County', state: 'Arkansas' }, + { INCITS: '05073', county: 'Lafayette County', state: 'Arkansas' }, + { INCITS: '05075', county: 'Lawrence County', state: 'Arkansas' }, + { INCITS: '05077', county: 'Lee County', state: 'Arkansas' }, + { INCITS: '05079', county: 'Lincoln County', state: 'Arkansas' }, + { INCITS: '05081', county: 'Little River County', state: 'Arkansas' }, + { INCITS: '05083', county: 'Logan County', state: 'Arkansas' }, + { INCITS: '05085', county: 'Lonoke County', state: 'Arkansas' }, + { INCITS: '05087', county: 'Madison County', state: 'Arkansas' }, + { INCITS: '05089', county: 'Marion County', state: 'Arkansas' }, + { INCITS: '05091', county: 'Miller County', state: 'Arkansas' }, + { INCITS: '05093', county: 'Mississippi County', state: 'Arkansas' }, + { INCITS: '05095', county: 'Monroe County', state: 'Arkansas' }, + { INCITS: '05097', county: 'Montgomery County', state: 'Arkansas' }, + { INCITS: '05099', county: 'Nevada County', state: 'Arkansas' }, + { INCITS: '05101', county: 'Newton County', state: 'Arkansas' }, + { INCITS: '05103', county: 'Ouachita County', state: 'Arkansas' }, + { INCITS: '05105', county: 'Perry County', state: 'Arkansas' }, + { INCITS: '05107', county: 'Phillips County', state: 'Arkansas' }, + { INCITS: '05109', county: 'Pike County', state: 'Arkansas' }, + { INCITS: '05111', county: 'Poinsett County', state: 'Arkansas' }, + { INCITS: '05113', county: 'Polk County', state: 'Arkansas' }, + { INCITS: '05115', county: 'Pope County', state: 'Arkansas' }, + { INCITS: '05117', county: 'Prairie County', state: 'Arkansas' }, + { INCITS: '05119', county: 'Pulaski County', state: 'Arkansas' }, + { INCITS: '05121', county: 'Randolph County', state: 'Arkansas' }, + { INCITS: '05123', county: 'St. Francis County', state: 'Arkansas' }, + { INCITS: '05125', county: 'Saline County', state: 'Arkansas' }, + { INCITS: '05127', county: 'Scott County', state: 'Arkansas' }, + { INCITS: '05129', county: 'Searcy County', state: 'Arkansas' }, + { INCITS: '05131', county: 'Sebastian County', state: 'Arkansas' }, + { INCITS: '05133', county: 'Sevier County', state: 'Arkansas' }, + { INCITS: '05135', county: 'Sharp County', state: 'Arkansas' }, + { INCITS: '05137', county: 'Stone County', state: 'Arkansas' }, + { INCITS: '05139', county: 'Union County', state: 'Arkansas' }, + { INCITS: '05141', county: 'Van Buren County', state: 'Arkansas' }, + { INCITS: '05143', county: 'Washington County', state: 'Arkansas' }, + { INCITS: '05145', county: 'White County', state: 'Arkansas' }, + { INCITS: '05147', county: 'Woodruff County', state: 'Arkansas' }, + { INCITS: '05149', county: 'Yell County', state: 'Arkansas' }, + { INCITS: '06001', county: 'Alameda County', state: 'California' }, + { INCITS: '06003', county: 'Alpine County', state: 'California' }, + { INCITS: '06005', county: 'Amador County', state: 'California' }, + { INCITS: '06007', county: 'Butte County', state: 'California' }, + { INCITS: '06009', county: 'Calaveras County', state: 'California' }, + { INCITS: '06011', county: 'Colusa County', state: 'California' }, + { INCITS: '06013', county: 'Contra Costa County', state: 'California' }, + { INCITS: '06015', county: 'Del Norte County', state: 'California' }, + { INCITS: '06017', county: 'El Dorado County', state: 'California' }, + { INCITS: '06019', county: 'Fresno County', state: 'California' }, + { INCITS: '06021', county: 'Glenn County', state: 'California' }, + { INCITS: '06023', county: 'Humboldt County', state: 'California' }, + { INCITS: '06025', county: 'Imperial County', state: 'California' }, + { INCITS: '06027', county: 'Inyo County', state: 'California' }, + { INCITS: '06029', county: 'Kern County', state: 'California' }, + { INCITS: '06031', county: 'Kings County', state: 'California' }, + { INCITS: '06033', county: 'Lake County', state: 'California' }, + { INCITS: '06035', county: 'Lassen County', state: 'California' }, + { INCITS: '06037', county: 'Los Angeles County', state: 'California' }, + { INCITS: '06039', county: 'Madera County', state: 'California' }, + { INCITS: '06041', county: 'Marin County', state: 'California' }, + { INCITS: '06043', county: 'Mariposa County', state: 'California' }, + { INCITS: '06045', county: 'Mendocino County', state: 'California' }, + { INCITS: '06047', county: 'Merced County', state: 'California' }, + { INCITS: '06049', county: 'Modoc County', state: 'California' }, + { INCITS: '06051', county: 'Mono County', state: 'California' }, + { INCITS: '06053', county: 'Monterey County', state: 'California' }, + { INCITS: '06055', county: 'Napa County', state: 'California' }, + { INCITS: '06057', county: 'Nevada County', state: 'California' }, + { INCITS: '06059', county: 'Orange County', state: 'California' }, + { INCITS: '06061', county: 'Placer County', state: 'California' }, + { INCITS: '06063', county: 'Plumas County', state: 'California' }, + { INCITS: '06065', county: 'Riverside County', state: 'California' }, + { INCITS: '06067', county: 'Sacramento County', state: 'California' }, + { INCITS: '06069', county: 'San Benito County', state: 'California' }, + { INCITS: '06071', county: 'San Bernardino County', state: 'California' }, + { INCITS: '06073', county: 'San Diego County', state: 'California' }, + { INCITS: '06075', county: 'San Francisco, City and County of[10]', state: 'California' }, + { INCITS: '06077', county: 'San Joaquin County', state: 'California' }, + { INCITS: '06079', county: 'San Luis Obispo County', state: 'California' }, + { INCITS: '06081', county: 'San Mateo County', state: 'California' }, + { INCITS: '06083', county: 'Santa Barbara County', state: 'California' }, + { INCITS: '06085', county: 'Santa Clara County', state: 'California' }, + { INCITS: '06087', county: 'Santa Cruz County', state: 'California' }, + { INCITS: '06089', county: 'Shasta County', state: 'California' }, + { INCITS: '06091', county: 'Sierra County', state: 'California' }, + { INCITS: '06093', county: 'Siskiyou County', state: 'California' }, + { INCITS: '06095', county: 'Solano County', state: 'California' }, + { INCITS: '06097', county: 'Sonoma County', state: 'California' }, + { INCITS: '06099', county: 'Stanislaus County', state: 'California' }, + { INCITS: '06101', county: 'Sutter County', state: 'California' }, + { INCITS: '06103', county: 'Tehama County', state: 'California' }, + { INCITS: '06105', county: 'Trinity County', state: 'California' }, + { INCITS: '06107', county: 'Tulare County', state: 'California' }, + { INCITS: '06109', county: 'Tuolumne County', state: 'California' }, + { INCITS: '06111', county: 'Ventura County', state: 'California' }, + { INCITS: '06113', county: 'Yolo County', state: 'California' }, + { INCITS: '06115', county: 'Yuba County', state: 'California' }, + { INCITS: '08001', county: 'Adams County', state: 'Colorado' }, + { INCITS: '08003', county: 'Alamosa County', state: 'Colorado' }, + { INCITS: '08005', county: 'Arapahoe County', state: 'Colorado' }, + { INCITS: '08007', county: 'Archuleta County', state: 'Colorado' }, + { INCITS: '08009', county: 'Baca County', state: 'Colorado' }, + { INCITS: '08011', county: 'Bent County', state: 'Colorado' }, + { INCITS: '08013', county: 'Boulder County', state: 'Colorado' }, + { INCITS: '08014', county: 'Broomfield, City and County of[11]', state: 'Colorado' }, + { INCITS: '08015', county: 'Chaffee County', state: 'Colorado' }, + { INCITS: '08017', county: 'Cheyenne County', state: 'Colorado' }, + { INCITS: '08019', county: 'Clear Creek County', state: 'Colorado' }, + { INCITS: '08021', county: 'Conejos County', state: 'Colorado' }, + { INCITS: '08023', county: 'Costilla County', state: 'Colorado' }, + { INCITS: '08025', county: 'Crowley County', state: 'Colorado' }, + { INCITS: '08027', county: 'Custer County', state: 'Colorado' }, + { INCITS: '08029', county: 'Delta County', state: 'Colorado' }, + { INCITS: '08031', county: 'Denver, City and County of[12]', state: 'Colorado' }, + { INCITS: '08033', county: 'Dolores County', state: 'Colorado' }, + { INCITS: '08035', county: 'Douglas County', state: 'Colorado' }, + { INCITS: '08037', county: 'Eagle County', state: 'Colorado' }, + { INCITS: '08039', county: 'Elbert County', state: 'Colorado' }, + { INCITS: '08041', county: 'El Paso County', state: 'Colorado' }, + { INCITS: '08043', county: 'Fremont County', state: 'Colorado' }, + { INCITS: '08045', county: 'Garfield County', state: 'Colorado' }, + { INCITS: '08047', county: 'Gilpin County', state: 'Colorado' }, + { INCITS: '08049', county: 'Grand County', state: 'Colorado' }, + { INCITS: '08051', county: 'Gunnison County', state: 'Colorado' }, + { INCITS: '08053', county: 'Hinsdale County', state: 'Colorado' }, + { INCITS: '08055', county: 'Huerfano County', state: 'Colorado' }, + { INCITS: '08057', county: 'Jackson County', state: 'Colorado' }, + { INCITS: '08059', county: 'Jefferson County', state: 'Colorado' }, + { INCITS: '08061', county: 'Kiowa County', state: 'Colorado' }, + { INCITS: '08063', county: 'Kit Carson County', state: 'Colorado' }, + { INCITS: '08065', county: 'Lake County', state: 'Colorado' }, + { INCITS: '08067', county: 'La Plata County', state: 'Colorado' }, + { INCITS: '08069', county: 'Larimer County', state: 'Colorado' }, + { INCITS: '08071', county: 'Las Animas County', state: 'Colorado' }, + { INCITS: '08073', county: 'Lincoln County', state: 'Colorado' }, + { INCITS: '08075', county: 'Logan County', state: 'Colorado' }, + { INCITS: '08077', county: 'Mesa County', state: 'Colorado' }, + { INCITS: '08079', county: 'Mineral County', state: 'Colorado' }, + { INCITS: '08081', county: 'Moffat County', state: 'Colorado' }, + { INCITS: '08083', county: 'Montezuma County', state: 'Colorado' }, + { INCITS: '08085', county: 'Montrose County', state: 'Colorado' }, + { INCITS: '08087', county: 'Morgan County', state: 'Colorado' }, + { INCITS: '08089', county: 'Otero County', state: 'Colorado' }, + { INCITS: '08091', county: 'Ouray County', state: 'Colorado' }, + { INCITS: '08093', county: 'Park County', state: 'Colorado' }, + { INCITS: '08095', county: 'Phillips County', state: 'Colorado' }, + { INCITS: '08097', county: 'Pitkin County', state: 'Colorado' }, + { INCITS: '08099', county: 'Prowers County', state: 'Colorado' }, + { INCITS: '08101', county: 'Pueblo County', state: 'Colorado' }, + { INCITS: '08103', county: 'Rio Blanco County', state: 'Colorado' }, + { INCITS: '08105', county: 'Rio Grande County', state: 'Colorado' }, + { INCITS: '08107', county: 'Routt County', state: 'Colorado' }, + { INCITS: '08109', county: 'Saguache County', state: 'Colorado' }, + { INCITS: '08111', county: 'San Juan County', state: 'Colorado' }, + { INCITS: '08113', county: 'San Miguel County', state: 'Colorado' }, + { INCITS: '08115', county: 'Sedgwick County', state: 'Colorado' }, + { INCITS: '08117', county: 'Summit County', state: 'Colorado' }, + { INCITS: '08119', county: 'Teller County', state: 'Colorado' }, + { INCITS: '08121', county: 'Washington County', state: 'Colorado' }, + { INCITS: '08123', county: 'Weld County', state: 'Colorado' }, + { INCITS: '08125', county: 'Yuma County', state: 'Colorado' }, + { INCITS: '09001', county: 'Fairfield County[13]', state: 'Connecticut' }, + { INCITS: '09003', county: 'Hartford County[13]', state: 'Connecticut' }, + { INCITS: '09005', county: 'Litchfield County[13]', state: 'Connecticut' }, + { INCITS: '09007', county: 'Middlesex County[13]', state: 'Connecticut' }, + { INCITS: '09009', county: 'New Haven County[13]', state: 'Connecticut' }, + { INCITS: '09011', county: 'New London County[13]', state: 'Connecticut' }, + { INCITS: '09013', county: 'Tolland County[13]', state: 'Connecticut' }, + { INCITS: '09015', county: 'Windham County[13]', state: 'Connecticut' }, + { INCITS: '10001', county: 'Kent County', state: 'Delaware' }, + { INCITS: '10003', county: 'New Castle County', state: 'Delaware' }, + { INCITS: '10005', county: 'Sussex County', state: 'Delaware' }, + { INCITS: '11001', county: 'District of Columbia[14]', state: 'District of Columbia' }, + { INCITS: '12001', county: 'Alachua County', state: 'Florida' }, + { INCITS: '12003', county: 'Baker County', state: 'Florida' }, + { INCITS: '12005', county: 'Bay County', state: 'Florida' }, + { INCITS: '12007', county: 'Bradford County', state: 'Florida' }, + { INCITS: '12009', county: 'Brevard County', state: 'Florida' }, + { INCITS: '12011', county: 'Broward County', state: 'Florida' }, + { INCITS: '12013', county: 'Calhoun County', state: 'Florida' }, + { INCITS: '12015', county: 'Charlotte County', state: 'Florida' }, + { INCITS: '12017', county: 'Citrus County', state: 'Florida' }, + { INCITS: '12019', county: 'Clay County', state: 'Florida' }, + { INCITS: '12021', county: 'Collier County', state: 'Florida' }, + { INCITS: '12023', county: 'Columbia County', state: 'Florida' }, + { INCITS: '12027', county: 'DeSoto County', state: 'Florida' }, + { INCITS: '12029', county: 'Dixie County', state: 'Florida' }, + { INCITS: '12031', county: 'Duval County', state: 'Florida' }, + { INCITS: '12033', county: 'Escambia County', state: 'Florida' }, + { INCITS: '12035', county: 'Flagler County', state: 'Florida' }, + { INCITS: '12037', county: 'Franklin County', state: 'Florida' }, + { INCITS: '12039', county: 'Gadsden County', state: 'Florida' }, + { INCITS: '12041', county: 'Gilchrist County', state: 'Florida' }, + { INCITS: '12043', county: 'Glades County', state: 'Florida' }, + { INCITS: '12045', county: 'Gulf County', state: 'Florida' }, + { INCITS: '12047', county: 'Hamilton County', state: 'Florida' }, + { INCITS: '12049', county: 'Hardee County', state: 'Florida' }, + { INCITS: '12051', county: 'Hendry County', state: 'Florida' }, + { INCITS: '12053', county: 'Hernando County', state: 'Florida' }, + { INCITS: '12055', county: 'Highlands County', state: 'Florida' }, + { INCITS: '12057', county: 'Hillsborough County', state: 'Florida' }, + { INCITS: '12059', county: 'Holmes County', state: 'Florida' }, + { INCITS: '12061', county: 'Indian River County', state: 'Florida' }, + { INCITS: '12063', county: 'Jackson County', state: 'Florida' }, + { INCITS: '12065', county: 'Jefferson County', state: 'Florida' }, + { INCITS: '12067', county: 'Lafayette County', state: 'Florida' }, + { INCITS: '12069', county: 'Lake County', state: 'Florida' }, + { INCITS: '12071', county: 'Lee County', state: 'Florida' }, + { INCITS: '12073', county: 'Leon County', state: 'Florida' }, + { INCITS: '12075', county: 'Levy County', state: 'Florida' }, + { INCITS: '12077', county: 'Liberty County', state: 'Florida' }, + { INCITS: '12079', county: 'Madison County', state: 'Florida' }, + { INCITS: '12081', county: 'Manatee County', state: 'Florida' }, + { INCITS: '12083', county: 'Marion County', state: 'Florida' }, + { INCITS: '12085', county: 'Martin County', state: 'Florida' }, + { INCITS: '12086', county: 'Miami-Dade County', state: 'Florida' }, + { INCITS: '12087', county: 'Monroe County', state: 'Florida' }, + { INCITS: '12089', county: 'Nassau County', state: 'Florida' }, + { INCITS: '12091', county: 'Okaloosa County', state: 'Florida' }, + { INCITS: '12093', county: 'Okeechobee County', state: 'Florida' }, + { INCITS: '12095', county: 'Orange County', state: 'Florida' }, + { INCITS: '12097', county: 'Osceola County', state: 'Florida' }, + { INCITS: '12099', county: 'Palm Beach County', state: 'Florida' }, + { INCITS: '12101', county: 'Pasco County', state: 'Florida' }, + { INCITS: '12103', county: 'Pinellas County', state: 'Florida' }, + { INCITS: '12105', county: 'Polk County', state: 'Florida' }, + { INCITS: '12107', county: 'Putnam County', state: 'Florida' }, + { INCITS: '12109', county: 'St. Johns County', state: 'Florida' }, + { INCITS: '12111', county: 'St. Lucie County', state: 'Florida' }, + { INCITS: '12113', county: 'Santa Rosa County', state: 'Florida' }, + { INCITS: '12115', county: 'Sarasota County', state: 'Florida' }, + { INCITS: '12117', county: 'Seminole County', state: 'Florida' }, + { INCITS: '12119', county: 'Sumter County', state: 'Florida' }, + { INCITS: '12121', county: 'Suwannee County', state: 'Florida' }, + { INCITS: '12123', county: 'Taylor County', state: 'Florida' }, + { INCITS: '12125', county: 'Union County', state: 'Florida' }, + { INCITS: '12127', county: 'Volusia County', state: 'Florida' }, + { INCITS: '12129', county: 'Wakulla County', state: 'Florida' }, + { INCITS: '12131', county: 'Walton County', state: 'Florida' }, + { INCITS: '12133', county: 'Washington County', state: 'Florida' }, + { INCITS: '13001', county: 'Appling County', state: 'Georgia' }, + { INCITS: '13003', county: 'Atkinson County', state: 'Georgia' }, + { INCITS: '13005', county: 'Bacon County', state: 'Georgia' }, + { INCITS: '13007', county: 'Baker County', state: 'Georgia' }, + { INCITS: '13009', county: 'Baldwin County', state: 'Georgia' }, + { INCITS: '13011', county: 'Banks County', state: 'Georgia' }, + { INCITS: '13013', county: 'Barrow County', state: 'Georgia' }, + { INCITS: '13015', county: 'Bartow County', state: 'Georgia' }, + { INCITS: '13017', county: 'Ben Hill County', state: 'Georgia' }, + { INCITS: '13019', county: 'Berrien County', state: 'Georgia' }, + { INCITS: '13021', county: 'Bibb County', state: 'Georgia' }, + { INCITS: '13023', county: 'Bleckley County', state: 'Georgia' }, + { INCITS: '13025', county: 'Brantley County', state: 'Georgia' }, + { INCITS: '13027', county: 'Brooks County', state: 'Georgia' }, + { INCITS: '13029', county: 'Bryan County', state: 'Georgia' }, + { INCITS: '13031', county: 'Bulloch County', state: 'Georgia' }, + { INCITS: '13033', county: 'Burke County', state: 'Georgia' }, + { INCITS: '13035', county: 'Butts County', state: 'Georgia' }, + { INCITS: '13037', county: 'Calhoun County', state: 'Georgia' }, + { INCITS: '13039', county: 'Camden County', state: 'Georgia' }, + { INCITS: '13043', county: 'Candler County', state: 'Georgia' }, + { INCITS: '13045', county: 'Carroll County', state: 'Georgia' }, + { INCITS: '13047', county: 'Catoosa County', state: 'Georgia' }, + { INCITS: '13049', county: 'Charlton County', state: 'Georgia' }, + { INCITS: '13051', county: 'Chatham County', state: 'Georgia' }, + { INCITS: '13053', county: 'Chattahoochee County', state: 'Georgia' }, + { INCITS: '13055', county: 'Chattooga County', state: 'Georgia' }, + { INCITS: '13057', county: 'Cherokee County', state: 'Georgia' }, + { INCITS: '13059', county: 'Clarke County', state: 'Georgia' }, + { INCITS: '13061', county: 'Clay County', state: 'Georgia' }, + { INCITS: '13063', county: 'Clayton County', state: 'Georgia' }, + { INCITS: '13065', county: 'Clinch County', state: 'Georgia' }, + { INCITS: '13067', county: 'Cobb County', state: 'Georgia' }, + { INCITS: '13069', county: 'Coffee County', state: 'Georgia' }, + { INCITS: '13071', county: 'Colquitt County', state: 'Georgia' }, + { INCITS: '13073', county: 'Columbia County', state: 'Georgia' }, + { INCITS: '13075', county: 'Cook County', state: 'Georgia' }, + { INCITS: '13077', county: 'Coweta County', state: 'Georgia' }, + { INCITS: '13079', county: 'Crawford County', state: 'Georgia' }, + { INCITS: '13081', county: 'Crisp County', state: 'Georgia' }, + { INCITS: '13083', county: 'Dade County', state: 'Georgia' }, + { INCITS: '13085', county: 'Dawson County', state: 'Georgia' }, + { INCITS: '13087', county: 'Decatur County', state: 'Georgia' }, + { INCITS: '13089', county: 'DeKalb County', state: 'Georgia' }, + { INCITS: '13091', county: 'Dodge County', state: 'Georgia' }, + { INCITS: '13093', county: 'Dooly County', state: 'Georgia' }, + { INCITS: '13095', county: 'Dougherty County', state: 'Georgia' }, + { INCITS: '13097', county: 'Douglas County', state: 'Georgia' }, + { INCITS: '13099', county: 'Early County', state: 'Georgia' }, + { INCITS: '13101', county: 'Echols County', state: 'Georgia' }, + { INCITS: '13103', county: 'Effingham County', state: 'Georgia' }, + { INCITS: '13105', county: 'Elbert County', state: 'Georgia' }, + { INCITS: '13107', county: 'Emanuel County', state: 'Georgia' }, + { INCITS: '13109', county: 'Evans County', state: 'Georgia' }, + { INCITS: '13111', county: 'Fannin County', state: 'Georgia' }, + { INCITS: '13113', county: 'Fayette County', state: 'Georgia' }, + { INCITS: '13115', county: 'Floyd County', state: 'Georgia' }, + { INCITS: '13117', county: 'Forsyth County', state: 'Georgia' }, + { INCITS: '13119', county: 'Franklin County', state: 'Georgia' }, + { INCITS: '13121', county: 'Fulton County', state: 'Georgia' }, + { INCITS: '13123', county: 'Gilmer County', state: 'Georgia' }, + { INCITS: '13125', county: 'Glascock County', state: 'Georgia' }, + { INCITS: '13127', county: 'Glynn County', state: 'Georgia' }, + { INCITS: '13129', county: 'Gordon County', state: 'Georgia' }, + { INCITS: '13131', county: 'Grady County', state: 'Georgia' }, + { INCITS: '13133', county: 'Greene County', state: 'Georgia' }, + { INCITS: '13135', county: 'Gwinnett County', state: 'Georgia' }, + { INCITS: '13137', county: 'Habersham County', state: 'Georgia' }, + { INCITS: '13139', county: 'Hall County', state: 'Georgia' }, + { INCITS: '13141', county: 'Hancock County', state: 'Georgia' }, + { INCITS: '13143', county: 'Haralson County', state: 'Georgia' }, + { INCITS: '13145', county: 'Harris County', state: 'Georgia' }, + { INCITS: '13147', county: 'Hart County', state: 'Georgia' }, + { INCITS: '13149', county: 'Heard County', state: 'Georgia' }, + { INCITS: '13151', county: 'Henry County', state: 'Georgia' }, + { INCITS: '13153', county: 'Houston County', state: 'Georgia' }, + { INCITS: '13155', county: 'Irwin County', state: 'Georgia' }, + { INCITS: '13157', county: 'Jackson County', state: 'Georgia' }, + { INCITS: '13159', county: 'Jasper County', state: 'Georgia' }, + { INCITS: '13161', county: 'Jeff Davis County', state: 'Georgia' }, + { INCITS: '13163', county: 'Jefferson County', state: 'Georgia' }, + { INCITS: '13165', county: 'Jenkins County', state: 'Georgia' }, + { INCITS: '13167', county: 'Johnson County', state: 'Georgia' }, + { INCITS: '13169', county: 'Jones County', state: 'Georgia' }, + { INCITS: '13171', county: 'Lamar County', state: 'Georgia' }, + { INCITS: '13173', county: 'Lanier County', state: 'Georgia' }, + { INCITS: '13175', county: 'Laurens County', state: 'Georgia' }, + { INCITS: '13177', county: 'Lee County', state: 'Georgia' }, + { INCITS: '13179', county: 'Liberty County', state: 'Georgia' }, + { INCITS: '13181', county: 'Lincoln County', state: 'Georgia' }, + { INCITS: '13183', county: 'Long County', state: 'Georgia' }, + { INCITS: '13185', county: 'Lowndes County', state: 'Georgia' }, + { INCITS: '13187', county: 'Lumpkin County', state: 'Georgia' }, + { INCITS: '13189', county: 'McDuffie County', state: 'Georgia' }, + { INCITS: '13191', county: 'McIntosh County', state: 'Georgia' }, + { INCITS: '13193', county: 'Macon County', state: 'Georgia' }, + { INCITS: '13195', county: 'Madison County', state: 'Georgia' }, + { INCITS: '13197', county: 'Marion County', state: 'Georgia' }, + { INCITS: '13199', county: 'Meriwether County', state: 'Georgia' }, + { INCITS: '13201', county: 'Miller County', state: 'Georgia' }, + { INCITS: '13205', county: 'Mitchell County', state: 'Georgia' }, + { INCITS: '13207', county: 'Monroe County', state: 'Georgia' }, + { INCITS: '13209', county: 'Montgomery County', state: 'Georgia' }, + { INCITS: '13211', county: 'Morgan County', state: 'Georgia' }, + { INCITS: '13213', county: 'Murray County', state: 'Georgia' }, + { INCITS: '13215', county: 'Muscogee County', state: 'Georgia' }, + { INCITS: '13217', county: 'Newton County', state: 'Georgia' }, + { INCITS: '13219', county: 'Oconee County', state: 'Georgia' }, + { INCITS: '13221', county: 'Oglethorpe County', state: 'Georgia' }, + { INCITS: '13223', county: 'Paulding County', state: 'Georgia' }, + { INCITS: '13225', county: 'Peach County', state: 'Georgia' }, + { INCITS: '13227', county: 'Pickens County', state: 'Georgia' }, + { INCITS: '13229', county: 'Pierce County', state: 'Georgia' }, + { INCITS: '13231', county: 'Pike County', state: 'Georgia' }, + { INCITS: '13233', county: 'Polk County', state: 'Georgia' }, + { INCITS: '13235', county: 'Pulaski County', state: 'Georgia' }, + { INCITS: '13237', county: 'Putnam County', state: 'Georgia' }, + { INCITS: '13239', county: 'Quitman County', state: 'Georgia' }, + { INCITS: '13241', county: 'Rabun County', state: 'Georgia' }, + { INCITS: '13243', county: 'Randolph County', state: 'Georgia' }, + { INCITS: '13245', county: 'Richmond County', state: 'Georgia' }, + { INCITS: '13247', county: 'Rockdale County', state: 'Georgia' }, + { INCITS: '13249', county: 'Schley County', state: 'Georgia' }, + { INCITS: '13251', county: 'Screven County', state: 'Georgia' }, + { INCITS: '13253', county: 'Seminole County', state: 'Georgia' }, + { INCITS: '13255', county: 'Spalding County', state: 'Georgia' }, + { INCITS: '13257', county: 'Stephens County', state: 'Georgia' }, + { INCITS: '13259', county: 'Stewart County', state: 'Georgia' }, + { INCITS: '13261', county: 'Sumter County', state: 'Georgia' }, + { INCITS: '13263', county: 'Talbot County', state: 'Georgia' }, + { INCITS: '13265', county: 'Taliaferro County', state: 'Georgia' }, + { INCITS: '13267', county: 'Tattnall County', state: 'Georgia' }, + { INCITS: '13269', county: 'Taylor County', state: 'Georgia' }, + { INCITS: '13271', county: 'Telfair County', state: 'Georgia' }, + { INCITS: '13273', county: 'Terrell County', state: 'Georgia' }, + { INCITS: '13275', county: 'Thomas County', state: 'Georgia' }, + { INCITS: '13277', county: 'Tift County', state: 'Georgia' }, + { INCITS: '13279', county: 'Toombs County', state: 'Georgia' }, + { INCITS: '13281', county: 'Towns County', state: 'Georgia' }, + { INCITS: '13283', county: 'Treutlen County', state: 'Georgia' }, + { INCITS: '13285', county: 'Troup County', state: 'Georgia' }, + { INCITS: '13287', county: 'Turner County', state: 'Georgia' }, + { INCITS: '13289', county: 'Twiggs County', state: 'Georgia' }, + { INCITS: '13291', county: 'Union County', state: 'Georgia' }, + { INCITS: '13293', county: 'Upson County', state: 'Georgia' }, + { INCITS: '13295', county: 'Walker County', state: 'Georgia' }, + { INCITS: '13297', county: 'Walton County', state: 'Georgia' }, + { INCITS: '13299', county: 'Ware County', state: 'Georgia' }, + { INCITS: '13301', county: 'Warren County', state: 'Georgia' }, + { INCITS: '13303', county: 'Washington County', state: 'Georgia' }, + { INCITS: '13305', county: 'Wayne County', state: 'Georgia' }, + { INCITS: '13307', county: 'Webster County', state: 'Georgia' }, + { INCITS: '13309', county: 'Wheeler County', state: 'Georgia' }, + { INCITS: '13311', county: 'White County', state: 'Georgia' }, + { INCITS: '13313', county: 'Whitfield County', state: 'Georgia' }, + { INCITS: '13315', county: 'Wilcox County', state: 'Georgia' }, + { INCITS: '13317', county: 'Wilkes County', state: 'Georgia' }, + { INCITS: '13319', county: 'Wilkinson County', state: 'Georgia' }, + { INCITS: '13321', county: 'Worth County', state: 'Georgia' }, + { INCITS: '15001', county: 'Hawaii County', state: 'Hawaiʻi' }, + { INCITS: '15003', county: 'Honolulu, City and County of[15]', state: 'Hawaiʻi' }, + { INCITS: '15005', county: 'Kalawao County', state: 'Hawaiʻi' }, + { INCITS: '15007', county: 'Kauai County', state: 'Hawaiʻi' }, + { INCITS: '15009', county: 'Maui County', state: 'Hawaiʻi' }, + { INCITS: '16001', county: 'Ada County', state: 'Idaho' }, + { INCITS: '16003', county: 'Adams County', state: 'Idaho' }, + { INCITS: '16005', county: 'Bannock County', state: 'Idaho' }, + { INCITS: '16007', county: 'Bear Lake County', state: 'Idaho' }, + { INCITS: '16009', county: 'Benewah County', state: 'Idaho' }, + { INCITS: '16011', county: 'Bingham County', state: 'Idaho' }, + { INCITS: '16013', county: 'Blaine County', state: 'Idaho' }, + { INCITS: '16015', county: 'Boise County', state: 'Idaho' }, + { INCITS: '16017', county: 'Bonner County', state: 'Idaho' }, + { INCITS: '16019', county: 'Bonneville County', state: 'Idaho' }, + { INCITS: '16021', county: 'Boundary County', state: 'Idaho' }, + { INCITS: '16023', county: 'Butte County', state: 'Idaho' }, + { INCITS: '16025', county: 'Camas County', state: 'Idaho' }, + { INCITS: '16027', county: 'Canyon County', state: 'Idaho' }, + { INCITS: '16029', county: 'Caribou County', state: 'Idaho' }, + { INCITS: '16031', county: 'Cassia County', state: 'Idaho' }, + { INCITS: '16033', county: 'Clark County', state: 'Idaho' }, + { INCITS: '16035', county: 'Clearwater County', state: 'Idaho' }, + { INCITS: '16037', county: 'Custer County', state: 'Idaho' }, + { INCITS: '16039', county: 'Elmore County', state: 'Idaho' }, + { INCITS: '16041', county: 'Franklin County', state: 'Idaho' }, + { INCITS: '16043', county: 'Fremont County', state: 'Idaho' }, + { INCITS: '16045', county: 'Gem County', state: 'Idaho' }, + { INCITS: '16047', county: 'Gooding County', state: 'Idaho' }, + { INCITS: '16049', county: 'Idaho County', state: 'Idaho' }, + { INCITS: '16051', county: 'Jefferson County', state: 'Idaho' }, + { INCITS: '16053', county: 'Jerome County', state: 'Idaho' }, + { INCITS: '16055', county: 'Kootenai County', state: 'Idaho' }, + { INCITS: '16057', county: 'Latah County', state: 'Idaho' }, + { INCITS: '16059', county: 'Lemhi County', state: 'Idaho' }, + { INCITS: '16061', county: 'Lewis County', state: 'Idaho' }, + { INCITS: '16063', county: 'Lincoln County', state: 'Idaho' }, + { INCITS: '16065', county: 'Madison County', state: 'Idaho' }, + { INCITS: '16067', county: 'Minidoka County', state: 'Idaho' }, + { INCITS: '16069', county: 'Nez Perce County', state: 'Idaho' }, + { INCITS: '16071', county: 'Oneida County', state: 'Idaho' }, + { INCITS: '16073', county: 'Owyhee County', state: 'Idaho' }, + { INCITS: '16075', county: 'Payette County', state: 'Idaho' }, + { INCITS: '16077', county: 'Power County', state: 'Idaho' }, + { INCITS: '16079', county: 'Shoshone County', state: 'Idaho' }, + { INCITS: '16081', county: 'Teton County', state: 'Idaho' }, + { INCITS: '16083', county: 'Twin Falls County', state: 'Idaho' }, + { INCITS: '16085', county: 'Valley County', state: 'Idaho' }, + { INCITS: '16087', county: 'Washington County', state: 'Idaho' }, + { INCITS: '17001', county: 'Adams County', state: 'Illinois' }, + { INCITS: '17003', county: 'Alexander County', state: 'Illinois' }, + { INCITS: '17005', county: 'Bond County', state: 'Illinois' }, + { INCITS: '17007', county: 'Boone County', state: 'Illinois' }, + { INCITS: '17009', county: 'Brown County', state: 'Illinois' }, + { INCITS: '17011', county: 'Bureau County', state: 'Illinois' }, + { INCITS: '17013', county: 'Calhoun County', state: 'Illinois' }, + { INCITS: '17015', county: 'Carroll County', state: 'Illinois' }, + { INCITS: '17017', county: 'Cass County', state: 'Illinois' }, + { INCITS: '17019', county: 'Champaign County', state: 'Illinois' }, + { INCITS: '17021', county: 'Christian County', state: 'Illinois' }, + { INCITS: '17023', county: 'Clark County', state: 'Illinois' }, + { INCITS: '17025', county: 'Clay County', state: 'Illinois' }, + { INCITS: '17027', county: 'Clinton County', state: 'Illinois' }, + { INCITS: '17029', county: 'Coles County', state: 'Illinois' }, + { INCITS: '17031', county: 'Cook County', state: 'Illinois' }, + { INCITS: '17033', county: 'Crawford County', state: 'Illinois' }, + { INCITS: '17035', county: 'Cumberland County', state: 'Illinois' }, + { INCITS: '17037', county: 'DeKalb County', state: 'Illinois' }, + { INCITS: '17039', county: 'De Witt County', state: 'Illinois' }, + { INCITS: '17041', county: 'Douglas County', state: 'Illinois' }, + { INCITS: '17043', county: 'DuPage County', state: 'Illinois' }, + { INCITS: '17045', county: 'Edgar County', state: 'Illinois' }, + { INCITS: '17047', county: 'Edwards County', state: 'Illinois' }, + { INCITS: '17049', county: 'Effingham County', state: 'Illinois' }, + { INCITS: '17051', county: 'Fayette County', state: 'Illinois' }, + { INCITS: '17053', county: 'Ford County', state: 'Illinois' }, + { INCITS: '17055', county: 'Franklin County', state: 'Illinois' }, + { INCITS: '17057', county: 'Fulton County', state: 'Illinois' }, + { INCITS: '17059', county: 'Gallatin County', state: 'Illinois' }, + { INCITS: '17061', county: 'Greene County', state: 'Illinois' }, + { INCITS: '17063', county: 'Grundy County', state: 'Illinois' }, + { INCITS: '17065', county: 'Hamilton County', state: 'Illinois' }, + { INCITS: '17067', county: 'Hancock County', state: 'Illinois' }, + { INCITS: '17069', county: 'Hardin County', state: 'Illinois' }, + { INCITS: '17071', county: 'Henderson County', state: 'Illinois' }, + { INCITS: '17073', county: 'Henry County', state: 'Illinois' }, + { INCITS: '17075', county: 'Iroquois County', state: 'Illinois' }, + { INCITS: '17077', county: 'Jackson County', state: 'Illinois' }, + { INCITS: '17079', county: 'Jasper County', state: 'Illinois' }, + { INCITS: '17081', county: 'Jefferson County', state: 'Illinois' }, + { INCITS: '17083', county: 'Jersey County', state: 'Illinois' }, + { INCITS: '17085', county: 'Jo Daviess County', state: 'Illinois' }, + { INCITS: '17087', county: 'Johnson County', state: 'Illinois' }, + { INCITS: '17089', county: 'Kane County', state: 'Illinois' }, + { INCITS: '17091', county: 'Kankakee County', state: 'Illinois' }, + { INCITS: '17093', county: 'Kendall County', state: 'Illinois' }, + { INCITS: '17095', county: 'Knox County', state: 'Illinois' }, + { INCITS: '17097', county: 'Lake County', state: 'Illinois' }, + { INCITS: '17099', county: 'LaSalle County', state: 'Illinois' }, + { INCITS: '17101', county: 'Lawrence County', state: 'Illinois' }, + { INCITS: '17103', county: 'Lee County', state: 'Illinois' }, + { INCITS: '17105', county: 'Livingston County', state: 'Illinois' }, + { INCITS: '17107', county: 'Logan County', state: 'Illinois' }, + { INCITS: '17109', county: 'McDonough County', state: 'Illinois' }, + { INCITS: '17111', county: 'McHenry County', state: 'Illinois' }, + { INCITS: '17113', county: 'McLean County', state: 'Illinois' }, + { INCITS: '17115', county: 'Macon County', state: 'Illinois' }, + { INCITS: '17117', county: 'Macoupin County', state: 'Illinois' }, + { INCITS: '17119', county: 'Madison County', state: 'Illinois' }, + { INCITS: '17121', county: 'Marion County', state: 'Illinois' }, + { INCITS: '17123', county: 'Marshall County', state: 'Illinois' }, + { INCITS: '17125', county: 'Mason County', state: 'Illinois' }, + { INCITS: '17127', county: 'Massac County', state: 'Illinois' }, + { INCITS: '17129', county: 'Menard County', state: 'Illinois' }, + { INCITS: '17131', county: 'Mercer County', state: 'Illinois' }, + { INCITS: '17133', county: 'Monroe County', state: 'Illinois' }, + { INCITS: '17135', county: 'Montgomery County', state: 'Illinois' }, + { INCITS: '17137', county: 'Morgan County', state: 'Illinois' }, + { INCITS: '17139', county: 'Moultrie County', state: 'Illinois' }, + { INCITS: '17141', county: 'Ogle County', state: 'Illinois' }, + { INCITS: '17143', county: 'Peoria County', state: 'Illinois' }, + { INCITS: '17145', county: 'Perry County', state: 'Illinois' }, + { INCITS: '17147', county: 'Piatt County', state: 'Illinois' }, + { INCITS: '17149', county: 'Pike County', state: 'Illinois' }, + { INCITS: '17151', county: 'Pope County', state: 'Illinois' }, + { INCITS: '17153', county: 'Pulaski County', state: 'Illinois' }, + { INCITS: '17155', county: 'Putnam County', state: 'Illinois' }, + { INCITS: '17157', county: 'Randolph County', state: 'Illinois' }, + { INCITS: '17159', county: 'Richland County', state: 'Illinois' }, + { INCITS: '17161', county: 'Rock Island County', state: 'Illinois' }, + { INCITS: '17163', county: 'St. Clair County', state: 'Illinois' }, + { INCITS: '17165', county: 'Saline County', state: 'Illinois' }, + { INCITS: '17167', county: 'Sangamon County', state: 'Illinois' }, + { INCITS: '17169', county: 'Schuyler County', state: 'Illinois' }, + { INCITS: '17171', county: 'Scott County', state: 'Illinois' }, + { INCITS: '17173', county: 'Shelby County', state: 'Illinois' }, + { INCITS: '17175', county: 'Stark County', state: 'Illinois' }, + { INCITS: '17177', county: 'Stephenson County', state: 'Illinois' }, + { INCITS: '17179', county: 'Tazewell County', state: 'Illinois' }, + { INCITS: '17181', county: 'Union County', state: 'Illinois' }, + { INCITS: '17183', county: 'Vermilion County', state: 'Illinois' }, + { INCITS: '17185', county: 'Wabash County', state: 'Illinois' }, + { INCITS: '17187', county: 'Warren County', state: 'Illinois' }, + { INCITS: '17189', county: 'Washington County', state: 'Illinois' }, + { INCITS: '17191', county: 'Wayne County', state: 'Illinois' }, + { INCITS: '17193', county: 'White County', state: 'Illinois' }, + { INCITS: '17195', county: 'Whiteside County', state: 'Illinois' }, + { INCITS: '17197', county: 'Will County', state: 'Illinois' }, + { INCITS: '17199', county: 'Williamson County', state: 'Illinois' }, + { INCITS: '17201', county: 'Winnebago County', state: 'Illinois' }, + { INCITS: '17203', county: 'Woodford County', state: 'Illinois' }, + { INCITS: '18001', county: 'Adams County', state: 'Indiana' }, + { INCITS: '18003', county: 'Allen County', state: 'Indiana' }, + { INCITS: '18005', county: 'Bartholomew County', state: 'Indiana' }, + { INCITS: '18007', county: 'Benton County', state: 'Indiana' }, + { INCITS: '18009', county: 'Blackford County', state: 'Indiana' }, + { INCITS: '18011', county: 'Boone County', state: 'Indiana' }, + { INCITS: '18013', county: 'Brown County', state: 'Indiana' }, + { INCITS: '18015', county: 'Carroll County', state: 'Indiana' }, + { INCITS: '18017', county: 'Cass County', state: 'Indiana' }, + { INCITS: '18019', county: 'Clark County', state: 'Indiana' }, + { INCITS: '18021', county: 'Clay County', state: 'Indiana' }, + { INCITS: '18023', county: 'Clinton County', state: 'Indiana' }, + { INCITS: '18025', county: 'Crawford County', state: 'Indiana' }, + { INCITS: '18027', county: 'Daviess County', state: 'Indiana' }, + { INCITS: '18029', county: 'Dearborn County', state: 'Indiana' }, + { INCITS: '18031', county: 'Decatur County', state: 'Indiana' }, + { INCITS: '18033', county: 'DeKalb County', state: 'Indiana' }, + { INCITS: '18035', county: 'Delaware County', state: 'Indiana' }, + { INCITS: '18037', county: 'Dubois County', state: 'Indiana' }, + { INCITS: '18039', county: 'Elkhart County', state: 'Indiana' }, + { INCITS: '18041', county: 'Fayette County', state: 'Indiana' }, + { INCITS: '18043', county: 'Floyd County', state: 'Indiana' }, + { INCITS: '18045', county: 'Fountain County', state: 'Indiana' }, + { INCITS: '18047', county: 'Franklin County', state: 'Indiana' }, + { INCITS: '18049', county: 'Fulton County', state: 'Indiana' }, + { INCITS: '18051', county: 'Gibson County', state: 'Indiana' }, + { INCITS: '18053', county: 'Grant County', state: 'Indiana' }, + { INCITS: '18055', county: 'Greene County', state: 'Indiana' }, + { INCITS: '18057', county: 'Hamilton County', state: 'Indiana' }, + { INCITS: '18059', county: 'Hancock County', state: 'Indiana' }, + { INCITS: '18061', county: 'Harrison County', state: 'Indiana' }, + { INCITS: '18063', county: 'Hendricks County', state: 'Indiana' }, + { INCITS: '18065', county: 'Henry County', state: 'Indiana' }, + { INCITS: '18067', county: 'Howard County', state: 'Indiana' }, + { INCITS: '18069', county: 'Huntington County', state: 'Indiana' }, + { INCITS: '18071', county: 'Jackson County', state: 'Indiana' }, + { INCITS: '18073', county: 'Jasper County', state: 'Indiana' }, + { INCITS: '18075', county: 'Jay County', state: 'Indiana' }, + { INCITS: '18077', county: 'Jefferson County', state: 'Indiana' }, + { INCITS: '18079', county: 'Jennings County', state: 'Indiana' }, + { INCITS: '18081', county: 'Johnson County', state: 'Indiana' }, + { INCITS: '18083', county: 'Knox County', state: 'Indiana' }, + { INCITS: '18085', county: 'Kosciusko County', state: 'Indiana' }, + { INCITS: '18087', county: 'LaGrange County', state: 'Indiana' }, + { INCITS: '18089', county: 'Lake County', state: 'Indiana' }, + { INCITS: '18091', county: 'LaPorte County', state: 'Indiana' }, + { INCITS: '18093', county: 'Lawrence County', state: 'Indiana' }, + { INCITS: '18095', county: 'Madison County', state: 'Indiana' }, + { INCITS: '18097', county: 'Marion County', state: 'Indiana' }, + { INCITS: '18099', county: 'Marshall County', state: 'Indiana' }, + { INCITS: '18101', county: 'Martin County', state: 'Indiana' }, + { INCITS: '18103', county: 'Miami County', state: 'Indiana' }, + { INCITS: '18105', county: 'Monroe County', state: 'Indiana' }, + { INCITS: '18107', county: 'Montgomery County', state: 'Indiana' }, + { INCITS: '18109', county: 'Morgan County', state: 'Indiana' }, + { INCITS: '18111', county: 'Newton County', state: 'Indiana' }, + { INCITS: '18113', county: 'Noble County', state: 'Indiana' }, + { INCITS: '18115', county: 'Ohio County', state: 'Indiana' }, + { INCITS: '18117', county: 'Orange County', state: 'Indiana' }, + { INCITS: '18119', county: 'Owen County', state: 'Indiana' }, + { INCITS: '18121', county: 'Parke County', state: 'Indiana' }, + { INCITS: '18123', county: 'Perry County', state: 'Indiana' }, + { INCITS: '18125', county: 'Pike County', state: 'Indiana' }, + { INCITS: '18127', county: 'Porter County', state: 'Indiana' }, + { INCITS: '18129', county: 'Posey County', state: 'Indiana' }, + { INCITS: '18131', county: 'Pulaski County', state: 'Indiana' }, + { INCITS: '18133', county: 'Putnam County', state: 'Indiana' }, + { INCITS: '18135', county: 'Randolph County', state: 'Indiana' }, + { INCITS: '18137', county: 'Ripley County', state: 'Indiana' }, + { INCITS: '18139', county: 'Rush County', state: 'Indiana' }, + { INCITS: '18141', county: 'St. Joseph County', state: 'Indiana' }, + { INCITS: '18143', county: 'Scott County', state: 'Indiana' }, + { INCITS: '18145', county: 'Shelby County', state: 'Indiana' }, + { INCITS: '18147', county: 'Spencer County', state: 'Indiana' }, + { INCITS: '18149', county: 'Starke County', state: 'Indiana' }, + { INCITS: '18151', county: 'Steuben County', state: 'Indiana' }, + { INCITS: '18153', county: 'Sullivan County', state: 'Indiana' }, + { INCITS: '18155', county: 'Switzerland County', state: 'Indiana' }, + { INCITS: '18157', county: 'Tippecanoe County', state: 'Indiana' }, + { INCITS: '18159', county: 'Tipton County', state: 'Indiana' }, + { INCITS: '18161', county: 'Union County', state: 'Indiana' }, + { INCITS: '18163', county: 'Vanderburgh County', state: 'Indiana' }, + { INCITS: '18165', county: 'Vermillion County', state: 'Indiana' }, + { INCITS: '18167', county: 'Vigo County', state: 'Indiana' }, + { INCITS: '18169', county: 'Wabash County', state: 'Indiana' }, + { INCITS: '18171', county: 'Warren County', state: 'Indiana' }, + { INCITS: '18173', county: 'Warrick County', state: 'Indiana' }, + { INCITS: '18175', county: 'Washington County', state: 'Indiana' }, + { INCITS: '18177', county: 'Wayne County', state: 'Indiana' }, + { INCITS: '18179', county: 'Wells County', state: 'Indiana' }, + { INCITS: '18181', county: 'White County', state: 'Indiana' }, + { INCITS: '18183', county: 'Whitley County', state: 'Indiana' }, + { INCITS: '19001', county: 'Adair County', state: 'Iowa' }, + { INCITS: '19003', county: 'Adams County', state: 'Iowa' }, + { INCITS: '19005', county: 'Allamakee County', state: 'Iowa' }, + { INCITS: '19007', county: 'Appanoose County', state: 'Iowa' }, + { INCITS: '19009', county: 'Audubon County', state: 'Iowa' }, + { INCITS: '19011', county: 'Benton County', state: 'Iowa' }, + { INCITS: '19013', county: 'Black Hawk County', state: 'Iowa' }, + { INCITS: '19015', county: 'Boone County', state: 'Iowa' }, + { INCITS: '19017', county: 'Bremer County', state: 'Iowa' }, + { INCITS: '19019', county: 'Buchanan County', state: 'Iowa' }, + { INCITS: '19021', county: 'Buena Vista County', state: 'Iowa' }, + { INCITS: '19023', county: 'Butler County', state: 'Iowa' }, + { INCITS: '19025', county: 'Calhoun County', state: 'Iowa' }, + { INCITS: '19027', county: 'Carroll County', state: 'Iowa' }, + { INCITS: '19029', county: 'Cass County', state: 'Iowa' }, + { INCITS: '19031', county: 'Cedar County', state: 'Iowa' }, + { INCITS: '19033', county: 'Cerro Gordo County', state: 'Iowa' }, + { INCITS: '19035', county: 'Cherokee County', state: 'Iowa' }, + { INCITS: '19037', county: 'Chickasaw County', state: 'Iowa' }, + { INCITS: '19039', county: 'Clarke County', state: 'Iowa' }, + { INCITS: '19041', county: 'Clay County', state: 'Iowa' }, + { INCITS: '19043', county: 'Clayton County', state: 'Iowa' }, + { INCITS: '19045', county: 'Clinton County', state: 'Iowa' }, + { INCITS: '19047', county: 'Crawford County', state: 'Iowa' }, + { INCITS: '19049', county: 'Dallas County', state: 'Iowa' }, + { INCITS: '19051', county: 'Davis County', state: 'Iowa' }, + { INCITS: '19053', county: 'Decatur County', state: 'Iowa' }, + { INCITS: '19055', county: 'Delaware County', state: 'Iowa' }, + { INCITS: '19057', county: 'Des Moines County', state: 'Iowa' }, + { INCITS: '19059', county: 'Dickinson County', state: 'Iowa' }, + { INCITS: '19061', county: 'Dubuque County', state: 'Iowa' }, + { INCITS: '19063', county: 'Emmet County', state: 'Iowa' }, + { INCITS: '19065', county: 'Fayette County', state: 'Iowa' }, + { INCITS: '19067', county: 'Floyd County', state: 'Iowa' }, + { INCITS: '19069', county: 'Franklin County', state: 'Iowa' }, + { INCITS: '19071', county: 'Fremont County', state: 'Iowa' }, + { INCITS: '19073', county: 'Greene County', state: 'Iowa' }, + { INCITS: '19075', county: 'Grundy County', state: 'Iowa' }, + { INCITS: '19077', county: 'Guthrie County', state: 'Iowa' }, + { INCITS: '19079', county: 'Hamilton County', state: 'Iowa' }, + { INCITS: '19081', county: 'Hancock County', state: 'Iowa' }, + { INCITS: '19083', county: 'Hardin County', state: 'Iowa' }, + { INCITS: '19085', county: 'Harrison County', state: 'Iowa' }, + { INCITS: '19087', county: 'Henry County', state: 'Iowa' }, + { INCITS: '19089', county: 'Howard County', state: 'Iowa' }, + { INCITS: '19091', county: 'Humboldt County', state: 'Iowa' }, + { INCITS: '19093', county: 'Ida County', state: 'Iowa' }, + { INCITS: '19095', county: 'Iowa County', state: 'Iowa' }, + { INCITS: '19097', county: 'Jackson County', state: 'Iowa' }, + { INCITS: '19099', county: 'Jasper County', state: 'Iowa' }, + { INCITS: '19101', county: 'Jefferson County', state: 'Iowa' }, + { INCITS: '19103', county: 'Johnson County', state: 'Iowa' }, + { INCITS: '19105', county: 'Jones County', state: 'Iowa' }, + { INCITS: '19107', county: 'Keokuk County', state: 'Iowa' }, + { INCITS: '19109', county: 'Kossuth County', state: 'Iowa' }, + { INCITS: '19111', county: 'Lee County', state: 'Iowa' }, + { INCITS: '19113', county: 'Linn County', state: 'Iowa' }, + { INCITS: '19115', county: 'Louisa County', state: 'Iowa' }, + { INCITS: '19117', county: 'Lucas County', state: 'Iowa' }, + { INCITS: '19119', county: 'Lyon County', state: 'Iowa' }, + { INCITS: '19121', county: 'Madison County', state: 'Iowa' }, + { INCITS: '19123', county: 'Mahaska County', state: 'Iowa' }, + { INCITS: '19125', county: 'Marion County', state: 'Iowa' }, + { INCITS: '19127', county: 'Marshall County', state: 'Iowa' }, + { INCITS: '19129', county: 'Mills County', state: 'Iowa' }, + { INCITS: '19131', county: 'Mitchell County', state: 'Iowa' }, + { INCITS: '19133', county: 'Monona County', state: 'Iowa' }, + { INCITS: '19135', county: 'Monroe County', state: 'Iowa' }, + { INCITS: '19137', county: 'Montgomery County', state: 'Iowa' }, + { INCITS: '19139', county: 'Muscatine County', state: 'Iowa' }, + { INCITS: '19141', county: 'O\'Brien County', state: 'Iowa' }, + { INCITS: '19143', county: 'Osceola County', state: 'Iowa' }, + { INCITS: '19145', county: 'Page County', state: 'Iowa' }, + { INCITS: '19147', county: 'Palo Alto County', state: 'Iowa' }, + { INCITS: '19149', county: 'Plymouth County', state: 'Iowa' }, + { INCITS: '19151', county: 'Pocahontas County', state: 'Iowa' }, + { INCITS: '19153', county: 'Polk County', state: 'Iowa' }, + { INCITS: '19155', county: 'Pottawattamie County', state: 'Iowa' }, + { INCITS: '19157', county: 'Poweshiek County', state: 'Iowa' }, + { INCITS: '19159', county: 'Ringgold County', state: 'Iowa' }, + { INCITS: '19161', county: 'Sac County', state: 'Iowa' }, + { INCITS: '19163', county: 'Scott County', state: 'Iowa' }, + { INCITS: '19165', county: 'Shelby County', state: 'Iowa' }, + { INCITS: '19167', county: 'Sioux County', state: 'Iowa' }, + { INCITS: '19169', county: 'Story County', state: 'Iowa' }, + { INCITS: '19171', county: 'Tama County', state: 'Iowa' }, + { INCITS: '19173', county: 'Taylor County', state: 'Iowa' }, + { INCITS: '19175', county: 'Union County', state: 'Iowa' }, + { INCITS: '19177', county: 'Van Buren County', state: 'Iowa' }, + { INCITS: '19179', county: 'Wapello County', state: 'Iowa' }, + { INCITS: '19181', county: 'Warren County', state: 'Iowa' }, + { INCITS: '19183', county: 'Washington County', state: 'Iowa' }, + { INCITS: '19185', county: 'Wayne County', state: 'Iowa' }, + { INCITS: '19187', county: 'Webster County', state: 'Iowa' }, + { INCITS: '19189', county: 'Winnebago County', state: 'Iowa' }, + { INCITS: '19191', county: 'Winneshiek County', state: 'Iowa' }, + { INCITS: '19193', county: 'Woodbury County', state: 'Iowa' }, + { INCITS: '19195', county: 'Worth County', state: 'Iowa' }, + { INCITS: '19197', county: 'Wright County', state: 'Iowa' }, + { INCITS: '20001', county: 'Allen County', state: 'Kansas' }, + { INCITS: '20003', county: 'Anderson County', state: 'Kansas' }, + { INCITS: '20005', county: 'Atchison County', state: 'Kansas' }, + { INCITS: '20007', county: 'Barber County', state: 'Kansas' }, + { INCITS: '20009', county: 'Barton County', state: 'Kansas' }, + { INCITS: '20011', county: 'Bourbon County', state: 'Kansas' }, + { INCITS: '20013', county: 'Brown County', state: 'Kansas' }, + { INCITS: '20015', county: 'Butler County', state: 'Kansas' }, + { INCITS: '20017', county: 'Chase County', state: 'Kansas' }, + { INCITS: '20019', county: 'Chautauqua County', state: 'Kansas' }, + { INCITS: '20021', county: 'Cherokee County', state: 'Kansas' }, + { INCITS: '20023', county: 'Cheyenne County', state: 'Kansas' }, + { INCITS: '20025', county: 'Clark County', state: 'Kansas' }, + { INCITS: '20027', county: 'Clay County', state: 'Kansas' }, + { INCITS: '20029', county: 'Cloud County', state: 'Kansas' }, + { INCITS: '20031', county: 'Coffey County', state: 'Kansas' }, + { INCITS: '20033', county: 'Comanche County', state: 'Kansas' }, + { INCITS: '20035', county: 'Cowley County', state: 'Kansas' }, + { INCITS: '20037', county: 'Crawford County', state: 'Kansas' }, + { INCITS: '20039', county: 'Decatur County', state: 'Kansas' }, + { INCITS: '20041', county: 'Dickinson County', state: 'Kansas' }, + { INCITS: '20043', county: 'Doniphan County', state: 'Kansas' }, + { INCITS: '20045', county: 'Douglas County', state: 'Kansas' }, + { INCITS: '20047', county: 'Edwards County', state: 'Kansas' }, + { INCITS: '20049', county: 'Elk County', state: 'Kansas' }, + { INCITS: '20051', county: 'Ellis County', state: 'Kansas' }, + { INCITS: '20053', county: 'Ellsworth County', state: 'Kansas' }, + { INCITS: '20055', county: 'Finney County', state: 'Kansas' }, + { INCITS: '20057', county: 'Ford County', state: 'Kansas' }, + { INCITS: '20059', county: 'Franklin County', state: 'Kansas' }, + { INCITS: '20061', county: 'Geary County', state: 'Kansas' }, + { INCITS: '20063', county: 'Gove County', state: 'Kansas' }, + { INCITS: '20065', county: 'Graham County', state: 'Kansas' }, + { INCITS: '20067', county: 'Grant County', state: 'Kansas' }, + { INCITS: '20069', county: 'Gray County', state: 'Kansas' }, + { INCITS: '20071', county: 'Greeley County', state: 'Kansas' }, + { INCITS: '20073', county: 'Greenwood County', state: 'Kansas' }, + { INCITS: '20075', county: 'Hamilton County', state: 'Kansas' }, + { INCITS: '20077', county: 'Harper County', state: 'Kansas' }, + { INCITS: '20079', county: 'Harvey County', state: 'Kansas' }, + { INCITS: '20081', county: 'Haskell County', state: 'Kansas' }, + { INCITS: '20083', county: 'Hodgeman County', state: 'Kansas' }, + { INCITS: '20085', county: 'Jackson County', state: 'Kansas' }, + { INCITS: '20087', county: 'Jefferson County', state: 'Kansas' }, + { INCITS: '20089', county: 'Jewell County', state: 'Kansas' }, + { INCITS: '20091', county: 'Johnson County', state: 'Kansas' }, + { INCITS: '20093', county: 'Kearny County', state: 'Kansas' }, + { INCITS: '20095', county: 'Kingman County', state: 'Kansas' }, + { INCITS: '20097', county: 'Kiowa County', state: 'Kansas' }, + { INCITS: '20099', county: 'Labette County', state: 'Kansas' }, + { INCITS: '20101', county: 'Lane County', state: 'Kansas' }, + { INCITS: '20103', county: 'Leavenworth County', state: 'Kansas' }, + { INCITS: '20105', county: 'Lincoln County', state: 'Kansas' }, + { INCITS: '20107', county: 'Linn County', state: 'Kansas' }, + { INCITS: '20109', county: 'Logan County', state: 'Kansas' }, + { INCITS: '20111', county: 'Lyon County', state: 'Kansas' }, + { INCITS: '20113', county: 'McPherson County', state: 'Kansas' }, + { INCITS: '20115', county: 'Marion County', state: 'Kansas' }, + { INCITS: '20117', county: 'Marshall County', state: 'Kansas' }, + { INCITS: '20119', county: 'Meade County', state: 'Kansas' }, + { INCITS: '20121', county: 'Miami County', state: 'Kansas' }, + { INCITS: '20123', county: 'Mitchell County', state: 'Kansas' }, + { INCITS: '20125', county: 'Montgomery County', state: 'Kansas' }, + { INCITS: '20127', county: 'Morris County', state: 'Kansas' }, + { INCITS: '20129', county: 'Morton County', state: 'Kansas' }, + { INCITS: '20131', county: 'Nemaha County', state: 'Kansas' }, + { INCITS: '20133', county: 'Neosho County', state: 'Kansas' }, + { INCITS: '20135', county: 'Ness County', state: 'Kansas' }, + { INCITS: '20137', county: 'Norton County', state: 'Kansas' }, + { INCITS: '20139', county: 'Osage County', state: 'Kansas' }, + { INCITS: '20141', county: 'Osborne County', state: 'Kansas' }, + { INCITS: '20143', county: 'Ottawa County', state: 'Kansas' }, + { INCITS: '20145', county: 'Pawnee County', state: 'Kansas' }, + { INCITS: '20147', county: 'Phillips County', state: 'Kansas' }, + { INCITS: '20149', county: 'Pottawatomie County', state: 'Kansas' }, + { INCITS: '20151', county: 'Pratt County', state: 'Kansas' }, + { INCITS: '20153', county: 'Rawlins County', state: 'Kansas' }, + { INCITS: '20155', county: 'Reno County', state: 'Kansas' }, + { INCITS: '20157', county: 'Republic County', state: 'Kansas' }, + { INCITS: '20159', county: 'Rice County', state: 'Kansas' }, + { INCITS: '20161', county: 'Riley County', state: 'Kansas' }, + { INCITS: '20163', county: 'Rooks County', state: 'Kansas' }, + { INCITS: '20165', county: 'Rush County', state: 'Kansas' }, + { INCITS: '20167', county: 'Russell County', state: 'Kansas' }, + { INCITS: '20169', county: 'Saline County', state: 'Kansas' }, + { INCITS: '20171', county: 'Scott County', state: 'Kansas' }, + { INCITS: '20173', county: 'Sedgwick County', state: 'Kansas' }, + { INCITS: '20175', county: 'Seward County', state: 'Kansas' }, + { INCITS: '20177', county: 'Shawnee County', state: 'Kansas' }, + { INCITS: '20179', county: 'Sheridan County', state: 'Kansas' }, + { INCITS: '20181', county: 'Sherman County', state: 'Kansas' }, + { INCITS: '20183', county: 'Smith County', state: 'Kansas' }, + { INCITS: '20185', county: 'Stafford County', state: 'Kansas' }, + { INCITS: '20187', county: 'Stanton County', state: 'Kansas' }, + { INCITS: '20189', county: 'Stevens County', state: 'Kansas' }, + { INCITS: '20191', county: 'Sumner County', state: 'Kansas' }, + { INCITS: '20193', county: 'Thomas County', state: 'Kansas' }, + { INCITS: '20195', county: 'Trego County', state: 'Kansas' }, + { INCITS: '20197', county: 'Wabaunsee County', state: 'Kansas' }, + { INCITS: '20199', county: 'Wallace County', state: 'Kansas' }, + { INCITS: '20201', county: 'Washington County', state: 'Kansas' }, + { INCITS: '20203', county: 'Wichita County', state: 'Kansas' }, + { INCITS: '20205', county: 'Wilson County', state: 'Kansas' }, + { INCITS: '20207', county: 'Woodson County', state: 'Kansas' }, + { INCITS: '20209', county: 'Wyandotte County', state: 'Kansas' }, + { INCITS: '21001', county: 'Adair County', state: 'Kentucky' }, + { INCITS: '21003', county: 'Allen County', state: 'Kentucky' }, + { INCITS: '21005', county: 'Anderson County', state: 'Kentucky' }, + { INCITS: '21007', county: 'Ballard County', state: 'Kentucky' }, + { INCITS: '21009', county: 'Barren County', state: 'Kentucky' }, + { INCITS: '21011', county: 'Bath County', state: 'Kentucky' }, + { INCITS: '21013', county: 'Bell County', state: 'Kentucky' }, + { INCITS: '21015', county: 'Boone County', state: 'Kentucky' }, + { INCITS: '21017', county: 'Bourbon County', state: 'Kentucky' }, + { INCITS: '21019', county: 'Boyd County', state: 'Kentucky' }, + { INCITS: '21021', county: 'Boyle County', state: 'Kentucky' }, + { INCITS: '21023', county: 'Bracken County', state: 'Kentucky' }, + { INCITS: '21025', county: 'Breathitt County', state: 'Kentucky' }, + { INCITS: '21027', county: 'Breckinridge County', state: 'Kentucky' }, + { INCITS: '21029', county: 'Bullitt County', state: 'Kentucky' }, + { INCITS: '21031', county: 'Butler County', state: 'Kentucky' }, + { INCITS: '21033', county: 'Caldwell County', state: 'Kentucky' }, + { INCITS: '21035', county: 'Calloway County', state: 'Kentucky' }, + { INCITS: '21037', county: 'Campbell County', state: 'Kentucky' }, + { INCITS: '21039', county: 'Carlisle County', state: 'Kentucky' }, + { INCITS: '21041', county: 'Carroll County', state: 'Kentucky' }, + { INCITS: '21043', county: 'Carter County', state: 'Kentucky' }, + { INCITS: '21045', county: 'Casey County', state: 'Kentucky' }, + { INCITS: '21047', county: 'Christian County', state: 'Kentucky' }, + { INCITS: '21049', county: 'Clark County', state: 'Kentucky' }, + { INCITS: '21051', county: 'Clay County', state: 'Kentucky' }, + { INCITS: '21053', county: 'Clinton County', state: 'Kentucky' }, + { INCITS: '21055', county: 'Crittenden County', state: 'Kentucky' }, + { INCITS: '21057', county: 'Cumberland County', state: 'Kentucky' }, + { INCITS: '21059', county: 'Daviess County', state: 'Kentucky' }, + { INCITS: '21061', county: 'Edmonson County', state: 'Kentucky' }, + { INCITS: '21063', county: 'Elliott County', state: 'Kentucky' }, + { INCITS: '21065', county: 'Estill County', state: 'Kentucky' }, + { INCITS: '21067', county: 'Fayette County', state: 'Kentucky' }, + { INCITS: '21069', county: 'Fleming County', state: 'Kentucky' }, + { INCITS: '21071', county: 'Floyd County', state: 'Kentucky' }, + { INCITS: '21073', county: 'Franklin County', state: 'Kentucky' }, + { INCITS: '21075', county: 'Fulton County', state: 'Kentucky' }, + { INCITS: '21077', county: 'Gallatin County', state: 'Kentucky' }, + { INCITS: '21079', county: 'Garrard County', state: 'Kentucky' }, + { INCITS: '21081', county: 'Grant County', state: 'Kentucky' }, + { INCITS: '21083', county: 'Graves County', state: 'Kentucky' }, + { INCITS: '21085', county: 'Grayson County', state: 'Kentucky' }, + { INCITS: '21087', county: 'Green County', state: 'Kentucky' }, + { INCITS: '21089', county: 'Greenup County', state: 'Kentucky' }, + { INCITS: '21091', county: 'Hancock County', state: 'Kentucky' }, + { INCITS: '21093', county: 'Hardin County', state: 'Kentucky' }, + { INCITS: '21095', county: 'Harlan County', state: 'Kentucky' }, + { INCITS: '21097', county: 'Harrison County', state: 'Kentucky' }, + { INCITS: '21099', county: 'Hart County', state: 'Kentucky' }, + { INCITS: '21101', county: 'Henderson County', state: 'Kentucky' }, + { INCITS: '21103', county: 'Henry County', state: 'Kentucky' }, + { INCITS: '21105', county: 'Hickman County', state: 'Kentucky' }, + { INCITS: '21107', county: 'Hopkins County', state: 'Kentucky' }, + { INCITS: '21109', county: 'Jackson County', state: 'Kentucky' }, + { INCITS: '21111', county: 'Jefferson County', state: 'Kentucky' }, + { INCITS: '21113', county: 'Jessamine County', state: 'Kentucky' }, + { INCITS: '21115', county: 'Johnson County', state: 'Kentucky' }, + { INCITS: '21117', county: 'Kenton County', state: 'Kentucky' }, + { INCITS: '21119', county: 'Knott County', state: 'Kentucky' }, + { INCITS: '21121', county: 'Knox County', state: 'Kentucky' }, + { INCITS: '21123', county: 'LaRue County', state: 'Kentucky' }, + { INCITS: '21125', county: 'Laurel County', state: 'Kentucky' }, + { INCITS: '21127', county: 'Lawrence County', state: 'Kentucky' }, + { INCITS: '21129', county: 'Lee County', state: 'Kentucky' }, + { INCITS: '21131', county: 'Leslie County', state: 'Kentucky' }, + { INCITS: '21133', county: 'Letcher County', state: 'Kentucky' }, + { INCITS: '21135', county: 'Lewis County', state: 'Kentucky' }, + { INCITS: '21137', county: 'Lincoln County', state: 'Kentucky' }, + { INCITS: '21139', county: 'Livingston County', state: 'Kentucky' }, + { INCITS: '21141', county: 'Logan County', state: 'Kentucky' }, + { INCITS: '21143', county: 'Lyon County', state: 'Kentucky' }, + { INCITS: '21145', county: 'McCracken County', state: 'Kentucky' }, + { INCITS: '21147', county: 'McCreary County', state: 'Kentucky' }, + { INCITS: '21149', county: 'McLean County', state: 'Kentucky' }, + { INCITS: '21151', county: 'Madison County', state: 'Kentucky' }, + { INCITS: '21153', county: 'Magoffin County', state: 'Kentucky' }, + { INCITS: '21155', county: 'Marion County', state: 'Kentucky' }, + { INCITS: '21157', county: 'Marshall County', state: 'Kentucky' }, + { INCITS: '21159', county: 'Martin County', state: 'Kentucky' }, + { INCITS: '21161', county: 'Mason County', state: 'Kentucky' }, + { INCITS: '21163', county: 'Meade County', state: 'Kentucky' }, + { INCITS: '21165', county: 'Menifee County', state: 'Kentucky' }, + { INCITS: '21167', county: 'Mercer County', state: 'Kentucky' }, + { INCITS: '21169', county: 'Metcalfe County', state: 'Kentucky' }, + { INCITS: '21171', county: 'Monroe County', state: 'Kentucky' }, + { INCITS: '21173', county: 'Montgomery County', state: 'Kentucky' }, + { INCITS: '21175', county: 'Morgan County', state: 'Kentucky' }, + { INCITS: '21177', county: 'Muhlenberg County', state: 'Kentucky' }, + { INCITS: '21179', county: 'Nelson County', state: 'Kentucky' }, + { INCITS: '21181', county: 'Nicholas County', state: 'Kentucky' }, + { INCITS: '21183', county: 'Ohio County', state: 'Kentucky' }, + { INCITS: '21185', county: 'Oldham County', state: 'Kentucky' }, + { INCITS: '21187', county: 'Owen County', state: 'Kentucky' }, + { INCITS: '21189', county: 'Owsley County', state: 'Kentucky' }, + { INCITS: '21191', county: 'Pendleton County', state: 'Kentucky' }, + { INCITS: '21193', county: 'Perry County', state: 'Kentucky' }, + { INCITS: '21195', county: 'Pike County', state: 'Kentucky' }, + { INCITS: '21197', county: 'Powell County', state: 'Kentucky' }, + { INCITS: '21199', county: 'Pulaski County', state: 'Kentucky' }, + { INCITS: '21201', county: 'Robertson County', state: 'Kentucky' }, + { INCITS: '21203', county: 'Rockcastle County', state: 'Kentucky' }, + { INCITS: '21205', county: 'Rowan County', state: 'Kentucky' }, + { INCITS: '21207', county: 'Russell County', state: 'Kentucky' }, + { INCITS: '21209', county: 'Scott County', state: 'Kentucky' }, + { INCITS: '21211', county: 'Shelby County', state: 'Kentucky' }, + { INCITS: '21213', county: 'Simpson County', state: 'Kentucky' }, + { INCITS: '21215', county: 'Spencer County', state: 'Kentucky' }, + { INCITS: '21217', county: 'Taylor County', state: 'Kentucky' }, + { INCITS: '21219', county: 'Todd County', state: 'Kentucky' }, + { INCITS: '21221', county: 'Trigg County', state: 'Kentucky' }, + { INCITS: '21223', county: 'Trimble County', state: 'Kentucky' }, + { INCITS: '21225', county: 'Union County', state: 'Kentucky' }, + { INCITS: '21227', county: 'Warren County', state: 'Kentucky' }, + { INCITS: '21229', county: 'Washington County', state: 'Kentucky' }, + { INCITS: '21231', county: 'Wayne County', state: 'Kentucky' }, + { INCITS: '21233', county: 'Webster County', state: 'Kentucky' }, + { INCITS: '21235', county: 'Whitley County', state: 'Kentucky' }, + { INCITS: '21237', county: 'Wolfe County', state: 'Kentucky' }, + { INCITS: '21239', county: 'Woodford County', state: 'Kentucky' }, + { INCITS: '22001', county: 'Acadia Parish', state: 'Louisiana' }, + { INCITS: '22003', county: 'Allen Parish', state: 'Louisiana' }, + { INCITS: '22005', county: 'Ascension Parish', state: 'Louisiana' }, + { INCITS: '22007', county: 'Assumption Parish', state: 'Louisiana' }, + { INCITS: '22009', county: 'Avoyelles Parish', state: 'Louisiana' }, + { INCITS: '22011', county: 'Beauregard Parish', state: 'Louisiana' }, + { INCITS: '22013', county: 'Bienville Parish', state: 'Louisiana' }, + { INCITS: '22015', county: 'Bossier Parish', state: 'Louisiana' }, + { INCITS: '22017', county: 'Caddo Parish', state: 'Louisiana' }, + { INCITS: '22019', county: 'Calcasieu Parish', state: 'Louisiana' }, + { INCITS: '22021', county: 'Caldwell Parish', state: 'Louisiana' }, + { INCITS: '22023', county: 'Cameron Parish', state: 'Louisiana' }, + { INCITS: '22025', county: 'Catahoula Parish', state: 'Louisiana' }, + { INCITS: '22027', county: 'Claiborne Parish', state: 'Louisiana' }, + { INCITS: '22029', county: 'Concordia Parish', state: 'Louisiana' }, + { INCITS: '22031', county: 'De Soto Parish', state: 'Louisiana' }, + { INCITS: '22033', county: 'East Baton Rouge Parish', state: 'Louisiana' }, + { INCITS: '22035', county: 'East Carroll Parish', state: 'Louisiana' }, + { INCITS: '22037', county: 'East Feliciana Parish', state: 'Louisiana' }, + { INCITS: '22039', county: 'Evangeline Parish', state: 'Louisiana' }, + { INCITS: '22041', county: 'Franklin Parish', state: 'Louisiana' }, + { INCITS: '22043', county: 'Grant Parish', state: 'Louisiana' }, + { INCITS: '22045', county: 'Iberia Parish', state: 'Louisiana' }, + { INCITS: '22047', county: 'Iberville Parish', state: 'Louisiana' }, + { INCITS: '22049', county: 'Jackson Parish', state: 'Louisiana' }, + { INCITS: '22051', county: 'Jefferson Parish', state: 'Louisiana' }, + { INCITS: '22053', county: 'Jefferson Davis Parish', state: 'Louisiana' }, + { INCITS: '22055', county: 'Lafayette Parish', state: 'Louisiana' }, + { INCITS: '22057', county: 'Lafourche Parish', state: 'Louisiana' }, + { INCITS: '22059', county: 'LaSalle Parish', state: 'Louisiana' }, + { INCITS: '22061', county: 'Lincoln Parish', state: 'Louisiana' }, + { INCITS: '22063', county: 'Livingston Parish', state: 'Louisiana' }, + { INCITS: '22065', county: 'Madison Parish', state: 'Louisiana' }, + { INCITS: '22067', county: 'Morehouse Parish', state: 'Louisiana' }, + { INCITS: '22069', county: 'Natchitoches Parish', state: 'Louisiana' }, + { INCITS: '22071', county: 'Orleans Parish', state: 'Louisiana' }, + { INCITS: '22073', county: 'Ouachita Parish', state: 'Louisiana' }, + { INCITS: '22075', county: 'Plaquemines Parish', state: 'Louisiana' }, + { INCITS: '22077', county: 'Pointe Coupee Parish', state: 'Louisiana' }, + { INCITS: '22079', county: 'Rapides Parish', state: 'Louisiana' }, + { INCITS: '22081', county: 'Red River Parish', state: 'Louisiana' }, + { INCITS: '22083', county: 'Richland Parish', state: 'Louisiana' }, + { INCITS: '22085', county: 'Sabine Parish', state: 'Louisiana' }, + { INCITS: '22087', county: 'St. Bernard Parish', state: 'Louisiana' }, + { INCITS: '22089', county: 'St. Charles Parish', state: 'Louisiana' }, + { INCITS: '22091', county: 'St. Helena Parish', state: 'Louisiana' }, + { INCITS: '22093', county: 'St. James Parish', state: 'Louisiana' }, + { INCITS: '22095', county: 'St. John the Baptist Parish', state: 'Louisiana' }, + { INCITS: '22097', county: 'St. Landry Parish', state: 'Louisiana' }, + { INCITS: '22099', county: 'St. Martin Parish', state: 'Louisiana' }, + { INCITS: '22101', county: 'St. Mary Parish', state: 'Louisiana' }, + { INCITS: '22103', county: 'St. Tammany Parish', state: 'Louisiana' }, + { INCITS: '22105', county: 'Tangipahoa Parish', state: 'Louisiana' }, + { INCITS: '22107', county: 'Tensas Parish', state: 'Louisiana' }, + { INCITS: '22109', county: 'Terrebonne Parish', state: 'Louisiana' }, + { INCITS: '22111', county: 'Union Parish', state: 'Louisiana' }, + { INCITS: '22113', county: 'Vermilion Parish', state: 'Louisiana' }, + { INCITS: '22115', county: 'Vernon Parish', state: 'Louisiana' }, + { INCITS: '22117', county: 'Washington Parish', state: 'Louisiana' }, + { INCITS: '22119', county: 'Webster Parish', state: 'Louisiana' }, + { INCITS: '22121', county: 'West Baton Rouge Parish', state: 'Louisiana' }, + { INCITS: '22123', county: 'West Carroll Parish', state: 'Louisiana' }, + { INCITS: '22125', county: 'West Feliciana Parish', state: 'Louisiana' }, + { INCITS: '22127', county: 'Winn Parish', state: 'Louisiana' }, + { INCITS: '23001', county: 'Androscoggin County', state: 'Maine' }, + { INCITS: '23003', county: 'Aroostook County', state: 'Maine' }, + { INCITS: '23005', county: 'Cumberland County', state: 'Maine' }, + { INCITS: '23007', county: 'Franklin County', state: 'Maine' }, + { INCITS: '23009', county: 'Hancock County', state: 'Maine' }, + { INCITS: '23011', county: 'Kennebec County', state: 'Maine' }, + { INCITS: '23013', county: 'Knox County', state: 'Maine' }, + { INCITS: '23015', county: 'Lincoln County', state: 'Maine' }, + { INCITS: '23017', county: 'Oxford County', state: 'Maine' }, + { INCITS: '23019', county: 'Penobscot County', state: 'Maine' }, + { INCITS: '23021', county: 'Piscataquis County', state: 'Maine' }, + { INCITS: '23023', county: 'Sagadahoc County', state: 'Maine' }, + { INCITS: '23025', county: 'Somerset County', state: 'Maine' }, + { INCITS: '23027', county: 'Waldo County', state: 'Maine' }, + { INCITS: '23029', county: 'Washington County', state: 'Maine' }, + { INCITS: '23031', county: 'York County', state: 'Maine' }, + { INCITS: '24001', county: 'Allegany County', state: 'Maryland' }, + { INCITS: '24003', county: 'Anne Arundel County', state: 'Maryland' }, + { INCITS: '24005', county: 'Baltimore County', state: 'Maryland' }, + { INCITS: '24009', county: 'Calvert County', state: 'Maryland' }, + { INCITS: '24011', county: 'Caroline County', state: 'Maryland' }, + { INCITS: '24013', county: 'Carroll County', state: 'Maryland' }, + { INCITS: '24015', county: 'Cecil County', state: 'Maryland' }, + { INCITS: '24017', county: 'Charles County', state: 'Maryland' }, + { INCITS: '24019', county: 'Dorchester County', state: 'Maryland' }, + { INCITS: '24021', county: 'Frederick County', state: 'Maryland' }, + { INCITS: '24023', county: 'Garrett County', state: 'Maryland' }, + { INCITS: '24025', county: 'Harford County', state: 'Maryland' }, + { INCITS: '24027', county: 'Howard County', state: 'Maryland' }, + { INCITS: '24029', county: 'Kent County', state: 'Maryland' }, + { INCITS: '24031', county: 'Montgomery County', state: 'Maryland' }, + { INCITS: '24033', county: 'Prince George\'s County', state: 'Maryland' }, + { INCITS: '24035', county: 'Queen Anne\'s County', state: 'Maryland' }, + { INCITS: '24037', county: 'St. Mary\'s County', state: 'Maryland' }, + { INCITS: '24039', county: 'Somerset County', state: 'Maryland' }, + { INCITS: '24041', county: 'Talbot County', state: 'Maryland' }, + { INCITS: '24043', county: 'Washington County', state: 'Maryland' }, + { INCITS: '24045', county: 'Wicomico County', state: 'Maryland' }, + { INCITS: '24047', county: 'Worcester County', state: 'Maryland' }, + { INCITS: '24510', county: 'Baltimore City[16]', state: 'Maryland' }, + { INCITS: '25001', county: 'Barnstable County', state: 'Massachusetts' }, + { INCITS: '25003', county: 'Berkshire County[13]', state: 'Massachusetts' }, + { INCITS: '25005', county: 'Bristol County', state: 'Massachusetts' }, + { INCITS: '25007', county: 'Dukes County', state: 'Massachusetts' }, + { INCITS: '25009', county: 'Essex County[13]', state: 'Massachusetts' }, + { INCITS: '25011', county: 'Franklin County[13]', state: 'Massachusetts' }, + { INCITS: '25013', county: 'Hampden County[13]', state: 'Massachusetts' }, + { INCITS: '25015', county: 'Hampshire County[13]', state: 'Massachusetts' }, + { INCITS: '25017', county: 'Middlesex County[13]', state: 'Massachusetts' }, + { INCITS: '25019', county: 'Nantucket, Town and County of[17]', state: 'Massachusetts' }, + { INCITS: '25021', county: 'Norfolk County', state: 'Massachusetts' }, + { INCITS: '25023', county: 'Plymouth County', state: 'Massachusetts' }, + { INCITS: '25025', county: 'Suffolk County[13]', state: 'Massachusetts' }, + { INCITS: '25027', county: 'Worcester County[13]', state: 'Massachusetts' }, + { INCITS: '26001', county: 'Alcona County', state: 'Michigan' }, + { INCITS: '26003', county: 'Alger County', state: 'Michigan' }, + { INCITS: '26005', county: 'Allegan County', state: 'Michigan' }, + { INCITS: '26007', county: 'Alpena County', state: 'Michigan' }, + { INCITS: '26009', county: 'Antrim County', state: 'Michigan' }, + { INCITS: '26011', county: 'Arenac County', state: 'Michigan' }, + { INCITS: '26013', county: 'Baraga County', state: 'Michigan' }, + { INCITS: '26015', county: 'Barry County', state: 'Michigan' }, + { INCITS: '26017', county: 'Bay County', state: 'Michigan' }, + { INCITS: '26019', county: 'Benzie County', state: 'Michigan' }, + { INCITS: '26021', county: 'Berrien County', state: 'Michigan' }, + { INCITS: '26023', county: 'Branch County', state: 'Michigan' }, + { INCITS: '26025', county: 'Calhoun County', state: 'Michigan' }, + { INCITS: '26027', county: 'Cass County', state: 'Michigan' }, + { INCITS: '26029', county: 'Charlevoix County', state: 'Michigan' }, + { INCITS: '26031', county: 'Cheboygan County', state: 'Michigan' }, + { INCITS: '26033', county: 'Chippewa County', state: 'Michigan' }, + { INCITS: '26035', county: 'Clare County', state: 'Michigan' }, + { INCITS: '26037', county: 'Clinton County', state: 'Michigan' }, + { INCITS: '26039', county: 'Crawford County', state: 'Michigan' }, + { INCITS: '26041', county: 'Delta County', state: 'Michigan' }, + { INCITS: '26043', county: 'Dickinson County', state: 'Michigan' }, + { INCITS: '26045', county: 'Eaton County', state: 'Michigan' }, + { INCITS: '26047', county: 'Emmet County', state: 'Michigan' }, + { INCITS: '26049', county: 'Genesee County', state: 'Michigan' }, + { INCITS: '26051', county: 'Gladwin County', state: 'Michigan' }, + { INCITS: '26053', county: 'Gogebic County', state: 'Michigan' }, + { INCITS: '26055', county: 'Grand Traverse County', state: 'Michigan' }, + { INCITS: '26057', county: 'Gratiot County', state: 'Michigan' }, + { INCITS: '26059', county: 'Hillsdale County', state: 'Michigan' }, + { INCITS: '26061', county: 'Houghton County', state: 'Michigan' }, + { INCITS: '26063', county: 'Huron County', state: 'Michigan' }, + { INCITS: '26065', county: 'Ingham County', state: 'Michigan' }, + { INCITS: '26067', county: 'Ionia County', state: 'Michigan' }, + { INCITS: '26069', county: 'Iosco County', state: 'Michigan' }, + { INCITS: '26071', county: 'Iron County', state: 'Michigan' }, + { INCITS: '26073', county: 'Isabella County', state: 'Michigan' }, + { INCITS: '26075', county: 'Jackson County', state: 'Michigan' }, + { INCITS: '26077', county: 'Kalamazoo County', state: 'Michigan' }, + { INCITS: '26079', county: 'Kalkaska County', state: 'Michigan' }, + { INCITS: '26081', county: 'Kent County', state: 'Michigan' }, + { INCITS: '26083', county: 'Keweenaw County', state: 'Michigan' }, + { INCITS: '26085', county: 'Lake County', state: 'Michigan' }, + { INCITS: '26087', county: 'Lapeer County', state: 'Michigan' }, + { INCITS: '26089', county: 'Leelanau County', state: 'Michigan' }, + { INCITS: '26091', county: 'Lenawee County', state: 'Michigan' }, + { INCITS: '26093', county: 'Livingston County', state: 'Michigan' }, + { INCITS: '26095', county: 'Luce County', state: 'Michigan' }, + { INCITS: '26097', county: 'Mackinac County', state: 'Michigan' }, + { INCITS: '26099', county: 'Macomb County', state: 'Michigan' }, + { INCITS: '26101', county: 'Manistee County', state: 'Michigan' }, + { INCITS: '26103', county: 'Marquette County', state: 'Michigan' }, + { INCITS: '26105', county: 'Mason County', state: 'Michigan' }, + { INCITS: '26107', county: 'Mecosta County', state: 'Michigan' }, + { INCITS: '26109', county: 'Menominee County', state: 'Michigan' }, + { INCITS: '26111', county: 'Midland County', state: 'Michigan' }, + { INCITS: '26113', county: 'Missaukee County', state: 'Michigan' }, + { INCITS: '26115', county: 'Monroe County', state: 'Michigan' }, + { INCITS: '26117', county: 'Montcalm County', state: 'Michigan' }, + { INCITS: '26119', county: 'Montmorency County', state: 'Michigan' }, + { INCITS: '26121', county: 'Muskegon County', state: 'Michigan' }, + { INCITS: '26123', county: 'Newaygo County', state: 'Michigan' }, + { INCITS: '26125', county: 'Oakland County', state: 'Michigan' }, + { INCITS: '26127', county: 'Oceana County', state: 'Michigan' }, + { INCITS: '26129', county: 'Ogemaw County', state: 'Michigan' }, + { INCITS: '26131', county: 'Ontonagon County', state: 'Michigan' }, + { INCITS: '26133', county: 'Osceola County', state: 'Michigan' }, + { INCITS: '26135', county: 'Oscoda County', state: 'Michigan' }, + { INCITS: '26137', county: 'Otsego County', state: 'Michigan' }, + { INCITS: '26139', county: 'Ottawa County', state: 'Michigan' }, + { INCITS: '26141', county: 'Presque Isle County', state: 'Michigan' }, + { INCITS: '26143', county: 'Roscommon County', state: 'Michigan' }, + { INCITS: '26145', county: 'Saginaw County', state: 'Michigan' }, + { INCITS: '26147', county: 'St. Clair County', state: 'Michigan' }, + { INCITS: '26149', county: 'St. Joseph County', state: 'Michigan' }, + { INCITS: '26151', county: 'Sanilac County', state: 'Michigan' }, + { INCITS: '26153', county: 'Schoolcraft County', state: 'Michigan' }, + { INCITS: '26155', county: 'Shiawassee County', state: 'Michigan' }, + { INCITS: '26157', county: 'Tuscola County', state: 'Michigan' }, + { INCITS: '26159', county: 'Van Buren County', state: 'Michigan' }, + { INCITS: '26161', county: 'Washtenaw County', state: 'Michigan' }, + { INCITS: '26163', county: 'Wayne County', state: 'Michigan' }, + { INCITS: '26165', county: 'Wexford County', state: 'Michigan' }, + { INCITS: '27001', county: 'Aitkin County', state: 'Minnesota' }, + { INCITS: '27003', county: 'Anoka County', state: 'Minnesota' }, + { INCITS: '27005', county: 'Becker County', state: 'Minnesota' }, + { INCITS: '27007', county: 'Beltrami County', state: 'Minnesota' }, + { INCITS: '27009', county: 'Benton County', state: 'Minnesota' }, + { INCITS: '27011', county: 'Big Stone County', state: 'Minnesota' }, + { INCITS: '27013', county: 'Blue Earth County', state: 'Minnesota' }, + { INCITS: '27015', county: 'Brown County', state: 'Minnesota' }, + { INCITS: '27017', county: 'Carlton County', state: 'Minnesota' }, + { INCITS: '27019', county: 'Carver County', state: 'Minnesota' }, + { INCITS: '27021', county: 'Cass County', state: 'Minnesota' }, + { INCITS: '27023', county: 'Chippewa County', state: 'Minnesota' }, + { INCITS: '27025', county: 'Chisago County', state: 'Minnesota' }, + { INCITS: '27027', county: 'Clay County', state: 'Minnesota' }, + { INCITS: '27029', county: 'Clearwater County', state: 'Minnesota' }, + { INCITS: '27031', county: 'Cook County', state: 'Minnesota' }, + { INCITS: '27033', county: 'Cottonwood County', state: 'Minnesota' }, + { INCITS: '27035', county: 'Crow Wing County', state: 'Minnesota' }, + { INCITS: '27037', county: 'Dakota County', state: 'Minnesota' }, + { INCITS: '27039', county: 'Dodge County', state: 'Minnesota' }, + { INCITS: '27041', county: 'Douglas County', state: 'Minnesota' }, + { INCITS: '27043', county: 'Faribault County', state: 'Minnesota' }, + { INCITS: '27045', county: 'Fillmore County', state: 'Minnesota' }, + { INCITS: '27047', county: 'Freeborn County', state: 'Minnesota' }, + { INCITS: '27049', county: 'Goodhue County', state: 'Minnesota' }, + { INCITS: '27051', county: 'Grant County', state: 'Minnesota' }, + { INCITS: '27053', county: 'Hennepin County', state: 'Minnesota' }, + { INCITS: '27055', county: 'Houston County', state: 'Minnesota' }, + { INCITS: '27057', county: 'Hubbard County', state: 'Minnesota' }, + { INCITS: '27059', county: 'Isanti County', state: 'Minnesota' }, + { INCITS: '27061', county: 'Itasca County', state: 'Minnesota' }, + { INCITS: '27063', county: 'Jackson County', state: 'Minnesota' }, + { INCITS: '27065', county: 'Kanabec County', state: 'Minnesota' }, + { INCITS: '27067', county: 'Kandiyohi County', state: 'Minnesota' }, + { INCITS: '27069', county: 'Kittson County', state: 'Minnesota' }, + { INCITS: '27071', county: 'Koochiching County', state: 'Minnesota' }, + { INCITS: '27073', county: 'Lac qui Parle County', state: 'Minnesota' }, + { INCITS: '27075', county: 'Lake County', state: 'Minnesota' }, + { INCITS: '27077', county: 'Lake of the Woods County', state: 'Minnesota' }, + { INCITS: '27079', county: 'Le Sueur County', state: 'Minnesota' }, + { INCITS: '27081', county: 'Lincoln County', state: 'Minnesota' }, + { INCITS: '27083', county: 'Lyon County', state: 'Minnesota' }, + { INCITS: '27085', county: 'McLeod County', state: 'Minnesota' }, + { INCITS: '27087', county: 'Mahnomen County', state: 'Minnesota' }, + { INCITS: '27089', county: 'Marshall County', state: 'Minnesota' }, + { INCITS: '27091', county: 'Martin County', state: 'Minnesota' }, + { INCITS: '27093', county: 'Meeker County', state: 'Minnesota' }, + { INCITS: '27095', county: 'Mille Lacs County', state: 'Minnesota' }, + { INCITS: '27097', county: 'Morrison County', state: 'Minnesota' }, + { INCITS: '27099', county: 'Mower County', state: 'Minnesota' }, + { INCITS: '27101', county: 'Murray County', state: 'Minnesota' }, + { INCITS: '27103', county: 'Nicollet County', state: 'Minnesota' }, + { INCITS: '27105', county: 'Nobles County', state: 'Minnesota' }, + { INCITS: '27107', county: 'Norman County', state: 'Minnesota' }, + { INCITS: '27109', county: 'Olmsted County', state: 'Minnesota' }, + { INCITS: '27111', county: 'Otter Tail County', state: 'Minnesota' }, + { INCITS: '27113', county: 'Pennington County', state: 'Minnesota' }, + { INCITS: '27115', county: 'Pine County', state: 'Minnesota' }, + { INCITS: '27117', county: 'Pipestone County', state: 'Minnesota' }, + { INCITS: '27119', county: 'Polk County', state: 'Minnesota' }, + { INCITS: '27121', county: 'Pope County', state: 'Minnesota' }, + { INCITS: '27123', county: 'Ramsey County', state: 'Minnesota' }, + { INCITS: '27125', county: 'Red Lake County', state: 'Minnesota' }, + { INCITS: '27127', county: 'Redwood County', state: 'Minnesota' }, + { INCITS: '27129', county: 'Renville County', state: 'Minnesota' }, + { INCITS: '27131', county: 'Rice County', state: 'Minnesota' }, + { INCITS: '27133', county: 'Rock County', state: 'Minnesota' }, + { INCITS: '27135', county: 'Roseau County', state: 'Minnesota' }, + { INCITS: '27137', county: 'St. Louis County', state: 'Minnesota' }, + { INCITS: '27139', county: 'Scott County', state: 'Minnesota' }, + { INCITS: '27141', county: 'Sherburne County', state: 'Minnesota' }, + { INCITS: '27143', county: 'Sibley County', state: 'Minnesota' }, + { INCITS: '27145', county: 'Stearns County', state: 'Minnesota' }, + { INCITS: '27147', county: 'Steele County', state: 'Minnesota' }, + { INCITS: '27149', county: 'Stevens County', state: 'Minnesota' }, + { INCITS: '27151', county: 'Swift County', state: 'Minnesota' }, + { INCITS: '27153', county: 'Todd County', state: 'Minnesota' }, + { INCITS: '27155', county: 'Traverse County', state: 'Minnesota' }, + { INCITS: '27157', county: 'Wabasha County', state: 'Minnesota' }, + { INCITS: '27159', county: 'Wadena County', state: 'Minnesota' }, + { INCITS: '27161', county: 'Waseca County', state: 'Minnesota' }, + { INCITS: '27163', county: 'Washington County', state: 'Minnesota' }, + { INCITS: '27165', county: 'Watonwan County', state: 'Minnesota' }, + { INCITS: '27167', county: 'Wilkin County', state: 'Minnesota' }, + { INCITS: '27169', county: 'Winona County', state: 'Minnesota' }, + { INCITS: '27171', county: 'Wright County', state: 'Minnesota' }, + { INCITS: '27173', county: 'Yellow Medicine County', state: 'Minnesota' }, + { INCITS: '28001', county: 'Adams County', state: 'Mississippi' }, + { INCITS: '28003', county: 'Alcorn County', state: 'Mississippi' }, + { INCITS: '28005', county: 'Amite County', state: 'Mississippi' }, + { INCITS: '28007', county: 'Attala County', state: 'Mississippi' }, + { INCITS: '28009', county: 'Benton County', state: 'Mississippi' }, + { INCITS: '28011', county: 'Bolivar County', state: 'Mississippi' }, + { INCITS: '28013', county: 'Calhoun County', state: 'Mississippi' }, + { INCITS: '28015', county: 'Carroll County', state: 'Mississippi' }, + { INCITS: '28017', county: 'Chickasaw County', state: 'Mississippi' }, + { INCITS: '28019', county: 'Choctaw County', state: 'Mississippi' }, + { INCITS: '28021', county: 'Claiborne County', state: 'Mississippi' }, + { INCITS: '28023', county: 'Clarke County', state: 'Mississippi' }, + { INCITS: '28025', county: 'Clay County', state: 'Mississippi' }, + { INCITS: '28027', county: 'Coahoma County', state: 'Mississippi' }, + { INCITS: '28029', county: 'Copiah County', state: 'Mississippi' }, + { INCITS: '28031', county: 'Covington County', state: 'Mississippi' }, + { INCITS: '28033', county: 'DeSoto County', state: 'Mississippi' }, + { INCITS: '28035', county: 'Forrest County', state: 'Mississippi' }, + { INCITS: '28037', county: 'Franklin County', state: 'Mississippi' }, + { INCITS: '28039', county: 'George County', state: 'Mississippi' }, + { INCITS: '28041', county: 'Greene County', state: 'Mississippi' }, + { INCITS: '28043', county: 'Grenada County', state: 'Mississippi' }, + { INCITS: '28045', county: 'Hancock County', state: 'Mississippi' }, + { INCITS: '28047', county: 'Harrison County', state: 'Mississippi' }, + { INCITS: '28049', county: 'Hinds County', state: 'Mississippi' }, + { INCITS: '28051', county: 'Holmes County', state: 'Mississippi' }, + { INCITS: '28053', county: 'Humphreys County', state: 'Mississippi' }, + { INCITS: '28055', county: 'Issaquena County', state: 'Mississippi' }, + { INCITS: '28057', county: 'Itawamba County', state: 'Mississippi' }, + { INCITS: '28059', county: 'Jackson County', state: 'Mississippi' }, + { INCITS: '28061', county: 'Jasper County', state: 'Mississippi' }, + { INCITS: '28063', county: 'Jefferson County', state: 'Mississippi' }, + { INCITS: '28065', county: 'Jefferson Davis County', state: 'Mississippi' }, + { INCITS: '28067', county: 'Jones County', state: 'Mississippi' }, + { INCITS: '28069', county: 'Kemper County', state: 'Mississippi' }, + { INCITS: '28071', county: 'Lafayette County', state: 'Mississippi' }, + { INCITS: '28073', county: 'Lamar County', state: 'Mississippi' }, + { INCITS: '28075', county: 'Lauderdale County', state: 'Mississippi' }, + { INCITS: '28077', county: 'Lawrence County', state: 'Mississippi' }, + { INCITS: '28079', county: 'Leake County', state: 'Mississippi' }, + { INCITS: '28081', county: 'Lee County', state: 'Mississippi' }, + { INCITS: '28083', county: 'Leflore County', state: 'Mississippi' }, + { INCITS: '28085', county: 'Lincoln County', state: 'Mississippi' }, + { INCITS: '28087', county: 'Lowndes County', state: 'Mississippi' }, + { INCITS: '28089', county: 'Madison County', state: 'Mississippi' }, + { INCITS: '28091', county: 'Marion County', state: 'Mississippi' }, + { INCITS: '28093', county: 'Marshall County', state: 'Mississippi' }, + { INCITS: '28095', county: 'Monroe County', state: 'Mississippi' }, + { INCITS: '28097', county: 'Montgomery County', state: 'Mississippi' }, + { INCITS: '28099', county: 'Neshoba County', state: 'Mississippi' }, + { INCITS: '28101', county: 'Newton County', state: 'Mississippi' }, + { INCITS: '28103', county: 'Noxubee County', state: 'Mississippi' }, + { INCITS: '28105', county: 'Oktibbeha County', state: 'Mississippi' }, + { INCITS: '28107', county: 'Panola County', state: 'Mississippi' }, + { INCITS: '28109', county: 'Pearl River County', state: 'Mississippi' }, + { INCITS: '28111', county: 'Perry County', state: 'Mississippi' }, + { INCITS: '28113', county: 'Pike County', state: 'Mississippi' }, + { INCITS: '28115', county: 'Pontotoc County', state: 'Mississippi' }, + { INCITS: '28117', county: 'Prentiss County', state: 'Mississippi' }, + { INCITS: '28119', county: 'Quitman County', state: 'Mississippi' }, + { INCITS: '28121', county: 'Rankin County', state: 'Mississippi' }, + { INCITS: '28123', county: 'Scott County', state: 'Mississippi' }, + { INCITS: '28125', county: 'Sharkey County', state: 'Mississippi' }, + { INCITS: '28127', county: 'Simpson County', state: 'Mississippi' }, + { INCITS: '28129', county: 'Smith County', state: 'Mississippi' }, + { INCITS: '28131', county: 'Stone County', state: 'Mississippi' }, + { INCITS: '28133', county: 'Sunflower County', state: 'Mississippi' }, + { INCITS: '28135', county: 'Tallahatchie County', state: 'Mississippi' }, + { INCITS: '28137', county: 'Tate County', state: 'Mississippi' }, + { INCITS: '28139', county: 'Tippah County', state: 'Mississippi' }, + { INCITS: '28141', county: 'Tishomingo County', state: 'Mississippi' }, + { INCITS: '28143', county: 'Tunica County', state: 'Mississippi' }, + { INCITS: '28145', county: 'Union County', state: 'Mississippi' }, + { INCITS: '28147', county: 'Walthall County', state: 'Mississippi' }, + { INCITS: '28149', county: 'Warren County', state: 'Mississippi' }, + { INCITS: '28151', county: 'Washington County', state: 'Mississippi' }, + { INCITS: '28153', county: 'Wayne County', state: 'Mississippi' }, + { INCITS: '28155', county: 'Webster County', state: 'Mississippi' }, + { INCITS: '28157', county: 'Wilkinson County', state: 'Mississippi' }, + { INCITS: '28159', county: 'Winston County', state: 'Mississippi' }, + { INCITS: '28161', county: 'Yalobusha County', state: 'Mississippi' }, + { INCITS: '28163', county: 'Yazoo County', state: 'Mississippi' }, + { INCITS: '29001', county: 'Adair County', state: 'Missouri' }, + { INCITS: '29003', county: 'Andrew County', state: 'Missouri' }, + { INCITS: '29005', county: 'Atchison County', state: 'Missouri' }, + { INCITS: '29007', county: 'Audrain County', state: 'Missouri' }, + { INCITS: '29009', county: 'Barry County', state: 'Missouri' }, + { INCITS: '29011', county: 'Barton County', state: 'Missouri' }, + { INCITS: '29013', county: 'Bates County', state: 'Missouri' }, + { INCITS: '29015', county: 'Benton County', state: 'Missouri' }, + { INCITS: '29017', county: 'Bollinger County', state: 'Missouri' }, + { INCITS: '29019', county: 'Boone County', state: 'Missouri' }, + { INCITS: '29021', county: 'Buchanan County', state: 'Missouri' }, + { INCITS: '29023', county: 'Butler County', state: 'Missouri' }, + { INCITS: '29025', county: 'Caldwell County', state: 'Missouri' }, + { INCITS: '29027', county: 'Callaway County', state: 'Missouri' }, + { INCITS: '29029', county: 'Camden County', state: 'Missouri' }, + { INCITS: '29031', county: 'Cape Girardeau County', state: 'Missouri' }, + { INCITS: '29033', county: 'Carroll County', state: 'Missouri' }, + { INCITS: '29035', county: 'Carter County', state: 'Missouri' }, + { INCITS: '29037', county: 'Cass County', state: 'Missouri' }, + { INCITS: '29039', county: 'Cedar County', state: 'Missouri' }, + { INCITS: '29041', county: 'Chariton County', state: 'Missouri' }, + { INCITS: '29043', county: 'Christian County', state: 'Missouri' }, + { INCITS: '29045', county: 'Clark County', state: 'Missouri' }, + { INCITS: '29047', county: 'Clay County', state: 'Missouri' }, + { INCITS: '29049', county: 'Clinton County', state: 'Missouri' }, + { INCITS: '29051', county: 'Cole County', state: 'Missouri' }, + { INCITS: '29053', county: 'Cooper County', state: 'Missouri' }, + { INCITS: '29055', county: 'Crawford County', state: 'Missouri' }, + { INCITS: '29057', county: 'Dade County', state: 'Missouri' }, + { INCITS: '29059', county: 'Dallas County', state: 'Missouri' }, + { INCITS: '29061', county: 'Daviess County', state: 'Missouri' }, + { INCITS: '29063', county: 'DeKalb County', state: 'Missouri' }, + { INCITS: '29065', county: 'Dent County', state: 'Missouri' }, + { INCITS: '29067', county: 'Douglas County', state: 'Missouri' }, + { INCITS: '29069', county: 'Dunklin County', state: 'Missouri' }, + { INCITS: '29071', county: 'Franklin County', state: 'Missouri' }, + { INCITS: '29073', county: 'Gasconade County', state: 'Missouri' }, + { INCITS: '29075', county: 'Gentry County', state: 'Missouri' }, + { INCITS: '29077', county: 'Greene County', state: 'Missouri' }, + { INCITS: '29079', county: 'Grundy County', state: 'Missouri' }, + { INCITS: '29081', county: 'Harrison County', state: 'Missouri' }, + { INCITS: '29083', county: 'Henry County', state: 'Missouri' }, + { INCITS: '29085', county: 'Hickory County', state: 'Missouri' }, + { INCITS: '29087', county: 'Holt County', state: 'Missouri' }, + { INCITS: '29089', county: 'Howard County', state: 'Missouri' }, + { INCITS: '29091', county: 'Howell County', state: 'Missouri' }, + { INCITS: '29093', county: 'Iron County', state: 'Missouri' }, + { INCITS: '29095', county: 'Jackson County', state: 'Missouri' }, + { INCITS: '29097', county: 'Jasper County', state: 'Missouri' }, + { INCITS: '29099', county: 'Jefferson County', state: 'Missouri' }, + { INCITS: '29101', county: 'Johnson County', state: 'Missouri' }, + { INCITS: '29103', county: 'Knox County', state: 'Missouri' }, + { INCITS: '29105', county: 'Laclede County', state: 'Missouri' }, + { INCITS: '29107', county: 'Lafayette County', state: 'Missouri' }, + { INCITS: '29109', county: 'Lawrence County', state: 'Missouri' }, + { INCITS: '29111', county: 'Lewis County', state: 'Missouri' }, + { INCITS: '29113', county: 'Lincoln County', state: 'Missouri' }, + { INCITS: '29115', county: 'Linn County', state: 'Missouri' }, + { INCITS: '29117', county: 'Livingston County', state: 'Missouri' }, + { INCITS: '29119', county: 'McDonald County', state: 'Missouri' }, + { INCITS: '29121', county: 'Macon County', state: 'Missouri' }, + { INCITS: '29123', county: 'Madison County', state: 'Missouri' }, + { INCITS: '29125', county: 'Maries County', state: 'Missouri' }, + { INCITS: '29127', county: 'Marion County', state: 'Missouri' }, + { INCITS: '29129', county: 'Mercer County', state: 'Missouri' }, + { INCITS: '29131', county: 'Miller County', state: 'Missouri' }, + { INCITS: '29133', county: 'Mississippi County', state: 'Missouri' }, + { INCITS: '29135', county: 'Moniteau County', state: 'Missouri' }, + { INCITS: '29137', county: 'Monroe County', state: 'Missouri' }, + { INCITS: '29139', county: 'Montgomery County', state: 'Missouri' }, + { INCITS: '29141', county: 'Morgan County', state: 'Missouri' }, + { INCITS: '29143', county: 'New Madrid County', state: 'Missouri' }, + { INCITS: '29145', county: 'Newton County', state: 'Missouri' }, + { INCITS: '29147', county: 'Nodaway County', state: 'Missouri' }, + { INCITS: '29149', county: 'Oregon County', state: 'Missouri' }, + { INCITS: '29151', county: 'Osage County', state: 'Missouri' }, + { INCITS: '29153', county: 'Ozark County', state: 'Missouri' }, + { INCITS: '29155', county: 'Pemiscot County', state: 'Missouri' }, + { INCITS: '29157', county: 'Perry County', state: 'Missouri' }, + { INCITS: '29159', county: 'Pettis County', state: 'Missouri' }, + { INCITS: '29161', county: 'Phelps County', state: 'Missouri' }, + { INCITS: '29163', county: 'Pike County', state: 'Missouri' }, + { INCITS: '29165', county: 'Platte County', state: 'Missouri' }, + { INCITS: '29167', county: 'Polk County', state: 'Missouri' }, + { INCITS: '29169', county: 'Pulaski County', state: 'Missouri' }, + { INCITS: '29171', county: 'Putnam County', state: 'Missouri' }, + { INCITS: '29173', county: 'Ralls County', state: 'Missouri' }, + { INCITS: '29175', county: 'Randolph County', state: 'Missouri' }, + { INCITS: '29177', county: 'Ray County', state: 'Missouri' }, + { INCITS: '29179', county: 'Reynolds County', state: 'Missouri' }, + { INCITS: '29181', county: 'Ripley County', state: 'Missouri' }, + { INCITS: '29183', county: 'St. Charles County', state: 'Missouri' }, + { INCITS: '29185', county: 'St. Clair County', state: 'Missouri' }, + { INCITS: '29186', county: 'Ste. Genevieve County', state: 'Missouri' }, + { INCITS: '29187', county: 'St. Francois County', state: 'Missouri' }, + { INCITS: '29189', county: 'St. Louis County', state: 'Missouri' }, + { INCITS: '29195', county: 'Saline County', state: 'Missouri' }, + { INCITS: '29197', county: 'Schuyler County', state: 'Missouri' }, + { INCITS: '29199', county: 'Scotland County', state: 'Missouri' }, + { INCITS: '29201', county: 'Scott County', state: 'Missouri' }, + { INCITS: '29203', county: 'Shannon County', state: 'Missouri' }, + { INCITS: '29205', county: 'Shelby County', state: 'Missouri' }, + { INCITS: '29207', county: 'Stoddard County', state: 'Missouri' }, + { INCITS: '29209', county: 'Stone County', state: 'Missouri' }, + { INCITS: '29211', county: 'Sullivan County', state: 'Missouri' }, + { INCITS: '29213', county: 'Taney County', state: 'Missouri' }, + { INCITS: '29215', county: 'Texas County', state: 'Missouri' }, + { INCITS: '29217', county: 'Vernon County', state: 'Missouri' }, + { INCITS: '29219', county: 'Warren County', state: 'Missouri' }, + { INCITS: '29221', county: 'Washington County', state: 'Missouri' }, + { INCITS: '29223', county: 'Wayne County', state: 'Missouri' }, + { INCITS: '29225', county: 'Webster County', state: 'Missouri' }, + { INCITS: '29227', county: 'Worth County', state: 'Missouri' }, + { INCITS: '29229', county: 'Wright County', state: 'Missouri' }, + { INCITS: '29510', county: 'St. Louis, City of[18]', state: 'Missouri' }, + { INCITS: '30001', county: 'Beaverhead County', state: 'Montana' }, + { INCITS: '30003', county: 'Big Horn County', state: 'Montana' }, + { INCITS: '30005', county: 'Blaine County', state: 'Montana' }, + { INCITS: '30007', county: 'Broadwater County', state: 'Montana' }, + { INCITS: '30009', county: 'Carbon County', state: 'Montana' }, + { INCITS: '30011', county: 'Carter County', state: 'Montana' }, + { INCITS: '30013', county: 'Cascade County', state: 'Montana' }, + { INCITS: '30015', county: 'Chouteau County', state: 'Montana' }, + { INCITS: '30017', county: 'Custer County', state: 'Montana' }, + { INCITS: '30019', county: 'Daniels County', state: 'Montana' }, + { INCITS: '30021', county: 'Dawson County', state: 'Montana' }, + { INCITS: '30023', county: 'Deer Lodge County', state: 'Montana' }, + { INCITS: '30025', county: 'Fallon County', state: 'Montana' }, + { INCITS: '30027', county: 'Fergus County', state: 'Montana' }, + { INCITS: '30029', county: 'Flathead County', state: 'Montana' }, + { INCITS: '30031', county: 'Gallatin County', state: 'Montana' }, + { INCITS: '30033', county: 'Garfield County', state: 'Montana' }, + { INCITS: '30035', county: 'Glacier County', state: 'Montana' }, + { INCITS: '30037', county: 'Golden Valley County', state: 'Montana' }, + { INCITS: '30039', county: 'Granite County', state: 'Montana' }, + { INCITS: '30041', county: 'Hill County', state: 'Montana' }, + { INCITS: '30043', county: 'Jefferson County', state: 'Montana' }, + { INCITS: '30045', county: 'Judith Basin County', state: 'Montana' }, + { INCITS: '30047', county: 'Lake County', state: 'Montana' }, + { INCITS: '30049', county: 'Lewis and Clark County', state: 'Montana' }, + { INCITS: '30051', county: 'Liberty County', state: 'Montana' }, + { INCITS: '30053', county: 'Lincoln County', state: 'Montana' }, + { INCITS: '30055', county: 'McCone County', state: 'Montana' }, + { INCITS: '30057', county: 'Madison County', state: 'Montana' }, + { INCITS: '30059', county: 'Meagher County', state: 'Montana' }, + { INCITS: '30061', county: 'Mineral County', state: 'Montana' }, + { INCITS: '30063', county: 'Missoula County', state: 'Montana' }, + { INCITS: '30065', county: 'Musselshell County', state: 'Montana' }, + { INCITS: '30067', county: 'Park County', state: 'Montana' }, + { INCITS: '30069', county: 'Petroleum County', state: 'Montana' }, + { INCITS: '30071', county: 'Phillips County', state: 'Montana' }, + { INCITS: '30073', county: 'Pondera County', state: 'Montana' }, + { INCITS: '30075', county: 'Powder River County', state: 'Montana' }, + { INCITS: '30077', county: 'Powell County', state: 'Montana' }, + { INCITS: '30079', county: 'Prairie County', state: 'Montana' }, + { INCITS: '30081', county: 'Ravalli County', state: 'Montana' }, + { INCITS: '30083', county: 'Richland County', state: 'Montana' }, + { INCITS: '30085', county: 'Roosevelt County', state: 'Montana' }, + { INCITS: '30087', county: 'Rosebud County', state: 'Montana' }, + { INCITS: '30089', county: 'Sanders County', state: 'Montana' }, + { INCITS: '30091', county: 'Sheridan County', state: 'Montana' }, + { INCITS: '30093', county: 'Silver Bow County', state: 'Montana' }, + { INCITS: '30095', county: 'Stillwater County', state: 'Montana' }, + { INCITS: '30097', county: 'Sweet Grass County', state: 'Montana' }, + { INCITS: '30099', county: 'Teton County', state: 'Montana' }, + { INCITS: '30101', county: 'Toole County', state: 'Montana' }, + { INCITS: '30103', county: 'Treasure County', state: 'Montana' }, + { INCITS: '30105', county: 'Valley County', state: 'Montana' }, + { INCITS: '30107', county: 'Wheatland County', state: 'Montana' }, + { INCITS: '30109', county: 'Wibaux County', state: 'Montana' }, + { INCITS: '30111', county: 'Yellowstone County', state: 'Montana' }, + { INCITS: '31001', county: 'Adams County', state: 'Nebraska' }, + { INCITS: '31003', county: 'Antelope County', state: 'Nebraska' }, + { INCITS: '31005', county: 'Arthur County', state: 'Nebraska' }, + { INCITS: '31007', county: 'Banner County', state: 'Nebraska' }, + { INCITS: '31009', county: 'Blaine County', state: 'Nebraska' }, + { INCITS: '31011', county: 'Boone County', state: 'Nebraska' }, + { INCITS: '31013', county: 'Box Butte County', state: 'Nebraska' }, + { INCITS: '31015', county: 'Boyd County', state: 'Nebraska' }, + { INCITS: '31017', county: 'Brown County', state: 'Nebraska' }, + { INCITS: '31019', county: 'Buffalo County', state: 'Nebraska' }, + { INCITS: '31021', county: 'Burt County', state: 'Nebraska' }, + { INCITS: '31023', county: 'Butler County', state: 'Nebraska' }, + { INCITS: '31025', county: 'Cass County', state: 'Nebraska' }, + { INCITS: '31027', county: 'Cedar County', state: 'Nebraska' }, + { INCITS: '31029', county: 'Chase County', state: 'Nebraska' }, + { INCITS: '31031', county: 'Cherry County', state: 'Nebraska' }, + { INCITS: '31033', county: 'Cheyenne County', state: 'Nebraska' }, + { INCITS: '31035', county: 'Clay County', state: 'Nebraska' }, + { INCITS: '31037', county: 'Colfax County', state: 'Nebraska' }, + { INCITS: '31039', county: 'Cuming County', state: 'Nebraska' }, + { INCITS: '31041', county: 'Custer County', state: 'Nebraska' }, + { INCITS: '31043', county: 'Dakota County', state: 'Nebraska' }, + { INCITS: '31045', county: 'Dawes County', state: 'Nebraska' }, + { INCITS: '31047', county: 'Dawson County', state: 'Nebraska' }, + { INCITS: '31049', county: 'Deuel County', state: 'Nebraska' }, + { INCITS: '31051', county: 'Dixon County', state: 'Nebraska' }, + { INCITS: '31053', county: 'Dodge County', state: 'Nebraska' }, + { INCITS: '31055', county: 'Douglas County', state: 'Nebraska' }, + { INCITS: '31057', county: 'Dundy County', state: 'Nebraska' }, + { INCITS: '31059', county: 'Fillmore County', state: 'Nebraska' }, + { INCITS: '31061', county: 'Franklin County', state: 'Nebraska' }, + { INCITS: '31063', county: 'Frontier County', state: 'Nebraska' }, + { INCITS: '31065', county: 'Furnas County', state: 'Nebraska' }, + { INCITS: '31067', county: 'Gage County', state: 'Nebraska' }, + { INCITS: '31069', county: 'Garden County', state: 'Nebraska' }, + { INCITS: '31071', county: 'Garfield County', state: 'Nebraska' }, + { INCITS: '31073', county: 'Gosper County', state: 'Nebraska' }, + { INCITS: '31075', county: 'Grant County', state: 'Nebraska' }, + { INCITS: '31077', county: 'Greeley County', state: 'Nebraska' }, + { INCITS: '31079', county: 'Hall County', state: 'Nebraska' }, + { INCITS: '31081', county: 'Hamilton County', state: 'Nebraska' }, + { INCITS: '31083', county: 'Harlan County', state: 'Nebraska' }, + { INCITS: '31085', county: 'Hayes County', state: 'Nebraska' }, + { INCITS: '31087', county: 'Hitchcock County', state: 'Nebraska' }, + { INCITS: '31089', county: 'Holt County', state: 'Nebraska' }, + { INCITS: '31091', county: 'Hooker County', state: 'Nebraska' }, + { INCITS: '31093', county: 'Howard County', state: 'Nebraska' }, + { INCITS: '31095', county: 'Jefferson County', state: 'Nebraska' }, + { INCITS: '31097', county: 'Johnson County', state: 'Nebraska' }, + { INCITS: '31099', county: 'Kearney County', state: 'Nebraska' }, + { INCITS: '31101', county: 'Keith County', state: 'Nebraska' }, + { INCITS: '31103', county: 'Keya Paha County', state: 'Nebraska' }, + { INCITS: '31105', county: 'Kimball County', state: 'Nebraska' }, + { INCITS: '31107', county: 'Knox County', state: 'Nebraska' }, + { INCITS: '31109', county: 'Lancaster County', state: 'Nebraska' }, + { INCITS: '31111', county: 'Lincoln County', state: 'Nebraska' }, + { INCITS: '31113', county: 'Logan County', state: 'Nebraska' }, + { INCITS: '31115', county: 'Loup County', state: 'Nebraska' }, + { INCITS: '31117', county: 'McPherson County', state: 'Nebraska' }, + { INCITS: '31119', county: 'Madison County', state: 'Nebraska' }, + { INCITS: '31121', county: 'Merrick County', state: 'Nebraska' }, + { INCITS: '31123', county: 'Morrill County', state: 'Nebraska' }, + { INCITS: '31125', county: 'Nance County', state: 'Nebraska' }, + { INCITS: '31127', county: 'Nemaha County', state: 'Nebraska' }, + { INCITS: '31129', county: 'Nuckolls County', state: 'Nebraska' }, + { INCITS: '31131', county: 'Otoe County', state: 'Nebraska' }, + { INCITS: '31133', county: 'Pawnee County', state: 'Nebraska' }, + { INCITS: '31135', county: 'Perkins County', state: 'Nebraska' }, + { INCITS: '31137', county: 'Phelps County', state: 'Nebraska' }, + { INCITS: '31139', county: 'Pierce County', state: 'Nebraska' }, + { INCITS: '31141', county: 'Platte County', state: 'Nebraska' }, + { INCITS: '31143', county: 'Polk County', state: 'Nebraska' }, + { INCITS: '31145', county: 'Red Willow County', state: 'Nebraska' }, + { INCITS: '31147', county: 'Richardson County', state: 'Nebraska' }, + { INCITS: '31149', county: 'Rock County', state: 'Nebraska' }, + { INCITS: '31151', county: 'Saline County', state: 'Nebraska' }, + { INCITS: '31153', county: 'Sarpy County', state: 'Nebraska' }, + { INCITS: '31155', county: 'Saunders County', state: 'Nebraska' }, + { INCITS: '31157', county: 'Scotts Bluff County', state: 'Nebraska' }, + { INCITS: '31159', county: 'Seward County', state: 'Nebraska' }, + { INCITS: '31161', county: 'Sheridan County', state: 'Nebraska' }, + { INCITS: '31163', county: 'Sherman County', state: 'Nebraska' }, + { INCITS: '31165', county: 'Sioux County', state: 'Nebraska' }, + { INCITS: '31167', county: 'Stanton County', state: 'Nebraska' }, + { INCITS: '31169', county: 'Thayer County', state: 'Nebraska' }, + { INCITS: '31171', county: 'Thomas County', state: 'Nebraska' }, + { INCITS: '31173', county: 'Thurston County', state: 'Nebraska' }, + { INCITS: '31175', county: 'Valley County', state: 'Nebraska' }, + { INCITS: '31177', county: 'Washington County', state: 'Nebraska' }, + { INCITS: '31179', county: 'Wayne County', state: 'Nebraska' }, + { INCITS: '31181', county: 'Webster County', state: 'Nebraska' }, + { INCITS: '31183', county: 'Wheeler County', state: 'Nebraska' }, + { INCITS: '31185', county: 'York County', state: 'Nebraska' }, + { INCITS: '32001', county: 'Churchill County', state: 'Nevada' }, + { INCITS: '32003', county: 'Clark County', state: 'Nevada' }, + { INCITS: '32005', county: 'Douglas County', state: 'Nevada' }, + { INCITS: '32007', county: 'Elko County', state: 'Nevada' }, + { INCITS: '32009', county: 'Esmeralda County', state: 'Nevada' }, + { INCITS: '32011', county: 'Eureka County', state: 'Nevada' }, + { INCITS: '32013', county: 'Humboldt County', state: 'Nevada' }, + { INCITS: '32015', county: 'Lander County', state: 'Nevada' }, + { INCITS: '32017', county: 'Lincoln County', state: 'Nevada' }, + { INCITS: '32019', county: 'Lyon County', state: 'Nevada' }, + { INCITS: '32021', county: 'Mineral County', state: 'Nevada' }, + { INCITS: '32023', county: 'Nye County', state: 'Nevada' }, + { INCITS: '32027', county: 'Pershing County', state: 'Nevada' }, + { INCITS: '32029', county: 'Storey County', state: 'Nevada' }, + { INCITS: '32031', county: 'Washoe County', state: 'Nevada' }, + { INCITS: '32033', county: 'White Pine County', state: 'Nevada' }, + { INCITS: '32510', county: 'Carson City, Consolidated Municipality of[19]', state: 'Nevada' }, + { INCITS: '33001', county: 'Belknap County', state: 'New Hampshire' }, + { INCITS: '33003', county: 'Carroll County', state: 'New Hampshire' }, + { INCITS: '33005', county: 'Cheshire County', state: 'New Hampshire' }, + { INCITS: '33007', county: 'Coos County', state: 'New Hampshire' }, + { INCITS: '33009', county: 'Grafton County', state: 'New Hampshire' }, + { INCITS: '33011', county: 'Hillsborough County', state: 'New Hampshire' }, + { INCITS: '33013', county: 'Merrimack County', state: 'New Hampshire' }, + { INCITS: '33015', county: 'Rockingham County', state: 'New Hampshire' }, + { INCITS: '33017', county: 'Strafford County', state: 'New Hampshire' }, + { INCITS: '33019', county: 'Sullivan County', state: 'New Hampshire' }, + { INCITS: '34001', county: 'Atlantic County', state: 'New Jersey' }, + { INCITS: '34003', county: 'Bergen County', state: 'New Jersey' }, + { INCITS: '34005', county: 'Burlington County', state: 'New Jersey' }, + { INCITS: '34007', county: 'Camden County', state: 'New Jersey' }, + { INCITS: '34009', county: 'Cape May County', state: 'New Jersey' }, + { INCITS: '34011', county: 'Cumberland County', state: 'New Jersey' }, + { INCITS: '34013', county: 'Essex County', state: 'New Jersey' }, + { INCITS: '34015', county: 'Gloucester County', state: 'New Jersey' }, + { INCITS: '34017', county: 'Hudson County', state: 'New Jersey' }, + { INCITS: '34019', county: 'Hunterdon County', state: 'New Jersey' }, + { INCITS: '34021', county: 'Mercer County', state: 'New Jersey' }, + { INCITS: '34023', county: 'Middlesex County', state: 'New Jersey' }, + { INCITS: '34025', county: 'Monmouth County', state: 'New Jersey' }, + { INCITS: '34027', county: 'Morris County', state: 'New Jersey' }, + { INCITS: '34029', county: 'Ocean County', state: 'New Jersey' }, + { INCITS: '34031', county: 'Passaic County', state: 'New Jersey' }, + { INCITS: '34033', county: 'Salem County', state: 'New Jersey' }, + { INCITS: '34035', county: 'Somerset County', state: 'New Jersey' }, + { INCITS: '34037', county: 'Sussex County', state: 'New Jersey' }, + { INCITS: '34039', county: 'Union County', state: 'New Jersey' }, + { INCITS: '34041', county: 'Warren County', state: 'New Jersey' }, + { INCITS: '35001', county: 'Bernalillo County', state: 'New Mexico' }, + { INCITS: '35003', county: 'Catron County', state: 'New Mexico' }, + { INCITS: '35005', county: 'Chaves County', state: 'New Mexico' }, + { INCITS: '35006', county: 'Cibola County', state: 'New Mexico' }, + { INCITS: '35007', county: 'Colfax County', state: 'New Mexico' }, + { INCITS: '35009', county: 'Curry County', state: 'New Mexico' }, + { INCITS: '35011', county: 'De Baca County', state: 'New Mexico' }, + { INCITS: '35013', county: 'Doña Ana County', state: 'New Mexico' }, + { INCITS: '35015', county: 'Eddy County', state: 'New Mexico' }, + { INCITS: '35017', county: 'Grant County', state: 'New Mexico' }, + { INCITS: '35019', county: 'Guadalupe County', state: 'New Mexico' }, + { INCITS: '35021', county: 'Harding County', state: 'New Mexico' }, + { INCITS: '35023', county: 'Hidalgo County', state: 'New Mexico' }, + { INCITS: '35025', county: 'Lea County', state: 'New Mexico' }, + { INCITS: '35027', county: 'Lincoln County', state: 'New Mexico' }, + { INCITS: '35028', county: 'Los Alamos County[20]', state: 'New Mexico' }, + { INCITS: '35029', county: 'Luna County', state: 'New Mexico' }, + { INCITS: '35031', county: 'McKinley County', state: 'New Mexico' }, + { INCITS: '35033', county: 'Mora County', state: 'New Mexico' }, + { INCITS: '35035', county: 'Otero County', state: 'New Mexico' }, + { INCITS: '35037', county: 'Quay County', state: 'New Mexico' }, + { INCITS: '35039', county: 'Rio Arriba County', state: 'New Mexico' }, + { INCITS: '35041', county: 'Roosevelt County', state: 'New Mexico' }, + { INCITS: '35043', county: 'Sandoval County', state: 'New Mexico' }, + { INCITS: '35045', county: 'San Juan County', state: 'New Mexico' }, + { INCITS: '35047', county: 'San Miguel County', state: 'New Mexico' }, + { INCITS: '35049', county: 'Santa Fe County', state: 'New Mexico' }, + { INCITS: '35051', county: 'Sierra County', state: 'New Mexico' }, + { INCITS: '35053', county: 'Socorro County', state: 'New Mexico' }, + { INCITS: '35055', county: 'Taos County', state: 'New Mexico' }, + { INCITS: '35057', county: 'Torrance County', state: 'New Mexico' }, + { INCITS: '35059', county: 'Union County', state: 'New Mexico' }, + { INCITS: '35061', county: 'Valencia County', state: 'New Mexico' }, + { INCITS: '36001', county: 'Albany County', state: 'New York' }, + { INCITS: '36003', county: 'Allegany County', state: 'New York' }, + { INCITS: '36005', county: 'Bronx County', state: 'New York' }, + { INCITS: '36007', county: 'Broome County', state: 'New York' }, + { INCITS: '36009', county: 'Cattaraugus County', state: 'New York' }, + { INCITS: '36011', county: 'Cayuga County', state: 'New York' }, + { INCITS: '36013', county: 'Chautauqua County', state: 'New York' }, + { INCITS: '36015', county: 'Chemung County', state: 'New York' }, + { INCITS: '36017', county: 'Chenango County', state: 'New York' }, + { INCITS: '36019', county: 'Clinton County', state: 'New York' }, + { INCITS: '36021', county: 'Columbia County', state: 'New York' }, + { INCITS: '36023', county: 'Cortland County', state: 'New York' }, + { INCITS: '36025', county: 'Delaware County', state: 'New York' }, + { INCITS: '36027', county: 'Dutchess County', state: 'New York' }, + { INCITS: '36029', county: 'Erie County', state: 'New York' }, + { INCITS: '36031', county: 'Essex County', state: 'New York' }, + { INCITS: '36033', county: 'Franklin County', state: 'New York' }, + { INCITS: '36035', county: 'Fulton County', state: 'New York' }, + { INCITS: '36037', county: 'Genesee County', state: 'New York' }, + { INCITS: '36039', county: 'Greene County', state: 'New York' }, + { INCITS: '36041', county: 'Hamilton County', state: 'New York' }, + { INCITS: '36043', county: 'Herkimer County', state: 'New York' }, + { INCITS: '36045', county: 'Jefferson County', state: 'New York' }, + { INCITS: '36047', county: 'Kings County', state: 'New York' }, + { INCITS: '36049', county: 'Lewis County', state: 'New York' }, + { INCITS: '36051', county: 'Livingston County', state: 'New York' }, + { INCITS: '36053', county: 'Madison County', state: 'New York' }, + { INCITS: '36055', county: 'Monroe County', state: 'New York' }, + { INCITS: '36057', county: 'Montgomery County', state: 'New York' }, + { INCITS: '36059', county: 'Nassau County', state: 'New York' }, + { INCITS: '36061', county: 'New York County', state: 'New York' }, + { INCITS: '36063', county: 'Niagara County', state: 'New York' }, + { INCITS: '36065', county: 'Oneida County', state: 'New York' }, + { INCITS: '36067', county: 'Onondaga County', state: 'New York' }, + { INCITS: '36069', county: 'Ontario County', state: 'New York' }, + { INCITS: '36071', county: 'Orange County', state: 'New York' }, + { INCITS: '36073', county: 'Orleans County', state: 'New York' }, + { INCITS: '36075', county: 'Oswego County', state: 'New York' }, + { INCITS: '36077', county: 'Otsego County', state: 'New York' }, + { INCITS: '36079', county: 'Putnam County', state: 'New York' }, + { INCITS: '36081', county: 'Queens County', state: 'New York' }, + { INCITS: '36083', county: 'Rensselaer County', state: 'New York' }, + { INCITS: '36085', county: 'Richmond County', state: 'New York' }, + { INCITS: '36087', county: 'Rockland County', state: 'New York' }, + { INCITS: '36089', county: 'St. Lawrence County', state: 'New York' }, + { INCITS: '36091', county: 'Saratoga County', state: 'New York' }, + { INCITS: '36093', county: 'Schenectady County', state: 'New York' }, + { INCITS: '36095', county: 'Schoharie County', state: 'New York' }, + { INCITS: '36097', county: 'Schuyler County', state: 'New York' }, + { INCITS: '36099', county: 'Seneca County', state: 'New York' }, + { INCITS: '36101', county: 'Steuben County', state: 'New York' }, + { INCITS: '36103', county: 'Suffolk County', state: 'New York' }, + { INCITS: '36105', county: 'Sullivan County', state: 'New York' }, + { INCITS: '36107', county: 'Tioga County', state: 'New York' }, + { INCITS: '36109', county: 'Tompkins County', state: 'New York' }, + { INCITS: '36111', county: 'Ulster County', state: 'New York' }, + { INCITS: '36113', county: 'Warren County', state: 'New York' }, + { INCITS: '36115', county: 'Washington County', state: 'New York' }, + { INCITS: '36117', county: 'Wayne County', state: 'New York' }, + { INCITS: '36119', county: 'Westchester County', state: 'New York' }, + { INCITS: '36121', county: 'Wyoming County', state: 'New York' }, + { INCITS: '36123', county: 'Yates County', state: 'New York' }, + { INCITS: '37001', county: 'Alamance County', state: 'North Carolina' }, + { INCITS: '37003', county: 'Alexander County', state: 'North Carolina' }, + { INCITS: '37005', county: 'Alleghany County', state: 'North Carolina' }, + { INCITS: '37007', county: 'Anson County', state: 'North Carolina' }, + { INCITS: '37009', county: 'Ashe County', state: 'North Carolina' }, + { INCITS: '37011', county: 'Avery County', state: 'North Carolina' }, + { INCITS: '37013', county: 'Beaufort County', state: 'North Carolina' }, + { INCITS: '37015', county: 'Bertie County', state: 'North Carolina' }, + { INCITS: '37017', county: 'Bladen County', state: 'North Carolina' }, + { INCITS: '37019', county: 'Brunswick County', state: 'North Carolina' }, + { INCITS: '37021', county: 'Buncombe County', state: 'North Carolina' }, + { INCITS: '37023', county: 'Burke County', state: 'North Carolina' }, + { INCITS: '37025', county: 'Cabarrus County', state: 'North Carolina' }, + { INCITS: '37027', county: 'Caldwell County', state: 'North Carolina' }, + { INCITS: '37029', county: 'Camden County', state: 'North Carolina' }, + { INCITS: '37031', county: 'Carteret County', state: 'North Carolina' }, + { INCITS: '37033', county: 'Caswell County', state: 'North Carolina' }, + { INCITS: '37035', county: 'Catawba County', state: 'North Carolina' }, + { INCITS: '37037', county: 'Chatham County', state: 'North Carolina' }, + { INCITS: '37039', county: 'Cherokee County', state: 'North Carolina' }, + { INCITS: '37041', county: 'Chowan County', state: 'North Carolina' }, + { INCITS: '37043', county: 'Clay County', state: 'North Carolina' }, + { INCITS: '37045', county: 'Cleveland County', state: 'North Carolina' }, + { INCITS: '37047', county: 'Columbus County', state: 'North Carolina' }, + { INCITS: '37049', county: 'Craven County', state: 'North Carolina' }, + { INCITS: '37051', county: 'Cumberland County', state: 'North Carolina' }, + { INCITS: '37053', county: 'Currituck County', state: 'North Carolina' }, + { INCITS: '37055', county: 'Dare County', state: 'North Carolina' }, + { INCITS: '37057', county: 'Davidson County', state: 'North Carolina' }, + { INCITS: '37059', county: 'Davie County', state: 'North Carolina' }, + { INCITS: '37061', county: 'Duplin County', state: 'North Carolina' }, + { INCITS: '37063', county: 'Durham County', state: 'North Carolina' }, + { INCITS: '37065', county: 'Edgecombe County', state: 'North Carolina' }, + { INCITS: '37067', county: 'Forsyth County', state: 'North Carolina' }, + { INCITS: '37069', county: 'Franklin County', state: 'North Carolina' }, + { INCITS: '37071', county: 'Gaston County', state: 'North Carolina' }, + { INCITS: '37073', county: 'Gates County', state: 'North Carolina' }, + { INCITS: '37075', county: 'Graham County', state: 'North Carolina' }, + { INCITS: '37077', county: 'Granville County', state: 'North Carolina' }, + { INCITS: '37079', county: 'Greene County', state: 'North Carolina' }, + { INCITS: '37081', county: 'Guilford County', state: 'North Carolina' }, + { INCITS: '37083', county: 'Halifax County', state: 'North Carolina' }, + { INCITS: '37085', county: 'Harnett County', state: 'North Carolina' }, + { INCITS: '37087', county: 'Haywood County', state: 'North Carolina' }, + { INCITS: '37089', county: 'Henderson County', state: 'North Carolina' }, + { INCITS: '37091', county: 'Hertford County', state: 'North Carolina' }, + { INCITS: '37093', county: 'Hoke County', state: 'North Carolina' }, + { INCITS: '37095', county: 'Hyde County', state: 'North Carolina' }, + { INCITS: '37097', county: 'Iredell County', state: 'North Carolina' }, + { INCITS: '37099', county: 'Jackson County', state: 'North Carolina' }, + { INCITS: '37101', county: 'Johnston County', state: 'North Carolina' }, + { INCITS: '37103', county: 'Jones County', state: 'North Carolina' }, + { INCITS: '37105', county: 'Lee County', state: 'North Carolina' }, + { INCITS: '37107', county: 'Lenoir County', state: 'North Carolina' }, + { INCITS: '37109', county: 'Lincoln County', state: 'North Carolina' }, + { INCITS: '37111', county: 'McDowell County', state: 'North Carolina' }, + { INCITS: '37113', county: 'Macon County', state: 'North Carolina' }, + { INCITS: '37115', county: 'Madison County', state: 'North Carolina' }, + { INCITS: '37117', county: 'Martin County', state: 'North Carolina' }, + { INCITS: '37119', county: 'Mecklenburg County', state: 'North Carolina' }, + { INCITS: '37121', county: 'Mitchell County', state: 'North Carolina' }, + { INCITS: '37123', county: 'Montgomery County', state: 'North Carolina' }, + { INCITS: '37125', county: 'Moore County', state: 'North Carolina' }, + { INCITS: '37127', county: 'Nash County', state: 'North Carolina' }, + { INCITS: '37129', county: 'New Hanover County', state: 'North Carolina' }, + { INCITS: '37131', county: 'Northampton County', state: 'North Carolina' }, + { INCITS: '37133', county: 'Onslow County', state: 'North Carolina' }, + { INCITS: '37135', county: 'Orange County', state: 'North Carolina' }, + { INCITS: '37137', county: 'Pamlico County', state: 'North Carolina' }, + { INCITS: '37139', county: 'Pasquotank County', state: 'North Carolina' }, + { INCITS: '37141', county: 'Pender County', state: 'North Carolina' }, + { INCITS: '37143', county: 'Perquimans County', state: 'North Carolina' }, + { INCITS: '37145', county: 'Person County', state: 'North Carolina' }, + { INCITS: '37147', county: 'Pitt County', state: 'North Carolina' }, + { INCITS: '37149', county: 'Polk County', state: 'North Carolina' }, + { INCITS: '37151', county: 'Randolph County', state: 'North Carolina' }, + { INCITS: '37153', county: 'Richmond County', state: 'North Carolina' }, + { INCITS: '37155', county: 'Robeson County', state: 'North Carolina' }, + { INCITS: '37157', county: 'Rockingham County', state: 'North Carolina' }, + { INCITS: '37159', county: 'Rowan County', state: 'North Carolina' }, + { INCITS: '37161', county: 'Rutherford County', state: 'North Carolina' }, + { INCITS: '37163', county: 'Sampson County', state: 'North Carolina' }, + { INCITS: '37165', county: 'Scotland County', state: 'North Carolina' }, + { INCITS: '37167', county: 'Stanly County', state: 'North Carolina' }, + { INCITS: '37169', county: 'Stokes County', state: 'North Carolina' }, + { INCITS: '37171', county: 'Surry County', state: 'North Carolina' }, + { INCITS: '37173', county: 'Swain County', state: 'North Carolina' }, + { INCITS: '37175', county: 'Transylvania County', state: 'North Carolina' }, + { INCITS: '37177', county: 'Tyrrell County', state: 'North Carolina' }, + { INCITS: '37179', county: 'Union County', state: 'North Carolina' }, + { INCITS: '37181', county: 'Vance County', state: 'North Carolina' }, + { INCITS: '37183', county: 'Wake County', state: 'North Carolina' }, + { INCITS: '37185', county: 'Warren County', state: 'North Carolina' }, + { INCITS: '37187', county: 'Washington County', state: 'North Carolina' }, + { INCITS: '37189', county: 'Watauga County', state: 'North Carolina' }, + { INCITS: '37191', county: 'Wayne County', state: 'North Carolina' }, + { INCITS: '37193', county: 'Wilkes County', state: 'North Carolina' }, + { INCITS: '37195', county: 'Wilson County', state: 'North Carolina' }, + { INCITS: '37197', county: 'Yadkin County', state: 'North Carolina' }, + { INCITS: '37199', county: 'Yancey County', state: 'North Carolina' }, + { INCITS: '38001', county: 'Adams County', state: 'North Dakota' }, + { INCITS: '38003', county: 'Barnes County', state: 'North Dakota' }, + { INCITS: '38005', county: 'Benson County', state: 'North Dakota' }, + { INCITS: '38007', county: 'Billings County', state: 'North Dakota' }, + { INCITS: '38009', county: 'Bottineau County', state: 'North Dakota' }, + { INCITS: '38011', county: 'Bowman County', state: 'North Dakota' }, + { INCITS: '38013', county: 'Burke County', state: 'North Dakota' }, + { INCITS: '38015', county: 'Burleigh County', state: 'North Dakota' }, + { INCITS: '38017', county: 'Cass County', state: 'North Dakota' }, + { INCITS: '38019', county: 'Cavalier County', state: 'North Dakota' }, + { INCITS: '38021', county: 'Dickey County', state: 'North Dakota' }, + { INCITS: '38023', county: 'Divide County', state: 'North Dakota' }, + { INCITS: '38025', county: 'Dunn County', state: 'North Dakota' }, + { INCITS: '38027', county: 'Eddy County', state: 'North Dakota' }, + { INCITS: '38029', county: 'Emmons County', state: 'North Dakota' }, + { INCITS: '38031', county: 'Foster County', state: 'North Dakota' }, + { INCITS: '38033', county: 'Golden Valley County', state: 'North Dakota' }, + { INCITS: '38035', county: 'Grand Forks County', state: 'North Dakota' }, + { INCITS: '38037', county: 'Grant County', state: 'North Dakota' }, + { INCITS: '38039', county: 'Griggs County', state: 'North Dakota' }, + { INCITS: '38041', county: 'Hettinger County', state: 'North Dakota' }, + { INCITS: '38043', county: 'Kidder County', state: 'North Dakota' }, + { INCITS: '38045', county: 'LaMoure County', state: 'North Dakota' }, + { INCITS: '38047', county: 'Logan County', state: 'North Dakota' }, + { INCITS: '38049', county: 'McHenry County', state: 'North Dakota' }, + { INCITS: '38051', county: 'McIntosh County', state: 'North Dakota' }, + { INCITS: '38053', county: 'McKenzie County', state: 'North Dakota' }, + { INCITS: '38055', county: 'McLean County', state: 'North Dakota' }, + { INCITS: '38057', county: 'Mercer County', state: 'North Dakota' }, + { INCITS: '38059', county: 'Morton County', state: 'North Dakota' }, + { INCITS: '38061', county: 'Mountrail County', state: 'North Dakota' }, + { INCITS: '38063', county: 'Nelson County', state: 'North Dakota' }, + { INCITS: '38065', county: 'Oliver County', state: 'North Dakota' }, + { INCITS: '38067', county: 'Pembina County', state: 'North Dakota' }, + { INCITS: '38069', county: 'Pierce County', state: 'North Dakota' }, + { INCITS: '38071', county: 'Ramsey County', state: 'North Dakota' }, + { INCITS: '38073', county: 'Ransom County', state: 'North Dakota' }, + { INCITS: '38075', county: 'Renville County', state: 'North Dakota' }, + { INCITS: '38077', county: 'Richland County', state: 'North Dakota' }, + { INCITS: '38079', county: 'Rolette County', state: 'North Dakota' }, + { INCITS: '38081', county: 'Sargent County', state: 'North Dakota' }, + { INCITS: '38083', county: 'Sheridan County', state: 'North Dakota' }, + { INCITS: '38085', county: 'Sioux County', state: 'North Dakota' }, + { INCITS: '38087', county: 'Slope County', state: 'North Dakota' }, + { INCITS: '38089', county: 'Stark County', state: 'North Dakota' }, + { INCITS: '38091', county: 'Steele County', state: 'North Dakota' }, + { INCITS: '38093', county: 'Stutsman County', state: 'North Dakota' }, + { INCITS: '38095', county: 'Towner County', state: 'North Dakota' }, + { INCITS: '38097', county: 'Traill County', state: 'North Dakota' }, + { INCITS: '38099', county: 'Walsh County', state: 'North Dakota' }, + { INCITS: '38101', county: 'Ward County', state: 'North Dakota' }, + { INCITS: '38103', county: 'Wells County', state: 'North Dakota' }, + { INCITS: '38105', county: 'Williams County', state: 'North Dakota' }, + { INCITS: '39001', county: 'Adams County', state: 'Ohio' }, + { INCITS: '39003', county: 'Allen County', state: 'Ohio' }, + { INCITS: '39005', county: 'Ashland County', state: 'Ohio' }, + { INCITS: '39007', county: 'Ashtabula County', state: 'Ohio' }, + { INCITS: '39009', county: 'Athens County', state: 'Ohio' }, + { INCITS: '39011', county: 'Auglaize County', state: 'Ohio' }, + { INCITS: '39013', county: 'Belmont County', state: 'Ohio' }, + { INCITS: '39015', county: 'Brown County', state: 'Ohio' }, + { INCITS: '39017', county: 'Butler County', state: 'Ohio' }, + { INCITS: '39019', county: 'Carroll County', state: 'Ohio' }, + { INCITS: '39021', county: 'Champaign County', state: 'Ohio' }, + { INCITS: '39023', county: 'Clark County', state: 'Ohio' }, + { INCITS: '39025', county: 'Clermont County', state: 'Ohio' }, + { INCITS: '39027', county: 'Clinton County', state: 'Ohio' }, + { INCITS: '39029', county: 'Columbiana County', state: 'Ohio' }, + { INCITS: '39031', county: 'Coshocton County', state: 'Ohio' }, + { INCITS: '39033', county: 'Crawford County', state: 'Ohio' }, + { INCITS: '39035', county: 'Cuyahoga County', state: 'Ohio' }, + { INCITS: '39037', county: 'Darke County', state: 'Ohio' }, + { INCITS: '39039', county: 'Defiance County', state: 'Ohio' }, + { INCITS: '39041', county: 'Delaware County', state: 'Ohio' }, + { INCITS: '39043', county: 'Erie County', state: 'Ohio' }, + { INCITS: '39045', county: 'Fairfield County', state: 'Ohio' }, + { INCITS: '39047', county: 'Fayette County', state: 'Ohio' }, + { INCITS: '39049', county: 'Franklin County', state: 'Ohio' }, + { INCITS: '39051', county: 'Fulton County', state: 'Ohio' }, + { INCITS: '39053', county: 'Gallia County', state: 'Ohio' }, + { INCITS: '39055', county: 'Geauga County', state: 'Ohio' }, + { INCITS: '39057', county: 'Greene County', state: 'Ohio' }, + { INCITS: '39059', county: 'Guernsey County', state: 'Ohio' }, + { INCITS: '39061', county: 'Hamilton County', state: 'Ohio' }, + { INCITS: '39063', county: 'Hancock County', state: 'Ohio' }, + { INCITS: '39065', county: 'Hardin County', state: 'Ohio' }, + { INCITS: '39067', county: 'Harrison County', state: 'Ohio' }, + { INCITS: '39069', county: 'Henry County', state: 'Ohio' }, + { INCITS: '39071', county: 'Highland County', state: 'Ohio' }, + { INCITS: '39073', county: 'Hocking County', state: 'Ohio' }, + { INCITS: '39075', county: 'Holmes County', state: 'Ohio' }, + { INCITS: '39077', county: 'Huron County', state: 'Ohio' }, + { INCITS: '39079', county: 'Jackson County', state: 'Ohio' }, + { INCITS: '39081', county: 'Jefferson County', state: 'Ohio' }, + { INCITS: '39083', county: 'Knox County', state: 'Ohio' }, + { INCITS: '39085', county: 'Lake County', state: 'Ohio' }, + { INCITS: '39087', county: 'Lawrence County', state: 'Ohio' }, + { INCITS: '39089', county: 'Licking County', state: 'Ohio' }, + { INCITS: '39091', county: 'Logan County', state: 'Ohio' }, + { INCITS: '39093', county: 'Lorain County', state: 'Ohio' }, + { INCITS: '39095', county: 'Lucas County', state: 'Ohio' }, + { INCITS: '39097', county: 'Madison County', state: 'Ohio' }, + { INCITS: '39099', county: 'Mahoning County', state: 'Ohio' }, + { INCITS: '39101', county: 'Marion County', state: 'Ohio' }, + { INCITS: '39103', county: 'Medina County', state: 'Ohio' }, + { INCITS: '39105', county: 'Meigs County', state: 'Ohio' }, + { INCITS: '39107', county: 'Mercer County', state: 'Ohio' }, + { INCITS: '39109', county: 'Miami County', state: 'Ohio' }, + { INCITS: '39111', county: 'Monroe County', state: 'Ohio' }, + { INCITS: '39113', county: 'Montgomery County', state: 'Ohio' }, + { INCITS: '39115', county: 'Morgan County', state: 'Ohio' }, + { INCITS: '39117', county: 'Morrow County', state: 'Ohio' }, + { INCITS: '39119', county: 'Muskingum County', state: 'Ohio' }, + { INCITS: '39121', county: 'Noble County', state: 'Ohio' }, + { INCITS: '39123', county: 'Ottawa County', state: 'Ohio' }, + { INCITS: '39125', county: 'Paulding County', state: 'Ohio' }, + { INCITS: '39127', county: 'Perry County', state: 'Ohio' }, + { INCITS: '39129', county: 'Pickaway County', state: 'Ohio' }, + { INCITS: '39131', county: 'Pike County', state: 'Ohio' }, + { INCITS: '39133', county: 'Portage County', state: 'Ohio' }, + { INCITS: '39135', county: 'Preble County', state: 'Ohio' }, + { INCITS: '39137', county: 'Putnam County', state: 'Ohio' }, + { INCITS: '39139', county: 'Richland County', state: 'Ohio' }, + { INCITS: '39141', county: 'Ross County', state: 'Ohio' }, + { INCITS: '39143', county: 'Sandusky County', state: 'Ohio' }, + { INCITS: '39145', county: 'Scioto County', state: 'Ohio' }, + { INCITS: '39147', county: 'Seneca County', state: 'Ohio' }, + { INCITS: '39149', county: 'Shelby County', state: 'Ohio' }, + { INCITS: '39151', county: 'Stark County', state: 'Ohio' }, + { INCITS: '39153', county: 'Summit County', state: 'Ohio' }, + { INCITS: '39155', county: 'Trumbull County', state: 'Ohio' }, + { INCITS: '39157', county: 'Tuscarawas County', state: 'Ohio' }, + { INCITS: '39159', county: 'Union County', state: 'Ohio' }, + { INCITS: '39161', county: 'Van Wert County', state: 'Ohio' }, + { INCITS: '39163', county: 'Vinton County', state: 'Ohio' }, + { INCITS: '39165', county: 'Warren County', state: 'Ohio' }, + { INCITS: '39167', county: 'Washington County', state: 'Ohio' }, + { INCITS: '39169', county: 'Wayne County', state: 'Ohio' }, + { INCITS: '39171', county: 'Williams County', state: 'Ohio' }, + { INCITS: '39173', county: 'Wood County', state: 'Ohio' }, + { INCITS: '39175', county: 'Wyandot County', state: 'Ohio' }, + { INCITS: '40001', county: 'Adair County', state: 'Oklahoma' }, + { INCITS: '40003', county: 'Alfalfa County', state: 'Oklahoma' }, + { INCITS: '40005', county: 'Atoka County', state: 'Oklahoma' }, + { INCITS: '40007', county: 'Beaver County', state: 'Oklahoma' }, + { INCITS: '40009', county: 'Beckham County', state: 'Oklahoma' }, + { INCITS: '40011', county: 'Blaine County', state: 'Oklahoma' }, + { INCITS: '40013', county: 'Bryan County', state: 'Oklahoma' }, + { INCITS: '40015', county: 'Caddo County', state: 'Oklahoma' }, + { INCITS: '40017', county: 'Canadian County', state: 'Oklahoma' }, + { INCITS: '40019', county: 'Carter County', state: 'Oklahoma' }, + { INCITS: '40021', county: 'Cherokee County', state: 'Oklahoma' }, + { INCITS: '40023', county: 'Choctaw County', state: 'Oklahoma' }, + { INCITS: '40025', county: 'Cimarron County', state: 'Oklahoma' }, + { INCITS: '40027', county: 'Cleveland County', state: 'Oklahoma' }, + { INCITS: '40029', county: 'Coal County', state: 'Oklahoma' }, + { INCITS: '40031', county: 'Comanche County', state: 'Oklahoma' }, + { INCITS: '40033', county: 'Cotton County', state: 'Oklahoma' }, + { INCITS: '40035', county: 'Craig County', state: 'Oklahoma' }, + { INCITS: '40037', county: 'Creek County', state: 'Oklahoma' }, + { INCITS: '40039', county: 'Custer County', state: 'Oklahoma' }, + { INCITS: '40041', county: 'Delaware County', state: 'Oklahoma' }, + { INCITS: '40043', county: 'Dewey County', state: 'Oklahoma' }, + { INCITS: '40045', county: 'Ellis County', state: 'Oklahoma' }, + { INCITS: '40047', county: 'Garfield County', state: 'Oklahoma' }, + { INCITS: '40049', county: 'Garvin County', state: 'Oklahoma' }, + { INCITS: '40051', county: 'Grady County', state: 'Oklahoma' }, + { INCITS: '40053', county: 'Grant County', state: 'Oklahoma' }, + { INCITS: '40055', county: 'Greer County', state: 'Oklahoma' }, + { INCITS: '40057', county: 'Harmon County', state: 'Oklahoma' }, + { INCITS: '40059', county: 'Harper County', state: 'Oklahoma' }, + { INCITS: '40061', county: 'Haskell County', state: 'Oklahoma' }, + { INCITS: '40063', county: 'Hughes County', state: 'Oklahoma' }, + { INCITS: '40065', county: 'Jackson County', state: 'Oklahoma' }, + { INCITS: '40067', county: 'Jefferson County', state: 'Oklahoma' }, + { INCITS: '40069', county: 'Johnston County', state: 'Oklahoma' }, + { INCITS: '40071', county: 'Kay County', state: 'Oklahoma' }, + { INCITS: '40073', county: 'Kingfisher County', state: 'Oklahoma' }, + { INCITS: '40075', county: 'Kiowa County', state: 'Oklahoma' }, + { INCITS: '40077', county: 'Latimer County', state: 'Oklahoma' }, + { INCITS: '40079', county: 'Le Flore County', state: 'Oklahoma' }, + { INCITS: '40081', county: 'Lincoln County', state: 'Oklahoma' }, + { INCITS: '40083', county: 'Logan County', state: 'Oklahoma' }, + { INCITS: '40085', county: 'Love County', state: 'Oklahoma' }, + { INCITS: '40087', county: 'McClain County', state: 'Oklahoma' }, + { INCITS: '40089', county: 'McCurtain County', state: 'Oklahoma' }, + { INCITS: '40091', county: 'McIntosh County', state: 'Oklahoma' }, + { INCITS: '40093', county: 'Major County', state: 'Oklahoma' }, + { INCITS: '40095', county: 'Marshall County', state: 'Oklahoma' }, + { INCITS: '40097', county: 'Mayes County', state: 'Oklahoma' }, + { INCITS: '40099', county: 'Murray County', state: 'Oklahoma' }, + { INCITS: '40101', county: 'Muskogee County', state: 'Oklahoma' }, + { INCITS: '40103', county: 'Noble County', state: 'Oklahoma' }, + { INCITS: '40105', county: 'Nowata County', state: 'Oklahoma' }, + { INCITS: '40107', county: 'Okfuskee County', state: 'Oklahoma' }, + { INCITS: '40109', county: 'Oklahoma County', state: 'Oklahoma' }, + { INCITS: '40111', county: 'Okmulgee County', state: 'Oklahoma' }, + { INCITS: '40113', county: 'Osage County', state: 'Oklahoma' }, + { INCITS: '40115', county: 'Ottawa County', state: 'Oklahoma' }, + { INCITS: '40117', county: 'Pawnee County', state: 'Oklahoma' }, + { INCITS: '40119', county: 'Payne County', state: 'Oklahoma' }, + { INCITS: '40121', county: 'Pittsburg County', state: 'Oklahoma' }, + { INCITS: '40123', county: 'Pontotoc County', state: 'Oklahoma' }, + { INCITS: '40125', county: 'Pottawatomie County', state: 'Oklahoma' }, + { INCITS: '40127', county: 'Pushmataha County', state: 'Oklahoma' }, + { INCITS: '40129', county: 'Roger Mills County', state: 'Oklahoma' }, + { INCITS: '40131', county: 'Rogers County', state: 'Oklahoma' }, + { INCITS: '40133', county: 'Seminole County', state: 'Oklahoma' }, + { INCITS: '40135', county: 'Sequoyah County', state: 'Oklahoma' }, + { INCITS: '40137', county: 'Stephens County', state: 'Oklahoma' }, + { INCITS: '40139', county: 'Texas County', state: 'Oklahoma' }, + { INCITS: '40141', county: 'Tillman County', state: 'Oklahoma' }, + { INCITS: '40143', county: 'Tulsa County', state: 'Oklahoma' }, + { INCITS: '40145', county: 'Wagoner County', state: 'Oklahoma' }, + { INCITS: '40147', county: 'Washington County', state: 'Oklahoma' }, + { INCITS: '40149', county: 'Washita County', state: 'Oklahoma' }, + { INCITS: '40151', county: 'Woods County', state: 'Oklahoma' }, + { INCITS: '40153', county: 'Woodward County', state: 'Oklahoma' }, + { INCITS: '41001', county: 'Baker County', state: 'Oregon' }, + { INCITS: '41003', county: 'Benton County', state: 'Oregon' }, + { INCITS: '41005', county: 'Clackamas County', state: 'Oregon' }, + { INCITS: '41007', county: 'Clatsop County', state: 'Oregon' }, + { INCITS: '41009', county: 'Columbia County', state: 'Oregon' }, + { INCITS: '41011', county: 'Coos County', state: 'Oregon' }, + { INCITS: '41013', county: 'Crook County', state: 'Oregon' }, + { INCITS: '41015', county: 'Curry County', state: 'Oregon' }, + { INCITS: '41017', county: 'Deschutes County', state: 'Oregon' }, + { INCITS: '41019', county: 'Douglas County', state: 'Oregon' }, + { INCITS: '41021', county: 'Gilliam County', state: 'Oregon' }, + { INCITS: '41023', county: 'Grant County', state: 'Oregon' }, + { INCITS: '41025', county: 'Harney County', state: 'Oregon' }, + { INCITS: '41027', county: 'Hood River County', state: 'Oregon' }, + { INCITS: '41029', county: 'Jackson County', state: 'Oregon' }, + { INCITS: '41031', county: 'Jefferson County', state: 'Oregon' }, + { INCITS: '41033', county: 'Josephine County', state: 'Oregon' }, + { INCITS: '41035', county: 'Klamath County', state: 'Oregon' }, + { INCITS: '41037', county: 'Lake County', state: 'Oregon' }, + { INCITS: '41039', county: 'Lane County', state: 'Oregon' }, + { INCITS: '41041', county: 'Lincoln County', state: 'Oregon' }, + { INCITS: '41043', county: 'Linn County', state: 'Oregon' }, + { INCITS: '41045', county: 'Malheur County', state: 'Oregon' }, + { INCITS: '41047', county: 'Marion County', state: 'Oregon' }, + { INCITS: '41049', county: 'Morrow County', state: 'Oregon' }, + { INCITS: '41051', county: 'Multnomah County', state: 'Oregon' }, + { INCITS: '41053', county: 'Polk County', state: 'Oregon' }, + { INCITS: '41055', county: 'Sherman County', state: 'Oregon' }, + { INCITS: '41057', county: 'Tillamook County', state: 'Oregon' }, + { INCITS: '41059', county: 'Umatilla County', state: 'Oregon' }, + { INCITS: '41061', county: 'Union County', state: 'Oregon' }, + { INCITS: '41063', county: 'Wallowa County', state: 'Oregon' }, + { INCITS: '41065', county: 'Wasco County', state: 'Oregon' }, + { INCITS: '41067', county: 'Washington County', state: 'Oregon' }, + { INCITS: '41069', county: 'Wheeler County', state: 'Oregon' }, + { INCITS: '41071', county: 'Yamhill County', state: 'Oregon' }, + { INCITS: '42001', county: 'Adams County', state: 'Pennsylvania' }, + { INCITS: '42003', county: 'Allegheny County', state: 'Pennsylvania' }, + { INCITS: '42005', county: 'Armstrong County', state: 'Pennsylvania' }, + { INCITS: '42007', county: 'Beaver County', state: 'Pennsylvania' }, + { INCITS: '42009', county: 'Bedford County', state: 'Pennsylvania' }, + { INCITS: '42011', county: 'Berks County', state: 'Pennsylvania' }, + { INCITS: '42013', county: 'Blair County', state: 'Pennsylvania' }, + { INCITS: '42015', county: 'Bradford County', state: 'Pennsylvania' }, + { INCITS: '42017', county: 'Bucks County', state: 'Pennsylvania' }, + { INCITS: '42019', county: 'Butler County', state: 'Pennsylvania' }, + { INCITS: '42021', county: 'Cambria County', state: 'Pennsylvania' }, + { INCITS: '42023', county: 'Cameron County', state: 'Pennsylvania' }, + { INCITS: '42025', county: 'Carbon County', state: 'Pennsylvania' }, + { INCITS: '42027', county: 'Centre County', state: 'Pennsylvania' }, + { INCITS: '42029', county: 'Chester County', state: 'Pennsylvania' }, + { INCITS: '42031', county: 'Clarion County', state: 'Pennsylvania' }, + { INCITS: '42033', county: 'Clearfield County', state: 'Pennsylvania' }, + { INCITS: '42035', county: 'Clinton County', state: 'Pennsylvania' }, + { INCITS: '42037', county: 'Columbia County', state: 'Pennsylvania' }, + { INCITS: '42039', county: 'Crawford County', state: 'Pennsylvania' }, + { INCITS: '42041', county: 'Cumberland County', state: 'Pennsylvania' }, + { INCITS: '42043', county: 'Dauphin County', state: 'Pennsylvania' }, + { INCITS: '42045', county: 'Delaware County', state: 'Pennsylvania' }, + { INCITS: '42047', county: 'Elk County', state: 'Pennsylvania' }, + { INCITS: '42049', county: 'Erie County', state: 'Pennsylvania' }, + { INCITS: '42051', county: 'Fayette County', state: 'Pennsylvania' }, + { INCITS: '42053', county: 'Forest County', state: 'Pennsylvania' }, + { INCITS: '42055', county: 'Franklin County', state: 'Pennsylvania' }, + { INCITS: '42057', county: 'Fulton County', state: 'Pennsylvania' }, + { INCITS: '42059', county: 'Greene County', state: 'Pennsylvania' }, + { INCITS: '42061', county: 'Huntingdon County', state: 'Pennsylvania' }, + { INCITS: '42063', county: 'Indiana County', state: 'Pennsylvania' }, + { INCITS: '42065', county: 'Jefferson County', state: 'Pennsylvania' }, + { INCITS: '42067', county: 'Juniata County', state: 'Pennsylvania' }, + { INCITS: '42069', county: 'Lackawanna County', state: 'Pennsylvania' }, + { INCITS: '42071', county: 'Lancaster County', state: 'Pennsylvania' }, + { INCITS: '42073', county: 'Lawrence County', state: 'Pennsylvania' }, + { INCITS: '42075', county: 'Lebanon County', state: 'Pennsylvania' }, + { INCITS: '42077', county: 'Lehigh County', state: 'Pennsylvania' }, + { INCITS: '42079', county: 'Luzerne County', state: 'Pennsylvania' }, + { INCITS: '42081', county: 'Lycoming County', state: 'Pennsylvania' }, + { INCITS: '42083', county: 'McKean County', state: 'Pennsylvania' }, + { INCITS: '42085', county: 'Mercer County', state: 'Pennsylvania' }, + { INCITS: '42087', county: 'Mifflin County', state: 'Pennsylvania' }, + { INCITS: '42089', county: 'Monroe County', state: 'Pennsylvania' }, + { INCITS: '42091', county: 'Montgomery County', state: 'Pennsylvania' }, + { INCITS: '42093', county: 'Montour County', state: 'Pennsylvania' }, + { INCITS: '42095', county: 'Northampton County', state: 'Pennsylvania' }, + { INCITS: '42097', county: 'Northumberland County', state: 'Pennsylvania' }, + { INCITS: '42099', county: 'Perry County', state: 'Pennsylvania' }, + { INCITS: '42101', county: 'Philadelphia County', state: 'Pennsylvania' }, + { INCITS: '42103', county: 'Pike County', state: 'Pennsylvania' }, + { INCITS: '42105', county: 'Potter County', state: 'Pennsylvania' }, + { INCITS: '42107', county: 'Schuylkill County', state: 'Pennsylvania' }, + { INCITS: '42109', county: 'Snyder County', state: 'Pennsylvania' }, + { INCITS: '42111', county: 'Somerset County', state: 'Pennsylvania' }, + { INCITS: '42113', county: 'Sullivan County', state: 'Pennsylvania' }, + { INCITS: '42115', county: 'Susquehanna County', state: 'Pennsylvania' }, + { INCITS: '42117', county: 'Tioga County', state: 'Pennsylvania' }, + { INCITS: '42119', county: 'Union County', state: 'Pennsylvania' }, + { INCITS: '42121', county: 'Venango County', state: 'Pennsylvania' }, + { INCITS: '42123', county: 'Warren County', state: 'Pennsylvania' }, + { INCITS: '42125', county: 'Washington County', state: 'Pennsylvania' }, + { INCITS: '42127', county: 'Wayne County', state: 'Pennsylvania' }, + { INCITS: '42129', county: 'Westmoreland County', state: 'Pennsylvania' }, + { INCITS: '42131', county: 'Wyoming County', state: 'Pennsylvania' }, + { INCITS: '42133', county: 'York County', state: 'Pennsylvania' }, + { INCITS: '44001', county: 'Bristol County[13]', state: 'Rhode Island' }, + { INCITS: '44003', county: 'Kent County[13]', state: 'Rhode Island' }, + { INCITS: '44005', county: 'Newport County[13]', state: 'Rhode Island' }, + { INCITS: '44007', county: 'Providence County[13]', state: 'Rhode Island' }, + { INCITS: '44009', county: 'Washington County[13]', state: 'Rhode Island' }, + { INCITS: '45001', county: 'Abbeville County', state: 'South Carolina' }, + { INCITS: '45003', county: 'Aiken County', state: 'South Carolina' }, + { INCITS: '45005', county: 'Allendale County', state: 'South Carolina' }, + { INCITS: '45007', county: 'Anderson County', state: 'South Carolina' }, + { INCITS: '45009', county: 'Bamberg County', state: 'South Carolina' }, + { INCITS: '45011', county: 'Barnwell County', state: 'South Carolina' }, + { INCITS: '45013', county: 'Beaufort County', state: 'South Carolina' }, + { INCITS: '45015', county: 'Berkeley County', state: 'South Carolina' }, + { INCITS: '45017', county: 'Calhoun County', state: 'South Carolina' }, + { INCITS: '45019', county: 'Charleston County', state: 'South Carolina' }, + { INCITS: '45021', county: 'Cherokee County', state: 'South Carolina' }, + { INCITS: '45023', county: 'Chester County', state: 'South Carolina' }, + { INCITS: '45025', county: 'Chesterfield County', state: 'South Carolina' }, + { INCITS: '45027', county: 'Clarendon County', state: 'South Carolina' }, + { INCITS: '45029', county: 'Colleton County', state: 'South Carolina' }, + { INCITS: '45031', county: 'Darlington County', state: 'South Carolina' }, + { INCITS: '45033', county: 'Dillon County', state: 'South Carolina' }, + { INCITS: '45035', county: 'Dorchester County', state: 'South Carolina' }, + { INCITS: '45037', county: 'Edgefield County', state: 'South Carolina' }, + { INCITS: '45039', county: 'Fairfield County', state: 'South Carolina' }, + { INCITS: '45041', county: 'Florence County', state: 'South Carolina' }, + { INCITS: '45043', county: 'Georgetown County', state: 'South Carolina' }, + { INCITS: '45045', county: 'Greenville County', state: 'South Carolina' }, + { INCITS: '45047', county: 'Greenwood County', state: 'South Carolina' }, + { INCITS: '45049', county: 'Hampton County', state: 'South Carolina' }, + { INCITS: '45051', county: 'Horry County', state: 'South Carolina' }, + { INCITS: '45053', county: 'Jasper County', state: 'South Carolina' }, + { INCITS: '45055', county: 'Kershaw County', state: 'South Carolina' }, + { INCITS: '45057', county: 'Lancaster County', state: 'South Carolina' }, + { INCITS: '45059', county: 'Laurens County', state: 'South Carolina' }, + { INCITS: '45061', county: 'Lee County', state: 'South Carolina' }, + { INCITS: '45063', county: 'Lexington County', state: 'South Carolina' }, + { INCITS: '45065', county: 'McCormick County', state: 'South Carolina' }, + { INCITS: '45067', county: 'Marion County', state: 'South Carolina' }, + { INCITS: '45069', county: 'Marlboro County', state: 'South Carolina' }, + { INCITS: '45071', county: 'Newberry County', state: 'South Carolina' }, + { INCITS: '45073', county: 'Oconee County', state: 'South Carolina' }, + { INCITS: '45075', county: 'Orangeburg County', state: 'South Carolina' }, + { INCITS: '45077', county: 'Pickens County', state: 'South Carolina' }, + { INCITS: '45079', county: 'Richland County', state: 'South Carolina' }, + { INCITS: '45081', county: 'Saluda County', state: 'South Carolina' }, + { INCITS: '45083', county: 'Spartanburg County', state: 'South Carolina' }, + { INCITS: '45085', county: 'Sumter County', state: 'South Carolina' }, + { INCITS: '45087', county: 'Union County', state: 'South Carolina' }, + { INCITS: '45089', county: 'Williamsburg County', state: 'South Carolina' }, + { INCITS: '45091', county: 'York County', state: 'South Carolina' }, + { INCITS: '46003', county: 'Aurora County', state: 'South Dakota' }, + { INCITS: '46005', county: 'Beadle County', state: 'South Dakota' }, + { INCITS: '46007', county: 'Bennett County', state: 'South Dakota' }, + { INCITS: '46009', county: 'Bon Homme County', state: 'South Dakota' }, + { INCITS: '46011', county: 'Brookings County', state: 'South Dakota' }, + { INCITS: '46013', county: 'Brown County', state: 'South Dakota' }, + { INCITS: '46015', county: 'Brule County', state: 'South Dakota' }, + { INCITS: '46017', county: 'Buffalo County', state: 'South Dakota' }, + { INCITS: '46019', county: 'Butte County', state: 'South Dakota' }, + { INCITS: '46021', county: 'Campbell County', state: 'South Dakota' }, + { INCITS: '46023', county: 'Charles Mix County', state: 'South Dakota' }, + { INCITS: '46025', county: 'Clark County', state: 'South Dakota' }, + { INCITS: '46027', county: 'Clay County', state: 'South Dakota' }, + { INCITS: '46029', county: 'Codington County', state: 'South Dakota' }, + { INCITS: '46031', county: 'Corson County', state: 'South Dakota' }, + { INCITS: '46033', county: 'Custer County', state: 'South Dakota' }, + { INCITS: '46035', county: 'Davison County', state: 'South Dakota' }, + { INCITS: '46037', county: 'Day County', state: 'South Dakota' }, + { INCITS: '46039', county: 'Deuel County', state: 'South Dakota' }, + { INCITS: '46041', county: 'Dewey County', state: 'South Dakota' }, + { INCITS: '46043', county: 'Douglas County', state: 'South Dakota' }, + { INCITS: '46045', county: 'Edmunds County', state: 'South Dakota' }, + { INCITS: '46047', county: 'Fall River County', state: 'South Dakota' }, + { INCITS: '46049', county: 'Faulk County', state: 'South Dakota' }, + { INCITS: '46051', county: 'Grant County', state: 'South Dakota' }, + { INCITS: '46053', county: 'Gregory County', state: 'South Dakota' }, + { INCITS: '46055', county: 'Haakon County', state: 'South Dakota' }, + { INCITS: '46057', county: 'Hamlin County', state: 'South Dakota' }, + { INCITS: '46059', county: 'Hand County', state: 'South Dakota' }, + { INCITS: '46061', county: 'Hanson County', state: 'South Dakota' }, + { INCITS: '46063', county: 'Harding County', state: 'South Dakota' }, + { INCITS: '46065', county: 'Hughes County', state: 'South Dakota' }, + { INCITS: '46067', county: 'Hutchinson County', state: 'South Dakota' }, + { INCITS: '46069', county: 'Hyde County', state: 'South Dakota' }, + { INCITS: '46071', county: 'Jackson County', state: 'South Dakota' }, + { INCITS: '46073', county: 'Jerauld County', state: 'South Dakota' }, + { INCITS: '46075', county: 'Jones County', state: 'South Dakota' }, + { INCITS: '46077', county: 'Kingsbury County', state: 'South Dakota' }, + { INCITS: '46079', county: 'Lake County', state: 'South Dakota' }, + { INCITS: '46081', county: 'Lawrence County', state: 'South Dakota' }, + { INCITS: '46083', county: 'Lincoln County', state: 'South Dakota' }, + { INCITS: '46085', county: 'Lyman County', state: 'South Dakota' }, + { INCITS: '46087', county: 'McCook County', state: 'South Dakota' }, + { INCITS: '46089', county: 'McPherson County', state: 'South Dakota' }, + { INCITS: '46091', county: 'Marshall County', state: 'South Dakota' }, + { INCITS: '46093', county: 'Meade County', state: 'South Dakota' }, + { INCITS: '46095', county: 'Mellette County', state: 'South Dakota' }, + { INCITS: '46097', county: 'Miner County', state: 'South Dakota' }, + { INCITS: '46099', county: 'Minnehaha County', state: 'South Dakota' }, + { INCITS: '46101', county: 'Moody County', state: 'South Dakota' }, + { INCITS: '46102', county: 'Oglala Lakota County', state: 'South Dakota' }, + { INCITS: '46103', county: 'Pennington County', state: 'South Dakota' }, + { INCITS: '46105', county: 'Perkins County', state: 'South Dakota' }, + { INCITS: '46107', county: 'Potter County', state: 'South Dakota' }, + { INCITS: '46109', county: 'Roberts County', state: 'South Dakota' }, + { INCITS: '46111', county: 'Sanborn County', state: 'South Dakota' }, + { INCITS: '46115', county: 'Spink County', state: 'South Dakota' }, + { INCITS: '46117', county: 'Stanley County', state: 'South Dakota' }, + { INCITS: '46119', county: 'Sully County', state: 'South Dakota' }, + { INCITS: '46121', county: 'Todd County', state: 'South Dakota' }, + { INCITS: '46123', county: 'Tripp County', state: 'South Dakota' }, + { INCITS: '46125', county: 'Turner County', state: 'South Dakota' }, + { INCITS: '46127', county: 'Union County', state: 'South Dakota' }, + { INCITS: '46129', county: 'Walworth County', state: 'South Dakota' }, + { INCITS: '46135', county: 'Yankton County', state: 'South Dakota' }, + { INCITS: '46137', county: 'Ziebach County', state: 'South Dakota' }, + { INCITS: '47001', county: 'Anderson County', state: 'Tennessee' }, + { INCITS: '47003', county: 'Bedford County', state: 'Tennessee' }, + { INCITS: '47005', county: 'Benton County', state: 'Tennessee' }, + { INCITS: '47007', county: 'Bledsoe County', state: 'Tennessee' }, + { INCITS: '47009', county: 'Blount County', state: 'Tennessee' }, + { INCITS: '47011', county: 'Bradley County', state: 'Tennessee' }, + { INCITS: '47013', county: 'Campbell County', state: 'Tennessee' }, + { INCITS: '47015', county: 'Cannon County', state: 'Tennessee' }, + { INCITS: '47017', county: 'Carroll County', state: 'Tennessee' }, + { INCITS: '47019', county: 'Carter County', state: 'Tennessee' }, + { INCITS: '47021', county: 'Cheatham County', state: 'Tennessee' }, + { INCITS: '47023', county: 'Chester County', state: 'Tennessee' }, + { INCITS: '47025', county: 'Claiborne County', state: 'Tennessee' }, + { INCITS: '47027', county: 'Clay County', state: 'Tennessee' }, + { INCITS: '47029', county: 'Cocke County', state: 'Tennessee' }, + { INCITS: '47031', county: 'Coffee County', state: 'Tennessee' }, + { INCITS: '47033', county: 'Crockett County', state: 'Tennessee' }, + { INCITS: '47035', county: 'Cumberland County', state: 'Tennessee' }, + { INCITS: '47037', county: 'Davidson County', state: 'Tennessee' }, + { INCITS: '47039', county: 'Decatur County', state: 'Tennessee' }, + { INCITS: '47041', county: 'DeKalb County', state: 'Tennessee' }, + { INCITS: '47043', county: 'Dickson County', state: 'Tennessee' }, + { INCITS: '47045', county: 'Dyer County', state: 'Tennessee' }, + { INCITS: '47047', county: 'Fayette County', state: 'Tennessee' }, + { INCITS: '47049', county: 'Fentress County', state: 'Tennessee' }, + { INCITS: '47051', county: 'Franklin County', state: 'Tennessee' }, + { INCITS: '47053', county: 'Gibson County', state: 'Tennessee' }, + { INCITS: '47055', county: 'Giles County', state: 'Tennessee' }, + { INCITS: '47057', county: 'Grainger County', state: 'Tennessee' }, + { INCITS: '47059', county: 'Greene County', state: 'Tennessee' }, + { INCITS: '47061', county: 'Grundy County', state: 'Tennessee' }, + { INCITS: '47063', county: 'Hamblen County', state: 'Tennessee' }, + { INCITS: '47065', county: 'Hamilton County', state: 'Tennessee' }, + { INCITS: '47067', county: 'Hancock County', state: 'Tennessee' }, + { INCITS: '47069', county: 'Hardeman County', state: 'Tennessee' }, + { INCITS: '47071', county: 'Hardin County', state: 'Tennessee' }, + { INCITS: '47073', county: 'Hawkins County', state: 'Tennessee' }, + { INCITS: '47075', county: 'Haywood County', state: 'Tennessee' }, + { INCITS: '47077', county: 'Henderson County', state: 'Tennessee' }, + { INCITS: '47079', county: 'Henry County', state: 'Tennessee' }, + { INCITS: '47081', county: 'Hickman County', state: 'Tennessee' }, + { INCITS: '47083', county: 'Houston County', state: 'Tennessee' }, + { INCITS: '47085', county: 'Humphreys County', state: 'Tennessee' }, + { INCITS: '47087', county: 'Jackson County', state: 'Tennessee' }, + { INCITS: '47089', county: 'Jefferson County', state: 'Tennessee' }, + { INCITS: '47091', county: 'Johnson County', state: 'Tennessee' }, + { INCITS: '47093', county: 'Knox County', state: 'Tennessee' }, + { INCITS: '47095', county: 'Lake County', state: 'Tennessee' }, + { INCITS: '47097', county: 'Lauderdale County', state: 'Tennessee' }, + { INCITS: '47099', county: 'Lawrence County', state: 'Tennessee' }, + { INCITS: '47101', county: 'Lewis County', state: 'Tennessee' }, + { INCITS: '47103', county: 'Lincoln County', state: 'Tennessee' }, + { INCITS: '47105', county: 'Loudon County', state: 'Tennessee' }, + { INCITS: '47107', county: 'McMinn County', state: 'Tennessee' }, + { INCITS: '47109', county: 'McNairy County', state: 'Tennessee' }, + { INCITS: '47111', county: 'Macon County', state: 'Tennessee' }, + { INCITS: '47113', county: 'Madison County', state: 'Tennessee' }, + { INCITS: '47115', county: 'Marion County', state: 'Tennessee' }, + { INCITS: '47117', county: 'Marshall County', state: 'Tennessee' }, + { INCITS: '47119', county: 'Maury County', state: 'Tennessee' }, + { INCITS: '47121', county: 'Meigs County', state: 'Tennessee' }, + { INCITS: '47123', county: 'Monroe County', state: 'Tennessee' }, + { INCITS: '47125', county: 'Montgomery County', state: 'Tennessee' }, + { INCITS: '47127', county: 'Moore County', state: 'Tennessee' }, + { INCITS: '47129', county: 'Morgan County', state: 'Tennessee' }, + { INCITS: '47131', county: 'Obion County', state: 'Tennessee' }, + { INCITS: '47133', county: 'Overton County', state: 'Tennessee' }, + { INCITS: '47135', county: 'Perry County', state: 'Tennessee' }, + { INCITS: '47137', county: 'Pickett County', state: 'Tennessee' }, + { INCITS: '47139', county: 'Polk County', state: 'Tennessee' }, + { INCITS: '47141', county: 'Putnam County', state: 'Tennessee' }, + { INCITS: '47143', county: 'Rhea County', state: 'Tennessee' }, + { INCITS: '47145', county: 'Roane County', state: 'Tennessee' }, + { INCITS: '47147', county: 'Robertson County', state: 'Tennessee' }, + { INCITS: '47149', county: 'Rutherford County', state: 'Tennessee' }, + { INCITS: '47151', county: 'Scott County', state: 'Tennessee' }, + { INCITS: '47153', county: 'Sequatchie County', state: 'Tennessee' }, + { INCITS: '47155', county: 'Sevier County', state: 'Tennessee' }, + { INCITS: '47157', county: 'Shelby County', state: 'Tennessee' }, + { INCITS: '47159', county: 'Smith County', state: 'Tennessee' }, + { INCITS: '47161', county: 'Stewart County', state: 'Tennessee' }, + { INCITS: '47163', county: 'Sullivan County', state: 'Tennessee' }, + { INCITS: '47165', county: 'Sumner County', state: 'Tennessee' }, + { INCITS: '47167', county: 'Tipton County', state: 'Tennessee' }, + { INCITS: '47169', county: 'Trousdale County', state: 'Tennessee' }, + { INCITS: '47171', county: 'Unicoi County', state: 'Tennessee' }, + { INCITS: '47173', county: 'Union County', state: 'Tennessee' }, + { INCITS: '47175', county: 'Van Buren County', state: 'Tennessee' }, + { INCITS: '47177', county: 'Warren County', state: 'Tennessee' }, + { INCITS: '47179', county: 'Washington County', state: 'Tennessee' }, + { INCITS: '47181', county: 'Wayne County', state: 'Tennessee' }, + { INCITS: '47183', county: 'Weakley County', state: 'Tennessee' }, + { INCITS: '47185', county: 'White County', state: 'Tennessee' }, + { INCITS: '47187', county: 'Williamson County', state: 'Tennessee' }, + { INCITS: '47189', county: 'Wilson County', state: 'Tennessee' }, + { INCITS: '48001', county: 'Anderson County', state: 'Texas' }, + { INCITS: '48003', county: 'Andrews County', state: 'Texas' }, + { INCITS: '48005', county: 'Angelina County', state: 'Texas' }, + { INCITS: '48007', county: 'Aransas County', state: 'Texas' }, + { INCITS: '48009', county: 'Archer County', state: 'Texas' }, + { INCITS: '48011', county: 'Armstrong County', state: 'Texas' }, + { INCITS: '48013', county: 'Atascosa County', state: 'Texas' }, + { INCITS: '48015', county: 'Austin County', state: 'Texas' }, + { INCITS: '48017', county: 'Bailey County', state: 'Texas' }, + { INCITS: '48019', county: 'Bandera County', state: 'Texas' }, + { INCITS: '48021', county: 'Bastrop County', state: 'Texas' }, + { INCITS: '48023', county: 'Baylor County', state: 'Texas' }, + { INCITS: '48025', county: 'Bee County', state: 'Texas' }, + { INCITS: '48027', county: 'Bell County', state: 'Texas' }, + { INCITS: '48029', county: 'Bexar County', state: 'Texas' }, + { INCITS: '48031', county: 'Blanco County', state: 'Texas' }, + { INCITS: '48033', county: 'Borden County', state: 'Texas' }, + { INCITS: '48035', county: 'Bosque County', state: 'Texas' }, + { INCITS: '48037', county: 'Bowie County', state: 'Texas' }, + { INCITS: '48039', county: 'Brazoria County', state: 'Texas' }, + { INCITS: '48041', county: 'Brazos County', state: 'Texas' }, + { INCITS: '48043', county: 'Brewster County', state: 'Texas' }, + { INCITS: '48045', county: 'Briscoe County', state: 'Texas' }, + { INCITS: '48047', county: 'Brooks County', state: 'Texas' }, + { INCITS: '48049', county: 'Brown County', state: 'Texas' }, + { INCITS: '48051', county: 'Burleson County', state: 'Texas' }, + { INCITS: '48053', county: 'Burnet County', state: 'Texas' }, + { INCITS: '48055', county: 'Caldwell County', state: 'Texas' }, + { INCITS: '48057', county: 'Calhoun County', state: 'Texas' }, + { INCITS: '48059', county: 'Callahan County', state: 'Texas' }, + { INCITS: '48061', county: 'Cameron County', state: 'Texas' }, + { INCITS: '48063', county: 'Camp County', state: 'Texas' }, + { INCITS: '48065', county: 'Carson County', state: 'Texas' }, + { INCITS: '48067', county: 'Cass County', state: 'Texas' }, + { INCITS: '48069', county: 'Castro County', state: 'Texas' }, + { INCITS: '48071', county: 'Chambers County', state: 'Texas' }, + { INCITS: '48073', county: 'Cherokee County', state: 'Texas' }, + { INCITS: '48075', county: 'Childress County', state: 'Texas' }, + { INCITS: '48077', county: 'Clay County', state: 'Texas' }, + { INCITS: '48079', county: 'Cochran County', state: 'Texas' }, + { INCITS: '48081', county: 'Coke County', state: 'Texas' }, + { INCITS: '48083', county: 'Coleman County', state: 'Texas' }, + { INCITS: '48085', county: 'Collin County', state: 'Texas' }, + { INCITS: '48087', county: 'Collingsworth County', state: 'Texas' }, + { INCITS: '48089', county: 'Colorado County', state: 'Texas' }, + { INCITS: '48091', county: 'Comal County', state: 'Texas' }, + { INCITS: '48093', county: 'Comanche County', state: 'Texas' }, + { INCITS: '48095', county: 'Concho County', state: 'Texas' }, + { INCITS: '48097', county: 'Cooke County', state: 'Texas' }, + { INCITS: '48099', county: 'Coryell County', state: 'Texas' }, + { INCITS: '48101', county: 'Cottle County', state: 'Texas' }, + { INCITS: '48103', county: 'Crane County', state: 'Texas' }, + { INCITS: '48105', county: 'Crockett County', state: 'Texas' }, + { INCITS: '48107', county: 'Crosby County', state: 'Texas' }, + { INCITS: '48109', county: 'Culberson County', state: 'Texas' }, + { INCITS: '48111', county: 'Dallam County', state: 'Texas' }, + { INCITS: '48113', county: 'Dallas County', state: 'Texas' }, + { INCITS: '48115', county: 'Dawson County', state: 'Texas' }, + { INCITS: '48117', county: 'Deaf Smith County', state: 'Texas' }, + { INCITS: '48119', county: 'Delta County', state: 'Texas' }, + { INCITS: '48121', county: 'Denton County', state: 'Texas' }, + { INCITS: '48123', county: 'DeWitt County', state: 'Texas' }, + { INCITS: '48125', county: 'Dickens County', state: 'Texas' }, + { INCITS: '48127', county: 'Dimmit County', state: 'Texas' }, + { INCITS: '48129', county: 'Donley County', state: 'Texas' }, + { INCITS: '48131', county: 'Duval County', state: 'Texas' }, + { INCITS: '48133', county: 'Eastland County', state: 'Texas' }, + { INCITS: '48135', county: 'Ector County', state: 'Texas' }, + { INCITS: '48137', county: 'Edwards County', state: 'Texas' }, + { INCITS: '48139', county: 'Ellis County', state: 'Texas' }, + { INCITS: '48141', county: 'El Paso County', state: 'Texas' }, + { INCITS: '48143', county: 'Erath County', state: 'Texas' }, + { INCITS: '48145', county: 'Falls County', state: 'Texas' }, + { INCITS: '48147', county: 'Fannin County', state: 'Texas' }, + { INCITS: '48149', county: 'Fayette County', state: 'Texas' }, + { INCITS: '48151', county: 'Fisher County', state: 'Texas' }, + { INCITS: '48153', county: 'Floyd County', state: 'Texas' }, + { INCITS: '48155', county: 'Foard County', state: 'Texas' }, + { INCITS: '48157', county: 'Fort Bend County', state: 'Texas' }, + { INCITS: '48159', county: 'Franklin County', state: 'Texas' }, + { INCITS: '48161', county: 'Freestone County', state: 'Texas' }, + { INCITS: '48163', county: 'Frio County', state: 'Texas' }, + { INCITS: '48165', county: 'Gaines County', state: 'Texas' }, + { INCITS: '48167', county: 'Galveston County', state: 'Texas' }, + { INCITS: '48169', county: 'Garza County', state: 'Texas' }, + { INCITS: '48171', county: 'Gillespie County', state: 'Texas' }, + { INCITS: '48173', county: 'Glasscock County', state: 'Texas' }, + { INCITS: '48175', county: 'Goliad County', state: 'Texas' }, + { INCITS: '48177', county: 'Gonzales County', state: 'Texas' }, + { INCITS: '48179', county: 'Gray County', state: 'Texas' }, + { INCITS: '48181', county: 'Grayson County', state: 'Texas' }, + { INCITS: '48183', county: 'Gregg County', state: 'Texas' }, + { INCITS: '48185', county: 'Grimes County', state: 'Texas' }, + { INCITS: '48187', county: 'Guadalupe County', state: 'Texas' }, + { INCITS: '48189', county: 'Hale County', state: 'Texas' }, + { INCITS: '48191', county: 'Hall County', state: 'Texas' }, + { INCITS: '48193', county: 'Hamilton County', state: 'Texas' }, + { INCITS: '48195', county: 'Hansford County', state: 'Texas' }, + { INCITS: '48197', county: 'Hardeman County', state: 'Texas' }, + { INCITS: '48199', county: 'Hardin County', state: 'Texas' }, + { INCITS: '48201', county: 'Harris County', state: 'Texas' }, + { INCITS: '48203', county: 'Harrison County', state: 'Texas' }, + { INCITS: '48205', county: 'Hartley County', state: 'Texas' }, + { INCITS: '48207', county: 'Haskell County', state: 'Texas' }, + { INCITS: '48209', county: 'Hays County', state: 'Texas' }, + { INCITS: '48211', county: 'Hemphill County', state: 'Texas' }, + { INCITS: '48213', county: 'Henderson County', state: 'Texas' }, + { INCITS: '48215', county: 'Hidalgo County', state: 'Texas' }, + { INCITS: '48217', county: 'Hill County', state: 'Texas' }, + { INCITS: '48219', county: 'Hockley County', state: 'Texas' }, + { INCITS: '48221', county: 'Hood County', state: 'Texas' }, + { INCITS: '48223', county: 'Hopkins County', state: 'Texas' }, + { INCITS: '48225', county: 'Houston County', state: 'Texas' }, + { INCITS: '48227', county: 'Howard County', state: 'Texas' }, + { INCITS: '48229', county: 'Hudspeth County', state: 'Texas' }, + { INCITS: '48231', county: 'Hunt County', state: 'Texas' }, + { INCITS: '48233', county: 'Hutchinson County', state: 'Texas' }, + { INCITS: '48235', county: 'Irion County', state: 'Texas' }, + { INCITS: '48237', county: 'Jack County', state: 'Texas' }, + { INCITS: '48239', county: 'Jackson County', state: 'Texas' }, + { INCITS: '48241', county: 'Jasper County', state: 'Texas' }, + { INCITS: '48243', county: 'Jeff Davis County', state: 'Texas' }, + { INCITS: '48245', county: 'Jefferson County', state: 'Texas' }, + { INCITS: '48247', county: 'Jim Hogg County', state: 'Texas' }, + { INCITS: '48249', county: 'Jim Wells County', state: 'Texas' }, + { INCITS: '48251', county: 'Johnson County', state: 'Texas' }, + { INCITS: '48253', county: 'Jones County', state: 'Texas' }, + { INCITS: '48255', county: 'Karnes County', state: 'Texas' }, + { INCITS: '48257', county: 'Kaufman County', state: 'Texas' }, + { INCITS: '48259', county: 'Kendall County', state: 'Texas' }, + { INCITS: '48261', county: 'Kenedy County', state: 'Texas' }, + { INCITS: '48263', county: 'Kent County', state: 'Texas' }, + { INCITS: '48265', county: 'Kerr County', state: 'Texas' }, + { INCITS: '48267', county: 'Kimble County', state: 'Texas' }, + { INCITS: '48269', county: 'King County', state: 'Texas' }, + { INCITS: '48271', county: 'Kinney County', state: 'Texas' }, + { INCITS: '48273', county: 'Kleberg County', state: 'Texas' }, + { INCITS: '48275', county: 'Knox County', state: 'Texas' }, + { INCITS: '48277', county: 'Lamar County', state: 'Texas' }, + { INCITS: '48279', county: 'Lamb County', state: 'Texas' }, + { INCITS: '48281', county: 'Lampasas County', state: 'Texas' }, + { INCITS: '48283', county: 'La Salle County', state: 'Texas' }, + { INCITS: '48285', county: 'Lavaca County', state: 'Texas' }, + { INCITS: '48287', county: 'Lee County', state: 'Texas' }, + { INCITS: '48289', county: 'Leon County', state: 'Texas' }, + { INCITS: '48291', county: 'Liberty County', state: 'Texas' }, + { INCITS: '48293', county: 'Limestone County', state: 'Texas' }, + { INCITS: '48295', county: 'Lipscomb County', state: 'Texas' }, + { INCITS: '48297', county: 'Live Oak County', state: 'Texas' }, + { INCITS: '48299', county: 'Llano County', state: 'Texas' }, + { INCITS: '48301', county: 'Loving County', state: 'Texas' }, + { INCITS: '48303', county: 'Lubbock County', state: 'Texas' }, + { INCITS: '48305', county: 'Lynn County', state: 'Texas' }, + { INCITS: '48307', county: 'McCulloch County', state: 'Texas' }, + { INCITS: '48309', county: 'McLennan County', state: 'Texas' }, + { INCITS: '48311', county: 'McMullen County', state: 'Texas' }, + { INCITS: '48313', county: 'Madison County', state: 'Texas' }, + { INCITS: '48315', county: 'Marion County', state: 'Texas' }, + { INCITS: '48317', county: 'Martin County', state: 'Texas' }, + { INCITS: '48319', county: 'Mason County', state: 'Texas' }, + { INCITS: '48321', county: 'Matagorda County', state: 'Texas' }, + { INCITS: '48323', county: 'Maverick County', state: 'Texas' }, + { INCITS: '48325', county: 'Medina County', state: 'Texas' }, + { INCITS: '48327', county: 'Menard County', state: 'Texas' }, + { INCITS: '48329', county: 'Midland County', state: 'Texas' }, + { INCITS: '48331', county: 'Milam County', state: 'Texas' }, + { INCITS: '48333', county: 'Mills County', state: 'Texas' }, + { INCITS: '48335', county: 'Mitchell County', state: 'Texas' }, + { INCITS: '48337', county: 'Montague County', state: 'Texas' }, + { INCITS: '48339', county: 'Montgomery County', state: 'Texas' }, + { INCITS: '48341', county: 'Moore County', state: 'Texas' }, + { INCITS: '48343', county: 'Morris County', state: 'Texas' }, + { INCITS: '48345', county: 'Motley County', state: 'Texas' }, + { INCITS: '48347', county: 'Nacogdoches County', state: 'Texas' }, + { INCITS: '48349', county: 'Navarro County', state: 'Texas' }, + { INCITS: '48351', county: 'Newton County', state: 'Texas' }, + { INCITS: '48353', county: 'Nolan County', state: 'Texas' }, + { INCITS: '48355', county: 'Nueces County', state: 'Texas' }, + { INCITS: '48357', county: 'Ochiltree County', state: 'Texas' }, + { INCITS: '48359', county: 'Oldham County', state: 'Texas' }, + { INCITS: '48361', county: 'Orange County', state: 'Texas' }, + { INCITS: '48363', county: 'Palo Pinto County', state: 'Texas' }, + { INCITS: '48365', county: 'Panola County', state: 'Texas' }, + { INCITS: '48367', county: 'Parker County', state: 'Texas' }, + { INCITS: '48369', county: 'Parmer County', state: 'Texas' }, + { INCITS: '48371', county: 'Pecos County', state: 'Texas' }, + { INCITS: '48373', county: 'Polk County', state: 'Texas' }, + { INCITS: '48375', county: 'Potter County', state: 'Texas' }, + { INCITS: '48377', county: 'Presidio County', state: 'Texas' }, + { INCITS: '48379', county: 'Rains County', state: 'Texas' }, + { INCITS: '48381', county: 'Randall County', state: 'Texas' }, + { INCITS: '48383', county: 'Reagan County', state: 'Texas' }, + { INCITS: '48385', county: 'Real County', state: 'Texas' }, + { INCITS: '48387', county: 'Red River County', state: 'Texas' }, + { INCITS: '48389', county: 'Reeves County', state: 'Texas' }, + { INCITS: '48391', county: 'Refugio County', state: 'Texas' }, + { INCITS: '48393', county: 'Roberts County', state: 'Texas' }, + { INCITS: '48395', county: 'Robertson County', state: 'Texas' }, + { INCITS: '48397', county: 'Rockwall County', state: 'Texas' }, + { INCITS: '48399', county: 'Runnels County', state: 'Texas' }, + { INCITS: '48401', county: 'Rusk County', state: 'Texas' }, + { INCITS: '48403', county: 'Sabine County', state: 'Texas' }, + { INCITS: '48405', county: 'San Augustine County', state: 'Texas' }, + { INCITS: '48407', county: 'San Jacinto County', state: 'Texas' }, + { INCITS: '48409', county: 'San Patricio County', state: 'Texas' }, + { INCITS: '48411', county: 'San Saba County', state: 'Texas' }, + { INCITS: '48413', county: 'Schleicher County', state: 'Texas' }, + { INCITS: '48415', county: 'Scurry County', state: 'Texas' }, + { INCITS: '48417', county: 'Shackelford County', state: 'Texas' }, + { INCITS: '48419', county: 'Shelby County', state: 'Texas' }, + { INCITS: '48421', county: 'Sherman County', state: 'Texas' }, + { INCITS: '48423', county: 'Smith County', state: 'Texas' }, + { INCITS: '48425', county: 'Somervell County', state: 'Texas' }, + { INCITS: '48427', county: 'Starr County', state: 'Texas' }, + { INCITS: '48429', county: 'Stephens County', state: 'Texas' }, + { INCITS: '48431', county: 'Sterling County', state: 'Texas' }, + { INCITS: '48433', county: 'Stonewall County', state: 'Texas' }, + { INCITS: '48435', county: 'Sutton County', state: 'Texas' }, + { INCITS: '48437', county: 'Swisher County', state: 'Texas' }, + { INCITS: '48439', county: 'Tarrant County', state: 'Texas' }, + { INCITS: '48441', county: 'Taylor County', state: 'Texas' }, + { INCITS: '48443', county: 'Terrell County', state: 'Texas' }, + { INCITS: '48445', county: 'Terry County', state: 'Texas' }, + { INCITS: '48447', county: 'Throckmorton County', state: 'Texas' }, + { INCITS: '48449', county: 'Titus County', state: 'Texas' }, + { INCITS: '48451', county: 'Tom Green County', state: 'Texas' }, + { INCITS: '48453', county: 'Travis County', state: 'Texas' }, + { INCITS: '48455', county: 'Trinity County', state: 'Texas' }, + { INCITS: '48457', county: 'Tyler County', state: 'Texas' }, + { INCITS: '48459', county: 'Upshur County', state: 'Texas' }, + { INCITS: '48461', county: 'Upton County', state: 'Texas' }, + { INCITS: '48463', county: 'Uvalde County', state: 'Texas' }, + { INCITS: '48465', county: 'Val Verde County', state: 'Texas' }, + { INCITS: '48467', county: 'Van Zandt County', state: 'Texas' }, + { INCITS: '48469', county: 'Victoria County', state: 'Texas' }, + { INCITS: '48471', county: 'Walker County', state: 'Texas' }, + { INCITS: '48473', county: 'Waller County', state: 'Texas' }, + { INCITS: '48475', county: 'Ward County', state: 'Texas' }, + { INCITS: '48477', county: 'Washington County', state: 'Texas' }, + { INCITS: '48479', county: 'Webb County', state: 'Texas' }, + { INCITS: '48481', county: 'Wharton County', state: 'Texas' }, + { INCITS: '48483', county: 'Wheeler County', state: 'Texas' }, + { INCITS: '48485', county: 'Wichita County', state: 'Texas' }, + { INCITS: '48487', county: 'Wilbarger County', state: 'Texas' }, + { INCITS: '48489', county: 'Willacy County', state: 'Texas' }, + { INCITS: '48491', county: 'Williamson County', state: 'Texas' }, + { INCITS: '48493', county: 'Wilson County', state: 'Texas' }, + { INCITS: '48495', county: 'Winkler County', state: 'Texas' }, + { INCITS: '48497', county: 'Wise County', state: 'Texas' }, + { INCITS: '48499', county: 'Wood County', state: 'Texas' }, + { INCITS: '48501', county: 'Yoakum County', state: 'Texas' }, + { INCITS: '48503', county: 'Young County', state: 'Texas' }, + { INCITS: '48505', county: 'Zapata County', state: 'Texas' }, + { INCITS: '48507', county: 'Zavala County', state: 'Texas' }, + { INCITS: '49001', county: 'Beaver County', state: 'Utah' }, + { INCITS: '49003', county: 'Box Elder County', state: 'Utah' }, + { INCITS: '49005', county: 'Cache County', state: 'Utah' }, + { INCITS: '49007', county: 'Carbon County', state: 'Utah' }, + { INCITS: '49009', county: 'Daggett County', state: 'Utah' }, + { INCITS: '49011', county: 'Davis County', state: 'Utah' }, + { INCITS: '49013', county: 'Duchesne County', state: 'Utah' }, + { INCITS: '49015', county: 'Emery County', state: 'Utah' }, + { INCITS: '49017', county: 'Garfield County', state: 'Utah' }, + { INCITS: '49019', county: 'Grand County', state: 'Utah' }, + { INCITS: '49021', county: 'Iron County', state: 'Utah' }, + { INCITS: '49023', county: 'Juab County', state: 'Utah' }, + { INCITS: '49025', county: 'Kane County', state: 'Utah' }, + { INCITS: '49027', county: 'Millard County', state: 'Utah' }, + { INCITS: '49029', county: 'Morgan County', state: 'Utah' }, + { INCITS: '49031', county: 'Piute County', state: 'Utah' }, + { INCITS: '49033', county: 'Rich County', state: 'Utah' }, + { INCITS: '49035', county: 'Salt Lake County', state: 'Utah' }, + { INCITS: '49037', county: 'San Juan County', state: 'Utah' }, + { INCITS: '49039', county: 'Sanpete County', state: 'Utah' }, + { INCITS: '49041', county: 'Sevier County', state: 'Utah' }, + { INCITS: '49043', county: 'Summit County', state: 'Utah' }, + { INCITS: '49045', county: 'Tooele County', state: 'Utah' }, + { INCITS: '49047', county: 'Uintah County', state: 'Utah' }, + { INCITS: '49049', county: 'Utah County', state: 'Utah' }, + { INCITS: '49051', county: 'Wasatch County', state: 'Utah' }, + { INCITS: '49053', county: 'Washington County', state: 'Utah' }, + { INCITS: '49055', county: 'Wayne County', state: 'Utah' }, + { INCITS: '49057', county: 'Weber County', state: 'Utah' }, + { INCITS: '50001', county: 'Addison County', state: 'Vermont' }, + { INCITS: '50003', county: 'Bennington County', state: 'Vermont' }, + { INCITS: '50005', county: 'Caledonia County', state: 'Vermont' }, + { INCITS: '50007', county: 'Chittenden County', state: 'Vermont' }, + { INCITS: '50009', county: 'Essex County', state: 'Vermont' }, + { INCITS: '50011', county: 'Franklin County', state: 'Vermont' }, + { INCITS: '50013', county: 'Grand Isle County', state: 'Vermont' }, + { INCITS: '50015', county: 'Lamoille County', state: 'Vermont' }, + { INCITS: '50017', county: 'Orange County', state: 'Vermont' }, + { INCITS: '50019', county: 'Orleans County', state: 'Vermont' }, + { INCITS: '50021', county: 'Rutland County', state: 'Vermont' }, + { INCITS: '50023', county: 'Washington County', state: 'Vermont' }, + { INCITS: '50025', county: 'Windham County', state: 'Vermont' }, + { INCITS: '50027', county: 'Windsor County', state: 'Vermont' }, + { INCITS: '51001', county: 'Accomack County', state: 'Virginia' }, + { INCITS: '51003', county: 'Albemarle County', state: 'Virginia' }, + { INCITS: '51005', county: 'Alleghany County', state: 'Virginia' }, + { INCITS: '51007', county: 'Amelia County', state: 'Virginia' }, + { INCITS: '51009', county: 'Amherst County', state: 'Virginia' }, + { INCITS: '51011', county: 'Appomattox County', state: 'Virginia' }, + { INCITS: '51013', county: 'Arlington County', state: 'Virginia' }, + { INCITS: '51015', county: 'Augusta County', state: 'Virginia' }, + { INCITS: '51017', county: 'Bath County', state: 'Virginia' }, + { INCITS: '51019', county: 'Bedford County', state: 'Virginia' }, + { INCITS: '51021', county: 'Bland County', state: 'Virginia' }, + { INCITS: '51023', county: 'Botetourt County', state: 'Virginia' }, + { INCITS: '51025', county: 'Brunswick County', state: 'Virginia' }, + { INCITS: '51027', county: 'Buchanan County', state: 'Virginia' }, + { INCITS: '51029', county: 'Buckingham County', state: 'Virginia' }, + { INCITS: '51031', county: 'Campbell County', state: 'Virginia' }, + { INCITS: '51033', county: 'Caroline County', state: 'Virginia' }, + { INCITS: '51035', county: 'Carroll County', state: 'Virginia' }, + { INCITS: '51036', county: 'Charles City County', state: 'Virginia' }, + { INCITS: '51037', county: 'Charlotte County', state: 'Virginia' }, + { INCITS: '51041', county: 'Chesterfield County', state: 'Virginia' }, + { INCITS: '51043', county: 'Clarke County', state: 'Virginia' }, + { INCITS: '51045', county: 'Craig County', state: 'Virginia' }, + { INCITS: '51047', county: 'Culpeper County', state: 'Virginia' }, + { INCITS: '51049', county: 'Cumberland County', state: 'Virginia' }, + { INCITS: '51051', county: 'Dickenson County', state: 'Virginia' }, + { INCITS: '51053', county: 'Dinwiddie County', state: 'Virginia' }, + { INCITS: '51057', county: 'Essex County', state: 'Virginia' }, + { INCITS: '51059', county: 'Fairfax County', state: 'Virginia' }, + { INCITS: '51061', county: 'Fauquier County', state: 'Virginia' }, + { INCITS: '51063', county: 'Floyd County', state: 'Virginia' }, + { INCITS: '51065', county: 'Fluvanna County', state: 'Virginia' }, + { INCITS: '51067', county: 'Franklin County', state: 'Virginia' }, + { INCITS: '51069', county: 'Frederick County', state: 'Virginia' }, + { INCITS: '51071', county: 'Giles County', state: 'Virginia' }, + { INCITS: '51073', county: 'Gloucester County', state: 'Virginia' }, + { INCITS: '51075', county: 'Goochland County', state: 'Virginia' }, + { INCITS: '51077', county: 'Grayson County', state: 'Virginia' }, + { INCITS: '51079', county: 'Greene County', state: 'Virginia' }, + { INCITS: '51081', county: 'Greensville County', state: 'Virginia' }, + { INCITS: '51083', county: 'Halifax County', state: 'Virginia' }, + { INCITS: '51085', county: 'Hanover County', state: 'Virginia' }, + { INCITS: '51087', county: 'Henrico County', state: 'Virginia' }, + { INCITS: '51089', county: 'Henry County', state: 'Virginia' }, + { INCITS: '51091', county: 'Highland County', state: 'Virginia' }, + { INCITS: '51093', county: 'Isle of Wight County', state: 'Virginia' }, + { INCITS: '51095', county: 'James City County', state: 'Virginia' }, + { INCITS: '51097', county: 'King and Queen County', state: 'Virginia' }, + { INCITS: '51099', county: 'King George County', state: 'Virginia' }, + { INCITS: '51101', county: 'King William County', state: 'Virginia' }, + { INCITS: '51103', county: 'Lancaster County', state: 'Virginia' }, + { INCITS: '51105', county: 'Lee County', state: 'Virginia' }, + { INCITS: '51107', county: 'Loudoun County', state: 'Virginia' }, + { INCITS: '51109', county: 'Louisa County', state: 'Virginia' }, + { INCITS: '51111', county: 'Lunenburg County', state: 'Virginia' }, + { INCITS: '51113', county: 'Madison County', state: 'Virginia' }, + { INCITS: '51115', county: 'Mathews County', state: 'Virginia' }, + { INCITS: '51117', county: 'Mecklenburg County', state: 'Virginia' }, + { INCITS: '51119', county: 'Middlesex County', state: 'Virginia' }, + { INCITS: '51121', county: 'Montgomery County', state: 'Virginia' }, + { INCITS: '51125', county: 'Nelson County', state: 'Virginia' }, + { INCITS: '51127', county: 'New Kent County', state: 'Virginia' }, + { INCITS: '51131', county: 'Northampton County', state: 'Virginia' }, + { INCITS: '51133', county: 'Northumberland County', state: 'Virginia' }, + { INCITS: '51135', county: 'Nottoway County', state: 'Virginia' }, + { INCITS: '51137', county: 'Orange County', state: 'Virginia' }, + { INCITS: '51139', county: 'Page County', state: 'Virginia' }, + { INCITS: '51141', county: 'Patrick County', state: 'Virginia' }, + { INCITS: '51143', county: 'Pittsylvania County', state: 'Virginia' }, + { INCITS: '51145', county: 'Powhatan County', state: 'Virginia' }, + { INCITS: '51147', county: 'Prince Edward County', state: 'Virginia' }, + { INCITS: '51149', county: 'Prince George County', state: 'Virginia' }, + { INCITS: '51153', county: 'Prince William County', state: 'Virginia' }, + { INCITS: '51155', county: 'Pulaski County', state: 'Virginia' }, + { INCITS: '51157', county: 'Rappahannock County', state: 'Virginia' }, + { INCITS: '51159', county: 'Richmond County', state: 'Virginia' }, + { INCITS: '51161', county: 'Roanoke County', state: 'Virginia' }, + { INCITS: '51163', county: 'Rockbridge County', state: 'Virginia' }, + { INCITS: '51165', county: 'Rockingham County', state: 'Virginia' }, + { INCITS: '51167', county: 'Russell County', state: 'Virginia' }, + { INCITS: '51169', county: 'Scott County', state: 'Virginia' }, + { INCITS: '51171', county: 'Shenandoah County', state: 'Virginia' }, + { INCITS: '51173', county: 'Smyth County', state: 'Virginia' }, + { INCITS: '51175', county: 'Southampton County', state: 'Virginia' }, + { INCITS: '51177', county: 'Spotsylvania County', state: 'Virginia' }, + { INCITS: '51179', county: 'Stafford County', state: 'Virginia' }, + { INCITS: '51181', county: 'Surry County', state: 'Virginia' }, + { INCITS: '51183', county: 'Sussex County', state: 'Virginia' }, + { INCITS: '51185', county: 'Tazewell County', state: 'Virginia' }, + { INCITS: '51187', county: 'Warren County', state: 'Virginia' }, + { INCITS: '51191', county: 'Washington County', state: 'Virginia' }, + { INCITS: '51193', county: 'Westmoreland County', state: 'Virginia' }, + { INCITS: '51195', county: 'Wise County', state: 'Virginia' }, + { INCITS: '51197', county: 'Wythe County', state: 'Virginia' }, + { INCITS: '51199', county: 'York County', state: 'Virginia' }, + { INCITS: '51510', county: 'Alexandria, City of[23]', state: 'Virginia' }, + { INCITS: '51520', county: 'Bristol, City of[23]', state: 'Virginia' }, + { INCITS: '51530', county: 'Buena Vista, City of[23]', state: 'Virginia' }, + { INCITS: '51540', county: 'Charlottesville, City of[23]', state: 'Virginia' }, + { INCITS: '51550', county: 'Chesapeake, City of[23]', state: 'Virginia' }, + { INCITS: '51570', county: 'Colonial Heights, City of[23]', state: 'Virginia' }, + { INCITS: '51580', county: 'Covington, City of[23]', state: 'Virginia' }, + { INCITS: '51590', county: 'Danville, City of[23]', state: 'Virginia' }, + { INCITS: '51595', county: 'Emporia, City of[23]', state: 'Virginia' }, + { INCITS: '51600', county: 'Fairfax, City of[23]', state: 'Virginia' }, + { INCITS: '51610', county: 'Falls Church, City of[23]', state: 'Virginia' }, + { INCITS: '51620', county: 'Franklin, City of[23]', state: 'Virginia' }, + { INCITS: '51630', county: 'Fredericksburg, City of[23]', state: 'Virginia' }, + { INCITS: '51640', county: 'Galax, City of[23]', state: 'Virginia' }, + { INCITS: '51650', county: 'Hampton, City of[23]', state: 'Virginia' }, + { INCITS: '51660', county: 'Harrisonburg, City of[23]', state: 'Virginia' }, + { INCITS: '51670', county: 'Hopewell, City of[23]', state: 'Virginia' }, + { INCITS: '51678', county: 'Lexington, City of[23]', state: 'Virginia' }, + { INCITS: '51680', county: 'Lynchburg, City of[23]', state: 'Virginia' }, + { INCITS: '51683', county: 'Manassas, City of[23]', state: 'Virginia' }, + { INCITS: '51685', county: 'Manassas Park, City of[23]', state: 'Virginia' }, + { INCITS: '51690', county: 'Martinsville, City of[23]', state: 'Virginia' }, + { INCITS: '51700', county: 'Newport News, City of[23]', state: 'Virginia' }, + { INCITS: '51710', county: 'Norfolk, City of[23]', state: 'Virginia' }, + { INCITS: '51720', county: 'Norton, City of[23]', state: 'Virginia' }, + { INCITS: '51730', county: 'Petersburg, City of[23]', state: 'Virginia' }, + { INCITS: '51735', county: 'Poquoson, City of[23]', state: 'Virginia' }, + { INCITS: '51740', county: 'Portsmouth, City of[23]', state: 'Virginia' }, + { INCITS: '51750', county: 'Radford, City of[23]', state: 'Virginia' }, + { INCITS: '51760', county: 'Richmond, City of[23]', state: 'Virginia' }, + { INCITS: '51770', county: 'Roanoke, City of[23]', state: 'Virginia' }, + { INCITS: '51775', county: 'Salem, City of[23]', state: 'Virginia' }, + { INCITS: '51790', county: 'Staunton, City of[23]', state: 'Virginia' }, + { INCITS: '51800', county: 'Suffolk, City of[23]', state: 'Virginia' }, + { INCITS: '51810', county: 'Virginia Beach, City of[23]', state: 'Virginia' }, + { INCITS: '51820', county: 'Waynesboro, City of[23]', state: 'Virginia' }, + { INCITS: '51830', county: 'Williamsburg, City of[23]', state: 'Virginia' }, + { INCITS: '51840', county: 'Winchester, City of[23]', state: 'Virginia' }, + { INCITS: '53001', county: 'Adams County', state: 'Washington' }, + { INCITS: '53003', county: 'Asotin County', state: 'Washington' }, + { INCITS: '53005', county: 'Benton County', state: 'Washington' }, + { INCITS: '53007', county: 'Chelan County', state: 'Washington' }, + { INCITS: '53009', county: 'Clallam County', state: 'Washington' }, + { INCITS: '53011', county: 'Clark County', state: 'Washington' }, + { INCITS: '53013', county: 'Columbia County', state: 'Washington' }, + { INCITS: '53015', county: 'Cowlitz County', state: 'Washington' }, + { INCITS: '53017', county: 'Douglas County', state: 'Washington' }, + { INCITS: '53019', county: 'Ferry County', state: 'Washington' }, + { INCITS: '53021', county: 'Franklin County', state: 'Washington' }, + { INCITS: '53023', county: 'Garfield County', state: 'Washington' }, + { INCITS: '53025', county: 'Grant County', state: 'Washington' }, + { INCITS: '53027', county: 'Grays Harbor County', state: 'Washington' }, + { INCITS: '53029', county: 'Island County', state: 'Washington' }, + { INCITS: '53031', county: 'Jefferson County', state: 'Washington' }, + { INCITS: '53033', county: 'King County', state: 'Washington' }, + { INCITS: '53035', county: 'Kitsap County', state: 'Washington' }, + { INCITS: '53037', county: 'Kittitas County', state: 'Washington' }, + { INCITS: '53039', county: 'Klickitat County', state: 'Washington' }, + { INCITS: '53041', county: 'Lewis County', state: 'Washington' }, + { INCITS: '53043', county: 'Lincoln County', state: 'Washington' }, + { INCITS: '53045', county: 'Mason County', state: 'Washington' }, + { INCITS: '53047', county: 'Okanogan County', state: 'Washington' }, + { INCITS: '53049', county: 'Pacific County', state: 'Washington' }, + { INCITS: '53051', county: 'Pend Oreille County', state: 'Washington' }, + { INCITS: '53053', county: 'Pierce County', state: 'Washington' }, + { INCITS: '53055', county: 'San Juan County', state: 'Washington' }, + { INCITS: '53057', county: 'Skagit County', state: 'Washington' }, + { INCITS: '53059', county: 'Skamania County', state: 'Washington' }, + { INCITS: '53061', county: 'Snohomish County', state: 'Washington' }, + { INCITS: '53063', county: 'Spokane County', state: 'Washington' }, + { INCITS: '53065', county: 'Stevens County', state: 'Washington' }, + { INCITS: '53067', county: 'Thurston County', state: 'Washington' }, + { INCITS: '53069', county: 'Wahkiakum County', state: 'Washington' }, + { INCITS: '53071', county: 'Walla Walla County', state: 'Washington' }, + { INCITS: '53073', county: 'Whatcom County', state: 'Washington' }, + { INCITS: '53075', county: 'Whitman County', state: 'Washington' }, + { INCITS: '53077', county: 'Yakima County', state: 'Washington' }, + { INCITS: '54001', county: 'Barbour County', state: 'West Virginia' }, + { INCITS: '54003', county: 'Berkeley County', state: 'West Virginia' }, + { INCITS: '54005', county: 'Boone County', state: 'West Virginia' }, + { INCITS: '54007', county: 'Braxton County', state: 'West Virginia' }, + { INCITS: '54009', county: 'Brooke County', state: 'West Virginia' }, + { INCITS: '54011', county: 'Cabell County', state: 'West Virginia' }, + { INCITS: '54013', county: 'Calhoun County', state: 'West Virginia' }, + { INCITS: '54015', county: 'Clay County', state: 'West Virginia' }, + { INCITS: '54017', county: 'Doddridge County', state: 'West Virginia' }, + { INCITS: '54019', county: 'Fayette County', state: 'West Virginia' }, + { INCITS: '54021', county: 'Gilmer County', state: 'West Virginia' }, + { INCITS: '54023', county: 'Grant County', state: 'West Virginia' }, + { INCITS: '54025', county: 'Greenbrier County', state: 'West Virginia' }, + { INCITS: '54027', county: 'Hampshire County', state: 'West Virginia' }, + { INCITS: '54029', county: 'Hancock County', state: 'West Virginia' }, + { INCITS: '54031', county: 'Hardy County', state: 'West Virginia' }, + { INCITS: '54033', county: 'Harrison County', state: 'West Virginia' }, + { INCITS: '54035', county: 'Jackson County', state: 'West Virginia' }, + { INCITS: '54037', county: 'Jefferson County', state: 'West Virginia' }, + { INCITS: '54039', county: 'Kanawha County', state: 'West Virginia' }, + { INCITS: '54041', county: 'Lewis County', state: 'West Virginia' }, + { INCITS: '54043', county: 'Lincoln County', state: 'West Virginia' }, + { INCITS: '54045', county: 'Logan County', state: 'West Virginia' }, + { INCITS: '54047', county: 'McDowell County', state: 'West Virginia' }, + { INCITS: '54049', county: 'Marion County', state: 'West Virginia' }, + { INCITS: '54051', county: 'Marshall County', state: 'West Virginia' }, + { INCITS: '54053', county: 'Mason County', state: 'West Virginia' }, + { INCITS: '54055', county: 'Mercer County', state: 'West Virginia' }, + { INCITS: '54057', county: 'Mineral County', state: 'West Virginia' }, + { INCITS: '54059', county: 'Mingo County', state: 'West Virginia' }, + { INCITS: '54061', county: 'Monongalia County', state: 'West Virginia' }, + { INCITS: '54063', county: 'Monroe County', state: 'West Virginia' }, + { INCITS: '54065', county: 'Morgan County', state: 'West Virginia' }, + { INCITS: '54067', county: 'Nicholas County', state: 'West Virginia' }, + { INCITS: '54069', county: 'Ohio County', state: 'West Virginia' }, + { INCITS: '54071', county: 'Pendleton County', state: 'West Virginia' }, + { INCITS: '54073', county: 'Pleasants County', state: 'West Virginia' }, + { INCITS: '54075', county: 'Pocahontas County', state: 'West Virginia' }, + { INCITS: '54077', county: 'Preston County', state: 'West Virginia' }, + { INCITS: '54079', county: 'Putnam County', state: 'West Virginia' }, + { INCITS: '54081', county: 'Raleigh County', state: 'West Virginia' }, + { INCITS: '54083', county: 'Randolph County', state: 'West Virginia' }, + { INCITS: '54085', county: 'Ritchie County', state: 'West Virginia' }, + { INCITS: '54087', county: 'Roane County', state: 'West Virginia' }, + { INCITS: '54089', county: 'Summers County', state: 'West Virginia' }, + { INCITS: '54091', county: 'Taylor County', state: 'West Virginia' }, + { INCITS: '54093', county: 'Tucker County', state: 'West Virginia' }, + { INCITS: '54095', county: 'Tyler County', state: 'West Virginia' }, + { INCITS: '54097', county: 'Upshur County', state: 'West Virginia' }, + { INCITS: '54099', county: 'Wayne County', state: 'West Virginia' }, + { INCITS: '54101', county: 'Webster County', state: 'West Virginia' }, + { INCITS: '54103', county: 'Wetzel County', state: 'West Virginia' }, + { INCITS: '54105', county: 'Wirt County', state: 'West Virginia' }, + { INCITS: '54107', county: 'Wood County', state: 'West Virginia' }, + { INCITS: '54109', county: 'Wyoming County', state: 'West Virginia' }, + { INCITS: '55001', county: 'Adams County', state: 'Wisconsin' }, + { INCITS: '55003', county: 'Ashland County', state: 'Wisconsin' }, + { INCITS: '55005', county: 'Barron County', state: 'Wisconsin' }, + { INCITS: '55007', county: 'Bayfield County', state: 'Wisconsin' }, + { INCITS: '55009', county: 'Brown County', state: 'Wisconsin' }, + { INCITS: '55011', county: 'Buffalo County', state: 'Wisconsin' }, + { INCITS: '55013', county: 'Burnett County', state: 'Wisconsin' }, + { INCITS: '55015', county: 'Calumet County', state: 'Wisconsin' }, + { INCITS: '55017', county: 'Chippewa County', state: 'Wisconsin' }, + { INCITS: '55019', county: 'Clark County', state: 'Wisconsin' }, + { INCITS: '55021', county: 'Columbia County', state: 'Wisconsin' }, + { INCITS: '55023', county: 'Crawford County', state: 'Wisconsin' }, + { INCITS: '55025', county: 'Dane County', state: 'Wisconsin' }, + { INCITS: '55027', county: 'Dodge County', state: 'Wisconsin' }, + { INCITS: '55029', county: 'Door County', state: 'Wisconsin' }, + { INCITS: '55031', county: 'Douglas County', state: 'Wisconsin' }, + { INCITS: '55033', county: 'Dunn County', state: 'Wisconsin' }, + { INCITS: '55035', county: 'Eau Claire County', state: 'Wisconsin' }, + { INCITS: '55037', county: 'Florence County', state: 'Wisconsin' }, + { INCITS: '55039', county: 'Fond du Lac County', state: 'Wisconsin' }, + { INCITS: '55041', county: 'Forest County', state: 'Wisconsin' }, + { INCITS: '55043', county: 'Grant County', state: 'Wisconsin' }, + { INCITS: '55045', county: 'Green County', state: 'Wisconsin' }, + { INCITS: '55047', county: 'Green Lake County', state: 'Wisconsin' }, + { INCITS: '55049', county: 'Iowa County', state: 'Wisconsin' }, + { INCITS: '55051', county: 'Iron County', state: 'Wisconsin' }, + { INCITS: '55053', county: 'Jackson County', state: 'Wisconsin' }, + { INCITS: '55055', county: 'Jefferson County', state: 'Wisconsin' }, + { INCITS: '55057', county: 'Juneau County', state: 'Wisconsin' }, + { INCITS: '55059', county: 'Kenosha County', state: 'Wisconsin' }, + { INCITS: '55061', county: 'Kewaunee County', state: 'Wisconsin' }, + { INCITS: '55063', county: 'La Crosse County', state: 'Wisconsin' }, + { INCITS: '55065', county: 'Lafayette County', state: 'Wisconsin' }, + { INCITS: '55067', county: 'Langlade County', state: 'Wisconsin' }, + { INCITS: '55069', county: 'Lincoln County', state: 'Wisconsin' }, + { INCITS: '55071', county: 'Manitowoc County', state: 'Wisconsin' }, + { INCITS: '55073', county: 'Marathon County', state: 'Wisconsin' }, + { INCITS: '55075', county: 'Marinette County', state: 'Wisconsin' }, + { INCITS: '55077', county: 'Marquette County', state: 'Wisconsin' }, + { INCITS: '55078', county: 'Menominee County', state: 'Wisconsin' }, + { INCITS: '55079', county: 'Milwaukee County', state: 'Wisconsin' }, + { INCITS: '55081', county: 'Monroe County', state: 'Wisconsin' }, + { INCITS: '55083', county: 'Oconto County', state: 'Wisconsin' }, + { INCITS: '55085', county: 'Oneida County', state: 'Wisconsin' }, + { INCITS: '55087', county: 'Outagamie County', state: 'Wisconsin' }, + { INCITS: '55089', county: 'Ozaukee County', state: 'Wisconsin' }, + { INCITS: '55091', county: 'Pepin County', state: 'Wisconsin' }, + { INCITS: '55093', county: 'Pierce County', state: 'Wisconsin' }, + { INCITS: '55095', county: 'Polk County', state: 'Wisconsin' }, + { INCITS: '55097', county: 'Portage County', state: 'Wisconsin' }, + { INCITS: '55099', county: 'Price County', state: 'Wisconsin' }, + { INCITS: '55101', county: 'Racine County', state: 'Wisconsin' }, + { INCITS: '55103', county: 'Richland County', state: 'Wisconsin' }, + { INCITS: '55105', county: 'Rock County', state: 'Wisconsin' }, + { INCITS: '55107', county: 'Rusk County', state: 'Wisconsin' }, + { INCITS: '55109', county: 'St. Croix County', state: 'Wisconsin' }, + { INCITS: '55111', county: 'Sauk County', state: 'Wisconsin' }, + { INCITS: '55113', county: 'Sawyer County', state: 'Wisconsin' }, + { INCITS: '55115', county: 'Shawano County', state: 'Wisconsin' }, + { INCITS: '55117', county: 'Sheboygan County', state: 'Wisconsin' }, + { INCITS: '55119', county: 'Taylor County', state: 'Wisconsin' }, + { INCITS: '55121', county: 'Trempealeau County', state: 'Wisconsin' }, + { INCITS: '55123', county: 'Vernon County', state: 'Wisconsin' }, + { INCITS: '55125', county: 'Vilas County', state: 'Wisconsin' }, + { INCITS: '55127', county: 'Walworth County', state: 'Wisconsin' }, + { INCITS: '55129', county: 'Washburn County', state: 'Wisconsin' }, + { INCITS: '55131', county: 'Washington County', state: 'Wisconsin' }, + { INCITS: '55133', county: 'Waukesha County', state: 'Wisconsin' }, + { INCITS: '55135', county: 'Waupaca County', state: 'Wisconsin' }, + { INCITS: '55137', county: 'Waushara County', state: 'Wisconsin' }, + { INCITS: '55139', county: 'Winnebago County', state: 'Wisconsin' }, + { INCITS: '55141', county: 'Wood County', state: 'Wisconsin' }, + { INCITS: '56001', county: 'Albany County', state: 'Wyoming' }, + { INCITS: '56003', county: 'Big Horn County', state: 'Wyoming' }, + { INCITS: '56005', county: 'Campbell County', state: 'Wyoming' }, + { INCITS: '56007', county: 'Carbon County', state: 'Wyoming' }, + { INCITS: '56009', county: 'Converse County', state: 'Wyoming' }, + { INCITS: '56011', county: 'Crook County', state: 'Wyoming' }, + { INCITS: '56013', county: 'Fremont County', state: 'Wyoming' }, + { INCITS: '56015', county: 'Goshen County', state: 'Wyoming' }, + { INCITS: '56017', county: 'Hot Springs County', state: 'Wyoming' }, + { INCITS: '56019', county: 'Johnson County', state: 'Wyoming' }, + { INCITS: '56021', county: 'Laramie County', state: 'Wyoming' }, + { INCITS: '56023', county: 'Lincoln County', state: 'Wyoming' }, + { INCITS: '56025', county: 'Natrona County', state: 'Wyoming' }, + { INCITS: '56027', county: 'Niobrara County', state: 'Wyoming' }, + { INCITS: '56029', county: 'Park County', state: 'Wyoming' }, + { INCITS: '56031', county: 'Platte County', state: 'Wyoming' }, + { INCITS: '56033', county: 'Sheridan County', state: 'Wyoming' }, + { INCITS: '56035', county: 'Sublette County', state: 'Wyoming' }, + { INCITS: '56037', county: 'Sweetwater County', state: 'Wyoming' }, + { INCITS: '56039', county: 'Teton County', state: 'Wyoming' }, + { INCITS: '56041', county: 'Uinta County', state: 'Wyoming' }, + { INCITS: '56043', county: 'Washakie County', state: 'Wyoming' }, + { INCITS: '56045', county: 'Weston County', state: 'Wyoming' } +] + +export default { states, counties } diff --git a/yarn.lock b/yarn.lock index f922792..653d664 100644 --- a/yarn.lock +++ b/yarn.lock @@ -469,7 +469,7 @@ babel-messages@^6.22.0, babel-messages@^6.23.0: dependencies: babel-runtime "^6.22.0" -babel-plugin-check-es2015-constants@^6.3.13: +babel-plugin-check-es2015-constants@^6.22.0, babel-plugin-check-es2015-constants@^6.3.13: version "6.22.0" resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" dependencies: @@ -603,19 +603,19 @@ babel-plugin-transform-do-expressions@^6.3.13: babel-plugin-syntax-do-expressions "^6.8.0" babel-runtime "^6.22.0" -babel-plugin-transform-es2015-arrow-functions@^6.3.13: +babel-plugin-transform-es2015-arrow-functions@^6.22.0, babel-plugin-transform-es2015-arrow-functions@^6.3.13: version "6.22.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" dependencies: babel-runtime "^6.22.0" -babel-plugin-transform-es2015-block-scoped-functions@^6.3.13: +babel-plugin-transform-es2015-block-scoped-functions@^6.22.0, babel-plugin-transform-es2015-block-scoped-functions@^6.3.13: version "6.22.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" dependencies: babel-runtime "^6.22.0" -babel-plugin-transform-es2015-block-scoping@^6.6.0: +babel-plugin-transform-es2015-block-scoping@^6.23.0, babel-plugin-transform-es2015-block-scoping@^6.6.0: version "6.23.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.23.0.tgz#e48895cf0b375be148cd7c8879b422707a053b51" dependencies: @@ -625,7 +625,7 @@ babel-plugin-transform-es2015-block-scoping@^6.6.0: babel-types "^6.23.0" lodash "^4.2.0" -babel-plugin-transform-es2015-classes@^6.6.0: +babel-plugin-transform-es2015-classes@^6.23.0, babel-plugin-transform-es2015-classes@^6.6.0: version "6.23.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.23.0.tgz#49b53f326202a2fd1b3bbaa5e2edd8a4f78643c1" dependencies: @@ -639,33 +639,33 @@ babel-plugin-transform-es2015-classes@^6.6.0: babel-traverse "^6.23.0" babel-types "^6.23.0" -babel-plugin-transform-es2015-computed-properties@^6.3.13: +babel-plugin-transform-es2015-computed-properties@^6.22.0, babel-plugin-transform-es2015-computed-properties@^6.3.13: version "6.22.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.22.0.tgz#7c383e9629bba4820c11b0425bdd6290f7f057e7" dependencies: babel-runtime "^6.22.0" babel-template "^6.22.0" -babel-plugin-transform-es2015-destructuring@^6.6.0: +babel-plugin-transform-es2015-destructuring@^6.23.0, babel-plugin-transform-es2015-destructuring@^6.6.0: version "6.23.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" dependencies: babel-runtime "^6.22.0" -babel-plugin-transform-es2015-duplicate-keys@^6.6.0: +babel-plugin-transform-es2015-duplicate-keys@^6.22.0, babel-plugin-transform-es2015-duplicate-keys@^6.6.0: version "6.22.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.22.0.tgz#672397031c21610d72dd2bbb0ba9fb6277e1c36b" dependencies: babel-runtime "^6.22.0" babel-types "^6.22.0" -babel-plugin-transform-es2015-for-of@^6.6.0: +babel-plugin-transform-es2015-for-of@^6.23.0, babel-plugin-transform-es2015-for-of@^6.6.0: version "6.23.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" dependencies: babel-runtime "^6.22.0" -babel-plugin-transform-es2015-function-name@^6.3.13: +babel-plugin-transform-es2015-function-name@^6.22.0, babel-plugin-transform-es2015-function-name@^6.3.13: version "6.22.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.22.0.tgz#f5fcc8b09093f9a23c76ac3d9e392c3ec4b77104" dependencies: @@ -673,13 +673,13 @@ babel-plugin-transform-es2015-function-name@^6.3.13: babel-runtime "^6.22.0" babel-types "^6.22.0" -babel-plugin-transform-es2015-literals@^6.3.13: +babel-plugin-transform-es2015-literals@^6.22.0, babel-plugin-transform-es2015-literals@^6.3.13: version "6.22.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" dependencies: babel-runtime "^6.22.0" -babel-plugin-transform-es2015-modules-amd@^6.24.0, babel-plugin-transform-es2015-modules-amd@^6.8.0: +babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.0, babel-plugin-transform-es2015-modules-amd@^6.8.0: version "6.24.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.0.tgz#a1911fb9b7ec7e05a43a63c5995007557bcf6a2e" dependencies: @@ -687,7 +687,7 @@ babel-plugin-transform-es2015-modules-amd@^6.24.0, babel-plugin-transform-es2015 babel-runtime "^6.22.0" babel-template "^6.22.0" -babel-plugin-transform-es2015-modules-commonjs@^6.24.0, babel-plugin-transform-es2015-modules-commonjs@^6.6.0: +babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.0, babel-plugin-transform-es2015-modules-commonjs@^6.6.0: version "6.24.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.24.0.tgz#e921aefb72c2cc26cb03d107626156413222134f" dependencies: @@ -696,7 +696,7 @@ babel-plugin-transform-es2015-modules-commonjs@^6.24.0, babel-plugin-transform-e babel-template "^6.23.0" babel-types "^6.23.0" -babel-plugin-transform-es2015-modules-systemjs@^6.12.0: +babel-plugin-transform-es2015-modules-systemjs@^6.12.0, babel-plugin-transform-es2015-modules-systemjs@^6.23.0: version "6.23.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.23.0.tgz#ae3469227ffac39b0310d90fec73bfdc4f6317b0" dependencies: @@ -704,7 +704,7 @@ babel-plugin-transform-es2015-modules-systemjs@^6.12.0: babel-runtime "^6.22.0" babel-template "^6.23.0" -babel-plugin-transform-es2015-modules-umd@^6.12.0: +babel-plugin-transform-es2015-modules-umd@^6.12.0, babel-plugin-transform-es2015-modules-umd@^6.23.0: version "6.24.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.0.tgz#fd5fa63521cae8d273927c3958afd7c067733450" dependencies: @@ -712,14 +712,14 @@ babel-plugin-transform-es2015-modules-umd@^6.12.0: babel-runtime "^6.22.0" babel-template "^6.23.0" -babel-plugin-transform-es2015-object-super@^6.3.13: +babel-plugin-transform-es2015-object-super@^6.22.0, babel-plugin-transform-es2015-object-super@^6.3.13: version "6.22.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.22.0.tgz#daa60e114a042ea769dd53fe528fc82311eb98fc" dependencies: babel-helper-replace-supers "^6.22.0" babel-runtime "^6.22.0" -babel-plugin-transform-es2015-parameters@^6.6.0: +babel-plugin-transform-es2015-parameters@^6.23.0, babel-plugin-transform-es2015-parameters@^6.6.0: version "6.23.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.23.0.tgz#3a2aabb70c8af945d5ce386f1a4250625a83ae3b" dependencies: @@ -730,20 +730,20 @@ babel-plugin-transform-es2015-parameters@^6.6.0: babel-traverse "^6.23.0" babel-types "^6.23.0" -babel-plugin-transform-es2015-shorthand-properties@^6.3.13: +babel-plugin-transform-es2015-shorthand-properties@^6.22.0, babel-plugin-transform-es2015-shorthand-properties@^6.3.13: version "6.22.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.22.0.tgz#8ba776e0affaa60bff21e921403b8a652a2ff723" dependencies: babel-runtime "^6.22.0" babel-types "^6.22.0" -babel-plugin-transform-es2015-spread@^6.3.13: +babel-plugin-transform-es2015-spread@^6.22.0, babel-plugin-transform-es2015-spread@^6.3.13: version "6.22.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" dependencies: babel-runtime "^6.22.0" -babel-plugin-transform-es2015-sticky-regex@^6.3.13: +babel-plugin-transform-es2015-sticky-regex@^6.22.0, babel-plugin-transform-es2015-sticky-regex@^6.3.13: version "6.22.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.22.0.tgz#ab316829e866ee3f4b9eb96939757d19a5bc4593" dependencies: @@ -751,19 +751,19 @@ babel-plugin-transform-es2015-sticky-regex@^6.3.13: babel-runtime "^6.22.0" babel-types "^6.22.0" -babel-plugin-transform-es2015-template-literals@^6.6.0: +babel-plugin-transform-es2015-template-literals@^6.22.0, babel-plugin-transform-es2015-template-literals@^6.6.0: version "6.22.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" dependencies: babel-runtime "^6.22.0" -babel-plugin-transform-es2015-typeof-symbol@^6.6.0: +babel-plugin-transform-es2015-typeof-symbol@^6.23.0, babel-plugin-transform-es2015-typeof-symbol@^6.6.0: version "6.23.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" dependencies: babel-runtime "^6.22.0" -babel-plugin-transform-es2015-unicode-regex@^6.3.13: +babel-plugin-transform-es2015-unicode-regex@^6.22.0, babel-plugin-transform-es2015-unicode-regex@^6.3.13: version "6.22.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.22.0.tgz#8d9cc27e7ee1decfe65454fb986452a04a613d20" dependencies: @@ -862,7 +862,7 @@ babel-plugin-transform-react-jsx@^6.22.0, babel-plugin-transform-react-jsx@^6.3. babel-plugin-syntax-jsx "^6.8.0" babel-runtime "^6.22.0" -babel-plugin-transform-regenerator@6.22.0, babel-plugin-transform-regenerator@^6.6.0: +babel-plugin-transform-regenerator@6.22.0, babel-plugin-transform-regenerator@^6.22.0, babel-plugin-transform-regenerator@^6.6.0: version "6.22.0" resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.22.0.tgz#65740593a319c44522157538d690b84094617ea6" dependencies: @@ -881,7 +881,7 @@ babel-plugin-transform-strict-mode@^6.22.0: babel-runtime "^6.22.0" babel-types "^6.22.0" -babel-preset-env@1.2.1, babel-preset-env@^1.2.1: +babel-preset-env@1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.2.1.tgz#659178f54df74a74765f796be4d290b5beeb3f5f" dependencies: @@ -916,6 +916,41 @@ babel-preset-env@1.2.1, babel-preset-env@^1.2.1: electron-to-chromium "^1.1.0" invariant "^2.2.2" +babel-preset-env@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.2.2.tgz#1dbc4d7f8a575691d301f45fa9b2f9698b1e3b92" + dependencies: + babel-plugin-check-es2015-constants "^6.22.0" + babel-plugin-syntax-trailing-function-commas "^6.22.0" + babel-plugin-transform-async-to-generator "^6.22.0" + babel-plugin-transform-es2015-arrow-functions "^6.22.0" + babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" + babel-plugin-transform-es2015-block-scoping "^6.23.0" + babel-plugin-transform-es2015-classes "^6.23.0" + babel-plugin-transform-es2015-computed-properties "^6.22.0" + babel-plugin-transform-es2015-destructuring "^6.23.0" + babel-plugin-transform-es2015-duplicate-keys "^6.22.0" + babel-plugin-transform-es2015-for-of "^6.23.0" + babel-plugin-transform-es2015-function-name "^6.22.0" + babel-plugin-transform-es2015-literals "^6.22.0" + babel-plugin-transform-es2015-modules-amd "^6.22.0" + babel-plugin-transform-es2015-modules-commonjs "^6.23.0" + babel-plugin-transform-es2015-modules-systemjs "^6.23.0" + babel-plugin-transform-es2015-modules-umd "^6.23.0" + babel-plugin-transform-es2015-object-super "^6.22.0" + babel-plugin-transform-es2015-parameters "^6.23.0" + babel-plugin-transform-es2015-shorthand-properties "^6.22.0" + babel-plugin-transform-es2015-spread "^6.22.0" + babel-plugin-transform-es2015-sticky-regex "^6.22.0" + babel-plugin-transform-es2015-template-literals "^6.22.0" + babel-plugin-transform-es2015-typeof-symbol "^6.23.0" + babel-plugin-transform-es2015-unicode-regex "^6.22.0" + babel-plugin-transform-exponentiation-operator "^6.22.0" + babel-plugin-transform-regenerator "^6.22.0" + browserslist "^1.4.0" + electron-to-chromium "^1.2.6" + invariant "^2.2.2" + babel-preset-jest@^18.0.0: version "18.0.0" resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-18.0.0.tgz#84faf8ca3ec65aba7d5e3f59bbaed935ab24049e" @@ -1454,7 +1489,7 @@ concat-map@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" -concat-stream@^1.4.6: +concat-stream@^1.4.6, concat-stream@^1.5.2: version "1.6.0" resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" dependencies: @@ -1795,6 +1830,13 @@ doctrine@^1.2.2: esutils "^2.0.2" isarray "^1.0.0" +doctrine@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.0.0.tgz#c73d8d2909d22291e1a007a395804da8b665fe63" + dependencies: + esutils "^2.0.2" + isarray "^1.0.0" + dom-converter@~0.1: version "0.1.4" resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.1.4.tgz#a45ef5727b890c9bffe6d7c876e7b19cb0e17f3b" @@ -1863,9 +1905,9 @@ ee-first@1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" -electron-to-chromium@^1.1.0, electron-to-chromium@^1.2.5: - version "1.2.5" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.2.5.tgz#d373727228843dfd8466c276089f13b40927a952" +electron-to-chromium@^1.1.0, electron-to-chromium@^1.2.5, electron-to-chromium@^1.2.6: + version "1.2.7" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.2.7.tgz#4f748061407e478c76256d04496972b71f647407" emoji-regex@^6.1.0: version "6.1.0" @@ -1897,9 +1939,9 @@ entities@^1.1.1, entities@~1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0" -enzyme@^2.7.1: - version "2.7.1" - resolved "https://registry.yarnpkg.com/enzyme/-/enzyme-2.7.1.tgz#76370e1d99e91f73091bb8c4314b7c128cc2d621" +enzyme@^2.8.0: + version "2.8.0" + resolved "https://registry.yarnpkg.com/enzyme/-/enzyme-2.8.0.tgz#86cc1fc96e5cbd7695766dd6e89deb13a0aead51" dependencies: cheerio "^0.22.0" function.prototype.name "^1.0.0" @@ -2028,9 +2070,9 @@ eslint-config-standard-jsx@3.3.0: version "3.3.0" resolved "https://registry.yarnpkg.com/eslint-config-standard-jsx/-/eslint-config-standard-jsx-3.3.0.tgz#cab0801a15a360bf63facb97ab22fbdd88d8a5e0" -eslint-config-standard@7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-7.0.1.tgz#6cec96084de9ac862c33ccb953d13a7c59872342" +eslint-config-standard@7.1.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-7.1.0.tgz#47e769ea0739f5b2d5693b1a501c21c9650fafcf" eslint-import-resolver-node@^0.2.0: version "0.2.3" @@ -2149,17 +2191,18 @@ eslint@3.16.1: text-table "~0.2.0" user-home "^2.0.0" -eslint@~3.15.0: - version "3.15.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.15.0.tgz#bdcc6a6c5ffe08160e7b93c066695362a91e30f2" +eslint@~3.18.0: + version "3.18.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-3.18.0.tgz#647e985c4ae71502d20ac62c109f66d5104c8a4b" dependencies: babel-code-frame "^6.16.0" chalk "^1.1.3" - concat-stream "^1.4.6" + concat-stream "^1.5.2" debug "^2.1.1" - doctrine "^1.2.2" + doctrine "^2.0.0" escope "^3.6.0" espree "^3.4.0" + esquery "^1.0.0" estraverse "^4.2.0" esutils "^2.0.2" file-entry-cache "^2.0.0" @@ -2207,6 +2250,12 @@ esprima@~3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.0.0.tgz#53cf247acda77313e551c3aa2e73342d3fb4f7d9" +esquery@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.0.tgz#cfba8b57d7fba93f17298a8a006a04cda13d80fa" + dependencies: + estraverse "^4.0.0" + esrecurse@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.1.0.tgz#4713b6536adf7f2ac4f327d559e7756bff648220" @@ -2218,7 +2267,7 @@ estraverse@^1.9.1: version "1.9.3" resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-1.9.3.tgz#af67f2dc922582415950926091a4005d29c9bb44" -estraverse@^4.1.1, estraverse@^4.2.0: +estraverse@^4.0.0, estraverse@^4.1.1, estraverse@^4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" @@ -5421,12 +5470,12 @@ standard-engine@~5.4.0: minimist "^1.1.0" pkg-conf "^2.0.0" -standard@^9.0.1: - version "9.0.1" - resolved "https://registry.yarnpkg.com/standard/-/standard-9.0.1.tgz#c053e9009bb1a8b4c6b03bf12df4784185bb5899" +standard@^9.0.2: + version "9.0.2" + resolved "https://registry.yarnpkg.com/standard/-/standard-9.0.2.tgz#9bd3b9467492e212b1914d78553943ff9b48fd99" dependencies: - eslint "~3.15.0" - eslint-config-standard "7.0.1" + eslint "~3.18.0" + eslint-config-standard "7.1.0" eslint-config-standard-jsx "3.3.0" eslint-plugin-promise "~3.4.0" eslint-plugin-react "~6.9.0"