+
export type MockDataObject = {
- [K in keyof ApiOutput[P]]?: ApiOutput[P][K] | ((input: ApiInput[P][K]) => ApiOutput[P][K])
+ [K in keyof ApiOutput[P]]?: MockOutput
}
export type MockHandlerObject
= {
[K in keyof ApiOutput[P]]?: HttpHandler
}
+
+export type MockAPIHandler = (
+ input: ApiInput[K1][K2]
+) => Promisable
+
+type MockOutput =
+ | ApiOutput[K1][K2]
+ | MockAPIHandler
diff --git a/packages/ui/lib/trpcResponse.ts b/packages/ui/lib/trpcResponse.ts
index 50f77042c4..b03fee1e72 100644
--- a/packages/ui/lib/trpcResponse.ts
+++ b/packages/ui/lib/trpcResponse.ts
@@ -1,5 +1,6 @@
import { action } from '@storybook/addon-actions'
import prettyBytes from 'pretty-bytes'
+import { type Promisable } from 'type-fest'
import { type ApiInput, type ApiOutput } from '@weareinreach/api'
import { getHTTPStatusCodeFromError, TRPC_ERROR_CODES_BY_KEY } from '@weareinreach/api/errorTypes'
@@ -33,7 +34,7 @@ export type RpcErrorResponse = {
export const jsonRpcSuccessResponse = <
K1 extends keyof ApiInput,
K2 extends keyof ApiInput[K1],
- T extends ApiOutput[K1][K2] | ((input: ApiInput[K1][K2]) => ApiOutput[K1][K2]),
+ T extends ApiOutput[K1][K2] | ((input: ApiInput[K1][K2]) => Promisable),
>(
path: [K1, K2],
data: T
diff --git a/packages/ui/mockData/fieldOpt.ts b/packages/ui/mockData/fieldOpt.ts
index 41edc16684..ddc7134d63 100644
--- a/packages/ui/mockData/fieldOpt.ts
+++ b/packages/ui/mockData/fieldOpt.ts
@@ -1,5308 +1,51 @@
import { z } from 'zod'
-// import fs from 'fs'
-// import path from 'path'
-import { type ApiInput, type ApiOutput } from '@weareinreach/api'
-import { getTRPCMock } from '~ui/lib/getTrpcMock'
+import { type ApiOutput } from '@weareinreach/api'
+import { getTRPCMock, type MockAPIHandler } from '~ui/lib/getTrpcMock'
-import countryGovDistMapData from './json/countryGovDistMap.json'
-
-export const attributeCategories = [
- {
- id: 'attc_01GW2HHFV3DJ380F351SKB0B74',
- tag: 'additional-information',
- name: 'Additional Information',
- icon: null,
- intDesc: 'Misc',
- },
- {
- id: 'attc_01GXS3AYEER4CCSX670S9Z84EB',
- tag: 'alerts',
- name: 'Alerts',
- icon: null,
- intDesc: 'Alert messages',
- },
- {
- id: 'attc_01GW2HHFVFKNMYPN8F86M0H576',
- tag: 'cost',
- name: 'Cost',
- icon: null,
- intDesc: null,
- },
- {
- id: 'attc_01GW2HHFVGHPW1Y72SA8377623',
- tag: 'eligibility-requirements',
- name: 'Eligibility Requirements',
- icon: null,
- intDesc: null,
- },
- {
- id: 'attc_01GW2HHFVJQQ68XGSBXM976BDF',
- tag: 'languages',
- name: 'Languages',
- icon: null,
- intDesc: null,
- },
- {
- id: 'attc_01GW2HHFVRSN3W3GYZZ43WCW24',
- tag: 'law-practice-options',
- name: 'Law Practice Options',
- icon: null,
- intDesc: null,
- },
- {
- id: 'attc_01GW2HHFVMNHV2ZS5875JWCRJ7',
- tag: 'organization-leadership',
- name: 'Organization Leadership',
- icon: null,
- intDesc: null,
- },
- {
- id: 'attc_01GW2HHFVKAMMGPD71H90XRJ38',
- tag: 'service-access-instructions',
- name: 'Service Access Instructions',
- icon: null,
- intDesc: null,
- },
- {
- id: 'attc_01GW2HHFVNXMNJNV47BF2BPM1R',
- tag: 'service-focus',
- name: 'Service Focus',
- icon: null,
- intDesc: null,
- },
- {
- id: 'attc_01GW2HHFVSQWE2Y2RF3DT2VEYX',
- tag: 'service-provider-options',
- name: 'Service Provider Options',
- icon: null,
- intDesc: null,
- },
- {
- id: 'attc_01GW2HHFVKM2PSHFWVFM0TWX1P',
- tag: 'system',
- name: 'System',
- icon: null,
- intDesc: null,
- },
-] satisfies ApiOutput['fieldOpt']['attributeCategories']
-
-export const queryAttributeCategories = (query: ApiInput['fieldOpt']['attributeCategories']) => {
- if (Array.isArray(query)) {
- return attributeCategories.filter(({ tag }) => query.includes(tag))
- }
- return attributeCategories
-}
-
-export const attributesByCategory = [
- {
- categoryId: 'attc_01GW2HHFV3DJ380F351SKB0B74',
- categoryName: 'additional-information',
- categoryDisplay: 'Additional Information',
- attributeId: 'attr_01GW2HHFV3YJ2AWADHVKG79BQ0',
- attributeName: 'at-capacity',
- attributeKey: 'additional.at-capacity',
- attributeNs: 'attribute',
- badgeRender: 'ATTRIBUTE',
- requireText: false,
- requireLanguage: false,
- requireGeo: true,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFV3DJ380F351SKB0B74',
- categoryName: 'additional-information',
- categoryDisplay: 'Additional Information',
- attributeId: 'attr_01GW2HHFV4D5ZHFMAE7852GB4P',
- attributeName: 'geo-near-public-transit',
- attributeKey: 'additional.geo-near-public-transit',
- attributeNs: 'attribute',
- badgeRender: 'ATTRIBUTE',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFV3DJ380F351SKB0B74',
- categoryName: 'additional-information',
- categoryDisplay: 'Additional Information',
- attributeId: 'attr_01GW2HHFV48VQJBMFA05QCBBV9',
- attributeName: 'geo-public-transit-description',
- attributeKey: 'additional.geo-public-transit-description',
- attributeNs: 'attribute',
- badgeRender: 'ATTRIBUTE',
- requireText: true,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFV3DJ380F351SKB0B74',
- categoryName: 'additional-information',
- categoryDisplay: 'Additional Information',
- attributeId: 'attr_01GW2HHFV3BADK80TG0DXXFPMM',
- attributeName: 'has-confidentiality-policy',
- attributeKey: 'additional.has-confidentiality-policy',
- attributeNs: 'attribute',
- badgeRender: 'ATTRIBUTE',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFV3DJ380F351SKB0B74',
- categoryName: 'additional-information',
- categoryDisplay: 'Additional Information',
- attributeId: 'attr_01GW2HHFV5Q7XN2ZNTYFR1AD3M',
- attributeName: 'offers-remote-services',
- attributeKey: 'additional.offers-remote-services',
- attributeNs: 'attribute',
- icon: 'carbon:globe',
- badgeRender: 'ATTRIBUTE',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFV3DJ380F351SKB0B74',
- categoryName: 'additional-information',
- categoryDisplay: 'Additional Information',
- attributeId: 'attr_01GW2HHFV4TM7H5V6FHWA7S9JK',
- attributeName: 'time-walk-in',
- attributeKey: 'additional.time-walk-in',
- attributeNs: 'attribute',
- badgeRender: 'ATTRIBUTE',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFV3DJ380F351SKB0B74',
- categoryName: 'additional-information',
- categoryDisplay: 'Additional Information',
- attributeId: 'attr_01GW2HHFV5FYXQNGTPAQB7G2TF',
- attributeName: 'wheelchair-accessible',
- attributeKey: 'additional.wheelchair-accessible',
- attributeNs: 'attribute',
- interpolationValues: {
- true: 'Accessible',
- false: 'Not Accessible',
- },
- icon: 'carbon:accessibility',
- badgeRender: 'ATTRIBUTE',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: true,
- requireData: false,
- },
- {
- categoryId: 'attc_01GXS3AYEER4CCSX670S9Z84EB',
- categoryName: 'alerts',
- categoryDisplay: 'Alerts',
- attributeId: 'attr_01GXS3AYESEMT09DW78G5X396D',
- attributeName: 'info',
- attributeKey: 'alerts.info',
- attributeNs: 'attribute',
- icon: 'carbon:information-filled',
- requireText: true,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GXS3AYEER4CCSX670S9Z84EB',
- categoryName: 'alerts',
- categoryDisplay: 'Alerts',
- attributeId: 'attr_01GXS3AYF9A67KMYVED2ZFG25G',
- attributeName: 'warn',
- attributeKey: 'alerts.warn',
- attributeNs: 'attribute',
- icon: 'carbon:warning-filled',
- requireText: true,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVFKNMYPN8F86M0H576',
- categoryName: 'cost',
- categoryDisplay: 'Cost',
- attributeId: 'attr_01GW2HHFVGWKWB53HWAAHQ9AAZ',
- attributeName: 'cost-fees',
- attributeKey: 'cost.cost-fees',
- attributeNs: 'attribute',
- icon: 'carbon:piggy-bank',
- badgeRender: 'ATTRIBUTE',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: true,
- dataSchemaName: 'numMinMaxOrRange',
- dataSchema: {
- anyOf: [
- {
- type: 'object',
- required: ['min'],
- properties: {
- min: {
- type: 'number',
- },
- },
- },
- {
- type: 'object',
- required: ['max'],
- properties: {
- max: {
- type: 'number',
- },
- },
- },
- {
- type: 'object',
- required: ['min', 'max'],
- properties: {
- max: {
- type: 'number',
- },
- min: {
- type: 'number',
- },
- },
- },
- ],
- $schema: 'http://json-schema.org/draft-07/schema#',
- },
- },
- {
- categoryId: 'attc_01GW2HHFVFKNMYPN8F86M0H576',
- categoryName: 'cost',
- categoryDisplay: 'Cost',
- attributeId: 'attr_01GW2HHFVGDTNW9PDQNXK6TF1T',
- attributeName: 'cost-free',
- attributeKey: 'cost.cost-free',
- attributeNs: 'attribute',
- icon: 'carbon:piggy-bank',
- badgeRender: 'ATTRIBUTE',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVGHPW1Y72SA8377623',
- categoryName: 'eligibility-requirements',
- categoryDisplay: 'Eligibility Requirements',
- attributeId: 'attr_01GW2HHFVGSAZXGR4JAVHEK6ZC',
- attributeName: 'elig-age',
- attributeKey: 'eligibility.elig-age',
- attributeNs: 'attribute',
- interpolationValues: {
- max: 'Under {{max}}',
- min: '{{min}} and older',
- range: '{{min}} - {{max}}',
- },
- badgeRender: 'LIST',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: true,
- dataSchemaName: 'numMinMaxOrRange',
- dataSchema: {
- anyOf: [
- {
- type: 'object',
- required: ['min'],
- properties: {
- min: {
- type: 'number',
- },
- },
- },
- {
- type: 'object',
- required: ['max'],
- properties: {
- max: {
- type: 'number',
- },
- },
- },
- {
- type: 'object',
- required: ['min', 'max'],
- properties: {
- max: {
- type: 'number',
- },
- min: {
- type: 'number',
- },
- },
- },
- ],
- $schema: 'http://json-schema.org/draft-07/schema#',
- },
- },
- {
- categoryId: 'attc_01GW2HHFVGHPW1Y72SA8377623',
- categoryName: 'eligibility-requirements',
- categoryDisplay: 'Eligibility Requirements',
- attributeId: 'attr_01GW2HHFVJDKVF1HV7559CNZCY',
- attributeName: 'other-describe',
- attributeKey: 'eligibility.other-describe',
- attributeNs: 'attribute',
- badgeRender: 'LIST',
- requireText: true,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVGHPW1Y72SA8377623',
- categoryName: 'eligibility-requirements',
- categoryDisplay: 'Eligibility Requirements',
- attributeId: 'attr_01GW2HHFVH9DPBZ968VXGE50E7',
- attributeName: 'req-medical-insurance',
- attributeKey: 'eligibility.req-medical-insurance',
- attributeNs: 'attribute',
- badgeRender: 'LIST',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVGHPW1Y72SA8377623',
- categoryName: 'eligibility-requirements',
- categoryDisplay: 'Eligibility Requirements',
- attributeId: 'attr_01GW2HHFVHZ599M48CMSPGDCSC',
- attributeName: 'req-photo-id',
- attributeKey: 'eligibility.req-photo-id',
- attributeNs: 'attribute',
- badgeRender: 'LIST',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVGHPW1Y72SA8377623',
- categoryName: 'eligibility-requirements',
- categoryDisplay: 'Eligibility Requirements',
- attributeId: 'attr_01GW2HHFVH0GQK0GAJR5D952V3',
- attributeName: 'req-proof-of-age',
- attributeKey: 'eligibility.req-proof-of-age',
- attributeNs: 'attribute',
- badgeRender: 'LIST',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVGHPW1Y72SA8377623',
- categoryName: 'eligibility-requirements',
- categoryDisplay: 'Eligibility Requirements',
- attributeId: 'attr_01GW2HHFVHEVX4PMNN077ASQMG',
- attributeName: 'req-proof-of-income',
- attributeKey: 'eligibility.req-proof-of-income',
- attributeNs: 'attribute',
- badgeRender: 'LIST',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVGHPW1Y72SA8377623',
- categoryName: 'eligibility-requirements',
- categoryDisplay: 'Eligibility Requirements',
- attributeId: 'attr_01GW2HHFVHGMVCAY1G5BWF1PFB',
- attributeName: 'req-proof-of-residence',
- attributeKey: 'eligibility.req-proof-of-residence',
- attributeNs: 'attribute',
- badgeRender: 'LIST',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVGHPW1Y72SA8377623',
- categoryName: 'eligibility-requirements',
- categoryDisplay: 'Eligibility Requirements',
- attributeId: 'attr_01GW2HHFVJH8MADHYTHBV54CER',
- attributeName: 'req-referral',
- attributeKey: 'eligibility.req-referral',
- attributeNs: 'attribute',
- badgeRender: 'LIST',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVGHPW1Y72SA8377623',
- categoryName: 'eligibility-requirements',
- categoryDisplay: 'Eligibility Requirements',
- attributeId: 'attr_01GW2HHFVGJ5GD2WHNJDPSFNRW',
- attributeName: 'time-appointment-required',
- attributeKey: 'eligibility.time-appointment-required',
- attributeNs: 'attribute',
- badgeRender: 'LIST',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVJQQ68XGSBXM976BDF',
- categoryName: 'languages',
- categoryDisplay: 'Languages',
- attributeId: 'attr_01GW2HHFVJGDDWTR5D0C8BY357',
- attributeName: 'all-languages-by-interpreter',
- attributeKey: 'lang.all-languages-by-interpreter',
- attributeNs: 'attribute',
- badgeRender: 'LIST',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVJQQ68XGSBXM976BDF',
- categoryName: 'languages',
- categoryDisplay: 'Languages',
- attributeId: 'attr_01GW2HHFVJF09GXY5N5CKMSANJ',
- attributeName: 'american-sign-language',
- attributeKey: 'lang.american-sign-language',
- attributeNs: 'attribute',
- badgeRender: 'LIST',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVJQQ68XGSBXM976BDF',
- categoryName: 'languages',
- categoryDisplay: 'Languages',
- attributeId: 'attr_01GW2HHFVJ8K180CNX339BTXM2',
- attributeName: 'lang-offered',
- attributeKey: 'lang.lang-offered',
- attributeNs: 'attribute',
- badgeRender: 'LIST',
- requireText: false,
- requireLanguage: true,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVRSN3W3GYZZ43WCW24',
- categoryName: 'law-practice-options',
- categoryDisplay: 'Law Practice Options',
- attributeId: 'attr_01GW2HHFVRH531R2HAV8DMDZSC',
- attributeName: 'corp-law-firm',
- attributeKey: 'userlawpractice.corp-law-firm',
- attributeNs: 'attribute',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVRSN3W3GYZZ43WCW24',
- categoryName: 'law-practice-options',
- categoryDisplay: 'Law Practice Options',
- attributeId: 'attr_01GW2HHFVSE2074QZJ4SKEW74J',
- attributeName: 'law-other',
- attributeKey: 'userlawpractice.law-other',
- attributeNs: 'attribute',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: true,
- dataSchemaName: 'otherDescribe',
- dataSchema: {
- type: 'object',
- $schema: 'http://json-schema.org/draft-07/schema#',
- required: ['other'],
- properties: {
- other: {
- type: 'string',
- },
- },
- },
- },
- {
- categoryId: 'attc_01GW2HHFVRSN3W3GYZZ43WCW24',
- categoryName: 'law-practice-options',
- categoryDisplay: 'Law Practice Options',
- attributeId: 'attr_01GW2HHFVRS8XEJ3TJBBEQJ707',
- attributeName: 'law-school-clinic',
- attributeKey: 'userlawpractice.law-school-clinic',
- attributeNs: 'attribute',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVRSN3W3GYZZ43WCW24',
- categoryName: 'law-practice-options',
- categoryDisplay: 'Law Practice Options',
- attributeId: 'attr_01GW2HHFVRFPRQCQHNJA6BM3XP',
- attributeName: 'legal-nonprofit',
- attributeKey: 'userlawpractice.legal-nonprofit',
- attributeNs: 'attribute',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVMNHV2ZS5875JWCRJ7',
- categoryName: 'organization-leadership',
- categoryDisplay: 'Organization Leadership',
- attributeId: 'attr_01GW2HHFVNPKMHYK12DDRVC1VJ',
- attributeName: 'bipoc-led',
- attributeKey: 'orgleader.bipoc-led',
- attributeNs: 'attribute',
- icon: '🤎',
- iconBg: '#F1DD7F',
- badgeRender: 'LEADER',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVMNHV2ZS5875JWCRJ7',
- categoryName: 'organization-leadership',
- categoryDisplay: 'Organization Leadership',
- attributeId: 'attr_01GW2HHFVN3JX2J7REFFT5NAMS',
- attributeName: 'black-led',
- attributeKey: 'orgleader.black-led',
- attributeNs: 'attribute',
- icon: '️️✊🏿',
- iconBg: '#C77E54',
- badgeRender: 'LEADER',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVMNHV2ZS5875JWCRJ7',
- categoryName: 'organization-leadership',
- categoryDisplay: 'Organization Leadership',
- attributeId: 'attr_01GW2HHFVNHMF72WHVKRF6W4TA',
- attributeName: 'immigrant-led',
- attributeKey: 'orgleader.immigrant-led',
- attributeNs: 'attribute',
- icon: '️️🌎',
- iconBg: '#79ADD7',
- badgeRender: 'LEADER',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVMNHV2ZS5875JWCRJ7',
- categoryName: 'organization-leadership',
- categoryDisplay: 'Organization Leadership',
- attributeId: 'attr_01GW2HHFVN3RYX9JMXDZSQZM70',
- attributeName: 'trans-led',
- attributeKey: 'orgleader.trans-led',
- attributeNs: 'attribute',
- icon: '️🏳️⚧️',
- iconBg: '#D4A1BA',
- badgeRender: 'LEADER',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVKAMMGPD71H90XRJ38',
- categoryName: 'service-access-instructions',
- categoryDisplay: 'Service Access Instructions',
- attributeId: 'attr_01GW2HHFVKFM4TDY4QRK4AR2ZW',
- attributeName: 'accessemail',
- attributeKey: 'serviceaccess.accessemail',
- attributeNs: 'attribute',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: true,
- dataSchemaName: 'accessInstructions',
- dataSchema: {
- type: 'object',
- $schema: 'http://json-schema.org/draft-07/schema#',
- required: ['access_type', 'instructions'],
- properties: {
- access_type: {
- enum: ['email', 'file', 'link', 'location', 'other', 'phone'],
- type: 'string',
- },
- access_value: {
- type: ['string', 'null'],
- },
- instructions: {
- type: 'string',
- },
- },
- },
- },
- {
- categoryId: 'attc_01GW2HHFVKAMMGPD71H90XRJ38',
- categoryName: 'service-access-instructions',
- categoryDisplay: 'Service Access Instructions',
- attributeId: 'attr_01GW2HHFVKMRHFD8SMDAZM3SSM',
- attributeName: 'accessfile',
- attributeKey: 'serviceaccess.accessfile',
- attributeNs: 'attribute',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: true,
- dataSchemaName: 'accessInstructions',
- dataSchema: {
- type: 'object',
- $schema: 'http://json-schema.org/draft-07/schema#',
- required: ['access_type', 'instructions'],
- properties: {
- access_type: {
- enum: ['email', 'file', 'link', 'location', 'other', 'phone'],
- type: 'string',
- },
- access_value: {
- type: ['string', 'null'],
- },
- instructions: {
- type: 'string',
- },
- },
- },
- },
- {
- categoryId: 'attc_01GW2HHFVKAMMGPD71H90XRJ38',
- categoryName: 'service-access-instructions',
- categoryDisplay: 'Service Access Instructions',
- attributeId: 'attr_01GW2HHFVMYXMS8ARA3GE7HZFD',
- attributeName: 'accesslink',
- attributeKey: 'serviceaccess.accesslink',
- attributeNs: 'attribute',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: true,
- dataSchemaName: 'accessInstructions',
- dataSchema: {
- type: 'object',
- $schema: 'http://json-schema.org/draft-07/schema#',
- required: ['access_type', 'instructions'],
- properties: {
- access_type: {
- enum: ['email', 'file', 'link', 'location', 'other', 'phone'],
- type: 'string',
- },
- access_value: {
- type: ['string', 'null'],
- },
- instructions: {
- type: 'string',
- },
- },
- },
- },
- {
- categoryId: 'attc_01GW2HHFVKAMMGPD71H90XRJ38',
- categoryName: 'service-access-instructions',
- categoryDisplay: 'Service Access Instructions',
- attributeId: 'attr_01GW2HHFVMH6AE94EXN7T5A87C',
- attributeName: 'accesslocation',
- attributeKey: 'serviceaccess.accesslocation',
- attributeNs: 'attribute',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: true,
- dataSchemaName: 'accessInstructions',
- dataSchema: {
- type: 'object',
- $schema: 'http://json-schema.org/draft-07/schema#',
- required: ['access_type', 'instructions'],
- properties: {
- access_type: {
- enum: ['email', 'file', 'link', 'location', 'other', 'phone'],
- type: 'string',
- },
- access_value: {
- type: ['string', 'null'],
- },
- instructions: {
- type: 'string',
- },
- },
- },
- },
- {
- categoryId: 'attc_01GW2HHFVKAMMGPD71H90XRJ38',
- categoryName: 'service-access-instructions',
- categoryDisplay: 'Service Access Instructions',
- attributeId: 'attr_01GW2HHFVMKTFWCKBVVFJ5GMY0',
- attributeName: 'accessphone',
- attributeKey: 'serviceaccess.accessphone',
- attributeNs: 'attribute',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: true,
- dataSchemaName: 'accessInstructions',
- dataSchema: {
- type: 'object',
- $schema: 'http://json-schema.org/draft-07/schema#',
- required: ['access_type', 'instructions'],
- properties: {
- access_type: {
- enum: ['email', 'file', 'link', 'location', 'other', 'phone'],
- type: 'string',
- },
- access_value: {
- type: ['string', 'null'],
- },
- instructions: {
- type: 'string',
- },
- },
- },
- },
- {
- categoryId: 'attc_01GW2HHFVKAMMGPD71H90XRJ38',
- categoryName: 'service-access-instructions',
- categoryDisplay: 'Service Access Instructions',
- attributeId: 'attr_01GW2HHFVMSX7T1WDNZ5QEHKWT',
- attributeName: 'accesspublictransit',
- attributeKey: 'serviceaccess.accesspublictransit',
- attributeNs: 'attribute',
- requireText: true,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVKAMMGPD71H90XRJ38',
- categoryName: 'service-access-instructions',
- categoryDisplay: 'Service Access Instructions',
- attributeId: 'attr_01GW2HHFVMMF19AX2KPBTMV6P3',
- attributeName: 'accesstext',
- attributeKey: 'serviceaccess.accesstext',
- attributeNs: 'attribute',
- requireText: true,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVNXMNJNV47BF2BPM1R',
- categoryName: 'service-focus',
- categoryDisplay: 'Service Focus',
- attributeId: 'attr_01GW2HHFVPCVX8F3B7M30ZJEHW',
- attributeName: 'asylum-seekers',
- attributeKey: 'srvfocus.asylum-seekers',
- attributeNs: 'attribute',
- icon: '️️🌎',
- badgeRender: 'COMMUNITY',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVNXMNJNV47BF2BPM1R',
- categoryName: 'service-focus',
- categoryDisplay: 'Service Focus',
- attributeId: 'attr_01GW2HHFVN72D7XEBZZJXCJQXQ',
- attributeName: 'bipoc-comm',
- attributeKey: 'srvfocus.bipoc-comm',
- attributeNs: 'attribute',
- icon: '️️✊🏿',
- badgeRender: 'COMMUNITY',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVNXMNJNV47BF2BPM1R',
- categoryName: 'service-focus',
- categoryDisplay: 'Service Focus',
- attributeId: 'attr_01GW2HHFVQ7SYGD3KM8WP9X50B',
- attributeName: 'gender-nc',
- attributeKey: 'srvfocus.gender-nc',
- attributeNs: 'attribute',
- icon: '🏳️⚧️',
- badgeRender: 'COMMUNITY',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVNXMNJNV47BF2BPM1R',
- categoryName: 'service-focus',
- categoryDisplay: 'Service Focus',
- attributeId: 'attr_01GW2HHFVRMQFJ9AMA633SQQGV',
- attributeName: 'hiv-comm',
- attributeKey: 'srvfocus.hiv-comm',
- attributeNs: 'attribute',
- icon: '💛',
- badgeRender: 'COMMUNITY',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVNXMNJNV47BF2BPM1R',
- categoryName: 'service-focus',
- categoryDisplay: 'Service Focus',
- attributeId: 'attr_01GW2HHFVPTK9555WHJHDBDA2J',
- attributeName: 'immigrant-comm',
- attributeKey: 'srvfocus.immigrant-comm',
- attributeNs: 'attribute',
- icon: '️️🌎',
- badgeRender: 'COMMUNITY',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVNXMNJNV47BF2BPM1R',
- categoryName: 'service-focus',
- categoryDisplay: 'Service Focus',
- attributeId: 'attr_01GW2HHFVQCZPA3Z5GW6J3MQHW',
- attributeName: 'lgbtq-youth-focus',
- attributeKey: 'srvfocus.lgbtq-youth-focus',
- attributeNs: 'attribute',
- icon: '🌱',
- badgeRender: 'COMMUNITY',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVNXMNJNV47BF2BPM1R',
- categoryName: 'service-focus',
- categoryDisplay: 'Service Focus',
- attributeId: 'attr_01GW2HHFVPJERY0GS9D7F56A23',
- attributeName: 'resettled-refugees',
- attributeKey: 'srvfocus.resettled-refugees',
- attributeNs: 'attribute',
- icon: '️️🌎',
- badgeRender: 'COMMUNITY',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVNXMNJNV47BF2BPM1R',
- categoryName: 'service-focus',
- categoryDisplay: 'Service Focus',
- attributeId: 'attr_01GW2HHFVQ8AGBKBBZJWTHNP2F',
- attributeName: 'spanish-speakers',
- attributeKey: 'srvfocus.spanish-speakers',
- attributeNs: 'attribute',
- icon: '🗣️',
- badgeRender: 'COMMUNITY',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVNXMNJNV47BF2BPM1R',
- categoryName: 'service-focus',
- categoryDisplay: 'Service Focus',
- attributeId: 'attr_01GW2HHFVPSYBCYF37B44WP6CZ',
- attributeName: 'trans-comm',
- attributeKey: 'srvfocus.trans-comm',
- attributeNs: 'attribute',
- icon: '🏳️⚧️',
- badgeRender: 'COMMUNITY',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVNXMNJNV47BF2BPM1R',
- categoryName: 'service-focus',
- categoryDisplay: 'Service Focus',
- attributeId: 'attr_01GW2HHFVQX4M8DY1FSAYSJSSK',
- attributeName: 'trans-fem',
- attributeKey: 'srvfocus.trans-fem',
- attributeNs: 'attribute',
- icon: '🏳️⚧️',
- badgeRender: 'COMMUNITY',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVNXMNJNV47BF2BPM1R',
- categoryName: 'service-focus',
- categoryDisplay: 'Service Focus',
- attributeId: 'attr_01GW2HHFVQEFWW42MBAD64BWXZ',
- attributeName: 'trans-masc',
- attributeKey: 'srvfocus.trans-masc',
- attributeNs: 'attribute',
- icon: '🏳️⚧️',
- badgeRender: 'COMMUNITY',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVNXMNJNV47BF2BPM1R',
- categoryName: 'service-focus',
- categoryDisplay: 'Service Focus',
- attributeId: 'attr_01GW2HHFVQVEGH6W3A2ANH1QZE',
- attributeName: 'trans-youth-focus',
- attributeKey: 'srvfocus.trans-youth-focus',
- attributeNs: 'attribute',
- icon: '🌱',
- badgeRender: 'COMMUNITY',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVSQWE2Y2RF3DT2VEYX',
- categoryName: 'service-provider-options',
- categoryDisplay: 'Service Provider Options',
- attributeId: 'attr_01GW2HHFVTMFN73X6NVR0M9BZJ',
- attributeName: 'friend-family',
- attributeKey: 'userserviceprovider.friend-family',
- attributeNs: 'attribute',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVSQWE2Y2RF3DT2VEYX',
- categoryName: 'service-provider-options',
- categoryDisplay: 'Service Provider Options',
- attributeId: 'attr_01GW2HHFVSVSBFQ700RMJ19BVH',
- attributeName: 'govt-agency',
- attributeKey: 'userserviceprovider.govt-agency',
- attributeNs: 'attribute',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVSQWE2Y2RF3DT2VEYX',
- categoryName: 'service-provider-options',
- categoryDisplay: 'Service Provider Options',
- attributeId: 'attr_01GW2HHFVTMVQ7W2X26ZRK81FR',
- attributeName: 'grassroots-direct',
- attributeKey: 'userserviceprovider.grassroots-direct',
- attributeNs: 'attribute',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVSQWE2Y2RF3DT2VEYX',
- categoryName: 'service-provider-options',
- categoryDisplay: 'Service Provider Options',
- attributeId: 'attr_01GW2HHFVSPXWJJPFG9DKXESEK',
- attributeName: 'healthcare',
- attributeKey: 'userserviceprovider.healthcare',
- attributeNs: 'attribute',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVSQWE2Y2RF3DT2VEYX',
- categoryName: 'service-provider-options',
- categoryDisplay: 'Service Provider Options',
- attributeId: 'attr_01GW2HHFVTTZ83PZR61M37R8R7',
- attributeName: 'nonprofit',
- attributeKey: 'userserviceprovider.nonprofit',
- attributeNs: 'attribute',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVSQWE2Y2RF3DT2VEYX',
- categoryName: 'service-provider-options',
- categoryDisplay: 'Service Provider Options',
- attributeId: 'attr_01GW2HHFVTN6MSCMBW740Y7HN1',
- attributeName: 'student-club',
- attributeKey: 'userserviceprovider.student-club',
- attributeNs: 'attribute',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: false,
- },
- {
- categoryId: 'attc_01GW2HHFVKM2PSHFWVFM0TWX1P',
- categoryName: 'system',
- categoryDisplay: 'System',
- attributeId: 'attr_01GW2HHFVK8KPRGKYFSSM5ECPQ',
- attributeName: 'incompatible-info',
- attributeKey: 'sys.incompatible-info',
- attributeNs: 'attribute',
- requireText: false,
- requireLanguage: false,
- requireGeo: false,
- requireBoolean: false,
- requireData: true,
- dataSchemaName: 'incompatible',
- dataSchema: {
- type: 'array',
- items: {
- type: 'object',
- additionalProperties: {},
- },
- $schema: 'http://json-schema.org/draft-07/schema#',
- },
- },
-] satisfies ApiOutput['fieldOpt']['attributesByCategory']
-
-export const queryAttributesByCategory = (query: ApiInput['fieldOpt']['attributesByCategory']) => {
- if (typeof query === 'string' || Array.isArray(query)) {
- return attributesByCategory.filter(({ categoryName }) =>
- Array.isArray(query) ? query.includes(categoryName) : query === categoryName
- )
- }
- return attributesByCategory
-}
-
-export const languages = [
- {
- id: 'lang_0000000000WH4DPN294SH38EHC',
- languageName: 'Abkhaz',
- localeCode: 'ab',
- iso6392: 'abk',
- nativeName: 'Аҧсуа бызшәа',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000AXPPG7DMRN1M3Y5G',
- languageName: 'Afar',
- localeCode: 'aa',
- iso6392: 'aar',
- nativeName: 'Afaraf',
- activelyTranslated: false,
- },
- {
- id: 'lang_00000000007VSYVVDRT6Z937TX',
- languageName: 'Afrikaans',
- localeCode: 'af',
- iso6392: 'afr',
- nativeName: 'Afrikaans',
- activelyTranslated: false,
- },
- {
- id: 'lang_00000000002R5Q3J4T0D4M6HXR',
- languageName: 'Akan',
- localeCode: 'ak',
- iso6392: 'aka',
- nativeName: 'Akan',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000JT1NJJ63AFVGQKHD',
- languageName: 'Albanian',
- localeCode: 'sq',
- iso6392: 'sqi',
- nativeName: 'Shqip',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000WHMAGNXW3EGP7872',
- languageName: 'Amharic',
- localeCode: 'am',
- iso6392: 'amh',
- nativeName: 'አማርኛ',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000X3DNJBKJ7JZJTWS3',
- languageName: 'Arabic',
- localeCode: 'ar',
- iso6392: 'ara',
- nativeName: 'اللغة العربية',
- activelyTranslated: true,
- },
- {
- id: 'lang_000000000019SR1A8P2JMJ6YYQ',
- languageName: 'Aragonese',
- localeCode: 'an',
- iso6392: 'arg',
- nativeName: 'Aragonés',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000202PV6ES5R39AFVY',
- languageName: 'Armenian',
- localeCode: 'hy',
- iso6392: 'hye',
- nativeName: 'Հայերեն',
- activelyTranslated: false,
- },
- {
- id: 'lang_00000000001BWSKVSXCHZ7K2HE',
- languageName: 'Assamese',
- localeCode: 'as',
- iso6392: 'asm',
- nativeName: 'অসমীয়া',
- activelyTranslated: false,
- },
- {
- id: 'lang_00000000008E08JNQ3ZP3YG1ZC',
- languageName: 'Avaric',
- localeCode: 'av',
- iso6392: 'ava',
- nativeName: 'Авар мацӏ',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000KRK9VK1E505KQ0XS',
- languageName: 'Avestan',
- localeCode: 'ae',
- iso6392: 'ave',
- nativeName: 'Avesta',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000NYQKCEVXZEPJNKCK',
- languageName: 'Aymara',
- localeCode: 'ay',
- iso6392: 'aym',
- nativeName: 'Aymar aru',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000QHV6RS0AJSKY9W0Q',
- languageName: 'Azerbaijani',
- localeCode: 'az',
- iso6392: 'aze',
- nativeName: 'Azərbaycan dili',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000ATBEBZ0PVEHQ7Z22',
- languageName: 'Bambara',
- localeCode: 'bm',
- iso6392: 'bam',
- nativeName: 'Bamanankan',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000JJNZRYD6EVYS56F8',
- languageName: 'Bashkir',
- localeCode: 'ba',
- iso6392: 'bak',
- nativeName: 'Башҡорт теле',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000NSGRAA2F186G5Q1F',
- languageName: 'Basque',
- localeCode: 'eu',
- iso6392: 'eus',
- nativeName: 'Euskara',
- activelyTranslated: false,
- },
- {
- id: 'lang_00000000006B45HN8W5MF6DTRS',
- languageName: 'Belarusian',
- localeCode: 'be',
- iso6392: 'bel',
- nativeName: 'Беларуская мова',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000QTB221HD8KYZ6JPJ',
- languageName: 'Bengali',
- localeCode: 'bn',
- iso6392: 'ben',
- nativeName: 'বাংলা',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000CE6V74G5B23K634Z',
- languageName: 'Bihari',
- localeCode: 'bh',
- iso6392: 'bih',
- nativeName: 'भोजपुरी',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000D7JA6RN3Z1XF0QVQ',
- languageName: 'Bislama',
- localeCode: 'bi',
- iso6392: 'bis',
- nativeName: 'Bislama',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000A36JKM7HMJ6N7T2W',
- languageName: 'Bosnian',
- localeCode: 'bs',
- iso6392: 'bos',
- nativeName: 'Bosanski jezik',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000B581CC7NYTRGTTEK',
- languageName: 'Breton',
- localeCode: 'br',
- iso6392: 'bre',
- nativeName: 'Brezhoneg',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000B1A5JGRGV2S8HG8S',
- languageName: 'Bulgarian',
- localeCode: 'bg',
- iso6392: 'bul',
- nativeName: 'Български език',
- activelyTranslated: false,
- },
- {
- id: 'lang_00000000006KVXN4PKEWWP5CSZ',
- languageName: 'Burmese',
- localeCode: 'my',
- iso6392: 'mya',
- nativeName: 'ဗမာစာ',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000KHAK9FP3Z4A61YGV',
- languageName: 'Catalan',
- localeCode: 'ca',
- iso6392: 'cat',
- nativeName: 'Català',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000JXJN6N90S1STDMF5',
- languageName: 'Cebuano',
- localeCode: 'ceb',
- iso6392: null,
- nativeName: 'Cebuan',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000W44G1BYRV14H96QH',
- languageName: 'Central Kurdish',
- localeCode: 'ckb',
- iso6392: null,
- nativeName: 'کوردیی ناوەندی',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000C3WHK40FAR86X5CJ',
- languageName: 'Chamorro',
- localeCode: 'ch',
- iso6392: 'cha',
- nativeName: 'Chamoru',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000WSGDKEFQ3AQCJRF0',
- languageName: 'Chechen',
- localeCode: 'ce',
- iso6392: 'che',
- nativeName: 'Нохчийн мотт',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000BDTED8QCRVNB5C37',
- languageName: 'Chichewa',
- localeCode: 'ny',
- iso6392: 'nya',
- nativeName: 'Chicheŵa',
- activelyTranslated: false,
- },
- {
- id: 'lang_000000000005XRN3F9V8P8NSJ0',
- languageName: 'Chinese',
- localeCode: 'zh',
- iso6392: 'zho',
- nativeName: '中文',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000T15V504MD1E4YPZT',
- languageName: 'Chinese (Simplified)',
- localeCode: 'zh-Hans',
- iso6392: null,
- nativeName: '中文(简体)',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000C87KP0BKNWPRSRGN',
- languageName: 'Chinese (Simplified)',
- localeCode: 'zh-CN',
- iso6392: null,
- nativeName: '中文',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000YCPHHC6J1SKKEJPP',
- languageName: 'Chinese (Traditional)',
- localeCode: 'zh-TW',
- iso6392: null,
- nativeName: '中文',
- activelyTranslated: false,
- },
- {
- id: 'lang_00000000001KEM4C5FKDJYTSZT',
- languageName: 'Chinese (Traditional)',
- localeCode: 'zh-Hant',
- iso6392: null,
- nativeName: '中文(繁體)',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000E0DRT6FZHSHDRHAF',
- languageName: 'Chuvash',
- localeCode: 'cv',
- iso6392: 'chv',
- nativeName: 'Чӑваш чӗлхи',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000NKP5W95PPQYZ9KN5',
- languageName: 'Cornish',
- localeCode: 'kw',
- iso6392: 'cor',
- nativeName: 'Kernewek',
- activelyTranslated: false,
- },
- {
- id: 'lang_00000000002KZSJ8MJ8NAEAH3Y',
- languageName: 'Corsican',
- localeCode: 'co',
- iso6392: 'cos',
- nativeName: 'Corsu',
- activelyTranslated: false,
- },
- {
- id: 'lang_000000000083YQCXKQCRNR32DN',
- languageName: 'Cree',
- localeCode: 'cr',
- iso6392: 'cre',
- nativeName: 'ᓀᐦᐃᔭᐍᐏᐣ',
- activelyTranslated: false,
- },
- {
- id: 'lang_00000000006YPFN5BCRGB4ZKTV',
- languageName: 'Croatian',
- localeCode: 'hr',
- iso6392: 'hrv',
- nativeName: 'Hrvatski',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000X5ZR09PJKXCESKPF',
- languageName: 'Czech',
- localeCode: 'cs',
- iso6392: 'ces',
- nativeName: 'Čeština',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000Z4H3ERWGKBF0296R',
- languageName: 'Danish',
- localeCode: 'da',
- iso6392: 'dan',
- nativeName: 'Dansk',
- activelyTranslated: false,
- },
- {
- id: 'lang_00000000000KSZH23Z4TS44YPR',
- languageName: 'Divehi',
- localeCode: 'dv',
- iso6392: 'div',
- nativeName: 'Dhivehi',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000Z7NFAWFFR0Z0BJNY',
- languageName: 'Dutch',
- localeCode: 'nl',
- iso6392: 'nld',
- nativeName: 'Nederlands',
- activelyTranslated: false,
- },
- {
- id: 'lang_00000000007PPDVFJBH4YAQEMR',
- languageName: 'Dzongkha',
- localeCode: 'dz',
- iso6392: 'dzo',
- nativeName: 'རྫོང་ཁ',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000N3K70GZXE29Z03A4',
- languageName: 'English',
- localeCode: 'en',
- iso6392: 'eng',
- nativeName: 'English',
- activelyTranslated: true,
- },
- {
- id: 'lang_00000000005D6Y3JHS1TZ6P3C0',
- languageName: 'English (Australia)',
- localeCode: 'en-AU',
- iso6392: null,
- nativeName: 'English (australia)',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000ABJHARZWN39WPQG1',
- languageName: 'English (Canada)',
- localeCode: 'en-CA',
- iso6392: null,
- nativeName: 'English (canada)',
- activelyTranslated: false,
- },
- {
- id: 'lang_000000000046A0D7ZNRBJZ0VG0',
- languageName: 'English (United Kingdom)',
- localeCode: 'en-GB',
- iso6392: null,
- nativeName: 'English (united kingdom)',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000XJR2NSST34FW920D',
- languageName: 'Esperanto',
- localeCode: 'eo',
- iso6392: 'epo',
- nativeName: 'Esperanto',
- activelyTranslated: false,
- },
- {
- id: 'lang_00000000005B6WWE10VS8BHY41',
- languageName: 'Estonian',
- localeCode: 'et',
- iso6392: 'est',
- nativeName: 'Eesti',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000RDFFYKYSDSM28ZTD',
- languageName: 'Ewe',
- localeCode: 'ee',
- iso6392: 'ewe',
- nativeName: 'Eʋegbe',
- activelyTranslated: false,
- },
- {
- id: 'lang_000000000026VXY1H7HMDVC8JC',
- languageName: 'Faroese',
- localeCode: 'fo',
- iso6392: 'fao',
- nativeName: 'Føroyskt',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000R010AWHPCJWB7NK4',
- languageName: 'Fijian',
- localeCode: 'fj',
- iso6392: 'fij',
- nativeName: 'Vakaviti',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000GZXXRD16FPAEARDR',
- languageName: 'Finnish',
- localeCode: 'fi',
- iso6392: 'fin',
- nativeName: 'Suomi',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000NF5EFJJ1KFY0ED8E',
- languageName: 'French',
- localeCode: 'fr',
- iso6392: 'fra',
- nativeName: 'Français',
- activelyTranslated: true,
- },
- {
- id: 'lang_0000000000MR3XDR6FTC1W16HF',
- languageName: 'French (Canada)',
- localeCode: 'fr-CA',
- iso6392: null,
- nativeName: 'Français (canada)',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000YSJFJHHTSAWDTFMJ',
- languageName: 'Fula',
- localeCode: 'ff',
- iso6392: 'ful',
- nativeName: 'Fulfulde',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000ZZWEN9V7ER1B9M5W',
- languageName: 'Galician',
- localeCode: 'gl',
- iso6392: 'glg',
- nativeName: 'Galego',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000NY0C8F6VRCYXZ8DT',
- languageName: 'Ganda',
- localeCode: 'lg',
- iso6392: 'lug',
- nativeName: 'Luganda',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000Y2A552CA0911PQPT',
- languageName: 'Georgian',
- localeCode: 'ka',
- iso6392: 'kat',
- nativeName: 'Ქართული',
- activelyTranslated: false,
- },
- {
- id: 'lang_00000000001E8RN3C2TQH7DZPJ',
- languageName: 'German',
- localeCode: 'de',
- iso6392: 'deu',
- nativeName: 'Deutsch',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000VX69XQ5NMRFGSJ3B',
- languageName: 'Greek',
- localeCode: 'el',
- iso6392: 'ell',
- nativeName: 'Ελληνικά',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000JFMNTT896H70QS7D',
- languageName: 'Guaraní',
- localeCode: 'gn',
- iso6392: 'grn',
- nativeName: "Avañe'ẽ",
- activelyTranslated: false,
- },
- {
- id: 'lang_00000000005ZAQ0KFK1Q3D7NEA',
- languageName: 'Gujarati',
- localeCode: 'gu',
- iso6392: 'guj',
- nativeName: 'ગુજરાતી',
- activelyTranslated: false,
- },
- {
- id: 'lang_00000000008SDB2XNNYNM8D83F',
- languageName: 'Haitian',
- localeCode: 'ht',
- iso6392: 'hat',
- nativeName: 'Kreyòl ayisyen',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000AFK6BG0W4JT1W61R',
- languageName: 'Hausa',
- localeCode: 'ha',
- iso6392: 'hau',
- nativeName: 'هَوُسَ',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000Z8PR1PFGTKX64X55',
- languageName: 'Hawaiian',
- localeCode: 'haw',
- iso6392: null,
- nativeName: 'ʻōlelo hawaiʻi',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000K0VSDF2555T7DKX1',
- languageName: 'Hebrew',
- localeCode: 'he',
- iso6392: 'heb',
- nativeName: 'עברית',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000XTP4RRR9ZA90Z2G2',
- languageName: 'Herero',
- localeCode: 'hz',
- iso6392: 'her',
- nativeName: 'Otjiherero',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000CKHGN5EZWSMASTZB',
- languageName: 'Hindi',
- localeCode: 'hi',
- iso6392: 'hin',
- nativeName: 'हिन्दी',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000GDQ01JWWQRS0RNME',
- languageName: 'Hiri Motu',
- localeCode: 'ho',
- iso6392: 'hmo',
- nativeName: 'Hiri motu',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000K006C11TXJ9Y7TJS',
- languageName: 'Hmong',
- localeCode: 'hmn',
- iso6392: null,
- nativeName: 'Hmôngz',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000A01MMDTSSP53V66H',
- languageName: 'Hungarian',
- localeCode: 'hu',
- iso6392: 'hun',
- nativeName: 'Magyar',
- activelyTranslated: false,
- },
- {
- id: 'lang_00000000008N10DQXKP2NB3B3W',
- languageName: 'Icelandic',
- localeCode: 'is',
- iso6392: 'isl',
- nativeName: 'Íslenska',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000SSHW3828JCK0NCH1',
- languageName: 'Ido',
- localeCode: 'io',
- iso6392: 'ido',
- nativeName: 'Ido',
- activelyTranslated: false,
- },
- {
- id: 'lang_00000000002MKKQ0D0RMQ1DPKH',
- languageName: 'Igbo',
- localeCode: 'ig',
- iso6392: 'ibo',
- nativeName: 'Asụsụ igbo',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000AC798YZWAKQ8GAB6',
- languageName: 'Indonesian',
- localeCode: 'id',
- iso6392: 'ind',
- nativeName: 'Bahasa indonesia',
- activelyTranslated: false,
- },
- {
- id: 'lang_00000000005163PHA8YJWBS2WE',
- languageName: 'Interlingua',
- localeCode: 'ia',
- iso6392: 'ina',
- nativeName: 'Interlingua',
- activelyTranslated: false,
- },
- {
- id: 'lang_00000000004KWPNCJWTV4A0SCB',
- languageName: 'Interlingue',
- localeCode: 'ie',
- iso6392: 'ile',
- nativeName: 'Interlingue',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000J1Z2YV21KTJJ6AC8',
- languageName: 'Inuktitut',
- localeCode: 'iu',
- iso6392: 'iku',
- nativeName: 'ᐃᓄᒃᑎᑐᑦ',
- activelyTranslated: false,
- },
- {
- id: 'lang_00000000002HXZMH7XZ5JCFCHW',
- languageName: 'Inupiaq',
- localeCode: 'ik',
- iso6392: 'ipk',
- nativeName: 'Iñupiaq',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000CYB8QPSP7WJD84GA',
- languageName: 'Irish',
- localeCode: 'ga',
- iso6392: 'gle',
- nativeName: 'Gaeilge',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000Q3RFX6BFCQ2JMD2K',
- languageName: 'Italian',
- localeCode: 'it',
- iso6392: 'ita',
- nativeName: 'Italiano',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000Y2ZSQ5W9N8RYM20P',
- languageName: 'Japanese',
- localeCode: 'ja',
- iso6392: 'jpn',
- nativeName: '日本語',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000EHJYCGJ7H2SK5JD4',
- languageName: 'Javanese',
- localeCode: 'jv',
- iso6392: 'jav',
- nativeName: 'Basa jawa',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000HG38JJ4TR0CR73DG',
- languageName: 'Javanese',
- localeCode: 'jw',
- iso6392: null,
- nativeName: 'ꦧꦱꦗꦮ',
- activelyTranslated: false,
- },
- {
- id: 'lang_000000000054SVNJR7Q564P4S7',
- languageName: 'Kalaallisut',
- localeCode: 'kl',
- iso6392: 'kal',
- nativeName: 'Kalaallisut',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000MFEYSY8MZ8G6JVVR',
- languageName: 'Kannada',
- localeCode: 'kn',
- iso6392: 'kan',
- nativeName: 'ಕನ್ನಡ',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000RGR9FBFD6NBBW8NZ',
- languageName: 'Kanuri',
- localeCode: 'kr',
- iso6392: 'kau',
- nativeName: 'Kanuri',
- activelyTranslated: false,
- },
- {
- id: 'lang_00000000001WEW113WPRBE44DT',
- languageName: 'Kashmiri',
- localeCode: 'ks',
- iso6392: 'kas',
- nativeName: 'कश्मीरी',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000Q5A1C6WP3VXJC7SN',
- languageName: 'Kazakh',
- localeCode: 'kk',
- iso6392: 'kaz',
- nativeName: 'Қазақ тілі',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000X19SM6SMH5Q4DG1J',
- languageName: 'Khmer',
- localeCode: 'km',
- iso6392: 'khm',
- nativeName: 'ខេមរភាសា',
- activelyTranslated: false,
- },
- {
- id: 'lang_000000000081P5973N08ZJ4Y0B',
- languageName: 'Kikuyu',
- localeCode: 'ki',
- iso6392: 'kik',
- nativeName: 'Gĩkũyũ',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000VE6VRTR7KJV4C1MY',
- languageName: 'Kinyarwanda',
- localeCode: 'rw',
- iso6392: 'kin',
- nativeName: 'Ikinyarwanda',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000P10Q9MXMA7G9K50K',
- languageName: 'Kirundi',
- localeCode: 'rn',
- iso6392: 'run',
- nativeName: 'Ikirundi',
- activelyTranslated: false,
- },
- {
- id: 'lang_00000000006H7RKSCAFYE4FM5X',
- languageName: 'Komi',
- localeCode: 'kv',
- iso6392: 'kom',
- nativeName: 'Коми кыв',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000DC8GC7KZF542NT2M',
- languageName: 'Kongo',
- localeCode: 'kg',
- iso6392: 'kon',
- nativeName: 'Kikongo',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000P2ZZJ2BZN9QRSKR7',
- languageName: 'Korean',
- localeCode: 'ko',
- iso6392: 'kor',
- nativeName: '한국어',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000WSWHTYZR8E16D81A',
- languageName: 'Kurdish',
- localeCode: 'ku',
- iso6392: 'kur',
- nativeName: 'Kurdî',
- activelyTranslated: false,
- },
- {
- id: 'lang_000000000000BDRQ0SQPYD7T5F',
- languageName: 'Kwanyama',
- localeCode: 'kj',
- iso6392: 'kua',
- nativeName: 'Kuanyama',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000R2HVEC3AW18A6V82',
- languageName: 'Kyrgyz',
- localeCode: 'ky',
- iso6392: 'kir',
- nativeName: 'Кыргызча',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000SF273BCAQTVJAE8E',
- languageName: 'Lao',
- localeCode: 'lo',
- iso6392: 'lao',
- nativeName: 'ພາສາ',
- activelyTranslated: false,
- },
- {
- id: 'lang_00000000008S356AC5HK6MZRQG',
- languageName: 'Latin',
- localeCode: 'la',
- iso6392: 'lat',
- nativeName: 'Latine',
- activelyTranslated: false,
- },
- {
- id: 'lang_00000000002WQB2PVW5TBYN1XJ',
- languageName: 'Latvian',
- localeCode: 'lv',
- iso6392: 'lav',
- nativeName: 'Latviešu valoda',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000NC6NT8AXNK3EZPMH',
- languageName: 'Limburgish',
- localeCode: 'li',
- iso6392: 'lim',
- nativeName: 'Limburgs',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000DM46841WD89HE2YW',
- languageName: 'Lingala',
- localeCode: 'ln',
- iso6392: 'lin',
- nativeName: 'Lingála',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000JNK7E1WYB4NBB2MX',
- languageName: 'Lithuanian',
- localeCode: 'lt',
- iso6392: 'lit',
- nativeName: 'Lietuvių kalba',
- activelyTranslated: false,
- },
- {
- id: 'lang_00000000006N9QM6G2PG3HKGS1',
- languageName: 'Luba-Katanga',
- localeCode: 'lu',
- iso6392: 'lub',
- nativeName: 'Tshiluba',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000A7ZB1T2SKHP27FNJ',
- languageName: 'Luxembourgish',
- localeCode: 'lb',
- iso6392: 'ltz',
- nativeName: 'Lëtzebuergesch',
- activelyTranslated: false,
- },
- {
- id: 'lang_00000000008QKNHM8058K2087Z',
- languageName: 'Macedonian',
- localeCode: 'mk',
- iso6392: 'mkd',
- nativeName: 'Македонски јазик',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000AYXJVHQ87H7F3KH2',
- languageName: 'Maithili',
- localeCode: 'mai',
- iso6392: null,
- nativeName: 'मैथिली',
- activelyTranslated: false,
- },
- {
- id: 'lang_00000000003SB8ZT424BGW6B1S',
- languageName: 'Malagasy',
- localeCode: 'mg',
- iso6392: 'mlg',
- nativeName: 'Fiteny malagasy',
- activelyTranslated: false,
- },
- {
- id: 'lang_00000000009EP2BJBFQ970VVRC',
- languageName: 'Malay',
- localeCode: 'ms',
- iso6392: 'msa',
- nativeName: 'Bahasa malaysia',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000RGFBCXA16FPSDDCH',
- languageName: 'Malayalam',
- localeCode: 'ml',
- iso6392: 'mal',
- nativeName: 'മലയാളം',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000WRMDPE5DA1V6G1RJ',
- languageName: 'Maltese',
- localeCode: 'mt',
- iso6392: 'mlt',
- nativeName: 'Malti',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000SX6M9KT5E3Y7JX30',
- languageName: 'Manx',
- localeCode: 'gv',
- iso6392: 'glv',
- nativeName: 'Gaelg',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000Z1Y7ZAD8X4G5C76Q',
- languageName: 'Māori',
- localeCode: 'mi',
- iso6392: 'mri',
- nativeName: 'Te reo māori',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000TN5AJGH8JF14AJ1P',
- languageName: 'Marathi',
- localeCode: 'mr',
- iso6392: 'mar',
- nativeName: 'मराठी',
- activelyTranslated: false,
- },
- {
- id: 'lang_00000000009CRPK5NSYVVFJM5F',
- languageName: 'Marshallese',
- localeCode: 'mh',
- iso6392: 'mah',
- nativeName: 'Kajin m̧ajeļ',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000MY0K6C0VWZ4RW3DJ',
- languageName: 'Mongolian',
- localeCode: 'mn',
- iso6392: 'mon',
- nativeName: 'Монгол хэл',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000NSGC605FG0PDBTTD',
- languageName: 'Nauru',
- localeCode: 'na',
- iso6392: 'nau',
- nativeName: 'Ekakairũ naoero',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000Q979G5K0BK4AT3MK',
- languageName: 'Navajo',
- localeCode: 'nv',
- iso6392: 'nav',
- nativeName: 'Diné bizaad',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000SAQT9TT47CVH6SED',
- languageName: 'Ndonga',
- localeCode: 'ng',
- iso6392: 'ndo',
- nativeName: 'Owambo',
- activelyTranslated: false,
- },
- {
- id: 'lang_00000000005AQ3YWGMSEPYKJQ0',
- languageName: 'Nepali',
- localeCode: 'ne',
- iso6392: 'nep',
- nativeName: 'नेपाली',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000V1E6ED6SG8C0P1T9',
- languageName: 'Northern Ndebele',
- localeCode: 'nd',
- iso6392: 'nde',
- nativeName: 'Isindebele',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000NTGW3H6Z3X50KW3P',
- languageName: 'Northern Sami',
- localeCode: 'se',
- iso6392: 'sme',
- nativeName: 'Davvisámegiella',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000PV27SWWAGF5Z9FAR',
- languageName: 'Norwegian',
- localeCode: 'no',
- iso6392: 'nor',
- nativeName: 'Norsk',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000Q0ZRBY9YRBASV510',
- languageName: 'Norwegian Bokmål',
- localeCode: 'nb',
- iso6392: 'nob',
- nativeName: 'Norsk bokmål',
- activelyTranslated: false,
- },
- {
- id: 'lang_000000000010E6CHVBERY6JA6V',
- languageName: 'Norwegian Nynorsk',
- localeCode: 'nn',
- iso6392: 'nno',
- nativeName: 'Norsk nynorsk',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000XFN57V5JE5AFXZNJ',
- languageName: 'Nuosu',
- localeCode: 'ii',
- iso6392: 'iii',
- nativeName: 'ꆈꌠ꒿ nuosuhxop',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000MZ5YBBEART36RX9R',
- languageName: 'Occitan',
- localeCode: 'oc',
- iso6392: 'oci',
- nativeName: 'Occitan',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000H57HYKM4EY18SDAZ',
- languageName: 'Ojibwe',
- localeCode: 'oj',
- iso6392: 'oji',
- nativeName: 'ᐊᓂᔑᓈᐯᒧᐎᓐ',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000AVYXBM0NQBTBF4YE',
- languageName: 'Old Church Slavonic',
- localeCode: 'cu',
- iso6392: 'chu',
- nativeName: 'Ѩзыкъ словѣньскъ',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000PYKG1QZJDQDRGSYZ',
- languageName: 'Oriya',
- localeCode: 'or',
- iso6392: 'ori',
- nativeName: 'ଓଡ଼ିଆ',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000MZBPH2HFVSBWJ0QY',
- languageName: 'Oromo',
- localeCode: 'om',
- iso6392: 'orm',
- nativeName: 'Afaan oromoo',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000GM6J44K73WFCKVYE',
- languageName: 'Ossetian',
- localeCode: 'os',
- iso6392: 'oss',
- nativeName: 'Ирон æвзаг',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000X0FR5ER8Q57924S6',
- languageName: 'Pāli',
- localeCode: 'pi',
- iso6392: 'pli',
- nativeName: 'पाऴि',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000JBHAXG1FRQKZ078J',
- languageName: 'Panjabi',
- localeCode: 'pa',
- iso6392: 'pan',
- nativeName: 'ਪੰਜਾਬੀ',
- activelyTranslated: false,
- },
- {
- id: 'lang_00000000000STKXNJQ1Y0SVEWJ',
- languageName: 'Pashto',
- localeCode: 'ps',
- iso6392: 'pus',
- nativeName: 'پښتو',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000QWAFFNDAW9D75HK6',
- languageName: 'Persian',
- localeCode: 'fa',
- iso6392: 'fas',
- nativeName: 'فارسی',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000G7ZSP47FWN90HNXA',
- languageName: 'Polish',
- localeCode: 'pl',
- iso6392: 'pol',
- nativeName: 'Język polski',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000NYC5FZFG3VV3RZ2V',
- languageName: 'Portuguese',
- localeCode: 'pt',
- iso6392: 'por',
- nativeName: 'Português',
- activelyTranslated: false,
- },
- {
- id: 'lang_00000000002HDRBEHXZWH1K59J',
- languageName: 'Portuguese (Brazil)',
- localeCode: 'pt-BR',
- iso6392: null,
- nativeName: 'Português (brasil)',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000VQ0ZSR7E0K0HX61J',
- languageName: 'Quechua',
- localeCode: 'qu',
- iso6392: 'que',
- nativeName: 'Runa simi',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000Q2F35A6VB0ZH3Y4X',
- languageName: 'Romanian',
- localeCode: 'ro',
- iso6392: 'ron',
- nativeName: 'Română',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000BEC84Q0EDV49F2JJ',
- languageName: 'Romansh',
- localeCode: 'rm',
- iso6392: 'roh',
- nativeName: 'Rumantsch grischun',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000BXGXDK2NKFKYDVBK',
- languageName: 'Russian',
- localeCode: 'ru',
- iso6392: 'rus',
- nativeName: 'Русский',
- activelyTranslated: true,
- },
- {
- id: 'lang_0000000000HHR45Q7VAJ5TFCKK',
- languageName: 'Samoan',
- localeCode: 'sm',
- iso6392: 'smo',
- nativeName: "Gagana fa'a samoa",
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000C6NPGHVGBWBDVNEN',
- languageName: 'Sango',
- localeCode: 'sg',
- iso6392: 'sag',
- nativeName: 'Yângâ tî sängö',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000G514DDFYJ35HYX51',
- languageName: 'Sanskrit',
- localeCode: 'sa',
- iso6392: 'san',
- nativeName: 'संस्कृतम्',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000SH25T8J682WRD6PN',
- languageName: 'Sardinian',
- localeCode: 'sc',
- iso6392: 'srd',
- nativeName: 'Sardu',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000QQ2SMTKQCTCQNYEZ',
- languageName: 'Scottish Gaelic',
- localeCode: 'gd',
- iso6392: 'gla',
- nativeName: 'Gàidhlig',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000PSE4SWJ24KAGS5GJ',
- languageName: 'Serbian',
- localeCode: 'sr',
- iso6392: 'srp',
- nativeName: 'Српски језик',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000786564ZTC9PGA6XV',
- languageName: 'Shona',
- localeCode: 'sn',
- iso6392: 'sna',
- nativeName: 'Chishona',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000AFM9J752C12C5Y3Q',
- languageName: 'Sindhi',
- localeCode: 'sd',
- iso6392: 'snd',
- nativeName: 'सिन्धी',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000JWWCCT20VEV18AVE',
- languageName: 'Sinhala',
- localeCode: 'si',
- iso6392: 'sin',
- nativeName: 'සිංහල',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000RBP8M0F8T9XX0M78',
- languageName: 'Slovak',
- localeCode: 'sk',
- iso6392: 'slk',
- nativeName: 'Slovenčina',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000NHSA9KRMZY5539M5',
- languageName: 'Slovenian',
- localeCode: 'sl',
- iso6392: 'slv',
- nativeName: 'Slovenski jezik',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000M4JTMWR8AH1SJNMQ',
- languageName: 'Somali',
- localeCode: 'so',
- iso6392: 'som',
- nativeName: 'Soomaaliga',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000ZPG2XXHQYQ8F7B6H',
- languageName: 'Southern Ndebele',
- localeCode: 'nr',
- iso6392: 'nbl',
- nativeName: 'Isindebele',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000Z96V8RWYXFYSM6M1',
- languageName: 'Southern Sotho',
- localeCode: 'st',
- iso6392: 'sot',
- nativeName: 'Sesotho',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000EBJ3V9T0RJP07R5G',
- languageName: 'Spanish',
- localeCode: 'es',
- iso6392: 'spa',
- nativeName: 'Español',
- activelyTranslated: true,
- },
- {
- id: 'lang_0000000000HR49HXQ3ECR0NW6B',
- languageName: 'Spanish (Latin America)',
- localeCode: 'es-419',
- iso6392: null,
- nativeName: 'Español (latinoamérica)',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000ZE12ANFEHF0VPC1B',
- languageName: 'Spanish (Mexico)',
- localeCode: 'es-MX',
- iso6392: null,
- nativeName: 'Español (méxico)',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000APGYRQ9NV615HPZN',
- languageName: 'Spanish (Spain)',
- localeCode: 'es-ES',
- iso6392: null,
- nativeName: 'Español (españa)',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000CK9X52TMQ72FA52X',
- languageName: 'Sundanese',
- localeCode: 'su',
- iso6392: 'sun',
- nativeName: 'Basa sunda',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000BBAT6KH1SBGVA3SQ',
- languageName: 'Swahili',
- localeCode: 'sw',
- iso6392: 'swa',
- nativeName: 'Kiswahili',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000S8TEJ4R4J3F24T9H',
- languageName: 'Swati',
- localeCode: 'ss',
- iso6392: 'ssw',
- nativeName: 'Siswati',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000TJBTY1A6ZAZWM1PA',
- languageName: 'Swedish',
- localeCode: 'sv',
- iso6392: 'swe',
- nativeName: 'Svenska',
- activelyTranslated: false,
- },
- {
- id: 'lang_00000000004X585QF9QRF0V6KW',
- languageName: 'Tagalog',
- localeCode: 'tl',
- iso6392: 'tgl',
- nativeName: 'Wikang tagalog',
- activelyTranslated: false,
- },
- {
- id: 'lang_00000000000E081RDB9X34R9BG',
- languageName: 'Tahitian',
- localeCode: 'ty',
- iso6392: 'tah',
- nativeName: 'Reo tahiti',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000CC4WWYHYQTHQH1RK',
- languageName: 'Tajik',
- localeCode: 'tg',
- iso6392: 'tgk',
- nativeName: 'Тоҷикӣ',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000XD2XA9ASHCY831HK',
- languageName: 'Tamil',
- localeCode: 'ta',
- iso6392: 'tam',
- nativeName: 'தமிழ்',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000GXCR152JHGFHZ7P2',
- languageName: 'Tatar',
- localeCode: 'tt',
- iso6392: 'tat',
- nativeName: 'Татар теле',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000JNTSXKTVH13D1G0B',
- languageName: 'Telugu',
- localeCode: 'te',
- iso6392: 'tel',
- nativeName: 'తెలుగు',
- activelyTranslated: false,
- },
- {
- id: 'lang_00000000006567MNV7VR8MGA4A',
- languageName: 'Thai',
- localeCode: 'th',
- iso6392: 'tha',
- nativeName: 'ไทย',
- activelyTranslated: false,
- },
- {
- id: 'lang_000000000022H2ZNSSDMJ81PDE',
- languageName: 'Tibetan',
- localeCode: 'bo',
- iso6392: 'bod',
- nativeName: 'བོད་ཡིག',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000QPA3WT9KS3T0JFZ8',
- languageName: 'Tigrinya',
- localeCode: 'ti',
- iso6392: 'tir',
- nativeName: 'ትግርኛ',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000S55HZ9PR8KGE99M6',
- languageName: 'Tonga',
- localeCode: 'to',
- iso6392: 'ton',
- nativeName: 'Faka tonga',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000Z07E6F7STYT0F54K',
- languageName: 'Tsonga',
- localeCode: 'ts',
- iso6392: 'tso',
- nativeName: 'Xitsonga',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000YWN9PVPE0JHYKQZE',
- languageName: 'Tswana',
- localeCode: 'tn',
- iso6392: 'tsn',
- nativeName: 'Setswana',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000FE9MEYGZX8HBT553',
- languageName: 'Turkish',
- localeCode: 'tr',
- iso6392: 'tur',
- nativeName: 'Türkçe',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000XPE5CKGQY3K32RPN',
- languageName: 'Turkmen',
- localeCode: 'tk',
- iso6392: 'tuk',
- nativeName: 'Türkmen',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000QFFGTKDERJP4B8HX',
- languageName: 'Twi',
- localeCode: 'tw',
- iso6392: 'twi',
- nativeName: 'Twi',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000YZCP34049CMQ72JA',
- languageName: 'Ukrainian',
- localeCode: 'uk',
- iso6392: 'ukr',
- nativeName: 'Українська',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000NGG2GPJX3MQHV3AG',
- languageName: 'Urdu',
- localeCode: 'ur',
- iso6392: 'urd',
- nativeName: 'اردو',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000PCMYE5WYR8SZZ2R7',
- languageName: 'Uyghur',
- localeCode: 'ug',
- iso6392: 'uig',
- nativeName: 'ئۇيغۇرچە',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000F59D422DQQJ7HZVN',
- languageName: 'Uzbek',
- localeCode: 'uz',
- iso6392: 'uzb',
- nativeName: 'Ўзбек',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000APQTRBY360R9VKRB',
- languageName: 'Venda',
- localeCode: 've',
- iso6392: 'ven',
- nativeName: 'Tshivenḓa',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000M4ZVZEKEA4DVEZT9',
- languageName: 'Vietnamese',
- localeCode: 'vi',
- iso6392: 'vie',
- nativeName: 'Tiếng việt',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000YFQV2T02FPSJB2VD',
- languageName: 'Volapük',
- localeCode: 'vo',
- iso6392: 'vol',
- nativeName: 'Volapük',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000DSJKFKS5YFWAK84M',
- languageName: 'Walloon',
- localeCode: 'wa',
- iso6392: 'wln',
- nativeName: 'Walon',
- activelyTranslated: false,
- },
- {
- id: 'lang_00000000005013EB2R76H3EEG5',
- languageName: 'Welsh',
- localeCode: 'cy',
- iso6392: 'cym',
- nativeName: 'Cymraeg',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000KB422AMC2P3YSXZS',
- languageName: 'Western Frisian',
- localeCode: 'fy',
- iso6392: 'fry',
- nativeName: 'Frysk',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000SQFZM0CTF2EDC8A5',
- languageName: 'Wolof',
- localeCode: 'wo',
- iso6392: 'wol',
- nativeName: 'Wollof',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000MH14AYTF5796C9M1',
- languageName: 'Xhosa',
- localeCode: 'xh',
- iso6392: 'xho',
- nativeName: 'Isixhosa',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000E5XDF56F9QMTEA8W',
- languageName: 'Yiddish',
- localeCode: 'yi',
- iso6392: 'yid',
- nativeName: 'ייִדיש',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000790XHA1NG0BJ0VVD',
- languageName: 'Yoruba',
- localeCode: 'yo',
- iso6392: 'yor',
- nativeName: 'Yorùbá',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000Q5A620BJ9E9RVXE7',
- languageName: 'Zhuang',
- localeCode: 'za',
- iso6392: 'zha',
- nativeName: 'Saɯ cueŋƅ',
- activelyTranslated: false,
- },
- {
- id: 'lang_0000000000SSRX9JG97NHT6RHJ',
- languageName: 'Zulu',
- localeCode: 'zu',
- iso6392: 'zul',
- nativeName: 'Isizulu',
- activelyTranslated: false,
- },
-] satisfies ApiOutput['fieldOpt']['languages']
-
-export const queryLanguages = (query: ApiInput['fieldOpt']['languages']) => {
- const { localeCode, activelyTranslated } = query ?? {}
- if (localeCode || activelyTranslated) {
- return languages.filter((record) => {
- switch (true) {
- case Boolean(localeCode) && activelyTranslated !== undefined: {
- return localeCode === record.localeCode && activelyTranslated === record.activelyTranslated
- }
- case Boolean(localeCode): {
- return localeCode === record.localeCode
- }
- case activelyTranslated !== undefined: {
- return activelyTranslated === record.activelyTranslated
- }
- }
- })
- }
- return languages
-}
-
-export const countries = [
- {
- id: 'ctry_01GW2HHDKATDZGNR55QRS6Y5NX',
- cca2: 'AF',
- name: 'Afghanistan',
- dialCode: null,
- flag: '🇦🇫',
- tsKey: 'AFG.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKGQRTDPFBTD9GJT3BN',
- cca2: 'AX',
- name: 'Åland Islands',
- dialCode: null,
- flag: '🇦🇽',
- tsKey: 'ALA.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKDSS3YW7W5994KW3ZT',
- cca2: 'AL',
- name: 'Albania',
- dialCode: null,
- flag: '🇦🇱',
- tsKey: 'ALB.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK6ENG0N2YD2ZXD043N',
- cca2: 'DZ',
- name: 'Algeria',
- dialCode: null,
- flag: '🇩🇿',
- tsKey: 'DZA.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK67GZQVGA3NZ8PE5SS',
- cca2: 'AS',
- name: 'American Samoa',
- dialCode: null,
- flag: '🇦🇸',
- tsKey: 'ASM.name',
- tsNs: 'country',
- activeForOrgs: true,
- },
- {
- id: 'ctry_01GW2HHDKDE152HYH5H1TD8CK6',
- cca2: 'AD',
- name: 'Andorra',
- dialCode: null,
- flag: '🇦🇩',
- tsKey: 'AND.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKH6H61ZD7Q4D1EVHP5',
- cca2: 'AO',
- name: 'Angola',
- dialCode: null,
- flag: '🇦🇴',
- tsKey: 'AGO.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK87VQBC3WXQDJJZ6XM',
- cca2: 'AI',
- name: 'Anguilla',
- dialCode: null,
- flag: '🇦🇮',
- tsKey: 'AIA.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKAFPAWV4NQHE9VT4BA',
- cca2: 'AQ',
- name: 'Antarctica',
- dialCode: null,
- flag: '🇦🇶',
- tsKey: 'ATA.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKE7QG3QATZ72P7YT7V',
- cca2: 'AG',
- name: 'Antigua and Barbuda',
- dialCode: null,
- flag: '🇦🇬',
- tsKey: 'ATG.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKAYQQC5ZYAY81QFF4G',
- cca2: 'AR',
- name: 'Argentina',
- dialCode: null,
- flag: '🇦🇷',
- tsKey: 'ARG.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKD3SFPCG8ED0EP3MX3',
- cca2: 'AM',
- name: 'Armenia',
- dialCode: null,
- flag: '🇦🇲',
- tsKey: 'ARM.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKGHT708N7RM8QDDEBK',
- cca2: 'AW',
- name: 'Aruba',
- dialCode: null,
- flag: '🇦🇼',
- tsKey: 'ABW.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKFCKFTFJP7MARGNHRZ',
- cca2: 'AU',
- name: 'Australia',
- dialCode: null,
- flag: '🇦🇺',
- tsKey: 'AUS.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKEH1KYC4T8236ZSY3C',
- cca2: 'AT',
- name: 'Austria',
- dialCode: null,
- flag: '🇦🇹',
- tsKey: 'AUT.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKA3CZ3WF381DJZ5D0Z',
- cca2: 'AZ',
- name: 'Azerbaijan',
- dialCode: null,
- flag: '🇦🇿',
- tsKey: 'AZE.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKH7K0Z1YPRYG3CMEMW',
- cca2: 'BS',
- name: 'Bahamas',
- dialCode: null,
- flag: '🇧🇸',
- tsKey: 'BHS.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKCBYW7V5T1DWEBPFRV',
- cca2: 'BH',
- name: 'Bahrain',
- dialCode: null,
- flag: '🇧🇭',
- tsKey: 'BHR.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK67CD2NGY24P7G22SF',
- cca2: 'BD',
- name: 'Bangladesh',
- dialCode: null,
- flag: '🇧🇩',
- tsKey: 'BGD.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK8SPF3A2D6NW2XPTHM',
- cca2: 'BB',
- name: 'Barbados',
- dialCode: null,
- flag: '🇧🇧',
- tsKey: 'BRB.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKD14G6PFAPNEMTW5F5',
- cca2: 'BY',
- name: 'Belarus',
- dialCode: null,
- flag: '🇧🇾',
- tsKey: 'BLR.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKHCQVPDAC0H3PQV53N',
- cca2: 'BE',
- name: 'Belgium',
- dialCode: null,
- flag: '🇧🇪',
- tsKey: 'BEL.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKEZN2DQG8Y7XVGHA0G',
- cca2: 'BZ',
- name: 'Belize',
- dialCode: null,
- flag: '🇧🇿',
- tsKey: 'BLZ.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKGTGG62NESH7TDS364',
- cca2: 'BJ',
- name: 'Benin',
- dialCode: null,
- flag: '🇧🇯',
- tsKey: 'BEN.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKE6FEQT1R83S60KVPT',
- cca2: 'BM',
- name: 'Bermuda',
- dialCode: null,
- flag: '🇧🇲',
- tsKey: 'BMU.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK7QA15RA6W4YR0YTPQ',
- cca2: 'BT',
- name: 'Bhutan',
- dialCode: null,
- flag: '🇧🇹',
- tsKey: 'BTN.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKCS87MJP31FAC9S4NB',
- cca2: 'BO',
- name: 'Bolivia',
- dialCode: null,
- flag: '🇧🇴',
- tsKey: 'BOL.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK6V0QGJ9GRNQCW6A29',
- cca2: 'BA',
- name: 'Bosnia and Herzegovina',
- dialCode: null,
- flag: '🇧🇦',
- tsKey: 'BIH.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKA6G8FACKBG654B237',
- cca2: 'BW',
- name: 'Botswana',
- dialCode: null,
- flag: '🇧🇼',
- tsKey: 'BWA.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKDSY01QJC6KX2BRXH8',
- cca2: 'BV',
- name: 'Bouvet Island',
- dialCode: null,
- flag: '🇧🇻',
- tsKey: 'BVT.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKGTHZA8H042BMMGF3J',
- cca2: 'BR',
- name: 'Brazil',
- dialCode: null,
- flag: '🇧🇷',
- tsKey: 'BRA.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKG19TTZ3XA7NKMZ3TJ',
- cca2: 'IO',
- name: 'British Indian Ocean Territory',
- dialCode: null,
- flag: '🇮🇴',
- tsKey: 'IOT.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK88EQB8BSKDWEPG76N',
- cca2: 'VG',
- name: 'British Virgin Islands',
- dialCode: null,
- flag: '🇻🇬',
- tsKey: 'VGB.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKEGN1AYW58P63XQPZ0',
- cca2: 'BN',
- name: 'Brunei',
- dialCode: null,
- flag: '🇧🇳',
- tsKey: 'BRN.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKAWJN8K8E3EYVZDENE',
- cca2: 'BG',
- name: 'Bulgaria',
- dialCode: null,
- flag: '🇧🇬',
- tsKey: 'BGR.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKHD6PPNGQWWGD59BQT',
- cca2: 'BF',
- name: 'Burkina Faso',
- dialCode: null,
- flag: '🇧🇫',
- tsKey: 'BFA.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKGB5RY2JAQVVF4RC4X',
- cca2: 'BI',
- name: 'Burundi',
- dialCode: null,
- flag: '🇧🇮',
- tsKey: 'BDI.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK7T16K1ZJ1PZX1E1ZV',
- cca2: 'KH',
- name: 'Cambodia',
- dialCode: null,
- flag: '🇰🇭',
- tsKey: 'KHM.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKEZMTF03P4JYAFZRN1',
- cca2: 'CM',
- name: 'Cameroon',
- dialCode: null,
- flag: '🇨🇲',
- tsKey: 'CMR.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKAWXWYHAAESAA5HH94',
- cca2: 'CA',
- name: 'Canada',
- dialCode: null,
- flag: '🇨🇦',
- tsKey: 'CAN.name',
- tsNs: 'country',
- activeForOrgs: true,
- },
- {
- id: 'ctry_01GW2HHDKAJ64YAST64W2BJQSV',
- cca2: 'CV',
- name: 'Cape Verde',
- dialCode: null,
- flag: '🇨🇻',
- tsKey: 'CPV.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK9JPEM2C72VSS71G4H',
- cca2: 'BQ',
- name: 'Caribbean Netherlands',
- dialCode: null,
- flag: '🇧🇶',
- tsKey: 'BES.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKHA0DCHV26S9FDT5P4',
- cca2: 'KY',
- name: 'Cayman Islands',
- dialCode: null,
- flag: '🇰🇾',
- tsKey: 'CYM.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKCW140K2TYTEE750YT',
- cca2: 'CF',
- name: 'Central African Republic',
- dialCode: null,
- flag: '🇨🇫',
- tsKey: 'CAF.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKBDJH4JA3QZRZCDB1C',
- cca2: 'TD',
- name: 'Chad',
- dialCode: null,
- flag: '🇹🇩',
- tsKey: 'TCD.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKAMPFS09WBC3XZHQKX',
- cca2: 'CL',
- name: 'Chile',
- dialCode: null,
- flag: '🇨🇱',
- tsKey: 'CHL.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKGEYB1AM0P2DVYBS7A',
- cca2: 'CN',
- name: 'China',
- dialCode: null,
- flag: '🇨🇳',
- tsKey: 'CHN.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKHV33E0R9ZQSE302T3',
- cca2: 'CX',
- name: 'Christmas Island',
- dialCode: null,
- flag: '🇨🇽',
- tsKey: 'CXR.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK66TC7PJG0EVPFMBFP',
- cca2: 'CC',
- name: 'Cocos (Keeling) Islands',
- dialCode: null,
- flag: '🇨🇨',
- tsKey: 'CCK.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKE747AN7G49Z1R39X7',
- cca2: 'CO',
- name: 'Colombia',
- dialCode: null,
- flag: '🇨🇴',
- tsKey: 'COL.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKE2EJHZ22HF2GWSB4H',
- cca2: 'KM',
- name: 'Comoros',
- dialCode: null,
- flag: '🇰🇲',
- tsKey: 'COM.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK8FK98CXW90F5HFRJH',
- cca2: 'CK',
- name: 'Cook Islands',
- dialCode: null,
- flag: '🇨🇰',
- tsKey: 'COK.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK8WHEVKX1JE6V2E5JJ',
- cca2: 'CR',
- name: 'Costa Rica',
- dialCode: null,
- flag: '🇨🇷',
- tsKey: 'CRI.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK9SZZ6W0GPYA0STVYG',
- cca2: 'HR',
- name: 'Croatia',
- dialCode: null,
- flag: '🇭🇷',
- tsKey: 'HRV.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK8K7BJH8JW34Q7JK12',
- cca2: 'CU',
- name: 'Cuba',
- dialCode: null,
- flag: '🇨🇺',
- tsKey: 'CUB.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKDEHGJVDQC1VDXFM0P',
- cca2: 'CW',
- name: 'Curaçao',
- dialCode: null,
- flag: '🇨🇼',
- tsKey: 'CUW.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKAZ27CDARTX8QS2JMN',
- cca2: 'CY',
- name: 'Cyprus',
- dialCode: null,
- flag: '🇨🇾',
- tsKey: 'CYP.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKDWZR3XW85F2G82SME',
- cca2: 'CZ',
- name: 'Czechia',
- dialCode: null,
- flag: '🇨🇿',
- tsKey: 'CZE.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKH7Z155XNFE328RJK5',
- cca2: 'DK',
- name: 'Denmark',
- dialCode: null,
- flag: '🇩🇰',
- tsKey: 'DNK.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKBS9SYM4Z85HKVCW7S',
- cca2: 'DJ',
- name: 'Djibouti',
- dialCode: null,
- flag: '🇩🇯',
- tsKey: 'DJI.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKCVDAHZVSVC2YD68XN',
- cca2: 'DM',
- name: 'Dominica',
- dialCode: null,
- flag: '🇩🇲',
- tsKey: 'DMA.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKCGAXYVWHRWSD40516',
- cca2: 'DO',
- name: 'Dominican Republic',
- dialCode: null,
- flag: '🇩🇴',
- tsKey: 'DOM.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK7AMX8NEKVMBA64YJS',
- cca2: 'CD',
- name: 'DR Congo',
- dialCode: null,
- flag: '🇨🇩',
- tsKey: 'COD.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKFWZA5DF33HK20AMQK',
- cca2: 'EC',
- name: 'Ecuador',
- dialCode: null,
- flag: '🇪🇨',
- tsKey: 'ECU.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK9ZK9PGCD8MGCD8YN9',
- cca2: 'EG',
- name: 'Egypt',
- dialCode: null,
- flag: '🇪🇬',
- tsKey: 'EGY.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK8HE6ZXBJEN5GGJYBA',
- cca2: 'SV',
- name: 'El Salvador',
- dialCode: null,
- flag: '🇸🇻',
- tsKey: 'SLV.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK95TZ43CS71K1P62JD',
- cca2: 'GQ',
- name: 'Equatorial Guinea',
- dialCode: null,
- flag: '🇬🇶',
- tsKey: 'GNQ.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKE6ZTA1B0KNFYXA7XZ',
- cca2: 'ER',
- name: 'Eritrea',
- dialCode: null,
- flag: '🇪🇷',
- tsKey: 'ERI.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKEM266QFKJYJVHC53T',
- cca2: 'EE',
- name: 'Estonia',
- dialCode: null,
- flag: '🇪🇪',
- tsKey: 'EST.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKBT6AMAW7JQ18MAEGF',
- cca2: 'SZ',
- name: 'Eswatini',
- dialCode: null,
- flag: '🇸🇿',
- tsKey: 'SWZ.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKC2S12HZKRBMRC51WB',
- cca2: 'ET',
- name: 'Ethiopia',
- dialCode: null,
- flag: '🇪🇹',
- tsKey: 'ETH.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKE1JW9G222WXWADT5M',
- cca2: 'FK',
- name: 'Falkland Islands',
- dialCode: null,
- flag: '🇫🇰',
- tsKey: 'FLK.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKF8Y6KNW8X28APN60W',
- cca2: 'FO',
- name: 'Faroe Islands',
- dialCode: null,
- flag: '🇫🇴',
- tsKey: 'FRO.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKC0MEFFZTGK0RWCRQA',
- cca2: 'FJ',
- name: 'Fiji',
- dialCode: null,
- flag: '🇫🇯',
- tsKey: 'FJI.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKFPPCXV7F8BNVZZ81G',
- cca2: 'FI',
- name: 'Finland',
- dialCode: null,
- flag: '🇫🇮',
- tsKey: 'FIN.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK6TWQ3BN3PG06DQ3HM',
- cca2: 'FR',
- name: 'France',
- dialCode: null,
- flag: '🇫🇷',
- tsKey: 'FRA.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKH5GV00V6MM2F7CZ3P',
- cca2: 'GF',
- name: 'French Guiana',
- dialCode: null,
- flag: '🇬🇫',
- tsKey: 'GUF.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKFK3ME6G5ZNBVT26XS',
- cca2: 'PF',
- name: 'French Polynesia',
- dialCode: null,
- flag: '🇵🇫',
- tsKey: 'PYF.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKCZ5TVB7QPAQNRS362',
- cca2: 'TF',
- name: 'French Southern and Antarctic Lands',
- dialCode: null,
- flag: '🇹🇫',
- tsKey: 'ATF.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK7Z5N9Q2JPZNXP8VPE',
- cca2: 'GA',
- name: 'Gabon',
- dialCode: null,
- flag: '🇬🇦',
- tsKey: 'GAB.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK90V1XFYZ6AWB05J58',
- cca2: 'GM',
- name: 'Gambia',
- dialCode: null,
- flag: '🇬🇲',
- tsKey: 'GMB.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKCJV96MQND976G21HR',
- cca2: 'GE',
- name: 'Georgia',
- dialCode: null,
- flag: '🇬🇪',
- tsKey: 'GEO.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKGGTVBR39ZYJVVDGNY',
- cca2: 'DE',
- name: 'Germany',
- dialCode: null,
- flag: '🇩🇪',
- tsKey: 'DEU.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKEW7A1ZRA4EFNWN6FB',
- cca2: 'GH',
- name: 'Ghana',
- dialCode: null,
- flag: '🇬🇭',
- tsKey: 'GHA.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKBW4RFHHBG7R71M5B5',
- cca2: 'GI',
- name: 'Gibraltar',
- dialCode: null,
- flag: '🇬🇮',
- tsKey: 'GIB.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK6GRHQQEYGGJX4CQ1Z',
- cca2: 'GR',
- name: 'Greece',
- dialCode: null,
- flag: '🇬🇷',
- tsKey: 'GRC.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKCBG5RYMSXJ7NE0EQH',
- cca2: 'GL',
- name: 'Greenland',
- dialCode: null,
- flag: '🇬🇱',
- tsKey: 'GRL.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKDK9BZQS106Q7H8XJR',
- cca2: 'GD',
- name: 'Grenada',
- dialCode: null,
- flag: '🇬🇩',
- tsKey: 'GRD.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKDT4XD73Q57W6631FN',
- cca2: 'GP',
- name: 'Guadeloupe',
- dialCode: null,
- flag: '🇬🇵',
- tsKey: 'GLP.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKGZ2XQ8Q9D8GX564MJ',
- cca2: 'GU',
- name: 'Guam',
- dialCode: null,
- flag: '🇬🇺',
- tsKey: 'GUM.name',
- tsNs: 'country',
- activeForOrgs: true,
- },
- {
- id: 'ctry_01GW2HHDK6BPY9VBW9WR5HDVA5',
- cca2: 'GT',
- name: 'Guatemala',
- dialCode: null,
- flag: '🇬🇹',
- tsKey: 'GTM.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKDXS2FKHD8YPRKBZPY',
- cca2: 'GG',
- name: 'Guernsey',
- dialCode: null,
- flag: '🇬🇬',
- tsKey: 'GGY.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKCK11551EN1JD1AMT6',
- cca2: 'GN',
- name: 'Guinea',
- dialCode: null,
- flag: '🇬🇳',
- tsKey: 'GIN.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKHXN8ZSHAGKGENMQ4N',
- cca2: 'GW',
- name: 'Guinea-Bissau',
- dialCode: null,
- flag: '🇬🇼',
- tsKey: 'GNB.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKGRJCTDX2GK4ZZDKAS',
- cca2: 'GY',
- name: 'Guyana',
- dialCode: null,
- flag: '🇬🇾',
- tsKey: 'GUY.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKBP9EB7HW41MH04MCA',
- cca2: 'HT',
- name: 'Haiti',
- dialCode: null,
- flag: '🇭🇹',
- tsKey: 'HTI.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKFVJ4QNETXPR3PGZES',
- cca2: 'HM',
- name: 'Heard Island and McDonald Islands',
- dialCode: null,
- flag: '🇭🇲',
- tsKey: 'HMD.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK96FCPGE9HBHC01VDE',
- cca2: 'HN',
- name: 'Honduras',
- dialCode: null,
- flag: '🇭🇳',
- tsKey: 'HND.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKF1ZKQGXHGKH67QXYA',
- cca2: 'HK',
- name: 'Hong Kong',
- dialCode: null,
- flag: '🇭🇰',
- tsKey: 'HKG.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKGGQ8SZPJH74RXNCP6',
- cca2: 'HU',
- name: 'Hungary',
- dialCode: null,
- flag: '🇭🇺',
- tsKey: 'HUN.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKB1FFT4ZEBATSQXWRB',
- cca2: 'IS',
- name: 'Iceland',
- dialCode: null,
- flag: '🇮🇸',
- tsKey: 'ISL.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK7H0GWV1MRQ6EF6E8N',
- cca2: 'IN',
- name: 'India',
- dialCode: null,
- flag: '🇮🇳',
- tsKey: 'IND.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKDHB62D7NFGE7RRNDN',
- cca2: 'ID',
- name: 'Indonesia',
- dialCode: null,
- flag: '🇮🇩',
- tsKey: 'IDN.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKBEYBGKWE7BCHXZHJ6',
- cca2: 'IR',
- name: 'Iran',
- dialCode: null,
- flag: '🇮🇷',
- tsKey: 'IRN.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKGM9N3RGKASW4677KV',
- cca2: 'IQ',
- name: 'Iraq',
- dialCode: null,
- flag: '🇮🇶',
- tsKey: 'IRQ.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKF939YJGVTR7H30KPX',
- cca2: 'IE',
- name: 'Ireland',
- dialCode: null,
- flag: '🇮🇪',
- tsKey: 'IRL.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKFFE67B6CGZGV25R1C',
- cca2: 'IM',
- name: 'Isle of Man',
- dialCode: null,
- flag: '🇮🇲',
- tsKey: 'IMN.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK8JM827C3VY37CM7TF',
- cca2: 'IL',
- name: 'Israel',
- dialCode: null,
- flag: '🇮🇱',
- tsKey: 'ISR.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK65BRH9H4P9YZH3P3F',
- cca2: 'IT',
- name: 'Italy',
- dialCode: null,
- flag: '🇮🇹',
- tsKey: 'ITA.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKHRGA9ME9MF56RDYYC',
- cca2: 'CI',
- name: 'Ivory Coast',
- dialCode: null,
- flag: '🇨🇮',
- tsKey: 'CIV.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKEVZK4MDJTHQ025AQG',
- cca2: 'JM',
- name: 'Jamaica',
- dialCode: null,
- flag: '🇯🇲',
- tsKey: 'JAM.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKFEWN5X3FJ1QFQ55NW',
- cca2: 'JP',
- name: 'Japan',
- dialCode: null,
- flag: '🇯🇵',
- tsKey: 'JPN.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK8NAN0FT6100XB79PX',
- cca2: 'JE',
- name: 'Jersey',
- dialCode: null,
- flag: '🇯🇪',
- tsKey: 'JEY.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK6Q6BB2C5DWKAYKVP9',
- cca2: 'JO',
- name: 'Jordan',
- dialCode: null,
- flag: '🇯🇴',
- tsKey: 'JOR.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKAE2X1VJCYX05SQ15T',
- cca2: 'KZ',
- name: 'Kazakhstan',
- dialCode: null,
- flag: '🇰🇿',
- tsKey: 'KAZ.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK9D4RQ30ZEV336H36F',
- cca2: 'KE',
- name: 'Kenya',
- dialCode: null,
- flag: '🇰🇪',
- tsKey: 'KEN.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKGR9X8QJBDSK84PAG1',
- cca2: 'KI',
- name: 'Kiribati',
- dialCode: null,
- flag: '🇰🇮',
- tsKey: 'KIR.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKA32KTYFEBFF1FRX6G',
- cca2: 'XK',
- name: 'Kosovo',
- dialCode: null,
- flag: '🇽🇰',
- tsKey: 'UNK.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKE2127XE2CXSCB0SWG',
- cca2: 'KW',
- name: 'Kuwait',
- dialCode: null,
- flag: '🇰🇼',
- tsKey: 'KWT.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKFGDMKVKEAVVCVHXG4',
- cca2: 'KG',
- name: 'Kyrgyzstan',
- dialCode: null,
- flag: '🇰🇬',
- tsKey: 'KGZ.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKG8SKA53C146FV5E0G',
- cca2: 'LA',
- name: 'Laos',
- dialCode: null,
- flag: '🇱🇦',
- tsKey: 'LAO.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK69KVF1HPHBRBTSSBE',
- cca2: 'LV',
- name: 'Latvia',
- dialCode: null,
- flag: '🇱🇻',
- tsKey: 'LVA.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK9NG4F38ZGH49JE311',
- cca2: 'LB',
- name: 'Lebanon',
- dialCode: null,
- flag: '🇱🇧',
- tsKey: 'LBN.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKH74J20AXR1GWGX6ZQ',
- cca2: 'LS',
- name: 'Lesotho',
- dialCode: null,
- flag: '🇱🇸',
- tsKey: 'LSO.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKDHEQGH45498FKFDM8',
- cca2: 'LR',
- name: 'Liberia',
- dialCode: null,
- flag: '🇱🇷',
- tsKey: 'LBR.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKC77VK7AC2YXTJFP9H',
- cca2: 'LY',
- name: 'Libya',
- dialCode: null,
- flag: '🇱🇾',
- tsKey: 'LBY.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKBKDT96T91NCRFZE8A',
- cca2: 'LI',
- name: 'Liechtenstein',
- dialCode: null,
- flag: '🇱🇮',
- tsKey: 'LIE.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKC6BNE39T2DV3QC4NJ',
- cca2: 'LT',
- name: 'Lithuania',
- dialCode: null,
- flag: '🇱🇹',
- tsKey: 'LTU.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKBTPBSDQE1XHBMBXJE',
- cca2: 'LU',
- name: 'Luxembourg',
- dialCode: null,
- flag: '🇱🇺',
- tsKey: 'LUX.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK9114P6V7VFFNFTMNP',
- cca2: 'MO',
- name: 'Macau',
- dialCode: null,
- flag: '🇲🇴',
- tsKey: 'MAC.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKBN3B46NQY3YEACJ0K',
- cca2: 'MG',
- name: 'Madagascar',
- dialCode: null,
- flag: '🇲🇬',
- tsKey: 'MDG.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKHRXXQZHPZYDV3SNVZ',
- cca2: 'MW',
- name: 'Malawi',
- dialCode: null,
- flag: '🇲🇼',
- tsKey: 'MWI.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKEZED648DCY8RGH5NA',
- cca2: 'MY',
- name: 'Malaysia',
- dialCode: null,
- flag: '🇲🇾',
- tsKey: 'MYS.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK6FR8HMD3W523Q3WRA',
- cca2: 'MV',
- name: 'Maldives',
- dialCode: null,
- flag: '🇲🇻',
- tsKey: 'MDV.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKCFG7G5S12F71S6QG5',
- cca2: 'ML',
- name: 'Mali',
- dialCode: null,
- flag: '🇲🇱',
- tsKey: 'MLI.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKDD06KYX7CY9JJR1SQ',
- cca2: 'MT',
- name: 'Malta',
- dialCode: null,
- flag: '🇲🇹',
- tsKey: 'MLT.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK8HTCM0MWQXBJRXEYB',
- cca2: 'MH',
- name: 'Marshall Islands',
- dialCode: null,
- flag: '🇲🇭',
- tsKey: 'MHL.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKB96KWQYA4T0D8VXTV',
- cca2: 'MQ',
- name: 'Martinique',
- dialCode: null,
- flag: '🇲🇶',
- tsKey: 'MTQ.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKAR1506PSRF3PB1HYX',
- cca2: 'MR',
- name: 'Mauritania',
- dialCode: null,
- flag: '🇲🇷',
- tsKey: 'MRT.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK7DF62BBZYJCBFGVYY',
- cca2: 'MU',
- name: 'Mauritius',
- dialCode: null,
- flag: '🇲🇺',
- tsKey: 'MUS.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK6BG4CBH38VKSZ9M4X',
- cca2: 'YT',
- name: 'Mayotte',
- dialCode: null,
- flag: '🇾🇹',
- tsKey: 'MYT.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKB9DG2T2YZM5MFFVX9',
- cca2: 'MX',
- name: 'Mexico',
- dialCode: null,
- flag: '🇲🇽',
- tsKey: 'MEX.name',
- tsNs: 'country',
- activeForOrgs: true,
- },
- {
- id: 'ctry_01GW2HHDKHHXXT7NMR9TQ0TY97',
- cca2: 'FM',
- name: 'Micronesia',
- dialCode: null,
- flag: '🇫🇲',
- tsKey: 'FSM.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKCZNJN6F1J1JTQRZ25',
- cca2: 'MD',
- name: 'Moldova',
- dialCode: null,
- flag: '🇲🇩',
- tsKey: 'MDA.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKGB3V0H2DKQA84VA5K',
- cca2: 'MC',
- name: 'Monaco',
- dialCode: null,
- flag: '🇲🇨',
- tsKey: 'MCO.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKC2Q96XZGFSTMMQPNB',
- cca2: 'MN',
- name: 'Mongolia',
- dialCode: null,
- flag: '🇲🇳',
- tsKey: 'MNG.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKGA35BCNN91RB2DFX7',
- cca2: 'ME',
- name: 'Montenegro',
- dialCode: null,
- flag: '🇲🇪',
- tsKey: 'MNE.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKHCN2Q3JMYRQ7HJ5VH',
- cca2: 'MS',
- name: 'Montserrat',
- dialCode: null,
- flag: '🇲🇸',
- tsKey: 'MSR.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKBJ9NNQ06K5V64NAB8',
- cca2: 'MA',
- name: 'Morocco',
- dialCode: null,
- flag: '🇲🇦',
- tsKey: 'MAR.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK8VJ7Z7R0D99K5E4AN',
- cca2: 'MZ',
- name: 'Mozambique',
- dialCode: null,
- flag: '🇲🇿',
- tsKey: 'MOZ.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK99MQM7GZ8EN4WZ9FK',
- cca2: 'MM',
- name: 'Myanmar',
- dialCode: null,
- flag: '🇲🇲',
- tsKey: 'MMR.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKCGYGA9KDYNQ3CK7H7',
- cca2: 'NA',
- name: 'Namibia',
- dialCode: null,
- flag: '🇳🇦',
- tsKey: 'NAM.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK79QNCV8EVYND8E6MY',
- cca2: 'NR',
- name: 'Nauru',
- dialCode: null,
- flag: '🇳🇷',
- tsKey: 'NRU.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKFT9BZY0XPP6DESZX8',
- cca2: 'NP',
- name: 'Nepal',
- dialCode: null,
- flag: '🇳🇵',
- tsKey: 'NPL.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK76HGWY2MNZTFSTT61',
- cca2: 'NL',
- name: 'Netherlands',
- dialCode: null,
- flag: '🇳🇱',
- tsKey: 'NLD.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK7HMC32S6PHPMFACZX',
- cca2: 'NC',
- name: 'New Caledonia',
- dialCode: null,
- flag: '🇳🇨',
- tsKey: 'NCL.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKEKF565F1E5ZPTXFHE',
- cca2: 'NZ',
- name: 'New Zealand',
- dialCode: null,
- flag: '🇳🇿',
- tsKey: 'NZL.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK7372NTNTPP3V9BPGV',
- cca2: 'NI',
- name: 'Nicaragua',
- dialCode: null,
- flag: '🇳🇮',
- tsKey: 'NIC.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKHMY5MATBT7VET2W95',
- cca2: 'NE',
- name: 'Niger',
- dialCode: null,
- flag: '🇳🇪',
- tsKey: 'NER.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK8AXT584ZTWBN739SN',
- cca2: 'NG',
- name: 'Nigeria',
- dialCode: null,
- flag: '🇳🇬',
- tsKey: 'NGA.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK9B08AAMK0WGCVR313',
- cca2: 'NU',
- name: 'Niue',
- dialCode: null,
- flag: '🇳🇺',
- tsKey: 'NIU.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKGHKX9XHGFYN7FAF95',
- cca2: 'NF',
- name: 'Norfolk Island',
- dialCode: null,
- flag: '🇳🇫',
- tsKey: 'NFK.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKFJ4Q7PBTTN4GSMPV0',
- cca2: 'MP',
- name: 'Northern Mariana Islands',
- dialCode: null,
- flag: '🇲🇵',
- tsKey: 'MNP.name',
- tsNs: 'country',
- activeForOrgs: true,
- },
- {
- id: 'ctry_01GW2HHDKCQX4EJEVCEME3EEBS',
- cca2: 'KP',
- name: 'North Korea',
- dialCode: null,
- flag: '🇰🇵',
- tsKey: 'PRK.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKAKGTGCFFE8HQGZXF4',
- cca2: 'MK',
- name: 'North Macedonia',
- dialCode: null,
- flag: '🇲🇰',
- tsKey: 'MKD.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK74HTQCYV1EVM79B1G',
- cca2: 'NO',
- name: 'Norway',
- dialCode: null,
- flag: '🇳🇴',
- tsKey: 'NOR.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKH3SMD6TVK8MPGE6DD',
- cca2: 'OM',
- name: 'Oman',
- dialCode: null,
- flag: '🇴🇲',
- tsKey: 'OMN.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKDDHRPPGSEFG2P69F0',
- cca2: 'PK',
- name: 'Pakistan',
- dialCode: null,
- flag: '🇵🇰',
- tsKey: 'PAK.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKBRDF1DMR5DA9DAT7K',
- cca2: 'PW',
- name: 'Palau',
- dialCode: null,
- flag: '🇵🇼',
- tsKey: 'PLW.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKGRRZM6X62GJ3M62Z4',
- cca2: 'PS',
- name: 'Palestine',
- dialCode: null,
- flag: '🇵🇸',
- tsKey: 'PSE.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK7JEDGYF9BQBZVDW0X',
- cca2: 'PA',
- name: 'Panama',
- dialCode: null,
- flag: '🇵🇦',
- tsKey: 'PAN.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK9HZ6M9Q2PJEX8T6HA',
- cca2: 'PG',
- name: 'Papua New Guinea',
- dialCode: null,
- flag: '🇵🇬',
- tsKey: 'PNG.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKF47X5KGDW8RWF841A',
- cca2: 'PY',
- name: 'Paraguay',
- dialCode: null,
- flag: '🇵🇾',
- tsKey: 'PRY.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKBRRZ84X368SH12W7Q',
- cca2: 'PE',
- name: 'Peru',
- dialCode: null,
- flag: '🇵🇪',
- tsKey: 'PER.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKAQTGEVED1E27QW61N',
- cca2: 'PH',
- name: 'Philippines',
- dialCode: null,
- flag: '🇵🇭',
- tsKey: 'PHL.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKJRNN53ENTSS4Z001K',
- cca2: 'PN',
- name: 'Pitcairn Islands',
- dialCode: null,
- flag: '🇵🇳',
- tsKey: 'PCN.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKBRG2CC67WN648YK7S',
- cca2: 'PL',
- name: 'Poland',
- dialCode: null,
- flag: '🇵🇱',
- tsKey: 'POL.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK9W45HXETV96K8CZAZ',
- cca2: 'PT',
- name: 'Portugal',
- dialCode: null,
- flag: '🇵🇹',
- tsKey: 'PRT.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK7PACTC9GJ2XBMVPKY',
- cca2: 'PR',
- name: 'Puerto Rico',
- dialCode: null,
- flag: '🇵🇷',
- tsKey: 'PRI.name',
- tsNs: 'country',
- activeForOrgs: true,
- },
- {
- id: 'ctry_01GW2HHDKA77DT55ZPJ8XKM8P3',
- cca2: 'QA',
- name: 'Qatar',
- dialCode: null,
- flag: '🇶🇦',
- tsKey: 'QAT.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKD20967VJAPNPBARXM',
- cca2: 'CG',
- name: 'Republic of the Congo',
- dialCode: null,
- flag: '🇨🇬',
- tsKey: 'COG.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK7HX3TFSB0HX6YDCRR',
- cca2: 'RE',
- name: 'Réunion',
- dialCode: null,
- flag: '🇷🇪',
- tsKey: 'REU.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKAGCFGK8W1ZFE62QKQ',
- cca2: 'RO',
- name: 'Romania',
- dialCode: null,
- flag: '🇷🇴',
- tsKey: 'ROU.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK8A3W54F0AW64VV2GD',
- cca2: 'RU',
- name: 'Russia',
- dialCode: null,
- flag: '🇷🇺',
- tsKey: 'RUS.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK8ZYZHYB9CAVW6C4ER',
- cca2: 'RW',
- name: 'Rwanda',
- dialCode: null,
- flag: '🇷🇼',
- tsKey: 'RWA.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKH0MMEJM9R74Z359R6',
- cca2: 'BL',
- name: 'Saint Barthélemy',
- dialCode: null,
- flag: '🇧🇱',
- tsKey: 'BLM.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKD9T5SF5CAMVPA1M4F',
- cca2: 'SH',
- name: 'Saint Helena, Ascension and Tristan da Cunha',
- dialCode: null,
- flag: '🇸🇭',
- tsKey: 'SHN.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKC0N6MV90J9VWJ6CQN',
- cca2: 'KN',
- name: 'Saint Kitts and Nevis',
- dialCode: null,
- flag: '🇰🇳',
- tsKey: 'KNA.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKFPY9T4YYDFWGBZP5P',
- cca2: 'LC',
- name: 'Saint Lucia',
- dialCode: null,
- flag: '🇱🇨',
- tsKey: 'LCA.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKD311V08MQJWG7CK03',
- cca2: 'MF',
- name: 'Saint Martin',
- dialCode: null,
- flag: '🇲🇫',
- tsKey: 'MAF.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK8MZVCAHNP3EBTHDGH',
- cca2: 'PM',
- name: 'Saint Pierre and Miquelon',
- dialCode: null,
- flag: '🇵🇲',
- tsKey: 'SPM.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKFYB0C2FBC8KQ50M36',
- cca2: 'VC',
- name: 'Saint Vincent and the Grenadines',
- dialCode: null,
- flag: '🇻🇨',
- tsKey: 'VCT.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKFTYX6T84QB1WZYYAY',
- cca2: 'WS',
- name: 'Samoa',
- dialCode: null,
- flag: '🇼🇸',
- tsKey: 'WSM.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK796T1HRBRQMRV2ZGH',
- cca2: 'SM',
- name: 'San Marino',
- dialCode: null,
- flag: '🇸🇲',
- tsKey: 'SMR.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK73TNXH3DFC5BV244P',
- cca2: 'ST',
- name: 'São Tomé and Príncipe',
- dialCode: null,
- flag: '🇸🇹',
- tsKey: 'STP.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKE6SRWQT7YKMEV7N5Y',
- cca2: 'SA',
- name: 'Saudi Arabia',
- dialCode: null,
- flag: '🇸🇦',
- tsKey: 'SAU.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKJ4620D1AB421E7JYX',
- cca2: 'SN',
- name: 'Senegal',
- dialCode: null,
- flag: '🇸🇳',
- tsKey: 'SEN.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKCGEP7FXQHWTQWB904',
- cca2: 'RS',
- name: 'Serbia',
- dialCode: null,
- flag: '🇷🇸',
- tsKey: 'SRB.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKHF02X3NEPGZ12ZFZV',
- cca2: 'SC',
- name: 'Seychelles',
- dialCode: null,
- flag: '🇸🇨',
- tsKey: 'SYC.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK70QBRG8S7ZXZP89W9',
- cca2: 'SL',
- name: 'Sierra Leone',
- dialCode: null,
- flag: '🇸🇱',
- tsKey: 'SLE.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK6FGT7BES1NPX66JTQ',
- cca2: 'SG',
- name: 'Singapore',
- dialCode: null,
- flag: '🇸🇬',
- tsKey: 'SGP.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKGQMAVVKJ3SPPCS689',
- cca2: 'SX',
- name: 'Sint Maarten',
- dialCode: null,
- flag: '🇸🇽',
- tsKey: 'SXM.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKG21ZM449SKC9HB5YK',
- cca2: 'SK',
- name: 'Slovakia',
- dialCode: null,
- flag: '🇸🇰',
- tsKey: 'SVK.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK95AW3T41X8R552F6R',
- cca2: 'SI',
- name: 'Slovenia',
- dialCode: null,
- flag: '🇸🇮',
- tsKey: 'SVN.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKC5TFN4HP9KQ7QCQR9',
- cca2: 'SB',
- name: 'Solomon Islands',
- dialCode: null,
- flag: '🇸🇧',
- tsKey: 'SLB.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKBHVDM3WCVS2THFMHT',
- cca2: 'SO',
- name: 'Somalia',
- dialCode: null,
- flag: '🇸🇴',
- tsKey: 'SOM.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKDNEGQ31JPB4V9BBMK',
- cca2: 'ZA',
- name: 'South Africa',
- dialCode: null,
- flag: '🇿🇦',
- tsKey: 'ZAF.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKBM1E4N9900Q4N942Y',
- cca2: 'GS',
- name: 'South Georgia',
- dialCode: null,
- flag: '🇬🇸',
- tsKey: 'SGS.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKH6NG85CKMSESSPHQK',
- cca2: 'KR',
- name: 'South Korea',
- dialCode: null,
- flag: '🇰🇷',
- tsKey: 'KOR.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKD48PB3V9R7ZWXZ3KP',
- cca2: 'SS',
- name: 'South Sudan',
- dialCode: null,
- flag: '🇸🇸',
- tsKey: 'SSD.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKAMRVA2E0TZBFPX7VF',
- cca2: 'ES',
- name: 'Spain',
- dialCode: null,
- flag: '🇪🇸',
- tsKey: 'ESP.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKHZNVZP299TK5QC9X6',
- cca2: 'LK',
- name: 'Sri Lanka',
- dialCode: null,
- flag: '🇱🇰',
- tsKey: 'LKA.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKH7NVGT1JBPB5B9SP3',
- cca2: 'SD',
- name: 'Sudan',
- dialCode: null,
- flag: '🇸🇩',
- tsKey: 'SDN.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKHZP2AGK419VGS2YQ0',
- cca2: 'SR',
- name: 'Suriname',
- dialCode: null,
- flag: '🇸🇷',
- tsKey: 'SUR.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKEG4RY89ACRQMNT8SB',
- cca2: 'SJ',
- name: 'Svalbard and Jan Mayen',
- dialCode: null,
- flag: '🇸🇯',
- tsKey: 'SJM.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKBCAGQ1RJGC3ZP6Z5S',
- cca2: 'SE',
- name: 'Sweden',
- dialCode: null,
- flag: '🇸🇪',
- tsKey: 'SWE.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKGFE1AY05PY62XEWPM',
- cca2: 'CH',
- name: 'Switzerland',
- dialCode: null,
- flag: '🇨🇭',
- tsKey: 'CHE.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKBCYJXSMFM5N5VW3Q5',
- cca2: 'SY',
- name: 'Syria',
- dialCode: null,
- flag: '🇸🇾',
- tsKey: 'SYR.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKHMX2CYG3GWYA23W4B',
- cca2: 'TW',
- name: 'Taiwan',
- dialCode: null,
- flag: '🇹🇼',
- tsKey: 'TWN.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKAHQVZWP2NHE3A02B5',
- cca2: 'TJ',
- name: 'Tajikistan',
- dialCode: null,
- flag: '🇹🇯',
- tsKey: 'TJK.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKE97QHYGJXTAGWENKK',
- cca2: 'TZ',
- name: 'Tanzania',
- dialCode: null,
- flag: '🇹🇿',
- tsKey: 'TZA.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKGVAGE7SGTXWD5V2EP',
- cca2: 'TH',
- name: 'Thailand',
- dialCode: null,
- flag: '🇹🇭',
- tsKey: 'THA.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKF1NR34T2G6FMKQCYD',
- cca2: 'TL',
- name: 'Timor-Leste',
- dialCode: null,
- flag: '🇹🇱',
- tsKey: 'TLS.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKDMWST2K7SVAAEP7K5',
- cca2: 'TG',
- name: 'Togo',
- dialCode: null,
- flag: '🇹🇬',
- tsKey: 'TGO.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKFRPGM3P3HD5747R23',
- cca2: 'TK',
- name: 'Tokelau',
- dialCode: null,
- flag: '🇹🇰',
- tsKey: 'TKL.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKG1TWFSYE4QQ6CRFX7',
- cca2: 'TO',
- name: 'Tonga',
- dialCode: null,
- flag: '🇹🇴',
- tsKey: 'TON.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK94QVSXT8Q12EDB4XP',
- cca2: 'TT',
- name: 'Trinidad and Tobago',
- dialCode: null,
- flag: '🇹🇹',
- tsKey: 'TTO.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKGG7JZ2RN968FJNWJ8',
- cca2: 'TN',
- name: 'Tunisia',
- dialCode: null,
- flag: '🇹🇳',
- tsKey: 'TUN.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK8NAY2T3GHNV1HVD3M',
- cca2: 'TR',
- name: 'Turkey',
- dialCode: null,
- flag: '🇹🇷',
- tsKey: 'TUR.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKEFVF6N0VM03AGGZF7',
- cca2: 'TM',
- name: 'Turkmenistan',
- dialCode: null,
- flag: '🇹🇲',
- tsKey: 'TKM.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKEE1FJ2XTH7MA2AZP1',
- cca2: 'TC',
- name: 'Turks and Caicos Islands',
- dialCode: null,
- flag: '🇹🇨',
- tsKey: 'TCA.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK7BMH7NEWWCXXE4XTG',
- cca2: 'TV',
- name: 'Tuvalu',
- dialCode: null,
- flag: '🇹🇻',
- tsKey: 'TUV.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKF91Z0RAW6TC6P5TAP',
- cca2: 'UG',
- name: 'Uganda',
- dialCode: null,
- flag: '🇺🇬',
- tsKey: 'UGA.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKBX833SWMMRHFEXGDG',
- cca2: 'UA',
- name: 'Ukraine',
- dialCode: null,
- flag: '🇺🇦',
- tsKey: 'UKR.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKDXBNPG01NBMPKYFZ2',
- cca2: 'AE',
- name: 'United Arab Emirates',
- dialCode: null,
- flag: '🇦🇪',
- tsKey: 'ARE.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKFTPR1W2P2M9E081J5',
- cca2: 'GB',
- name: 'United Kingdom',
- dialCode: null,
- flag: '🇬🇧',
- tsKey: 'GBR.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK9M26M80SG63T21SVH',
- cca2: 'US',
- name: 'United States',
- dialCode: null,
- flag: '🇺🇸',
- tsKey: 'USA.name',
- tsNs: 'country',
- activeForOrgs: true,
- },
- {
- id: 'ctry_01GW2HHDKCRS9KW4FG2WR2GG06',
- cca2: 'UM',
- name: 'United States Minor Outlying Islands',
- dialCode: null,
- flag: '🇺🇲',
- tsKey: 'UMI.name',
- tsNs: 'country',
- activeForOrgs: true,
- },
- {
- id: 'ctry_01GW2HHDK9DG12Y7RQMVEE5XSQ',
- cca2: 'VI',
- name: 'United States Virgin Islands',
- dialCode: null,
- flag: '🇻🇮',
- tsKey: 'VIR.name',
- tsNs: 'country',
- activeForOrgs: true,
- },
- {
- id: 'ctry_01GW2HHDKAZYVYFHDZNZDE4HPB',
- cca2: 'UY',
- name: 'Uruguay',
- dialCode: null,
- flag: '🇺🇾',
- tsKey: 'URY.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKH6KGE8D69GPF7SSAJ',
- cca2: 'UZ',
- name: 'Uzbekistan',
- dialCode: null,
- flag: '🇺🇿',
- tsKey: 'UZB.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKBARW56WYXTBMBX9Z8',
- cca2: 'VU',
- name: 'Vanuatu',
- dialCode: null,
- flag: '🇻🇺',
- tsKey: 'VUT.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKD09MHFTWE9SKVMMJ0',
- cca2: 'VA',
- name: 'Vatican City',
- dialCode: null,
- flag: '🇻🇦',
- tsKey: 'VAT.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKGJG43HR2M2T7JQ5DC',
- cca2: 'VE',
- name: 'Venezuela',
- dialCode: null,
- flag: '🇻🇪',
- tsKey: 'VEN.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKFX9C6AWNQ3F32P95P',
- cca2: 'VN',
- name: 'Vietnam',
- dialCode: null,
- flag: '🇻🇳',
- tsKey: 'VNM.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKEYSJWN1W0AYDS0NH4',
- cca2: 'WF',
- name: 'Wallis and Futuna',
- dialCode: null,
- flag: '🇼🇫',
- tsKey: 'WLF.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDK87660QN220M6T4S2K',
- cca2: 'EH',
- name: 'Western Sahara',
- dialCode: null,
- flag: '🇪🇭',
- tsKey: 'ESH.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKA60427HJJGXNGC3EV',
- cca2: 'YE',
- name: 'Yemen',
- dialCode: null,
- flag: '🇾🇪',
- tsKey: 'YEM.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKFPXSJ18WSJ8GEZKJ0',
- cca2: 'ZM',
- name: 'Zambia',
- dialCode: null,
- flag: '🇿🇲',
- tsKey: 'ZMB.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
- {
- id: 'ctry_01GW2HHDKENXBKBZTFJ4PA6Z2C',
- cca2: 'ZW',
- name: 'Zimbabwe',
- dialCode: null,
- flag: '🇿🇼',
- tsKey: 'ZWE.name',
- tsNs: 'country',
- activeForOrgs: null,
- },
-] satisfies ApiOutput['fieldOpt']['countries']
+const queryAttributeCategories: MockAPIHandler<'fieldOpt', 'attributeCategories'> = async (query) => {
+ const attributeCategories = (await import('./json/fieldOpt.attributeCategories.json')).default
+ if (Array.isArray(query)) {
+ return attributeCategories.filter(({ tag }) => query.includes(tag))
+ }
+ return attributeCategories
+}
+
+const queryAttributesByCategory: MockAPIHandler<'fieldOpt', 'attributesByCategory'> = async (query) => {
+ const attributesByCategory = (await import('./json/fieldOpt.attributesByCategory.json')).default
+ if (typeof query === 'string' || Array.isArray(query)) {
+ return attributesByCategory.filter(({ categoryName }) =>
+ Array.isArray(query) ? query.includes(categoryName) : query === categoryName
+ ) as ApiOutput['fieldOpt']['attributesByCategory']
+ }
+ return attributesByCategory as ApiOutput['fieldOpt']['attributesByCategory']
+}
+
+const queryLanguages: MockAPIHandler<'fieldOpt', 'languages'> = async (query) => {
+ const languages = (await import('./json/fieldOpt.languages.json')).default
+ const { localeCode, activelyTranslated } = query ?? {}
+ if (localeCode || activelyTranslated) {
+ return languages.filter((record) => {
+ switch (true) {
+ case Boolean(localeCode) && activelyTranslated !== undefined: {
+ return localeCode === record.localeCode && activelyTranslated === record.activelyTranslated
+ }
+ case Boolean(localeCode): {
+ return localeCode === record.localeCode
+ }
+ case activelyTranslated !== undefined: {
+ return activelyTranslated === record.activelyTranslated
+ }
+ }
+ })
+ }
+ return languages
+}
-export const queryCountries = (query: ApiInput['fieldOpt']['countries']) => {
- if (query?.where) {
- const { activeForOrgs, cca2 } = query.where
+const queryCountries: MockAPIHandler<'fieldOpt', 'countries'> = async (query) => {
+ const countries = (await import('./json/fieldOpt.countries.json')).default
+ if (query) {
+ const { activeForOrgs, cca2 } = query
return countries.filter(
(record) =>
(activeForOrgs !== undefined ? activeForOrgs === record.activeForOrgs : true) &&
@@ -5312,3848 +55,14 @@ export const queryCountries = (query: ApiInput['fieldOpt']['countries']) => {
return countries
}
-export const govDistsByCountry = [
- {
- id: 'ctry_01GW2HHDKAWXWYHAAESAA5HH94',
- tsKey: 'CAN.name',
- tsNs: 'country',
- cca2: 'CA',
- flag: '🇨🇦',
- govDist: [
- {
- id: 'gdst_01GW2HKFSK070K54ZRAT3H42C4',
- tsKey: 'ca-alberta',
- tsNs: 'gov-dist',
- abbrev: 'AB',
- govDistType: {
- tsKey: 'type-province',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKFSMR5V1P769F2G2804N',
- tsKey: 'ca-british-columbia',
- tsNs: 'gov-dist',
- abbrev: 'BC',
- govDistType: {
- tsKey: 'type-province',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- ],
- },
- {
- id: 'ctry_01GW2HHDKB9DG2T2YZM5MFFVX9',
- tsKey: 'MEX.name',
- tsNs: 'country',
- cca2: 'MX',
- flag: '🇲🇽',
- govDist: [
- {
- id: 'gdst_01GW2HKJ7NT27K6BDAV0KE00H0',
- tsKey: 'mx-aguascalientes',
- tsNs: 'gov-dist',
- abbrev: 'Ags.',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKJ7NHSPR1AZ1RKJR6VAX',
- tsKey: 'mx-baja-california',
- tsNs: 'gov-dist',
- abbrev: 'B.C.',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- ],
- },
- {
- id: 'ctry_01GW2HHDK9M26M80SG63T21SVH',
- tsKey: 'USA.name',
- tsNs: 'country',
- cca2: 'US',
- flag: '🇺🇸',
- govDist: [
- {
- id: 'gdst_01GW2HJ23GMD17FBJMJWD16PZ1',
- tsKey: 'us-california',
- tsNs: 'gov-dist',
- abbrev: 'CA',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- subDistricts: [
- {
- id: 'gdst_01GW2HJ2S3NV642EBKYB453WV2',
- tsKey: 'us-california-alameda-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S0FCS7K0AKCRDGXDVS',
- tsKey: 'us-california-alpine-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2RZTR8JSBS9N7NWE7RH',
- tsKey: 'us-california-amador-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S0BF8VEVE4C2JJ7XDP',
- tsKey: 'us-california-butte-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S2375BWT5BZRVYFQBQ',
- tsKey: 'us-california-calaveras-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S22WBM3SCG9A0W9WWY',
- tsKey: 'us-california-colusa-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S2B8RM2W8G4XGXD9YQ',
- tsKey: 'us-california-contra-costa-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S29P9EGP90SDM23B83',
- tsKey: 'us-california-del-norte-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S31P315AJ89ZCA0C7T',
- tsKey: 'us-california-el-dorado-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S3F38PQ9371BZ2711A',
- tsKey: 'us-california-fresno-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2RZTSM5SRNKKP6CMA1W',
- tsKey: 'us-california-glenn-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S31C34DF484QHSBTE1',
- tsKey: 'us-california-humboldt-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S2Z1BQHXGZ0PPE9FEV',
- tsKey: 'us-california-imperial-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S26VB6FGYS10WH4NBD',
- tsKey: 'us-california-inyo-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S2FE9H9HWN63YTRZX5',
- tsKey: 'us-california-kern-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S2VXZ65220HWFG7P8R',
- tsKey: 'us-california-kings-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S0NP9P9KRWW2BWNAJ3',
- tsKey: 'us-california-lake-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S3KSDBFS16JSAPDAZV',
- tsKey: 'us-california-lassen-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S3YA4SH7YRMT2XFM5K',
- tsKey: 'us-california-los-angeles-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S2WKVS2TC6332PJGBC',
- tsKey: 'us-california-madera-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S28VBX43G7VV20FJRN',
- tsKey: 'us-california-marin-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S0NKDE9ENJ465KQ6WN',
- tsKey: 'us-california-mariposa-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S00J3086ZYZPPNA1ZB',
- tsKey: 'us-california-mendocino-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S2P3CEVK5S3ZEZ6F6Q',
- tsKey: 'us-california-merced-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S0PZHSY20AR3RYH3X9',
- tsKey: 'us-california-modoc-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S0KG4KF8D0Z2Q82AA8',
- tsKey: 'us-california-mono-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S274EH19Y4G10BCN79',
- tsKey: 'us-california-monterey-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S0N7EFJR843V3J8S1V',
- tsKey: 'us-california-napa-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S0CY1BH0CRSFX3RS4A',
- tsKey: 'us-california-nevada-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S0H7FBKRZ3Z1X68VY8',
- tsKey: 'us-california-orange-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S3YDHZ7Y37GGG6ZXPD',
- tsKey: 'us-california-placer-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S2WB9E7AB5ACJHWDMR',
- tsKey: 'us-california-plumas-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S1RTTPB99TDP8PXS7S',
- tsKey: 'us-california-riverside-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S3PDNBQNM938FD1GR6',
- tsKey: 'us-california-sacramento-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S1V8R197ZPXMJDZE8J',
- tsKey: 'us-california-san-benito-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S3ZBV5QB5DAXV0ZTQK',
- tsKey: 'us-california-san-bernardino-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S1ZXYM6QXPT72BRW9W',
- tsKey: 'us-california-san-diego-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S1061RNRAT6S4RJN1S',
- tsKey: 'us-california-san-francisco-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S2K53D4DC13M78AC3G',
- tsKey: 'us-california-san-joaquin-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S344VZ0TN0S3ZZJ690',
- tsKey: 'us-california-san-luis-obispo-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S18EKZY5X34G3PESCJ',
- tsKey: 'us-california-san-mateo-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S1HEEFPD9QYFYFY4RM',
- tsKey: 'us-california-santa-barbara-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S39QVV0JNJPRFJ2JDN',
- tsKey: 'us-california-santa-clara-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S1B9WCBZXGQDMXQ06H',
- tsKey: 'us-california-santa-cruz-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S0986PGZQTC3P0C2JR',
- tsKey: 'us-california-shasta-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S2X9ZDDTP4Z58RKP44',
- tsKey: 'us-california-sierra-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S39FPMRSGQKPFEV3HJ',
- tsKey: 'us-california-siskiyou-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S1M29WW2M3VCQ50X3B',
- tsKey: 'us-california-solano-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S3BR9ACMV83E31ABJK',
- tsKey: 'us-california-sonoma-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S0VXQRAH0TJ2J285KE',
- tsKey: 'us-california-stanislaus-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S13CSJ07S446G4P43H',
- tsKey: 'us-california-sutter-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S1WH5MHREF3QQ5W8E6',
- tsKey: 'us-california-tehama-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S3WJ59X7XTNWRZDR96',
- tsKey: 'us-california-trinity-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S2PDH6KNXE2P2ZHBSQ',
- tsKey: 'us-california-tulare-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S1KF0C7KMTQY3G9QJY',
- tsKey: 'us-california-tuolumne-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S32NBERK4HP2TS8RA4',
- tsKey: 'us-california-ventura-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S1TAEB9SX8DXC90R2J',
- tsKey: 'us-california-yolo-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HJ2S0K40WVRMZ91AEWKKY',
- tsKey: 'us-california-yuba-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- ],
- },
-
- {
- id: 'gdst_01GW2HKADSS3SDS9XJV1WHMTVY',
- tsKey: 'us-virginia',
- tsNs: 'gov-dist',
- abbrev: 'VA',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- subDistricts: [
- {
- id: 'gdst_01GW2HKB0PJZRSP1HDTZPWQZ0Q',
- tsKey: 'us-virginia-accomack-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0JBK9TRQ1X194M03XA',
- tsKey: 'us-virginia-albemarle-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0FW4TZW1KG1G2GGH6P',
- tsKey: 'us-virginia-alexandria-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0H3ZS2Q9381Y1YTQJH',
- tsKey: 'us-virginia-alleghany-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0GN3ECM4GEK863VWJ4',
- tsKey: 'us-virginia-amelia-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0J7W9VAA5Z2NP2DT0S',
- tsKey: 'us-virginia-amherst-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0H586ZXETHKM0JR5QP',
- tsKey: 'us-virginia-appomattox-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0HQ34JX4SB211WD84Q',
- tsKey: 'us-virginia-arlington-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0HRY5D6E3P0F9WRY16',
- tsKey: 'us-virginia-augusta-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0GXW530Z9F2S0Y5CRW',
- tsKey: 'us-virginia-bath-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0HSET8AD2QS3DW5CTH',
- tsKey: 'us-virginia-bedford-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0KG2G0R852TF709SVM',
- tsKey: 'us-virginia-bedford-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0PZQ7H7HX8377E9YHT',
- tsKey: 'us-virginia-bland-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0JMK7FTVPHHCZWMD4E',
- tsKey: 'us-virginia-botetourt-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0MZG7D05TJS4G5QMEN',
- tsKey: 'us-virginia-bristol-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0H5PMAAPVBDJ0D186X',
- tsKey: 'us-virginia-brunswick-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0PJ6J621PN5KWVPEW4',
- tsKey: 'us-virginia-buchanan-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0GBN2NVT1MH0KDR4NR',
- tsKey: 'us-virginia-buckingham-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0FYS4B10FJ7FPPYHSJ',
- tsKey: 'us-virginia-buena-vista-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0HTFX3HDD208Y3QXG0',
- tsKey: 'us-virginia-campbell-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0HVWEFS7G7ZQKKPNJM',
- tsKey: 'us-virginia-caroline-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0J2GF31268NYDY8E3Y',
- tsKey: 'us-virginia-carroll-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0HS8ZX8EY67T4TF46X',
- tsKey: 'us-virginia-charles-city-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0PZY44QRDZZH62TN8K',
- tsKey: 'us-virginia-charlotte-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0FY8X9FB05Q72QNRE5',
- tsKey: 'us-virginia-charlottesville-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0M5TTA410XSE0FP2Y4',
- tsKey: 'us-virginia-chesapeake-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0PSBKNGN85WHVTB6JS',
- tsKey: 'us-virginia-chesterfield-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0GBMW3SPGPKS9RG7C8',
- tsKey: 'us-virginia-clarke-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0P6Y87TEST13Q32CCD',
- tsKey: 'us-virginia-colonial-heights-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0MVM77MBMF7RXF2M29',
- tsKey: 'us-virginia-covington-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0HP1RF1VAK4C11XHKJ',
- tsKey: 'us-virginia-craig-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0GV2VTRRVQH3KDBKFJ',
- tsKey: 'us-virginia-culpeper-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0HEAHZ4DFZWYY2ZXJ3',
- tsKey: 'us-virginia-cumberland-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0KBEFKV554MWFC53QN',
- tsKey: 'us-virginia-danville-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0H3FYXKEVCDJ447QJ8',
- tsKey: 'us-virginia-dickenson-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0JNBSJ1R8Y8CRM5NVV',
- tsKey: 'us-virginia-dinwiddie-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0FMSE84CHQCV38TTJ8',
- tsKey: 'us-virginia-emporia-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0JK3ND13FVSKVP87TW',
- tsKey: 'us-virginia-essex-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0HZJYN6NQAQWMTSY8E',
- tsKey: 'us-virginia-fairfax-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0NJVC3N82WNDDT9C8S',
- tsKey: 'us-virginia-fairfax-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0MA2EGPWWYJT3CNQAV',
- tsKey: 'us-virginia-falls-church-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0H56GT8XWKRFG6NPMJ',
- tsKey: 'us-virginia-fauquier-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0GZ8WQQW89Z5ZJ0MBN',
- tsKey: 'us-virginia-floyd-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0JK4PYYB55WWFM9K37',
- tsKey: 'us-virginia-fluvanna-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0J4YXEA2HWGNB9BPWZ',
- tsKey: 'us-virginia-franklin-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0KMSRD4J9FX440P7D7',
- tsKey: 'us-virginia-franklin-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0J933V3XRK15B3T73W',
- tsKey: 'us-virginia-frederick-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0PSGNJE6T8H90HPCHH',
- tsKey: 'us-virginia-fredericksburg-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0MYSAT95PSV24MEAMT',
- tsKey: 'us-virginia-galax-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0N96EZNGWJG43GAS9J',
- tsKey: 'us-virginia-giles-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0JETDKXPPHQ0J718VJ',
- tsKey: 'us-virginia-gloucester-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0G0QRBEZ07CC0RWWAM',
- tsKey: 'us-virginia-goochland-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0N9ASZ8CRDF004RNFW',
- tsKey: 'us-virginia-grayson-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0JDMRVC1CHYRYTFQGZ',
- tsKey: 'us-virginia-greene-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0JPJYKAXDXAFEEYR78',
- tsKey: 'us-virginia-greensville-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0N8P1FNFJ1BPTR8WE5',
- tsKey: 'us-virginia-halifax-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0P8P7PS73DJRZCFNJ0',
- tsKey: 'us-virginia-hampton-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0JTS7DZ9A76CHMNZ3D',
- tsKey: 'us-virginia-hanover-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0FRNA08GACDV11XHGZ',
- tsKey: 'us-virginia-harrisonburg-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0PMBBB5K1R414D6N15',
- tsKey: 'us-virginia-henrico-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0NAT6691254555QNGA',
- tsKey: 'us-virginia-henry-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0J7726Z2CR3Y5TSFQ7',
- tsKey: 'us-virginia-highland-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0FS0TT1EGPYDZCTMKY',
- tsKey: 'us-virginia-hopewell-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0NWQ0XFZCKHSZHHWTA',
- tsKey: 'us-virginia-isle-of-wight-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0JEN9PW8VH3YWG1ZHX',
- tsKey: 'us-virginia-james-city-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0KTX4H59EF3V8Z0XJD',
- tsKey: 'us-virginia-king-and-queen-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0NHWW6YH4RG2NXJGPN',
- tsKey: 'us-virginia-king-george-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0GVB2W0GTGK5BEYY0D',
- tsKey: 'us-virginia-king-william-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0JHSAB7WPWAPSMHYGR',
- tsKey: 'us-virginia-lancaster-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0NGNA730MD28CPHDQ1',
- tsKey: 'us-virginia-lee-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0M65Y0P1QXB4SPKVV1',
- tsKey: 'us-virginia-lexington-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0NM1DQRYN1XJMW9MD2',
- tsKey: 'us-virginia-loudoun-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0KC52V3FDKNJ5B2HVX',
- tsKey: 'us-virginia-louisa-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0GK2CABDFY1PWK6JDG',
- tsKey: 'us-virginia-lunenburg-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0KE6VN72G8YDMS6KEF',
- tsKey: 'us-virginia-lynchburg-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0GFF7F7FST6MQ4H1N7',
- tsKey: 'us-virginia-madison-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0MS6X6709G4516QS7M',
- tsKey: 'us-virginia-manassas-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0M76FXBT19NYNBTDXM',
- tsKey: 'us-virginia-manassas-park-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0PWC3EBBWD25FN49K6',
- tsKey: 'us-virginia-martinsville-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0JN6MEMJABDGXQ4B5R',
- tsKey: 'us-virginia-mathews-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0N869YBT65S8HVJ08V',
- tsKey: 'us-virginia-mecklenburg-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0JZAXBMN9VNTNMZZZ3',
- tsKey: 'us-virginia-middlesex-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0EBMXHF0EECFJ60B4W',
- tsKey: 'us-virginia-montgomery-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0F1Q74BT7X2JPN8X5K',
- tsKey: 'us-virginia-nelson-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0KZQYVTF5GHP9NY03P',
- tsKey: 'us-virginia-new-kent-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0PAPZNAVGNE1VQFQTW',
- tsKey: 'us-virginia-newport-news-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0M2V4Z0M8JMFS26E3M',
- tsKey: 'us-virginia-norfolk-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0N88RHCHAX4QNMDFKZ',
- tsKey: 'us-virginia-northampton-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0KQS1XAQZ924V8G4DG',
- tsKey: 'us-virginia-northumberland-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0KKMCGNSTZG6YG1JC9',
- tsKey: 'us-virginia-norton-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0K0ZV03EP0NEMDAKT0',
- tsKey: 'us-virginia-nottoway-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0KFGV7RW5FFDZG29F9',
- tsKey: 'us-virginia-orange-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0KRAZ85M9CJV73RYZM',
- tsKey: 'us-virginia-page-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0F58509XFMEVD1BG70',
- tsKey: 'us-virginia-patrick-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0NHHK2MWB4W0891PFB',
- tsKey: 'us-virginia-petersburg-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0KMV61ZJ14MP06GQQF',
- tsKey: 'us-virginia-pittsylvania-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0PR6W8E6DW7WJ489GG',
- tsKey: 'us-virginia-poquoson-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0K0YPERNG3ZMW61XC3',
- tsKey: 'us-virginia-portsmouth-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0FQ8Y4GB4VCVRPM6BB',
- tsKey: 'us-virginia-powhatan-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0N9AZC1MD3C7PRDRR9',
- tsKey: 'us-virginia-prince-edward-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0N1DH9TJSVQJ7NQ7CM',
- tsKey: 'us-virginia-prince-george-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0MAJKW3NPWSPDPPZ01',
- tsKey: 'us-virginia-prince-william-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0F7KYTS267567CSZ09',
- tsKey: 'us-virginia-pulaski-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0NHHBVD9VWC456QB30',
- tsKey: 'us-virginia-radford-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0F48KQVT5ZH54AA00J',
- tsKey: 'us-virginia-rappahannock-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0NCHVAD1VF9J889TB5',
- tsKey: 'us-virginia-richmond-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0G8HHGGBQ8XEH3DBB7',
- tsKey: 'us-virginia-richmond-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0PSG78HP329YQ2NN3E',
- tsKey: 'us-virginia-roanoke-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0NKYDZ5F4RCT97DTWS',
- tsKey: 'us-virginia-roanoke-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0MYD69PQ9SHKQ36WFH',
- tsKey: 'us-virginia-rockbridge-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0NG5FCAYAT4B2FQEY5',
- tsKey: 'us-virginia-rockingham-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0K1JMQH4AGNCZ8BG6M',
- tsKey: 'us-virginia-russell-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0GHESXG2394TH7WVW8',
- tsKey: 'us-virginia-salem-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0MSDATG91HA86MFTSC',
- tsKey: 'us-virginia-scott-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0MA48KQ0DM8QC0SXRJ',
- tsKey: 'us-virginia-shenandoah-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0F7RKJ60T5A1EAS1MK',
- tsKey: 'us-virginia-smyth-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0N4T0CMMZHN8QEYG12',
- tsKey: 'us-virginia-southampton-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0N2MEBEK9TWTQ9BVQF',
- tsKey: 'us-virginia-spotsylvania-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0K87S28FP0PX6GM8WS',
- tsKey: 'us-virginia-stafford-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0N3GZGJ34ABRPHY991',
- tsKey: 'us-virginia-staunton-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0GWGXFKKR0N6EWER8H',
- tsKey: 'us-virginia-suffolk-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0MP1TA2FAZZ012Z4SB',
- tsKey: 'us-virginia-surry-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0MHKBHCVWTJMQZ5E3G',
- tsKey: 'us-virginia-sussex-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0MKT9661MVQBWASX6P',
- tsKey: 'us-virginia-tazewell-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0HDVCT703CEJAP63SH',
- tsKey: 'us-virginia-virginia-beach-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0FE8REZNCYTFXDAJHR',
- tsKey: 'us-virginia-warren-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0MZJNXJVFR04QXADPD',
- tsKey: 'us-virginia-washington-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0GF74GCJPT6H8N3XT6',
- tsKey: 'us-virginia-waynesboro-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0PJ788W3NDZB6362WV',
- tsKey: 'us-virginia-westmoreland-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0K1R8TAG0ZEHTKTJ84',
- tsKey: 'us-virginia-williamsburg-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0H4VACBK484AHVCEW1',
- tsKey: 'us-virginia-winchester-city',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-city',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0MWB71FPEMZP6BM3F8',
- tsKey: 'us-virginia-wise-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0FF1A4F9V19C7FP9W2',
- tsKey: 'us-virginia-wythe-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- {
- id: 'gdst_01GW2HKB0P1TJKMDXBKCDRMYQK',
- tsKey: 'us-virginia-york-county',
- tsNs: 'gov-dist',
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- subDistricts: [],
- },
- ],
- },
- ],
- },
-] satisfies ApiOutput['fieldOpt']['govDistsByCountry']
-export const queryGovDistsByCountry = (query: ApiInput['fieldOpt']['govDistsByCountry']) => {
+const queryGovDistsByCountry: MockAPIHandler<'fieldOpt', 'govDistsByCountry'> = async (query) => {
+ const govDistsByCountry = (await import('./json/fieldOpt.govDistsByCountry.json')).default
if (query) return govDistsByCountry.filter(({ cca2 }) => cca2 === query)
return govDistsByCountry
}
-const govDistByCountryNoSub = [
- {
- id: 'ctry_01GW2HHDK67GZQVGA3NZ8PE5SS',
- tsKey: 'ASM.name',
- tsNs: 'country',
- cca2: 'AS',
- flag: '🇦🇸',
- govDist: [],
- },
- {
- id: 'ctry_01GW2HHDKAWXWYHAAESAA5HH94',
- tsKey: 'CAN.name',
- tsNs: 'country',
- cca2: 'CA',
- flag: '🇨🇦',
- govDist: [
- {
- id: 'gdst_01GW2HKFSK070K54ZRAT3H42C4',
- tsKey: 'ca-alberta',
- tsNs: 'gov-dist',
- abbrev: 'AB',
- govDistType: {
- tsKey: 'type-province',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKFSMR5V1P769F2G2804N',
- tsKey: 'ca-british-columbia',
- tsNs: 'gov-dist',
- abbrev: 'BC',
- govDistType: {
- tsKey: 'type-province',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKFSRPH07M2AQSJWESENJ',
- tsKey: 'ca-manitoba',
- tsNs: 'gov-dist',
- abbrev: 'MB',
- govDistType: {
- tsKey: 'type-province',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKFSRBQ5FXY7ESXTZGR2V',
- tsKey: 'ca-new-brunswick',
- tsNs: 'gov-dist',
- abbrev: 'NB',
- govDistType: {
- tsKey: 'type-province',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKFSS7E4VCJ3PSAFDZG4A',
- tsKey: 'ca-newfoundland-and-labrador',
- tsNs: 'gov-dist',
- abbrev: 'NL',
- govDistType: {
- tsKey: 'type-province',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKFSWQPT9JHKMGGN43BRA',
- tsKey: 'ca-northwest-territories',
- tsNs: 'gov-dist',
- abbrev: 'NT',
- govDistType: {
- tsKey: 'type-territory',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKFSY6D07GJX9M0MT2VWQ',
- tsKey: 'ca-nova-scotia',
- tsNs: 'gov-dist',
- abbrev: 'NS',
- govDistType: {
- tsKey: 'type-province',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKFSZRAJ76MWQSW5GX6KZ',
- tsKey: 'ca-nunavut',
- tsNs: 'gov-dist',
- abbrev: 'NU',
- govDistType: {
- tsKey: 'type-territory',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKFTJXFCJ87G5J1XKA6R3',
- tsKey: 'ca-ontario',
- tsNs: 'gov-dist',
- abbrev: 'ON',
- govDistType: {
- tsKey: 'type-province',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKFTNQQHHFQ9SRDB91SHQ',
- tsKey: 'ca-prince-edward-island',
- tsNs: 'gov-dist',
- abbrev: 'PE',
- govDistType: {
- tsKey: 'type-province',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKFTNBZ4QT6F6AHNF8H46',
- tsKey: 'ca-quebec',
- tsNs: 'gov-dist',
- abbrev: 'QC',
- govDistType: {
- tsKey: 'type-province',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKFTR4D2KWGB6G1GJ15PB',
- tsKey: 'ca-saskatchewan',
- tsNs: 'gov-dist',
- abbrev: 'SK',
- govDistType: {
- tsKey: 'type-province',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKFTRD0ANP4QTCTQ9VH0J',
- tsKey: 'ca-yukon',
- tsNs: 'gov-dist',
- abbrev: 'YT',
- govDistType: {
- tsKey: 'type-territory',
- tsNs: 'gov-dist',
- },
- },
- ],
- },
- {
- id: 'ctry_01GW2HHDKGZ2XQ8Q9D8GX564MJ',
- tsKey: 'GUM.name',
- tsNs: 'country',
- cca2: 'GU',
- flag: '🇬🇺',
- govDist: [],
- },
- {
- id: 'ctry_01GW2HHDKFJ4Q7PBTTN4GSMPV0',
- tsKey: 'MNP.name',
- tsNs: 'country',
- cca2: 'MP',
- flag: '🇲🇵',
- govDist: [],
- },
- {
- id: 'ctry_01GW2HHDKB9DG2T2YZM5MFFVX9',
- tsKey: 'MEX.name',
- tsNs: 'country',
- cca2: 'MX',
- flag: '🇲🇽',
- govDist: [
- {
- id: 'gdst_01GW2HKJ7NT27K6BDAV0KE00H0',
- tsKey: 'mx-aguascalientes',
- tsNs: 'gov-dist',
- abbrev: 'Ags.',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKJ7NHSPR1AZ1RKJR6VAX',
- tsKey: 'mx-baja-california',
- tsNs: 'gov-dist',
- abbrev: 'B.C.',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKJ7PP2TBNC8MQQS02N6S',
- tsKey: 'mx-baja-california-sur',
- tsNs: 'gov-dist',
- abbrev: 'B.C.S.',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKJ7PYKWCEPVPG68EDP4F',
- tsKey: 'mx-campeche',
- tsNs: 'gov-dist',
- abbrev: 'Camp.',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKJ7QP8FG3WQCWFTQKJC7',
- tsKey: 'mx-chiapas',
- tsNs: 'gov-dist',
- abbrev: 'Chis.',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKJ7QGNZ81C60E6AX505R',
- tsKey: 'mx-chihuahua',
- tsNs: 'gov-dist',
- abbrev: 'Chih.',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKJ7QDVHS9K3FJGJ3DCVG',
- tsKey: 'mx-coahuila',
- tsNs: 'gov-dist',
- abbrev: 'Coah.',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKJ7R844VVGTC4G4TTXE0',
- tsKey: 'mx-colima',
- tsNs: 'gov-dist',
- abbrev: 'Col.',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKJ7RG6XAZFVW3KHZEJ5N',
- tsKey: 'mx-distrito-federal',
- tsNs: 'gov-dist',
- abbrev: 'D.F.',
- govDistType: {
- tsKey: 'type-district',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKJ7RNCFT58G1MBPDX7RE',
- tsKey: 'mx-durango',
- tsNs: 'gov-dist',
- abbrev: 'Dgo.',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKJ7SKC6E0B6N0NY2K6M8',
- tsKey: 'mx-guanajuato',
- tsNs: 'gov-dist',
- abbrev: 'Gto.',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKJ7SDMPRET5KPDRK8Y5Y',
- tsKey: 'mx-guerrero',
- tsNs: 'gov-dist',
- abbrev: 'Gro.',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKJ7SDVGBXMWX3GN3QNK0',
- tsKey: 'mx-hidalgo',
- tsNs: 'gov-dist',
- abbrev: 'Hgo.',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKJ7TRTV31X30NRY0NYX2',
- tsKey: 'mx-jalisco',
- tsNs: 'gov-dist',
- abbrev: 'Jal.',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKJ7TH3H6DP8T7X9JD0P7',
- tsKey: 'mx-mexico',
- tsNs: 'gov-dist',
- abbrev: 'Méx.',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKJ7TVTPXQXX72QHX8P8T',
- tsKey: 'mx-michoacan',
- tsNs: 'gov-dist',
- abbrev: 'Mich.',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKJ7VTQZZ91SN99P0N4ZH',
- tsKey: 'mx-morelos',
- tsNs: 'gov-dist',
- abbrev: 'Mor.',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKJ7VAF5NW1VQ7KQ54A4T',
- tsKey: 'mx-nayarit',
- tsNs: 'gov-dist',
- abbrev: 'Nay.',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKJ7WVV7V5NA1XP5BD0A7',
- tsKey: 'mx-nuevo-leon',
- tsNs: 'gov-dist',
- abbrev: 'N.L.',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKJ7WMZRAAAYWXZ4HV89S',
- tsKey: 'mx-oaxaca',
- tsNs: 'gov-dist',
- abbrev: 'Oax.',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKJ7WQS81DVDTGPKDBGYR',
- tsKey: 'mx-puebla',
- tsNs: 'gov-dist',
- abbrev: 'Pue.',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKJ7XQWNY7KYE4GFSRVY9',
- tsKey: 'mx-queretaro',
- tsNs: 'gov-dist',
- abbrev: 'Qro.',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKJ7X3M2TZXDZ2984KY3V',
- tsKey: 'mx-quintana-roo',
- tsNs: 'gov-dist',
- abbrev: 'Q. Roo.',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKJ7X81B6PQNKDGBY35FT',
- tsKey: 'mx-san-luis-potosi',
- tsNs: 'gov-dist',
- abbrev: 'S.L.P.',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKJ7XBS59FF133TSA8CX5',
- tsKey: 'mx-sinaloa',
- tsNs: 'gov-dist',
- abbrev: 'Sin.',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKJ7YBSH4ANCX20Y2Z153',
- tsKey: 'mx-sonora',
- tsNs: 'gov-dist',
- abbrev: 'Son.',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKJ7Y4KN0Y21FFKGM0R36',
- tsKey: 'mx-tabasco',
- tsNs: 'gov-dist',
- abbrev: 'Tab.',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKJ7YV4W4HKPX6RX8ZGWD',
- tsKey: 'mx-tamaulipas',
- tsNs: 'gov-dist',
- abbrev: 'Tamps.',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKJ7ZQFMCWT4EF2DW9HRC',
- tsKey: 'mx-tlaxcala',
- tsNs: 'gov-dist',
- abbrev: 'Tlax.',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKJ7ZPEGHSE8Y0C6AJ2HK',
- tsKey: 'mx-veracruz',
- tsNs: 'gov-dist',
- abbrev: 'Ver.',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKJ7ZAFQ34D6TVHT2AJ88',
- tsKey: 'mx-yucatan',
- tsNs: 'gov-dist',
- abbrev: 'Yuc.',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKJ7Z862E7R2ENKYPSZPY',
- tsKey: 'mx-zacatecas',
- tsNs: 'gov-dist',
- abbrev: 'Zac.',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- ],
- },
- {
- id: 'ctry_01GW2HHDK7PACTC9GJ2XBMVPKY',
- tsKey: 'PRI.name',
- tsNs: 'country',
- cca2: 'PR',
- flag: '🇵🇷',
- govDist: [
- {
- id: 'gdst_01GW2HKF7MNPRM44JZ70DZNZ75',
- tsKey: 'pr-adjuntas',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7QQADN2XEJEGRZGA32',
- tsKey: 'pr-aguada',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7GDB9A0Y61RH4DE1Y7',
- tsKey: 'pr-aguadilla',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7MHG9HQGMG6HW76GTY',
- tsKey: 'pr-aguas-buenas',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7QZYRM5N4YWRDX0D51',
- tsKey: 'pr-aibonito',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7MJ6N0ZP2EVQW7PKSZ',
- tsKey: 'pr-anasco',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7ASDCF6MJX1GR7A9WD',
- tsKey: 'pr-arecibo',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7QAWDF8MDJPC4ATW3C',
- tsKey: 'pr-arroyo',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7KWSFQ2BBNE06FBJ8B',
- tsKey: 'pr-barceloneta',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7AAHGX7T7W6AZJWYAE',
- tsKey: 'pr-barranquitas',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7K7GQPKHXMAZ353S8Q',
- tsKey: 'pr-bayamon',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7NB99SEGDAGPWGQ7HH',
- tsKey: 'pr-cabo-rojo',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7BSBYYNEMZ6QVF8227',
- tsKey: 'pr-caguas',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7E342VRJMB9JBQGCB8',
- tsKey: 'pr-camuy',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7K6K1YGQMXC75C7FEN',
- tsKey: 'pr-canovanas',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7B83PQP7G4GY5H1F1Y',
- tsKey: 'pr-carolina',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7N2795CHTK7B9FMBMT',
- tsKey: 'pr-catano',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7EJC9Z7Q854T284T8Q',
- tsKey: 'pr-cayey',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7N4BXQNPGJ2SSB3HZP',
- tsKey: 'pr-ceiba',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7KNW1P6M0CBTP9DJPH',
- tsKey: 'pr-ciales',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7ES2899PBSYADF5CGZ',
- tsKey: 'pr-cidra',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7E1MAS1DCAF251JMS0',
- tsKey: 'pr-coamo',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7C8TEXW0TX7BNR3ZJP',
- tsKey: 'pr-comerio',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7NM95AMSGKNYVNMX4K',
- tsKey: 'pr-corozal',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7NJ8N815ZSVQ6PP8F8',
- tsKey: 'pr-culebra',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7KY7TE0STKHEKB8TCT',
- tsKey: 'pr-dorado',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7FJX1TV2FACXBDTY8V',
- tsKey: 'pr-fajardo',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7CT97CA6YVEKY451FF',
- tsKey: 'pr-florida',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7FKYKQ8FJ5EAG5FQGG',
- tsKey: 'pr-guanica',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7N8X0C9FVKWQRPZ0N5',
- tsKey: 'pr-guayama',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7FP0SMK1DBEP03CCPT',
- tsKey: 'pr-guayanilla',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7CPSVHHJVMRV1TCEPH',
- tsKey: 'pr-guaynabo',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7KPB26QY6V5AGPHQCK',
- tsKey: 'pr-gurabo',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7PBJAHMG2YTEB5E6QN',
- tsKey: 'pr-hatillo',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7GKZBEW06ATJGN7YA0',
- tsKey: 'pr-hormigueros',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7C8PZMQX3ZPA4SQA0R',
- tsKey: 'pr-humacao',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7QNDYT5EJJSNHV70Q0',
- tsKey: 'pr-isabela',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7GFWQFZM4W8B6XE278',
- tsKey: 'pr-jayuya',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7JCH0F0VGDMC9T859G',
- tsKey: 'pr-juana-diaz',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7KKF2ZRBGWJ65XYB1H',
- tsKey: 'pr-juncos',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7GJZ9K8JZHNY36F1S1',
- tsKey: 'pr-lajas',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7GP9242YXKBP7ZY7SZ',
- tsKey: 'pr-lares',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7DQFZ2RSYBJQ6ZTTSX',
- tsKey: 'pr-las-marias',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7MZFQQ65W2WV6B3HFJ',
- tsKey: 'pr-las-piedras',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7P4GF3D9AH52RC8PAB',
- tsKey: 'pr-loiza',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7G4BFBE603PNE92JZ7',
- tsKey: 'pr-luquillo',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7PWWJXJ0XKJW6BRCQ1',
- tsKey: 'pr-manati',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7DKTN8REXVNGVAECB8',
- tsKey: 'pr-maricao',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7GJBK2M8GR9YSWMHM0',
- tsKey: 'pr-maunabo',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7PJWWVN43HSZXECPP4',
- tsKey: 'pr-mayaguez',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7M2DS24Q59CSHA0DY5',
- tsKey: 'pr-moca',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7H4FBMYSFFGJZYH0MH',
- tsKey: 'pr-morovis',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7HJBVR2JFQ1VAWS6JD',
- tsKey: 'pr-naguabo',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7DCSXHCYDJ28QWER0N',
- tsKey: 'pr-naranjito',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7PQJ4CM33MH3AEM1RA',
- tsKey: 'pr-orocovis',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7HFBFSHR7JYV7NHF0Z',
- tsKey: 'pr-patillas',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7MD86ZXFZYAKS2GJNR',
- tsKey: 'pr-penuelas',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7PV9TMP8VWK93FTV2J',
- tsKey: 'pr-ponce',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7D4HT3G8QJ6825DV48',
- tsKey: 'pr-quebradillas',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7HMQPDNKPBKNXDZR6P',
- tsKey: 'pr-rincon',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7HDC2BETD8TXG8M3N8',
- tsKey: 'pr-rio-grande',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7PYS8BKRNW15QN0S0D',
- tsKey: 'pr-sabana-grande',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7MZHTPEG6PYHA6FWFF',
- tsKey: 'pr-salinas',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7H0Q44P9ERJFFPJBFC',
- tsKey: 'pr-san-german',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7Q4W804RJYJGSN9YDS',
- tsKey: 'pr-san-juan',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7DMJDRY12E121NAPY5',
- tsKey: 'pr-san-lorenzo',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7H2VNGTNFXZW160HHP',
- tsKey: 'pr-san-sebastian',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7QD21G3Y0R6E0CB8RH',
- tsKey: 'pr-santa-isabel',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7DCAZN6WSP89JENB8R',
- tsKey: 'pr-toa-alta',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7J713E50Y0QV06MQXV',
- tsKey: 'pr-toa-baja',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7M73DDSZHXFGQ590SV',
- tsKey: 'pr-trujillo-alto',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7QAE0RFPT8NC27V024',
- tsKey: 'pr-utuado',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7JSS7C4C4QRJHCMTJH',
- tsKey: 'pr-vega-alta',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7EJNVQWD2TRZT2SH0S',
- tsKey: 'pr-vega-baja',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7J1ADADNHCE9AWWGTP',
- tsKey: 'pr-vieques',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7J3GGEMV7WYXFEP5AS',
- tsKey: 'pr-villalba',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7J0062R97R77JPGEH6',
- tsKey: 'pr-yabucoa',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKF7JBB2EXCZFTX3V5ABR',
- tsKey: 'pr-yauco',
- tsNs: 'gov-dist',
- abbrev: null,
- govDistType: {
- tsKey: 'type-county',
- tsNs: 'gov-dist',
- },
- },
- ],
- },
- {
- id: 'ctry_01GW2HHDKCRS9KW4FG2WR2GG06',
- tsKey: 'UMI.name',
- tsNs: 'country',
- cca2: 'UM',
- flag: '🇺🇲',
- govDist: [],
- },
- {
- id: 'ctry_01GW2HHDK9M26M80SG63T21SVH',
- tsKey: 'USA.name',
- tsNs: 'country',
- cca2: 'US',
- flag: '🇺🇸',
- govDist: [
- {
- id: 'gdst_01GW2HHY0735M7CQSXR31HP114',
- tsKey: 'us-alabama',
- tsNs: 'gov-dist',
- abbrev: 'AL',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HHZ3C061BT60QBAD8WVJZ',
- tsKey: 'us-alaska',
- tsNs: 'gov-dist',
- abbrev: 'AK',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HJ0MERT6FW07XV7PZWZWE',
- tsKey: 'us-arizona',
- tsNs: 'gov-dist',
- abbrev: 'AZ',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC',
- tsKey: 'us-arkansas',
- tsNs: 'gov-dist',
- abbrev: 'AR',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HJ23GMD17FBJMJWD16PZ1',
- tsKey: 'us-california',
- tsNs: 'gov-dist',
- abbrev: 'CA',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HJ35FAMD0V0YSSPYPMG46',
- tsKey: 'us-colorado',
- tsNs: 'gov-dist',
- abbrev: 'CO',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HJ48BS27DYW8W4GNH4P2W',
- tsKey: 'us-connecticut',
- tsNs: 'gov-dist',
- abbrev: 'CT',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HJ4XTJT4GBEWDBY057B01',
- tsKey: 'us-delaware',
- tsNs: 'gov-dist',
- abbrev: 'DE',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HJ5A278S2G84AB3N9FCW0',
- tsKey: 'us-district-of-columbia',
- tsNs: 'gov-dist',
- abbrev: 'DC',
- govDistType: {
- tsKey: 'type-district',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY',
- tsKey: 'us-florida',
- tsNs: 'gov-dist',
- abbrev: 'FL',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HJ6WC0EDHHCHG998QT3N0',
- tsKey: 'us-georgia',
- tsNs: 'gov-dist',
- abbrev: 'GA',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HJ7VX37RF69KKXAYE05QN',
- tsKey: 'us-hawaii',
- tsNs: 'gov-dist',
- abbrev: 'HI',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4',
- tsKey: 'us-idaho',
- tsNs: 'gov-dist',
- abbrev: 'ID',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HJ9GVN301XN2SKRWE8Q3M',
- tsKey: 'us-illinois',
- tsNs: 'gov-dist',
- abbrev: 'IL',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HJAD7VVT46D0BHXQRV2WF',
- tsKey: 'us-indiana',
- tsNs: 'gov-dist',
- abbrev: 'IN',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ',
- tsKey: 'us-iowa',
- tsNs: 'gov-dist',
- abbrev: 'IA',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HJDE344VFWCSNBYYSFDDW',
- tsKey: 'us-kansas',
- tsNs: 'gov-dist',
- abbrev: 'KS',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HJF2WCKZ47HGSYQFANCDZ',
- tsKey: 'us-kentucky',
- tsNs: 'gov-dist',
- abbrev: 'KY',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HJG2676AX4NRXHWA4PB8B',
- tsKey: 'us-louisiana',
- tsNs: 'gov-dist',
- abbrev: 'LA',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HJH13NCXACKZGG242PM97',
- tsKey: 'us-maine',
- tsNs: 'gov-dist',
- abbrev: 'ME',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HJHQBKA67H0WWG35J4PV7',
- tsKey: 'us-maryland',
- tsNs: 'gov-dist',
- abbrev: 'MD',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HJJGA979WFBS7S7ECK0JK',
- tsKey: 'us-massachusetts',
- tsNs: 'gov-dist',
- abbrev: 'MA',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HJK994XZPC3KNCPVST015',
- tsKey: 'us-michigan',
- tsNs: 'gov-dist',
- abbrev: 'MI',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY',
- tsKey: 'us-minnesota',
- tsNs: 'gov-dist',
- abbrev: 'MN',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HJMYCBT3EWB9XCX2VSMK9',
- tsKey: 'us-mississippi',
- tsNs: 'gov-dist',
- abbrev: 'MS',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HJPZYX059W3SHQW8D9F7M',
- tsKey: 'us-missouri',
- tsNs: 'gov-dist',
- abbrev: 'MO',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HJQZ5J517QW02C84M80WD',
- tsKey: 'us-montana',
- tsNs: 'gov-dist',
- abbrev: 'MT',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HJRVH0VX93NDHEJ0QK158',
- tsKey: 'us-nebraska',
- tsNs: 'gov-dist',
- abbrev: 'NE',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HJSQZ19Y230FJHNKHSW89',
- tsKey: 'us-nevada',
- tsNs: 'gov-dist',
- abbrev: 'NV',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HJTSK0AMAVYF9QD9GXBAR',
- tsKey: 'us-new-hampshire',
- tsNs: 'gov-dist',
- abbrev: 'NH',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HJVFHMQEZZ1AKH9QETVP6',
- tsKey: 'us-new-jersey',
- tsNs: 'gov-dist',
- abbrev: 'NJ',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY',
- tsKey: 'us-new-mexico',
- tsNs: 'gov-dist',
- abbrev: 'NM',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HJXH936VB5WWAHK8S8X0A',
- tsKey: 'us-new-york',
- tsNs: 'gov-dist',
- abbrev: 'NY',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HJY7KQKE8XCP6BM8WC459',
- tsKey: 'us-north-carolina',
- tsNs: 'gov-dist',
- abbrev: 'NC',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K',
- tsKey: 'us-north-dakota',
- tsNs: 'gov-dist',
- abbrev: 'ND',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HK0N4V9YBGBSQVN4JRKKW',
- tsKey: 'us-ohio',
- tsNs: 'gov-dist',
- abbrev: 'OH',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HK1MBAAXAR655YEESJRB1',
- tsKey: 'us-oklahoma',
- tsNs: 'gov-dist',
- abbrev: 'OK',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HK2PW0GCZATZ6YX9RG8FE',
- tsKey: 'us-oregon',
- tsNs: 'gov-dist',
- abbrev: 'OR',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HK3G7JGSCMVRQERYCRQGY',
- tsKey: 'us-pennsylvania',
- tsNs: 'gov-dist',
- abbrev: 'PA',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HK49A5XQ8ZDFKQSF098SJ',
- tsKey: 'us-rhode-island',
- tsNs: 'gov-dist',
- abbrev: 'RI',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HK51XDFN3Q0ND2NCGBN14',
- tsKey: 'us-south-carolina',
- tsNs: 'gov-dist',
- abbrev: 'SC',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND',
- tsKey: 'us-south-dakota',
- tsNs: 'gov-dist',
- abbrev: 'SD',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HK6H7B5T82KZ82DZSFNR0',
- tsKey: 'us-tennessee',
- tsNs: 'gov-dist',
- abbrev: 'TN',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HK7G3WV9NP68CJ02WPMV7',
- tsKey: 'us-texas',
- tsNs: 'gov-dist',
- abbrev: 'TX',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HK8W4ZDJSZDPWZH2XH023',
- tsKey: 'us-utah',
- tsNs: 'gov-dist',
- abbrev: 'UT',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HK9J2HNR9ZCJJHF8WAGDT',
- tsKey: 'us-vermont',
- tsNs: 'gov-dist',
- abbrev: 'VT',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKADSS3SDS9XJV1WHMTVY',
- tsKey: 'us-virginia',
- tsNs: 'gov-dist',
- abbrev: 'VA',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKC6JBVM1S4P89T664V0A',
- tsKey: 'us-washington',
- tsNs: 'gov-dist',
- abbrev: 'WA',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKD240CAP65TPYPT32MRR',
- tsKey: 'us-west-virginia',
- tsNs: 'gov-dist',
- abbrev: 'WV',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKDJ5VV91D7JP3V6DE3DK',
- tsKey: 'us-wisconsin',
- tsNs: 'gov-dist',
- abbrev: 'WI',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- {
- id: 'gdst_01GW2HKEDZ2K9QXJ96SKR44EGV',
- tsKey: 'us-wyoming',
- tsNs: 'gov-dist',
- abbrev: 'WY',
- govDistType: {
- tsKey: 'type-state',
- tsNs: 'gov-dist',
- },
- },
- ],
- },
- {
- id: 'ctry_01GW2HHDK9DG12Y7RQMVEE5XSQ',
- tsKey: 'VIR.name',
- tsNs: 'country',
- cca2: 'VI',
- flag: '🇻🇮',
- govDist: [],
- },
-] satisfies ApiOutput['fieldOpt']['govDistsByCountryNoSub']
-export const queryGovDistsByCountryNoSub = (query: ApiInput['fieldOpt']['govDistsByCountryNoSub']) => {
+const queryGovDistsByCountryNoSub: MockAPIHandler<'fieldOpt', 'govDistsByCountryNoSub'> = async (query) => {
+ const govDistByCountryNoSub = (await import('./json/fieldOpt.govDistsByCountryNoSub.json')).default
if (query) return govDistByCountryNoSub.filter(({ cca2 }) => cca2 === query)
return govDistByCountryNoSub
}
@@ -9216,25 +125,32 @@ const countryGovDistMapSchema = z
])
.array()
-const countryGovDistMap = new Map(
- countryGovDistMapSchema.parse(countryGovDistMapData)
-)
+const countryGovDistMap = async () => {
+ const countryGovDistMapData = (await import('./json/fieldOpt.countryGovDistMap.json')).default
+ return new Map(countryGovDistMapSchema.parse(countryGovDistMapData))
+}
+const getSubDistricts: MockAPIHandler<'fieldOpt', 'getSubDistricts'> = async (id) => {
+ const data = (await import('./json/fieldOpt.getSubDistricts.json')).default
+ const filtered = data.filter(({ parentId }) => parentId === id)
+ const formatted = filtered.map(({ parentId, ...data }) => data)
+ return formatted
+}
export const fieldOpt = {
attributeCategories: getTRPCMock({
path: ['fieldOpt', 'attributeCategories'],
- response: (input) => queryAttributeCategories(input),
+ response: async (input) => await queryAttributeCategories(input),
}),
attributesByCategory: getTRPCMock({
path: ['fieldOpt', 'attributesByCategory'],
- response: (input) => queryAttributesByCategory(input),
+ response: async (input) => await queryAttributesByCategory(input),
}),
languages: getTRPCMock({
path: ['fieldOpt', 'languages'],
- response: (input) => queryLanguages(input),
+ response: async (input) => await queryLanguages(input),
}),
countries: getTRPCMock({
path: ['fieldOpt', 'countries'],
- response: (input) => queryCountries(input),
+ response: async (input) => await queryCountries(input),
}),
govDistsByCountry: getTRPCMock({
path: ['fieldOpt', 'govDistsByCountry'],
@@ -9254,7 +170,34 @@ export const fieldOpt = {
}),
countryGovDistMap: getTRPCMock({
path: ['fieldOpt', 'countryGovDistMap'],
- response: countryGovDistMap,
+ response: async () => await countryGovDistMap(),
+ }),
+ getSubDistricts: getTRPCMock({
+ path: ['fieldOpt', 'getSubDistricts'],
+ response: async (input) => await getSubDistricts(input),
+ }),
+ govDists: getTRPCMock({
+ path: ['fieldOpt', 'govDists'],
+ response: async (input) => {
+ const data = (await import('./json/fieldOpt.govDists.json')).default
+
+ if (input) {
+ const { parentsOnly, ...search } = input
+ const filtered = data.filter((item) => {
+ let isMatch = false
+ // @ts-expect-error key type
+ isMatch = Object.entries(search).every(([key, value]) => item[key] && item[key] === value)
+ if (parentsOnly) {
+ isMatch = isMatch && item.parentId === null
+ }
+ return isMatch
+ })
+ const formatted = filtered.map(({ parentId, ...data }) => data)
+ return formatted
+ }
+ const formatted = data.map(({ parentId, ...data }) => data)
+ return formatted
+ },
}),
}
diff --git a/packages/ui/mockData/json/fieldOpt.attributeCategories.json b/packages/ui/mockData/json/fieldOpt.attributeCategories.json
new file mode 100644
index 0000000000..4376032ed5
--- /dev/null
+++ b/packages/ui/mockData/json/fieldOpt.attributeCategories.json
@@ -0,0 +1 @@
+[{"id":"attc_01GW2HHFV3DJ380F351SKB0B74","tag":"additional-information","name":"Additional Information","icon":null,"intDesc":"Misc"},{"id":"attc_01GXS3AYEER4CCSX670S9Z84EB","tag":"alerts","name":"Alerts","icon":null,"intDesc":"Alert messages"},{"id":"attc_01GW2HHFVFKNMYPN8F86M0H576","tag":"cost","name":"Cost","icon":null,"intDesc":null},{"id":"attc_01GW2HHFVGHPW1Y72SA8377623","tag":"eligibility-requirements","name":"Eligibility Requirements","icon":null,"intDesc":null},{"id":"attc_01GW2HHFVJQQ68XGSBXM976BDF","tag":"languages","name":"Languages","icon":null,"intDesc":null},{"id":"attc_01GW2HHFVRSN3W3GYZZ43WCW24","tag":"law-practice-options","name":"Law Practice Options","icon":null,"intDesc":null},{"id":"attc_01GW2HHFVMNHV2ZS5875JWCRJ7","tag":"organization-leadership","name":"Organization Leadership","icon":null,"intDesc":null},{"id":"attc_01GW2HHFVKAMMGPD71H90XRJ38","tag":"service-access-instructions","name":"Service Access Instructions","icon":null,"intDesc":null},{"id":"attc_01GW2HHFVNXMNJNV47BF2BPM1R","tag":"service-focus","name":"Service Focus","icon":null,"intDesc":null},{"id":"attc_01GW2HHFVSQWE2Y2RF3DT2VEYX","tag":"service-provider-options","name":"Service Provider Options","icon":null,"intDesc":null},{"id":"attc_01GW2HHFVKM2PSHFWVFM0TWX1P","tag":"system","name":"System","icon":null,"intDesc":null}]
\ No newline at end of file
diff --git a/packages/ui/mockData/json/fieldOpt.attributesByCategory.json b/packages/ui/mockData/json/fieldOpt.attributesByCategory.json
new file mode 100644
index 0000000000..e15c5fabd6
--- /dev/null
+++ b/packages/ui/mockData/json/fieldOpt.attributesByCategory.json
@@ -0,0 +1 @@
+[{"categoryId":"attc_01GW2HHFV3DJ380F351SKB0B74","categoryName":"additional-information","categoryDisplay":"Additional Information","attributeId":"attr_01GW2HHFV3YJ2AWADHVKG79BQ0","attributeName":"at-capacity","attributeKey":"additional.at-capacity","attributeNs":"attribute","badgeRender":"ATTRIBUTE","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFV3DJ380F351SKB0B74","categoryName":"additional-information","categoryDisplay":"Additional Information","attributeId":"attr_01GW2HHFV4D5ZHFMAE7852GB4P","attributeName":"geo-near-public-transit","attributeKey":"additional.geo-near-public-transit","attributeNs":"attribute","badgeRender":"ATTRIBUTE","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFV3DJ380F351SKB0B74","categoryName":"additional-information","categoryDisplay":"Additional Information","attributeId":"attr_01GW2HHFV48VQJBMFA05QCBBV9","attributeName":"geo-public-transit-description","attributeKey":"additional.geo-public-transit-description","attributeNs":"attribute","badgeRender":"ATTRIBUTE","requireText":true,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFV3DJ380F351SKB0B74","categoryName":"additional-information","categoryDisplay":"Additional Information","attributeId":"attr_01GW2HHFV3BADK80TG0DXXFPMM","attributeName":"has-confidentiality-policy","attributeKey":"additional.has-confidentiality-policy","attributeNs":"attribute","badgeRender":"ATTRIBUTE","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFV3DJ380F351SKB0B74","categoryName":"additional-information","categoryDisplay":"Additional Information","attributeId":"attr_01GW2HHFV5Q7XN2ZNTYFR1AD3M","attributeName":"offers-remote-services","attributeKey":"additional.offers-remote-services","attributeNs":"attribute","icon":"carbon:globe","badgeRender":"ATTRIBUTE","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFV3DJ380F351SKB0B74","categoryName":"additional-information","categoryDisplay":"Additional Information","attributeId":"attr_01GW2HHFV4TM7H5V6FHWA7S9JK","attributeName":"time-walk-in","attributeKey":"additional.time-walk-in","attributeNs":"attribute","badgeRender":"ATTRIBUTE","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFV3DJ380F351SKB0B74","categoryName":"additional-information","categoryDisplay":"Additional Information","attributeId":"attr_01GW2HHFV5FYXQNGTPAQB7G2TF","attributeName":"wheelchair-accessible","attributeKey":"additional.wheelchair-accessible","attributeNs":"attribute","interpolationValues":{"true":"Accessible","false":"Not Accessible"},"icon":"carbon:accessibility","badgeRender":"ATTRIBUTE","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":true,"requireData":false},{"categoryId":"attc_01GYSVX1N9T91BJYSHRDPCHJBS","categoryName":"alerts","categoryDisplay":"Alerts","attributeId":"attr_01GYSVX1NAMR6RDV6M69H4KN3T","attributeName":"info","attributeKey":"alerts.info","attributeNs":"attribute","icon":"carbon:information-filled","requireText":true,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GYSVX1N9T91BJYSHRDPCHJBS","categoryName":"alerts","categoryDisplay":"Alerts","attributeId":"attr_01GYSVX1NAKP7C6JKJ342ZM35M","attributeName":"warn","attributeKey":"alerts.warn","attributeNs":"attribute","icon":"carbon:warning-filled","requireText":true,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVFKNMYPN8F86M0H576","categoryName":"cost","categoryDisplay":"Cost","attributeId":"attr_01GW2HHFVGWKWB53HWAAHQ9AAZ","attributeName":"cost-fees","attributeKey":"cost.cost-fees","attributeNs":"attribute","icon":"carbon:piggy-bank","badgeRender":"ATTRIBUTE","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":true,"dataSchemaName":"numMinMaxOrRange","dataSchema":{"anyOf":[{"type":"object","required":["min"],"properties":{"min":{"type":"number"}}},{"type":"object","required":["max"],"properties":{"max":{"type":"number"}}},{"type":"object","required":["min","max"],"properties":{"max":{"type":"number"},"min":{"type":"number"}}}],"$schema":"http://json-schema.org/draft-07/schema#"}},{"categoryId":"attc_01GW2HHFVFKNMYPN8F86M0H576","categoryName":"cost","categoryDisplay":"Cost","attributeId":"attr_01GW2HHFVGDTNW9PDQNXK6TF1T","attributeName":"cost-free","attributeKey":"cost.cost-free","attributeNs":"attribute","icon":"carbon:piggy-bank","badgeRender":"ATTRIBUTE","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01H6P8SSY4C141YH7BAC1RW7KJ","categoryName":"crisis-support-community","categoryDisplay":"Crisis Support Community","attributeId":"attr_01GW2HHFVN72D7XEBZZJXCJQXQ","attributeName":"bipoc-comm","attributeKey":"srvfocus.bipoc-comm","attributeNs":"attribute","icon":"️️✊🏿","badgeRender":"COMMUNITY","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01H6P8SSY4C141YH7BAC1RW7KJ","categoryName":"crisis-support-community","categoryDisplay":"Crisis Support Community","attributeId":"attr_01H6P951P0V3CR807P8KRH82S1","attributeName":"elders","attributeKey":"crisis-support-community.elders","attributeNs":"attribute","icon":"🌳","badgeRender":"COMMUNITY","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01H6P8SSY4C141YH7BAC1RW7KJ","categoryName":"crisis-support-community","categoryDisplay":"Crisis Support Community","attributeId":"attr_01H6P8T277D0C8HFQA6N09FJWD","attributeName":"general-lgbtq","attributeKey":"crisis-support-community.general-lgbtq","attributeNs":"attribute","icon":"🏳️🌈","badgeRender":"COMMUNITY","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01H6P8SSY4C141YH7BAC1RW7KJ","categoryName":"crisis-support-community","categoryDisplay":"Crisis Support Community","attributeId":"attr_01GW2HHFVQCZPA3Z5GW6J3MQHW","attributeName":"lgbtq-youth-focus","attributeKey":"srvfocus.lgbtq-youth-focus","attributeNs":"attribute","icon":"🌱","badgeRender":"COMMUNITY","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01H6P8SSY4C141YH7BAC1RW7KJ","categoryName":"crisis-support-community","categoryDisplay":"Crisis Support Community","attributeId":"attr_01GW2HHFVPSYBCYF37B44WP6CZ","attributeName":"trans-comm","attributeKey":"srvfocus.trans-comm","attributeNs":"attribute","icon":"🏳️⚧️","badgeRender":"COMMUNITY","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVGHPW1Y72SA8377623","categoryName":"eligibility-requirements","categoryDisplay":"Eligibility Requirements","attributeId":"attr_01GW2HHFVGSAZXGR4JAVHEK6ZC","attributeName":"elig-age","attributeKey":"eligibility.elig-age","attributeNs":"attribute","interpolationValues":{"max":"Under{{max}}","min":"{{min}} and older","range":"{{min}} -{{max}}"},"badgeRender":"LIST","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":true,"dataSchemaName":"numMinMaxOrRange","dataSchema":{"anyOf":[{"type":"object","required":["min"],"properties":{"min":{"type":"number"}}},{"type":"object","required":["max"],"properties":{"max":{"type":"number"}}},{"type":"object","required":["min","max"],"properties":{"max":{"type":"number"},"min":{"type":"number"}}}],"$schema":"http://json-schema.org/draft-07/schema#"}},{"categoryId":"attc_01GW2HHFVGHPW1Y72SA8377623","categoryName":"eligibility-requirements","categoryDisplay":"Eligibility Requirements","attributeId":"attr_01GW2HHFVJDKVF1HV7559CNZCY","attributeName":"other-describe","attributeKey":"eligibility.other-describe","attributeNs":"attribute","badgeRender":"LIST","requireText":true,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVGHPW1Y72SA8377623","categoryName":"eligibility-requirements","categoryDisplay":"Eligibility Requirements","attributeId":"attr_01GW2HHFVH9DPBZ968VXGE50E7","attributeName":"req-medical-insurance","attributeKey":"eligibility.req-medical-insurance","attributeNs":"attribute","badgeRender":"LIST","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVGHPW1Y72SA8377623","categoryName":"eligibility-requirements","categoryDisplay":"Eligibility Requirements","attributeId":"attr_01GW2HHFVHZ599M48CMSPGDCSC","attributeName":"req-photo-id","attributeKey":"eligibility.req-photo-id","attributeNs":"attribute","badgeRender":"LIST","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVGHPW1Y72SA8377623","categoryName":"eligibility-requirements","categoryDisplay":"Eligibility Requirements","attributeId":"attr_01GW2HHFVH0GQK0GAJR5D952V3","attributeName":"req-proof-of-age","attributeKey":"eligibility.req-proof-of-age","attributeNs":"attribute","badgeRender":"LIST","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVGHPW1Y72SA8377623","categoryName":"eligibility-requirements","categoryDisplay":"Eligibility Requirements","attributeId":"attr_01GW2HHFVHEVX4PMNN077ASQMG","attributeName":"req-proof-of-income","attributeKey":"eligibility.req-proof-of-income","attributeNs":"attribute","badgeRender":"LIST","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVGHPW1Y72SA8377623","categoryName":"eligibility-requirements","categoryDisplay":"Eligibility Requirements","attributeId":"attr_01GW2HHFVHGMVCAY1G5BWF1PFB","attributeName":"req-proof-of-residence","attributeKey":"eligibility.req-proof-of-residence","attributeNs":"attribute","badgeRender":"LIST","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVGHPW1Y72SA8377623","categoryName":"eligibility-requirements","categoryDisplay":"Eligibility Requirements","attributeId":"attr_01GW2HHFVJH8MADHYTHBV54CER","attributeName":"req-referral","attributeKey":"eligibility.req-referral","attributeNs":"attribute","badgeRender":"LIST","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVGHPW1Y72SA8377623","categoryName":"eligibility-requirements","categoryDisplay":"Eligibility Requirements","attributeId":"attr_01GW2HHFVGJ5GD2WHNJDPSFNRW","attributeName":"time-appointment-required","attributeKey":"eligibility.time-appointment-required","attributeNs":"attribute","badgeRender":"LIST","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVJQQ68XGSBXM976BDF","categoryName":"languages","categoryDisplay":"Languages","attributeId":"attr_01GW2HHFVJGDDWTR5D0C8BY357","attributeName":"all-languages-by-interpreter","attributeKey":"lang.all-languages-by-interpreter","attributeNs":"attribute","badgeRender":"LIST","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVJQQ68XGSBXM976BDF","categoryName":"languages","categoryDisplay":"Languages","attributeId":"attr_01GW2HHFVJF09GXY5N5CKMSANJ","attributeName":"american-sign-language","attributeKey":"lang.american-sign-language","attributeNs":"attribute","badgeRender":"LIST","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVJQQ68XGSBXM976BDF","categoryName":"languages","categoryDisplay":"Languages","attributeId":"attr_01GW2HHFVJ8K180CNX339BTXM2","attributeName":"lang-offered","attributeKey":"lang.lang-offered","attributeNs":"attribute","badgeRender":"LIST","requireText":false,"requireLanguage":true,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVRSN3W3GYZZ43WCW24","categoryName":"law-practice-options","categoryDisplay":"Law Practice Options","attributeId":"attr_01GW2HHFVRH531R2HAV8DMDZSC","attributeName":"corp-law-firm","attributeKey":"userlawpractice.corp-law-firm","attributeNs":"attribute","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVRSN3W3GYZZ43WCW24","categoryName":"law-practice-options","categoryDisplay":"Law Practice Options","attributeId":"attr_01GW2HHFVSE2074QZJ4SKEW74J","attributeName":"law-other","attributeKey":"userlawpractice.law-other","attributeNs":"attribute","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":true,"dataSchemaName":"otherDescribe","dataSchema":{"type":"object","$schema":"http://json-schema.org/draft-07/schema#","required":["other"],"properties":{"other":{"type":"string"}}}},{"categoryId":"attc_01GW2HHFVRSN3W3GYZZ43WCW24","categoryName":"law-practice-options","categoryDisplay":"Law Practice Options","attributeId":"attr_01GW2HHFVRS8XEJ3TJBBEQJ707","attributeName":"law-school-clinic","attributeKey":"userlawpractice.law-school-clinic","attributeNs":"attribute","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVRSN3W3GYZZ43WCW24","categoryName":"law-practice-options","categoryDisplay":"Law Practice Options","attributeId":"attr_01GW2HHFVRFPRQCQHNJA6BM3XP","attributeName":"legal-nonprofit","attributeKey":"userlawpractice.legal-nonprofit","attributeNs":"attribute","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVMNHV2ZS5875JWCRJ7","categoryName":"organization-leadership","categoryDisplay":"Organization Leadership","attributeId":"attr_01GW2HHFVNPKMHYK12DDRVC1VJ","attributeName":"bipoc-led","attributeKey":"orgleader.bipoc-led","attributeNs":"attribute","icon":"🤎","iconBg":"#F1DD7F","badgeRender":"LEADER","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVMNHV2ZS5875JWCRJ7","categoryName":"organization-leadership","categoryDisplay":"Organization Leadership","attributeId":"attr_01GW2HHFVN3JX2J7REFFT5NAMS","attributeName":"black-led","attributeKey":"orgleader.black-led","attributeNs":"attribute","icon":"️️✊🏿","iconBg":"#C77E54","badgeRender":"LEADER","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVMNHV2ZS5875JWCRJ7","categoryName":"organization-leadership","categoryDisplay":"Organization Leadership","attributeId":"attr_01GW2HHFVNHMF72WHVKRF6W4TA","attributeName":"immigrant-led","attributeKey":"orgleader.immigrant-led","attributeNs":"attribute","icon":"️️🌎","iconBg":"#79ADD7","badgeRender":"LEADER","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVMNHV2ZS5875JWCRJ7","categoryName":"organization-leadership","categoryDisplay":"Organization Leadership","attributeId":"attr_01GW2HHFVN3RYX9JMXDZSQZM70","attributeName":"trans-led","attributeKey":"orgleader.trans-led","attributeNs":"attribute","icon":"️🏳️⚧️","iconBg":"#705890","badgeRender":"LEADER","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVKAMMGPD71H90XRJ38","categoryName":"service-access-instructions","categoryDisplay":"Service Access Instructions","attributeId":"attr_01GW2HHFVKFM4TDY4QRK4AR2ZW","attributeName":"accessemail","attributeKey":"serviceaccess.accessemail","attributeNs":"attribute","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":true,"dataSchemaName":"accessInstructions","dataSchema":{"type":"object","$schema":"http://json-schema.org/draft-07/schema#","required":["access_type","instructions"],"properties":{"access_type":{"enum":["email","file","link","location","other","phone"],"type":"string"},"access_value":{"type":["string","null"]},"instructions":{"type":"string"}}}},{"categoryId":"attc_01GW2HHFVKAMMGPD71H90XRJ38","categoryName":"service-access-instructions","categoryDisplay":"Service Access Instructions","attributeId":"attr_01GW2HHFVKMRHFD8SMDAZM3SSM","attributeName":"accessfile","attributeKey":"serviceaccess.accessfile","attributeNs":"attribute","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":true,"dataSchemaName":"accessInstructions","dataSchema":{"type":"object","$schema":"http://json-schema.org/draft-07/schema#","required":["access_type","instructions"],"properties":{"access_type":{"enum":["email","file","link","location","other","phone"],"type":"string"},"access_value":{"type":["string","null"]},"instructions":{"type":"string"}}}},{"categoryId":"attc_01GW2HHFVKAMMGPD71H90XRJ38","categoryName":"service-access-instructions","categoryDisplay":"Service Access Instructions","attributeId":"attr_01GW2HHFVMYXMS8ARA3GE7HZFD","attributeName":"accesslink","attributeKey":"serviceaccess.accesslink","attributeNs":"attribute","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":true,"dataSchemaName":"accessInstructions","dataSchema":{"type":"object","$schema":"http://json-schema.org/draft-07/schema#","required":["access_type","instructions"],"properties":{"access_type":{"enum":["email","file","link","location","other","phone"],"type":"string"},"access_value":{"type":["string","null"]},"instructions":{"type":"string"}}}},{"categoryId":"attc_01GW2HHFVKAMMGPD71H90XRJ38","categoryName":"service-access-instructions","categoryDisplay":"Service Access Instructions","attributeId":"attr_01GW2HHFVMH6AE94EXN7T5A87C","attributeName":"accesslocation","attributeKey":"serviceaccess.accesslocation","attributeNs":"attribute","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":true,"dataSchemaName":"accessInstructions","dataSchema":{"type":"object","$schema":"http://json-schema.org/draft-07/schema#","required":["access_type","instructions"],"properties":{"access_type":{"enum":["email","file","link","location","other","phone"],"type":"string"},"access_value":{"type":["string","null"]},"instructions":{"type":"string"}}}},{"categoryId":"attc_01GW2HHFVKAMMGPD71H90XRJ38","categoryName":"service-access-instructions","categoryDisplay":"Service Access Instructions","attributeId":"attr_01GW2HHFVMKTFWCKBVVFJ5GMY0","attributeName":"accessphone","attributeKey":"serviceaccess.accessphone","attributeNs":"attribute","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":true,"dataSchemaName":"accessInstructions","dataSchema":{"type":"object","$schema":"http://json-schema.org/draft-07/schema#","required":["access_type","instructions"],"properties":{"access_type":{"enum":["email","file","link","location","other","phone"],"type":"string"},"access_value":{"type":["string","null"]},"instructions":{"type":"string"}}}},{"categoryId":"attc_01GW2HHFVKAMMGPD71H90XRJ38","categoryName":"service-access-instructions","categoryDisplay":"Service Access Instructions","attributeId":"attr_01GW2HHFVMSX7T1WDNZ5QEHKWT","attributeName":"accesspublictransit","attributeKey":"serviceaccess.accesspublictransit","attributeNs":"attribute","requireText":true,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVKAMMGPD71H90XRJ38","categoryName":"service-access-instructions","categoryDisplay":"Service Access Instructions","attributeId":"attr_01GW2HHFVMMF19AX2KPBTMV6P3","attributeName":"accesstext","attributeKey":"serviceaccess.accesstext","attributeNs":"attribute","requireText":true,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVNXMNJNV47BF2BPM1R","categoryName":"service-focus","categoryDisplay":"Service Focus","attributeId":"attr_01GW2HHFVPCVX8F3B7M30ZJEHW","attributeName":"asylum-seekers","attributeKey":"srvfocus.asylum-seekers","attributeNs":"attribute","icon":"️️🌎","badgeRender":"COMMUNITY","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVNXMNJNV47BF2BPM1R","categoryName":"service-focus","categoryDisplay":"Service Focus","attributeId":"attr_01GW2HHFVN72D7XEBZZJXCJQXQ","attributeName":"bipoc-comm","attributeKey":"srvfocus.bipoc-comm","attributeNs":"attribute","icon":"️️✊🏿","badgeRender":"COMMUNITY","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVNXMNJNV47BF2BPM1R","categoryName":"service-focus","categoryDisplay":"Service Focus","attributeId":"attr_01GW2HHFVQ7SYGD3KM8WP9X50B","attributeName":"gender-nc","attributeKey":"srvfocus.gender-nc","attributeNs":"attribute","icon":"🏳️⚧️","badgeRender":"COMMUNITY","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVNXMNJNV47BF2BPM1R","categoryName":"service-focus","categoryDisplay":"Service Focus","attributeId":"attr_01GW2HHFVRMQFJ9AMA633SQQGV","attributeName":"hiv-comm","attributeKey":"srvfocus.hiv-comm","attributeNs":"attribute","icon":"💛","badgeRender":"COMMUNITY","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVNXMNJNV47BF2BPM1R","categoryName":"service-focus","categoryDisplay":"Service Focus","attributeId":"attr_01GW2HHFVPTK9555WHJHDBDA2J","attributeName":"immigrant-comm","attributeKey":"srvfocus.immigrant-comm","attributeNs":"attribute","icon":"️️🌎","badgeRender":"COMMUNITY","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVNXMNJNV47BF2BPM1R","categoryName":"service-focus","categoryDisplay":"Service Focus","attributeId":"attr_01GW2HHFVQCZPA3Z5GW6J3MQHW","attributeName":"lgbtq-youth-focus","attributeKey":"srvfocus.lgbtq-youth-focus","attributeNs":"attribute","icon":"🌱","badgeRender":"COMMUNITY","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVNXMNJNV47BF2BPM1R","categoryName":"service-focus","categoryDisplay":"Service Focus","attributeId":"attr_01GW2HHFVPJERY0GS9D7F56A23","attributeName":"resettled-refugees","attributeKey":"srvfocus.resettled-refugees","attributeNs":"attribute","icon":"️️🌎","badgeRender":"COMMUNITY","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVNXMNJNV47BF2BPM1R","categoryName":"service-focus","categoryDisplay":"Service Focus","attributeId":"attr_01GW2HHFVQ8AGBKBBZJWTHNP2F","attributeName":"spanish-speakers","attributeKey":"srvfocus.spanish-speakers","attributeNs":"attribute","icon":"🗣️","badgeRender":"COMMUNITY","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVNXMNJNV47BF2BPM1R","categoryName":"service-focus","categoryDisplay":"Service Focus","attributeId":"attr_01GW2HHFVPSYBCYF37B44WP6CZ","attributeName":"trans-comm","attributeKey":"srvfocus.trans-comm","attributeNs":"attribute","icon":"🏳️⚧️","badgeRender":"COMMUNITY","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVNXMNJNV47BF2BPM1R","categoryName":"service-focus","categoryDisplay":"Service Focus","attributeId":"attr_01GW2HHFVQX4M8DY1FSAYSJSSK","attributeName":"trans-fem","attributeKey":"srvfocus.trans-fem","attributeNs":"attribute","icon":"🏳️⚧️","badgeRender":"COMMUNITY","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVNXMNJNV47BF2BPM1R","categoryName":"service-focus","categoryDisplay":"Service Focus","attributeId":"attr_01GW2HHFVQEFWW42MBAD64BWXZ","attributeName":"trans-masc","attributeKey":"srvfocus.trans-masc","attributeNs":"attribute","icon":"🏳️⚧️","badgeRender":"COMMUNITY","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVNXMNJNV47BF2BPM1R","categoryName":"service-focus","categoryDisplay":"Service Focus","attributeId":"attr_01GW2HHFVQVEGH6W3A2ANH1QZE","attributeName":"trans-youth-focus","attributeKey":"srvfocus.trans-youth-focus","attributeNs":"attribute","icon":"🌱","badgeRender":"COMMUNITY","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVSQWE2Y2RF3DT2VEYX","categoryName":"service-provider-options","categoryDisplay":"Service Provider Options","attributeId":"attr_01H2TK83N5E52PPP828SD88KP8","attributeName":"userserviceprovider.case-mananger","attributeKey":"userserviceprovider.case-mananger","attributeNs":"attribute","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVSQWE2Y2RF3DT2VEYX","categoryName":"service-provider-options","categoryDisplay":"Service Provider Options","attributeId":"attr_01GW2HHFVTTZ83PZR61M37R8R7","attributeName":"userserviceprovider.community-org","attributeKey":"userserviceprovider.community-org","attributeNs":"attribute","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVSQWE2Y2RF3DT2VEYX","categoryName":"service-provider-options","categoryDisplay":"Service Provider Options","attributeId":"attr_01GW2HHFVSPXWJJPFG9DKXESEK","attributeName":"userserviceprovider.healthcare","attributeKey":"userserviceprovider.healthcare","attributeNs":"attribute","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVSQWE2Y2RF3DT2VEYX","categoryName":"service-provider-options","categoryDisplay":"Service Provider Options","attributeId":"attr_01H2TM092CFVG6H0MR148AVAP7","attributeName":"userserviceprovider.lawyer","attributeKey":"userserviceprovider.lawyer","attributeNs":"attribute","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVSQWE2Y2RF3DT2VEYX","categoryName":"service-provider-options","categoryDisplay":"Service Provider Options","attributeId":"attr_01H2TM0AJHVK8TSR8JNFANFNZ7","attributeName":"userserviceprovider.other","attributeKey":"userserviceprovider.other","attributeNs":"attribute","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVSQWE2Y2RF3DT2VEYX","categoryName":"service-provider-options","categoryDisplay":"Service Provider Options","attributeId":"attr_01H2TM09EG0G84NXH40G5TESB5","attributeName":"userserviceprovider.paralegal","attributeKey":"userserviceprovider.paralegal","attributeNs":"attribute","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVSQWE2Y2RF3DT2VEYX","categoryName":"service-provider-options","categoryDisplay":"Service Provider Options","attributeId":"attr_01H2TM09RAK024ZDZQ6FSY0TXB","attributeName":"userserviceprovider.social-worker","attributeKey":"userserviceprovider.social-worker","attributeNs":"attribute","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVSQWE2Y2RF3DT2VEYX","categoryName":"service-provider-options","categoryDisplay":"Service Provider Options","attributeId":"attr_01GW2HHFVTN6MSCMBW740Y7HN1","attributeName":"userserviceprovider.student-club","attributeKey":"userserviceprovider.student-club","attributeNs":"attribute","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVSQWE2Y2RF3DT2VEYX","categoryName":"service-provider-options","categoryDisplay":"Service Provider Options","attributeId":"attr_01H2TM0A19DD6S97DNH76ZVP40","attributeName":"userserviceprovider.teacher","attributeKey":"userserviceprovider.teacher","attributeNs":"attribute","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVSQWE2Y2RF3DT2VEYX","categoryName":"service-provider-options","categoryDisplay":"Service Provider Options","attributeId":"attr_01H2TM0AA4CZXJJHMXHE1PHMVV","attributeName":"userserviceprovider.therapist-counselor","attributeKey":"userserviceprovider.therapist-counselor","attributeNs":"attribute","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":false},{"categoryId":"attc_01GW2HHFVKM2PSHFWVFM0TWX1P","categoryName":"system","categoryDisplay":"System","attributeId":"attr_01GW2HHFVK8KPRGKYFSSM5ECPQ","attributeName":"incompatible-info","attributeKey":"sys.incompatible-info","attributeNs":"attribute","requireText":false,"requireLanguage":false,"requireGeo":false,"requireBoolean":false,"requireData":true,"dataSchemaName":"incompatibleData","dataSchema":{"type":"array","items":{"type":"object","additionalProperties":{}},"$schema":"http://json-schema.org/draft-07/schema#"}}]
\ No newline at end of file
diff --git a/packages/ui/mockData/json/fieldOpt.countries.json b/packages/ui/mockData/json/fieldOpt.countries.json
new file mode 100644
index 0000000000..ffbaf41fce
--- /dev/null
+++ b/packages/ui/mockData/json/fieldOpt.countries.json
@@ -0,0 +1 @@
+[{"activeForOrgs":null,"cca2":"AF","dialCode":null,"flag":"🇦🇫","id":"ctry_01GW2HHDKATDZGNR55QRS6Y5NX","name":"Afghanistan","tsKey":"AFG.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"AX","dialCode":null,"flag":"🇦🇽","id":"ctry_01GW2HHDKGQRTDPFBTD9GJT3BN","name":"Åland Islands","tsKey":"ALA.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"AL","dialCode":null,"flag":"🇦🇱","id":"ctry_01GW2HHDKDSS3YW7W5994KW3ZT","name":"Albania","tsKey":"ALB.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"DZ","dialCode":null,"flag":"🇩🇿","id":"ctry_01GW2HHDK6ENG0N2YD2ZXD043N","name":"Algeria","tsKey":"DZA.name","tsNs":"country"},{"activeForOrgs":true,"cca2":"AS","dialCode":null,"flag":"🇦🇸","id":"ctry_01GW2HHDK67GZQVGA3NZ8PE5SS","name":"American Samoa","tsKey":"ASM.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"AD","dialCode":null,"flag":"🇦🇩","id":"ctry_01GW2HHDKDE152HYH5H1TD8CK6","name":"Andorra","tsKey":"AND.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"AO","dialCode":null,"flag":"🇦🇴","id":"ctry_01GW2HHDKH6H61ZD7Q4D1EVHP5","name":"Angola","tsKey":"AGO.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"AI","dialCode":null,"flag":"🇦🇮","id":"ctry_01GW2HHDK87VQBC3WXQDJJZ6XM","name":"Anguilla","tsKey":"AIA.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"AQ","dialCode":null,"flag":"🇦🇶","id":"ctry_01GW2HHDKAFPAWV4NQHE9VT4BA","name":"Antarctica","tsKey":"ATA.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"AG","dialCode":null,"flag":"🇦🇬","id":"ctry_01GW2HHDKE7QG3QATZ72P7YT7V","name":"Antigua and Barbuda","tsKey":"ATG.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"AR","dialCode":null,"flag":"🇦🇷","id":"ctry_01GW2HHDKAYQQC5ZYAY81QFF4G","name":"Argentina","tsKey":"ARG.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"AM","dialCode":null,"flag":"🇦🇲","id":"ctry_01GW2HHDKD3SFPCG8ED0EP3MX3","name":"Armenia","tsKey":"ARM.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"AW","dialCode":null,"flag":"🇦🇼","id":"ctry_01GW2HHDKGHT708N7RM8QDDEBK","name":"Aruba","tsKey":"ABW.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"AU","dialCode":null,"flag":"🇦🇺","id":"ctry_01GW2HHDKFCKFTFJP7MARGNHRZ","name":"Australia","tsKey":"AUS.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"AT","dialCode":null,"flag":"🇦🇹","id":"ctry_01GW2HHDKEH1KYC4T8236ZSY3C","name":"Austria","tsKey":"AUT.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"AZ","dialCode":null,"flag":"🇦🇿","id":"ctry_01GW2HHDKA3CZ3WF381DJZ5D0Z","name":"Azerbaijan","tsKey":"AZE.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"BS","dialCode":null,"flag":"🇧🇸","id":"ctry_01GW2HHDKH7K0Z1YPRYG3CMEMW","name":"Bahamas","tsKey":"BHS.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"BH","dialCode":null,"flag":"🇧🇭","id":"ctry_01GW2HHDKCBYW7V5T1DWEBPFRV","name":"Bahrain","tsKey":"BHR.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"BD","dialCode":null,"flag":"🇧🇩","id":"ctry_01GW2HHDK67CD2NGY24P7G22SF","name":"Bangladesh","tsKey":"BGD.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"BB","dialCode":null,"flag":"🇧🇧","id":"ctry_01GW2HHDK8SPF3A2D6NW2XPTHM","name":"Barbados","tsKey":"BRB.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"BY","dialCode":null,"flag":"🇧🇾","id":"ctry_01GW2HHDKD14G6PFAPNEMTW5F5","name":"Belarus","tsKey":"BLR.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"BE","dialCode":null,"flag":"🇧🇪","id":"ctry_01GW2HHDKHCQVPDAC0H3PQV53N","name":"Belgium","tsKey":"BEL.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"BZ","dialCode":null,"flag":"🇧🇿","id":"ctry_01GW2HHDKEZN2DQG8Y7XVGHA0G","name":"Belize","tsKey":"BLZ.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"BJ","dialCode":null,"flag":"🇧🇯","id":"ctry_01GW2HHDKGTGG62NESH7TDS364","name":"Benin","tsKey":"BEN.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"BM","dialCode":null,"flag":"🇧🇲","id":"ctry_01GW2HHDKE6FEQT1R83S60KVPT","name":"Bermuda","tsKey":"BMU.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"BT","dialCode":null,"flag":"🇧🇹","id":"ctry_01GW2HHDK7QA15RA6W4YR0YTPQ","name":"Bhutan","tsKey":"BTN.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"BO","dialCode":null,"flag":"🇧🇴","id":"ctry_01GW2HHDKCS87MJP31FAC9S4NB","name":"Bolivia","tsKey":"BOL.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"BA","dialCode":null,"flag":"🇧🇦","id":"ctry_01GW2HHDK6V0QGJ9GRNQCW6A29","name":"Bosnia and Herzegovina","tsKey":"BIH.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"BW","dialCode":null,"flag":"🇧🇼","id":"ctry_01GW2HHDKA6G8FACKBG654B237","name":"Botswana","tsKey":"BWA.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"BV","dialCode":null,"flag":"🇧🇻","id":"ctry_01GW2HHDKDSY01QJC6KX2BRXH8","name":"Bouvet Island","tsKey":"BVT.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"BR","dialCode":null,"flag":"🇧🇷","id":"ctry_01GW2HHDKGTHZA8H042BMMGF3J","name":"Brazil","tsKey":"BRA.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"IO","dialCode":null,"flag":"🇮🇴","id":"ctry_01GW2HHDKG19TTZ3XA7NKMZ3TJ","name":"British Indian Ocean Territory","tsKey":"IOT.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"VG","dialCode":null,"flag":"🇻🇬","id":"ctry_01GW2HHDK88EQB8BSKDWEPG76N","name":"British Virgin Islands","tsKey":"VGB.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"BN","dialCode":null,"flag":"🇧🇳","id":"ctry_01GW2HHDKEGN1AYW58P63XQPZ0","name":"Brunei","tsKey":"BRN.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"BG","dialCode":null,"flag":"🇧🇬","id":"ctry_01GW2HHDKAWJN8K8E3EYVZDENE","name":"Bulgaria","tsKey":"BGR.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"BF","dialCode":null,"flag":"🇧🇫","id":"ctry_01GW2HHDKHD6PPNGQWWGD59BQT","name":"Burkina Faso","tsKey":"BFA.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"BI","dialCode":null,"flag":"🇧🇮","id":"ctry_01GW2HHDKGB5RY2JAQVVF4RC4X","name":"Burundi","tsKey":"BDI.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"KH","dialCode":null,"flag":"🇰🇭","id":"ctry_01GW2HHDK7T16K1ZJ1PZX1E1ZV","name":"Cambodia","tsKey":"KHM.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"CM","dialCode":null,"flag":"🇨🇲","id":"ctry_01GW2HHDKEZMTF03P4JYAFZRN1","name":"Cameroon","tsKey":"CMR.name","tsNs":"country"},{"activeForOrgs":true,"cca2":"CA","dialCode":null,"flag":"🇨🇦","id":"ctry_01GW2HHDKAWXWYHAAESAA5HH94","name":"Canada","tsKey":"CAN.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"CV","dialCode":null,"flag":"🇨🇻","id":"ctry_01GW2HHDKAJ64YAST64W2BJQSV","name":"Cape Verde","tsKey":"CPV.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"BQ","dialCode":null,"flag":"🇧🇶","id":"ctry_01GW2HHDK9JPEM2C72VSS71G4H","name":"Caribbean Netherlands","tsKey":"BES.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"KY","dialCode":null,"flag":"🇰🇾","id":"ctry_01GW2HHDKHA0DCHV26S9FDT5P4","name":"Cayman Islands","tsKey":"CYM.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"CF","dialCode":null,"flag":"🇨🇫","id":"ctry_01GW2HHDKCW140K2TYTEE750YT","name":"Central African Republic","tsKey":"CAF.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"TD","dialCode":null,"flag":"🇹🇩","id":"ctry_01GW2HHDKBDJH4JA3QZRZCDB1C","name":"Chad","tsKey":"TCD.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"CL","dialCode":null,"flag":"🇨🇱","id":"ctry_01GW2HHDKAMPFS09WBC3XZHQKX","name":"Chile","tsKey":"CHL.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"CN","dialCode":null,"flag":"🇨🇳","id":"ctry_01GW2HHDKGEYB1AM0P2DVYBS7A","name":"China","tsKey":"CHN.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"CX","dialCode":null,"flag":"🇨🇽","id":"ctry_01GW2HHDKHV33E0R9ZQSE302T3","name":"Christmas Island","tsKey":"CXR.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"CC","dialCode":null,"flag":"🇨🇨","id":"ctry_01GW2HHDK66TC7PJG0EVPFMBFP","name":"Cocos (Keeling) Islands","tsKey":"CCK.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"CO","dialCode":null,"flag":"🇨🇴","id":"ctry_01GW2HHDKE747AN7G49Z1R39X7","name":"Colombia","tsKey":"COL.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"KM","dialCode":null,"flag":"🇰🇲","id":"ctry_01GW2HHDKE2EJHZ22HF2GWSB4H","name":"Comoros","tsKey":"COM.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"CK","dialCode":null,"flag":"🇨🇰","id":"ctry_01GW2HHDK8FK98CXW90F5HFRJH","name":"Cook Islands","tsKey":"COK.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"CR","dialCode":null,"flag":"🇨🇷","id":"ctry_01GW2HHDK8WHEVKX1JE6V2E5JJ","name":"Costa Rica","tsKey":"CRI.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"HR","dialCode":null,"flag":"🇭🇷","id":"ctry_01GW2HHDK9SZZ6W0GPYA0STVYG","name":"Croatia","tsKey":"HRV.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"CU","dialCode":null,"flag":"🇨🇺","id":"ctry_01GW2HHDK8K7BJH8JW34Q7JK12","name":"Cuba","tsKey":"CUB.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"CW","dialCode":null,"flag":"🇨🇼","id":"ctry_01GW2HHDKDEHGJVDQC1VDXFM0P","name":"Curaçao","tsKey":"CUW.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"CY","dialCode":null,"flag":"🇨🇾","id":"ctry_01GW2HHDKAZ27CDARTX8QS2JMN","name":"Cyprus","tsKey":"CYP.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"CZ","dialCode":null,"flag":"🇨🇿","id":"ctry_01GW2HHDKDWZR3XW85F2G82SME","name":"Czechia","tsKey":"CZE.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"DK","dialCode":null,"flag":"🇩🇰","id":"ctry_01GW2HHDKH7Z155XNFE328RJK5","name":"Denmark","tsKey":"DNK.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"DJ","dialCode":null,"flag":"🇩🇯","id":"ctry_01GW2HHDKBS9SYM4Z85HKVCW7S","name":"Djibouti","tsKey":"DJI.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"DM","dialCode":null,"flag":"🇩🇲","id":"ctry_01GW2HHDKCVDAHZVSVC2YD68XN","name":"Dominica","tsKey":"DMA.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"DO","dialCode":null,"flag":"🇩🇴","id":"ctry_01GW2HHDKCGAXYVWHRWSD40516","name":"Dominican Republic","tsKey":"DOM.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"CD","dialCode":null,"flag":"🇨🇩","id":"ctry_01GW2HHDK7AMX8NEKVMBA64YJS","name":"DR Congo","tsKey":"COD.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"EC","dialCode":null,"flag":"🇪🇨","id":"ctry_01GW2HHDKFWZA5DF33HK20AMQK","name":"Ecuador","tsKey":"ECU.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"EG","dialCode":null,"flag":"🇪🇬","id":"ctry_01GW2HHDK9ZK9PGCD8MGCD8YN9","name":"Egypt","tsKey":"EGY.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"SV","dialCode":null,"flag":"🇸🇻","id":"ctry_01GW2HHDK8HE6ZXBJEN5GGJYBA","name":"El Salvador","tsKey":"SLV.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"GQ","dialCode":null,"flag":"🇬🇶","id":"ctry_01GW2HHDK95TZ43CS71K1P62JD","name":"Equatorial Guinea","tsKey":"GNQ.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"ER","dialCode":null,"flag":"🇪🇷","id":"ctry_01GW2HHDKE6ZTA1B0KNFYXA7XZ","name":"Eritrea","tsKey":"ERI.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"EE","dialCode":null,"flag":"🇪🇪","id":"ctry_01GW2HHDKEM266QFKJYJVHC53T","name":"Estonia","tsKey":"EST.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"SZ","dialCode":null,"flag":"🇸🇿","id":"ctry_01GW2HHDKBT6AMAW7JQ18MAEGF","name":"Eswatini","tsKey":"SWZ.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"ET","dialCode":null,"flag":"🇪🇹","id":"ctry_01GW2HHDKC2S12HZKRBMRC51WB","name":"Ethiopia","tsKey":"ETH.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"FK","dialCode":null,"flag":"🇫🇰","id":"ctry_01GW2HHDKE1JW9G222WXWADT5M","name":"Falkland Islands","tsKey":"FLK.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"FO","dialCode":null,"flag":"🇫🇴","id":"ctry_01GW2HHDKF8Y6KNW8X28APN60W","name":"Faroe Islands","tsKey":"FRO.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"FJ","dialCode":null,"flag":"🇫🇯","id":"ctry_01GW2HHDKC0MEFFZTGK0RWCRQA","name":"Fiji","tsKey":"FJI.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"FI","dialCode":null,"flag":"🇫🇮","id":"ctry_01GW2HHDKFPPCXV7F8BNVZZ81G","name":"Finland","tsKey":"FIN.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"FR","dialCode":null,"flag":"🇫🇷","id":"ctry_01GW2HHDK6TWQ3BN3PG06DQ3HM","name":"France","tsKey":"FRA.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"GF","dialCode":null,"flag":"🇬🇫","id":"ctry_01GW2HHDKH5GV00V6MM2F7CZ3P","name":"French Guiana","tsKey":"GUF.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"PF","dialCode":null,"flag":"🇵🇫","id":"ctry_01GW2HHDKFK3ME6G5ZNBVT26XS","name":"French Polynesia","tsKey":"PYF.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"TF","dialCode":null,"flag":"🇹🇫","id":"ctry_01GW2HHDKCZ5TVB7QPAQNRS362","name":"French Southern and Antarctic Lands","tsKey":"ATF.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"GA","dialCode":null,"flag":"🇬🇦","id":"ctry_01GW2HHDK7Z5N9Q2JPZNXP8VPE","name":"Gabon","tsKey":"GAB.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"GM","dialCode":null,"flag":"🇬🇲","id":"ctry_01GW2HHDK90V1XFYZ6AWB05J58","name":"Gambia","tsKey":"GMB.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"GE","dialCode":null,"flag":"🇬🇪","id":"ctry_01GW2HHDKCJV96MQND976G21HR","name":"Georgia","tsKey":"GEO.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"DE","dialCode":null,"flag":"🇩🇪","id":"ctry_01GW2HHDKGGTVBR39ZYJVVDGNY","name":"Germany","tsKey":"DEU.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"GH","dialCode":null,"flag":"🇬🇭","id":"ctry_01GW2HHDKEW7A1ZRA4EFNWN6FB","name":"Ghana","tsKey":"GHA.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"GI","dialCode":null,"flag":"🇬🇮","id":"ctry_01GW2HHDKBW4RFHHBG7R71M5B5","name":"Gibraltar","tsKey":"GIB.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"GR","dialCode":null,"flag":"🇬🇷","id":"ctry_01GW2HHDK6GRHQQEYGGJX4CQ1Z","name":"Greece","tsKey":"GRC.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"GL","dialCode":null,"flag":"🇬🇱","id":"ctry_01GW2HHDKCBG5RYMSXJ7NE0EQH","name":"Greenland","tsKey":"GRL.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"GD","dialCode":null,"flag":"🇬🇩","id":"ctry_01GW2HHDKDK9BZQS106Q7H8XJR","name":"Grenada","tsKey":"GRD.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"GP","dialCode":null,"flag":"🇬🇵","id":"ctry_01GW2HHDKDT4XD73Q57W6631FN","name":"Guadeloupe","tsKey":"GLP.name","tsNs":"country"},{"activeForOrgs":true,"cca2":"GU","dialCode":null,"flag":"🇬🇺","id":"ctry_01GW2HHDKGZ2XQ8Q9D8GX564MJ","name":"Guam","tsKey":"GUM.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"GT","dialCode":null,"flag":"🇬🇹","id":"ctry_01GW2HHDK6BPY9VBW9WR5HDVA5","name":"Guatemala","tsKey":"GTM.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"GG","dialCode":null,"flag":"🇬🇬","id":"ctry_01GW2HHDKDXS2FKHD8YPRKBZPY","name":"Guernsey","tsKey":"GGY.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"GN","dialCode":null,"flag":"🇬🇳","id":"ctry_01GW2HHDKCK11551EN1JD1AMT6","name":"Guinea","tsKey":"GIN.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"GW","dialCode":null,"flag":"🇬🇼","id":"ctry_01GW2HHDKHXN8ZSHAGKGENMQ4N","name":"Guinea-Bissau","tsKey":"GNB.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"GY","dialCode":null,"flag":"🇬🇾","id":"ctry_01GW2HHDKGRJCTDX2GK4ZZDKAS","name":"Guyana","tsKey":"GUY.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"HT","dialCode":null,"flag":"🇭🇹","id":"ctry_01GW2HHDKBP9EB7HW41MH04MCA","name":"Haiti","tsKey":"HTI.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"HM","dialCode":null,"flag":"🇭🇲","id":"ctry_01GW2HHDKFVJ4QNETXPR3PGZES","name":"Heard Island and McDonald Islands","tsKey":"HMD.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"HN","dialCode":null,"flag":"🇭🇳","id":"ctry_01GW2HHDK96FCPGE9HBHC01VDE","name":"Honduras","tsKey":"HND.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"HK","dialCode":null,"flag":"🇭🇰","id":"ctry_01GW2HHDKF1ZKQGXHGKH67QXYA","name":"Hong Kong","tsKey":"HKG.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"HU","dialCode":null,"flag":"🇭🇺","id":"ctry_01GW2HHDKGGQ8SZPJH74RXNCP6","name":"Hungary","tsKey":"HUN.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"IS","dialCode":null,"flag":"🇮🇸","id":"ctry_01GW2HHDKB1FFT4ZEBATSQXWRB","name":"Iceland","tsKey":"ISL.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"IN","dialCode":null,"flag":"🇮🇳","id":"ctry_01GW2HHDK7H0GWV1MRQ6EF6E8N","name":"India","tsKey":"IND.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"ID","dialCode":null,"flag":"🇮🇩","id":"ctry_01GW2HHDKDHB62D7NFGE7RRNDN","name":"Indonesia","tsKey":"IDN.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"IR","dialCode":null,"flag":"🇮🇷","id":"ctry_01GW2HHDKBEYBGKWE7BCHXZHJ6","name":"Iran","tsKey":"IRN.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"IQ","dialCode":null,"flag":"🇮🇶","id":"ctry_01GW2HHDKGM9N3RGKASW4677KV","name":"Iraq","tsKey":"IRQ.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"IE","dialCode":null,"flag":"🇮🇪","id":"ctry_01GW2HHDKF939YJGVTR7H30KPX","name":"Ireland","tsKey":"IRL.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"IM","dialCode":null,"flag":"🇮🇲","id":"ctry_01GW2HHDKFFE67B6CGZGV25R1C","name":"Isle of Man","tsKey":"IMN.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"IL","dialCode":null,"flag":"🇮🇱","id":"ctry_01GW2HHDK8JM827C3VY37CM7TF","name":"Israel","tsKey":"ISR.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"IT","dialCode":null,"flag":"🇮🇹","id":"ctry_01GW2HHDK65BRH9H4P9YZH3P3F","name":"Italy","tsKey":"ITA.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"CI","dialCode":null,"flag":"🇨🇮","id":"ctry_01GW2HHDKHRGA9ME9MF56RDYYC","name":"Ivory Coast","tsKey":"CIV.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"JM","dialCode":null,"flag":"🇯🇲","id":"ctry_01GW2HHDKEVZK4MDJTHQ025AQG","name":"Jamaica","tsKey":"JAM.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"JP","dialCode":null,"flag":"🇯🇵","id":"ctry_01GW2HHDKFEWN5X3FJ1QFQ55NW","name":"Japan","tsKey":"JPN.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"JE","dialCode":null,"flag":"🇯🇪","id":"ctry_01GW2HHDK8NAN0FT6100XB79PX","name":"Jersey","tsKey":"JEY.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"JO","dialCode":null,"flag":"🇯🇴","id":"ctry_01GW2HHDK6Q6BB2C5DWKAYKVP9","name":"Jordan","tsKey":"JOR.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"KZ","dialCode":null,"flag":"🇰🇿","id":"ctry_01GW2HHDKAE2X1VJCYX05SQ15T","name":"Kazakhstan","tsKey":"KAZ.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"KE","dialCode":null,"flag":"🇰🇪","id":"ctry_01GW2HHDK9D4RQ30ZEV336H36F","name":"Kenya","tsKey":"KEN.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"KI","dialCode":null,"flag":"🇰🇮","id":"ctry_01GW2HHDKGR9X8QJBDSK84PAG1","name":"Kiribati","tsKey":"KIR.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"XK","dialCode":null,"flag":"🇽🇰","id":"ctry_01GW2HHDKA32KTYFEBFF1FRX6G","name":"Kosovo","tsKey":"UNK.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"KW","dialCode":null,"flag":"🇰🇼","id":"ctry_01GW2HHDKE2127XE2CXSCB0SWG","name":"Kuwait","tsKey":"KWT.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"KG","dialCode":null,"flag":"🇰🇬","id":"ctry_01GW2HHDKFGDMKVKEAVVCVHXG4","name":"Kyrgyzstan","tsKey":"KGZ.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"LA","dialCode":null,"flag":"🇱🇦","id":"ctry_01GW2HHDKG8SKA53C146FV5E0G","name":"Laos","tsKey":"LAO.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"LV","dialCode":null,"flag":"🇱🇻","id":"ctry_01GW2HHDK69KVF1HPHBRBTSSBE","name":"Latvia","tsKey":"LVA.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"LB","dialCode":null,"flag":"🇱🇧","id":"ctry_01GW2HHDK9NG4F38ZGH49JE311","name":"Lebanon","tsKey":"LBN.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"LS","dialCode":null,"flag":"🇱🇸","id":"ctry_01GW2HHDKH74J20AXR1GWGX6ZQ","name":"Lesotho","tsKey":"LSO.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"LR","dialCode":null,"flag":"🇱🇷","id":"ctry_01GW2HHDKDHEQGH45498FKFDM8","name":"Liberia","tsKey":"LBR.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"LY","dialCode":null,"flag":"🇱🇾","id":"ctry_01GW2HHDKC77VK7AC2YXTJFP9H","name":"Libya","tsKey":"LBY.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"LI","dialCode":null,"flag":"🇱🇮","id":"ctry_01GW2HHDKBKDT96T91NCRFZE8A","name":"Liechtenstein","tsKey":"LIE.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"LT","dialCode":null,"flag":"🇱🇹","id":"ctry_01GW2HHDKC6BNE39T2DV3QC4NJ","name":"Lithuania","tsKey":"LTU.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"LU","dialCode":null,"flag":"🇱🇺","id":"ctry_01GW2HHDKBTPBSDQE1XHBMBXJE","name":"Luxembourg","tsKey":"LUX.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"MO","dialCode":null,"flag":"🇲🇴","id":"ctry_01GW2HHDK9114P6V7VFFNFTMNP","name":"Macau","tsKey":"MAC.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"MG","dialCode":null,"flag":"🇲🇬","id":"ctry_01GW2HHDKBN3B46NQY3YEACJ0K","name":"Madagascar","tsKey":"MDG.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"MW","dialCode":null,"flag":"🇲🇼","id":"ctry_01GW2HHDKHRXXQZHPZYDV3SNVZ","name":"Malawi","tsKey":"MWI.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"MY","dialCode":null,"flag":"🇲🇾","id":"ctry_01GW2HHDKEZED648DCY8RGH5NA","name":"Malaysia","tsKey":"MYS.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"MV","dialCode":null,"flag":"🇲🇻","id":"ctry_01GW2HHDK6FR8HMD3W523Q3WRA","name":"Maldives","tsKey":"MDV.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"ML","dialCode":null,"flag":"🇲🇱","id":"ctry_01GW2HHDKCFG7G5S12F71S6QG5","name":"Mali","tsKey":"MLI.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"MT","dialCode":null,"flag":"🇲🇹","id":"ctry_01GW2HHDKDD06KYX7CY9JJR1SQ","name":"Malta","tsKey":"MLT.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"MH","dialCode":null,"flag":"🇲🇭","id":"ctry_01GW2HHDK8HTCM0MWQXBJRXEYB","name":"Marshall Islands","tsKey":"MHL.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"MQ","dialCode":null,"flag":"🇲🇶","id":"ctry_01GW2HHDKB96KWQYA4T0D8VXTV","name":"Martinique","tsKey":"MTQ.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"MR","dialCode":null,"flag":"🇲🇷","id":"ctry_01GW2HHDKAR1506PSRF3PB1HYX","name":"Mauritania","tsKey":"MRT.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"MU","dialCode":null,"flag":"🇲🇺","id":"ctry_01GW2HHDK7DF62BBZYJCBFGVYY","name":"Mauritius","tsKey":"MUS.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"YT","dialCode":null,"flag":"🇾🇹","id":"ctry_01GW2HHDK6BG4CBH38VKSZ9M4X","name":"Mayotte","tsKey":"MYT.name","tsNs":"country"},{"activeForOrgs":true,"cca2":"MX","dialCode":null,"flag":"🇲🇽","id":"ctry_01GW2HHDKB9DG2T2YZM5MFFVX9","name":"Mexico","tsKey":"MEX.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"FM","dialCode":null,"flag":"🇫🇲","id":"ctry_01GW2HHDKHHXXT7NMR9TQ0TY97","name":"Micronesia","tsKey":"FSM.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"MD","dialCode":null,"flag":"🇲🇩","id":"ctry_01GW2HHDKCZNJN6F1J1JTQRZ25","name":"Moldova","tsKey":"MDA.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"MC","dialCode":null,"flag":"🇲🇨","id":"ctry_01GW2HHDKGB3V0H2DKQA84VA5K","name":"Monaco","tsKey":"MCO.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"MN","dialCode":null,"flag":"🇲🇳","id":"ctry_01GW2HHDKC2Q96XZGFSTMMQPNB","name":"Mongolia","tsKey":"MNG.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"ME","dialCode":null,"flag":"🇲🇪","id":"ctry_01GW2HHDKGA35BCNN91RB2DFX7","name":"Montenegro","tsKey":"MNE.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"MS","dialCode":null,"flag":"🇲🇸","id":"ctry_01GW2HHDKHCN2Q3JMYRQ7HJ5VH","name":"Montserrat","tsKey":"MSR.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"MA","dialCode":null,"flag":"🇲🇦","id":"ctry_01GW2HHDKBJ9NNQ06K5V64NAB8","name":"Morocco","tsKey":"MAR.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"MZ","dialCode":null,"flag":"🇲🇿","id":"ctry_01GW2HHDK8VJ7Z7R0D99K5E4AN","name":"Mozambique","tsKey":"MOZ.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"MM","dialCode":null,"flag":"🇲🇲","id":"ctry_01GW2HHDK99MQM7GZ8EN4WZ9FK","name":"Myanmar","tsKey":"MMR.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"NA","dialCode":null,"flag":"🇳🇦","id":"ctry_01GW2HHDKCGYGA9KDYNQ3CK7H7","name":"Namibia","tsKey":"NAM.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"NR","dialCode":null,"flag":"🇳🇷","id":"ctry_01GW2HHDK79QNCV8EVYND8E6MY","name":"Nauru","tsKey":"NRU.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"NP","dialCode":null,"flag":"🇳🇵","id":"ctry_01GW2HHDKFT9BZY0XPP6DESZX8","name":"Nepal","tsKey":"NPL.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"NL","dialCode":null,"flag":"🇳🇱","id":"ctry_01GW2HHDK76HGWY2MNZTFSTT61","name":"Netherlands","tsKey":"NLD.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"NC","dialCode":null,"flag":"🇳🇨","id":"ctry_01GW2HHDK7HMC32S6PHPMFACZX","name":"New Caledonia","tsKey":"NCL.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"NZ","dialCode":null,"flag":"🇳🇿","id":"ctry_01GW2HHDKEKF565F1E5ZPTXFHE","name":"New Zealand","tsKey":"NZL.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"NI","dialCode":null,"flag":"🇳🇮","id":"ctry_01GW2HHDK7372NTNTPP3V9BPGV","name":"Nicaragua","tsKey":"NIC.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"NE","dialCode":null,"flag":"🇳🇪","id":"ctry_01GW2HHDKHMY5MATBT7VET2W95","name":"Niger","tsKey":"NER.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"NG","dialCode":null,"flag":"🇳🇬","id":"ctry_01GW2HHDK8AXT584ZTWBN739SN","name":"Nigeria","tsKey":"NGA.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"NU","dialCode":null,"flag":"🇳🇺","id":"ctry_01GW2HHDK9B08AAMK0WGCVR313","name":"Niue","tsKey":"NIU.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"NF","dialCode":null,"flag":"🇳🇫","id":"ctry_01GW2HHDKGHKX9XHGFYN7FAF95","name":"Norfolk Island","tsKey":"NFK.name","tsNs":"country"},{"activeForOrgs":true,"cca2":"MP","dialCode":null,"flag":"🇲🇵","id":"ctry_01GW2HHDKFJ4Q7PBTTN4GSMPV0","name":"Northern Mariana Islands","tsKey":"MNP.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"KP","dialCode":null,"flag":"🇰🇵","id":"ctry_01GW2HHDKCQX4EJEVCEME3EEBS","name":"North Korea","tsKey":"PRK.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"MK","dialCode":null,"flag":"🇲🇰","id":"ctry_01GW2HHDKAKGTGCFFE8HQGZXF4","name":"North Macedonia","tsKey":"MKD.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"NO","dialCode":null,"flag":"🇳🇴","id":"ctry_01GW2HHDK74HTQCYV1EVM79B1G","name":"Norway","tsKey":"NOR.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"OM","dialCode":null,"flag":"🇴🇲","id":"ctry_01GW2HHDKH3SMD6TVK8MPGE6DD","name":"Oman","tsKey":"OMN.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"PK","dialCode":null,"flag":"🇵🇰","id":"ctry_01GW2HHDKDDHRPPGSEFG2P69F0","name":"Pakistan","tsKey":"PAK.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"PW","dialCode":null,"flag":"🇵🇼","id":"ctry_01GW2HHDKBRDF1DMR5DA9DAT7K","name":"Palau","tsKey":"PLW.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"PS","dialCode":null,"flag":"🇵🇸","id":"ctry_01GW2HHDKGRRZM6X62GJ3M62Z4","name":"Palestine","tsKey":"PSE.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"PA","dialCode":null,"flag":"🇵🇦","id":"ctry_01GW2HHDK7JEDGYF9BQBZVDW0X","name":"Panama","tsKey":"PAN.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"PG","dialCode":null,"flag":"🇵🇬","id":"ctry_01GW2HHDK9HZ6M9Q2PJEX8T6HA","name":"Papua New Guinea","tsKey":"PNG.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"PY","dialCode":null,"flag":"🇵🇾","id":"ctry_01GW2HHDKF47X5KGDW8RWF841A","name":"Paraguay","tsKey":"PRY.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"PE","dialCode":null,"flag":"🇵🇪","id":"ctry_01GW2HHDKBRRZ84X368SH12W7Q","name":"Peru","tsKey":"PER.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"PH","dialCode":null,"flag":"🇵🇭","id":"ctry_01GW2HHDKAQTGEVED1E27QW61N","name":"Philippines","tsKey":"PHL.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"PN","dialCode":null,"flag":"🇵🇳","id":"ctry_01GW2HHDKJRNN53ENTSS4Z001K","name":"Pitcairn Islands","tsKey":"PCN.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"PL","dialCode":null,"flag":"🇵🇱","id":"ctry_01GW2HHDKBRG2CC67WN648YK7S","name":"Poland","tsKey":"POL.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"PT","dialCode":null,"flag":"🇵🇹","id":"ctry_01GW2HHDK9W45HXETV96K8CZAZ","name":"Portugal","tsKey":"PRT.name","tsNs":"country"},{"activeForOrgs":true,"cca2":"PR","dialCode":null,"flag":"🇵🇷","id":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY","name":"Puerto Rico","tsKey":"PRI.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"QA","dialCode":null,"flag":"🇶🇦","id":"ctry_01GW2HHDKA77DT55ZPJ8XKM8P3","name":"Qatar","tsKey":"QAT.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"CG","dialCode":null,"flag":"🇨🇬","id":"ctry_01GW2HHDKD20967VJAPNPBARXM","name":"Republic of the Congo","tsKey":"COG.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"RE","dialCode":null,"flag":"🇷🇪","id":"ctry_01GW2HHDK7HX3TFSB0HX6YDCRR","name":"Réunion","tsKey":"REU.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"RO","dialCode":null,"flag":"🇷🇴","id":"ctry_01GW2HHDKAGCFGK8W1ZFE62QKQ","name":"Romania","tsKey":"ROU.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"RU","dialCode":null,"flag":"🇷🇺","id":"ctry_01GW2HHDK8A3W54F0AW64VV2GD","name":"Russia","tsKey":"RUS.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"RW","dialCode":null,"flag":"🇷🇼","id":"ctry_01GW2HHDK8ZYZHYB9CAVW6C4ER","name":"Rwanda","tsKey":"RWA.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"BL","dialCode":null,"flag":"🇧🇱","id":"ctry_01GW2HHDKH0MMEJM9R74Z359R6","name":"Saint Barthélemy","tsKey":"BLM.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"SH","dialCode":null,"flag":"🇸🇭","id":"ctry_01GW2HHDKD9T5SF5CAMVPA1M4F","name":"Saint Helena, Ascension and Tristan da Cunha","tsKey":"SHN.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"KN","dialCode":null,"flag":"🇰🇳","id":"ctry_01GW2HHDKC0N6MV90J9VWJ6CQN","name":"Saint Kitts and Nevis","tsKey":"KNA.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"LC","dialCode":null,"flag":"🇱🇨","id":"ctry_01GW2HHDKFPY9T4YYDFWGBZP5P","name":"Saint Lucia","tsKey":"LCA.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"MF","dialCode":null,"flag":"🇲🇫","id":"ctry_01GW2HHDKD311V08MQJWG7CK03","name":"Saint Martin","tsKey":"MAF.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"PM","dialCode":null,"flag":"🇵🇲","id":"ctry_01GW2HHDK8MZVCAHNP3EBTHDGH","name":"Saint Pierre and Miquelon","tsKey":"SPM.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"VC","dialCode":null,"flag":"🇻🇨","id":"ctry_01GW2HHDKFYB0C2FBC8KQ50M36","name":"Saint Vincent and the Grenadines","tsKey":"VCT.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"WS","dialCode":null,"flag":"🇼🇸","id":"ctry_01GW2HHDKFTYX6T84QB1WZYYAY","name":"Samoa","tsKey":"WSM.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"SM","dialCode":null,"flag":"🇸🇲","id":"ctry_01GW2HHDK796T1HRBRQMRV2ZGH","name":"San Marino","tsKey":"SMR.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"ST","dialCode":null,"flag":"🇸🇹","id":"ctry_01GW2HHDK73TNXH3DFC5BV244P","name":"São Tomé and Príncipe","tsKey":"STP.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"SA","dialCode":null,"flag":"🇸🇦","id":"ctry_01GW2HHDKE6SRWQT7YKMEV7N5Y","name":"Saudi Arabia","tsKey":"SAU.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"SN","dialCode":null,"flag":"🇸🇳","id":"ctry_01GW2HHDKJ4620D1AB421E7JYX","name":"Senegal","tsKey":"SEN.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"RS","dialCode":null,"flag":"🇷🇸","id":"ctry_01GW2HHDKCGEP7FXQHWTQWB904","name":"Serbia","tsKey":"SRB.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"SC","dialCode":null,"flag":"🇸🇨","id":"ctry_01GW2HHDKHF02X3NEPGZ12ZFZV","name":"Seychelles","tsKey":"SYC.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"SL","dialCode":null,"flag":"🇸🇱","id":"ctry_01GW2HHDK70QBRG8S7ZXZP89W9","name":"Sierra Leone","tsKey":"SLE.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"SG","dialCode":null,"flag":"🇸🇬","id":"ctry_01GW2HHDK6FGT7BES1NPX66JTQ","name":"Singapore","tsKey":"SGP.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"SX","dialCode":null,"flag":"🇸🇽","id":"ctry_01GW2HHDKGQMAVVKJ3SPPCS689","name":"Sint Maarten","tsKey":"SXM.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"SK","dialCode":null,"flag":"🇸🇰","id":"ctry_01GW2HHDKG21ZM449SKC9HB5YK","name":"Slovakia","tsKey":"SVK.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"SI","dialCode":null,"flag":"🇸🇮","id":"ctry_01GW2HHDK95AW3T41X8R552F6R","name":"Slovenia","tsKey":"SVN.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"SB","dialCode":null,"flag":"🇸🇧","id":"ctry_01GW2HHDKC5TFN4HP9KQ7QCQR9","name":"Solomon Islands","tsKey":"SLB.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"SO","dialCode":null,"flag":"🇸🇴","id":"ctry_01GW2HHDKBHVDM3WCVS2THFMHT","name":"Somalia","tsKey":"SOM.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"ZA","dialCode":null,"flag":"🇿🇦","id":"ctry_01GW2HHDKDNEGQ31JPB4V9BBMK","name":"South Africa","tsKey":"ZAF.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"GS","dialCode":null,"flag":"🇬🇸","id":"ctry_01GW2HHDKBM1E4N9900Q4N942Y","name":"South Georgia","tsKey":"SGS.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"KR","dialCode":null,"flag":"🇰🇷","id":"ctry_01GW2HHDKH6NG85CKMSESSPHQK","name":"South Korea","tsKey":"KOR.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"SS","dialCode":null,"flag":"🇸🇸","id":"ctry_01GW2HHDKD48PB3V9R7ZWXZ3KP","name":"South Sudan","tsKey":"SSD.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"ES","dialCode":null,"flag":"🇪🇸","id":"ctry_01GW2HHDKAMRVA2E0TZBFPX7VF","name":"Spain","tsKey":"ESP.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"LK","dialCode":null,"flag":"🇱🇰","id":"ctry_01GW2HHDKHZNVZP299TK5QC9X6","name":"Sri Lanka","tsKey":"LKA.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"SD","dialCode":null,"flag":"🇸🇩","id":"ctry_01GW2HHDKH7NVGT1JBPB5B9SP3","name":"Sudan","tsKey":"SDN.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"SR","dialCode":null,"flag":"🇸🇷","id":"ctry_01GW2HHDKHZP2AGK419VGS2YQ0","name":"Suriname","tsKey":"SUR.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"SJ","dialCode":null,"flag":"🇸🇯","id":"ctry_01GW2HHDKEG4RY89ACRQMNT8SB","name":"Svalbard and Jan Mayen","tsKey":"SJM.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"SE","dialCode":null,"flag":"🇸🇪","id":"ctry_01GW2HHDKBCAGQ1RJGC3ZP6Z5S","name":"Sweden","tsKey":"SWE.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"CH","dialCode":null,"flag":"🇨🇭","id":"ctry_01GW2HHDKGFE1AY05PY62XEWPM","name":"Switzerland","tsKey":"CHE.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"SY","dialCode":null,"flag":"🇸🇾","id":"ctry_01GW2HHDKBCYJXSMFM5N5VW3Q5","name":"Syria","tsKey":"SYR.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"TW","dialCode":null,"flag":"🇹🇼","id":"ctry_01GW2HHDKHMX2CYG3GWYA23W4B","name":"Taiwan","tsKey":"TWN.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"TJ","dialCode":null,"flag":"🇹🇯","id":"ctry_01GW2HHDKAHQVZWP2NHE3A02B5","name":"Tajikistan","tsKey":"TJK.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"TZ","dialCode":null,"flag":"🇹🇿","id":"ctry_01GW2HHDKE97QHYGJXTAGWENKK","name":"Tanzania","tsKey":"TZA.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"TH","dialCode":null,"flag":"🇹🇭","id":"ctry_01GW2HHDKGVAGE7SGTXWD5V2EP","name":"Thailand","tsKey":"THA.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"TL","dialCode":null,"flag":"🇹🇱","id":"ctry_01GW2HHDKF1NR34T2G6FMKQCYD","name":"Timor-Leste","tsKey":"TLS.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"TG","dialCode":null,"flag":"🇹🇬","id":"ctry_01GW2HHDKDMWST2K7SVAAEP7K5","name":"Togo","tsKey":"TGO.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"TK","dialCode":null,"flag":"🇹🇰","id":"ctry_01GW2HHDKFRPGM3P3HD5747R23","name":"Tokelau","tsKey":"TKL.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"TO","dialCode":null,"flag":"🇹🇴","id":"ctry_01GW2HHDKG1TWFSYE4QQ6CRFX7","name":"Tonga","tsKey":"TON.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"TT","dialCode":null,"flag":"🇹🇹","id":"ctry_01GW2HHDK94QVSXT8Q12EDB4XP","name":"Trinidad and Tobago","tsKey":"TTO.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"TN","dialCode":null,"flag":"🇹🇳","id":"ctry_01GW2HHDKGG7JZ2RN968FJNWJ8","name":"Tunisia","tsKey":"TUN.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"TR","dialCode":null,"flag":"🇹🇷","id":"ctry_01GW2HHDK8NAY2T3GHNV1HVD3M","name":"Turkey","tsKey":"TUR.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"TM","dialCode":null,"flag":"🇹🇲","id":"ctry_01GW2HHDKEFVF6N0VM03AGGZF7","name":"Turkmenistan","tsKey":"TKM.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"TC","dialCode":null,"flag":"🇹🇨","id":"ctry_01GW2HHDKEE1FJ2XTH7MA2AZP1","name":"Turks and Caicos Islands","tsKey":"TCA.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"TV","dialCode":null,"flag":"🇹🇻","id":"ctry_01GW2HHDK7BMH7NEWWCXXE4XTG","name":"Tuvalu","tsKey":"TUV.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"UG","dialCode":null,"flag":"🇺🇬","id":"ctry_01GW2HHDKF91Z0RAW6TC6P5TAP","name":"Uganda","tsKey":"UGA.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"UA","dialCode":null,"flag":"🇺🇦","id":"ctry_01GW2HHDKBX833SWMMRHFEXGDG","name":"Ukraine","tsKey":"UKR.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"AE","dialCode":null,"flag":"🇦🇪","id":"ctry_01GW2HHDKDXBNPG01NBMPKYFZ2","name":"United Arab Emirates","tsKey":"ARE.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"GB","dialCode":null,"flag":"🇬🇧","id":"ctry_01GW2HHDKFTPR1W2P2M9E081J5","name":"United Kingdom","tsKey":"GBR.name","tsNs":"country"},{"activeForOrgs":true,"cca2":"US","dialCode":null,"flag":"🇺🇸","id":"ctry_01GW2HHDK9M26M80SG63T21SVH","name":"United States","tsKey":"USA.name","tsNs":"country"},{"activeForOrgs":true,"cca2":"UM","dialCode":null,"flag":"🇺🇲","id":"ctry_01GW2HHDKCRS9KW4FG2WR2GG06","name":"United States Minor Outlying Islands","tsKey":"UMI.name","tsNs":"country"},{"activeForOrgs":true,"cca2":"VI","dialCode":null,"flag":"🇻🇮","id":"ctry_01GW2HHDK9DG12Y7RQMVEE5XSQ","name":"United States Virgin Islands","tsKey":"VIR.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"UY","dialCode":null,"flag":"🇺🇾","id":"ctry_01GW2HHDKAZYVYFHDZNZDE4HPB","name":"Uruguay","tsKey":"URY.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"UZ","dialCode":null,"flag":"🇺🇿","id":"ctry_01GW2HHDKH6KGE8D69GPF7SSAJ","name":"Uzbekistan","tsKey":"UZB.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"VU","dialCode":null,"flag":"🇻🇺","id":"ctry_01GW2HHDKBARW56WYXTBMBX9Z8","name":"Vanuatu","tsKey":"VUT.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"VA","dialCode":null,"flag":"🇻🇦","id":"ctry_01GW2HHDKD09MHFTWE9SKVMMJ0","name":"Vatican City","tsKey":"VAT.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"VE","dialCode":null,"flag":"🇻🇪","id":"ctry_01GW2HHDKGJG43HR2M2T7JQ5DC","name":"Venezuela","tsKey":"VEN.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"VN","dialCode":null,"flag":"🇻🇳","id":"ctry_01GW2HHDKFX9C6AWNQ3F32P95P","name":"Vietnam","tsKey":"VNM.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"WF","dialCode":null,"flag":"🇼🇫","id":"ctry_01GW2HHDKEYSJWN1W0AYDS0NH4","name":"Wallis and Futuna","tsKey":"WLF.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"EH","dialCode":null,"flag":"🇪🇭","id":"ctry_01GW2HHDK87660QN220M6T4S2K","name":"Western Sahara","tsKey":"ESH.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"YE","dialCode":null,"flag":"🇾🇪","id":"ctry_01GW2HHDKA60427HJJGXNGC3EV","name":"Yemen","tsKey":"YEM.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"ZM","dialCode":null,"flag":"🇿🇲","id":"ctry_01GW2HHDKFPXSJ18WSJ8GEZKJ0","name":"Zambia","tsKey":"ZMB.name","tsNs":"country"},{"activeForOrgs":null,"cca2":"ZW","dialCode":null,"flag":"🇿🇼","id":"ctry_01GW2HHDKENXBKBZTFJ4PA6Z2C","name":"Zimbabwe","tsKey":"ZWE.name","tsNs":"country"}]
\ No newline at end of file
diff --git a/packages/ui/mockData/json/countryGovDistMap.json b/packages/ui/mockData/json/fieldOpt.countryGovDistMap.json
similarity index 100%
rename from packages/ui/mockData/json/countryGovDistMap.json
rename to packages/ui/mockData/json/fieldOpt.countryGovDistMap.json
diff --git a/packages/ui/mockData/json/fieldOpt.getSubDistricts.json b/packages/ui/mockData/json/fieldOpt.getSubDistricts.json
new file mode 100644
index 0000000000..245ea42b1b
--- /dev/null
+++ b/packages/ui/mockData/json/fieldOpt.getSubDistricts.json
@@ -0,0 +1 @@
+[{"id":"gdst_01GW2HHYFHW2VY1RV17GT1DD4R","tsKey":"us-alabama-autauga-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFMAZB6BC28PJM6NQHP","tsKey":"us-alabama-baldwin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFM83H980VZB3WQGZ7N","tsKey":"us-alabama-barbour-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFMP68X8PHNAJ06Z24B","tsKey":"us-alabama-bibb-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFH6B2PYR6EN4V3VFVX","tsKey":"us-alabama-blount-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFMNS2YAEX2M3FTSFTQ","tsKey":"us-alabama-bullock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFNN78AH84F16DKADZC","tsKey":"us-alabama-butler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFMMS3CDABJ3Z80GGJA","tsKey":"us-alabama-calhoun-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFH1TDS4HXMJ6EZDCCM","tsKey":"us-alabama-chambers-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFNKBPA44YQX67P33KX","tsKey":"us-alabama-cherokee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFJ7SJ5EADNYW6RZPZ5","tsKey":"us-alabama-chilton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFJYD6WZZR4KR4DMXEC","tsKey":"us-alabama-choctaw-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFJ5G8DJ46NRWD1M1N5","tsKey":"us-alabama-clarke-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFMPD5S50W32EPWA0NB","tsKey":"us-alabama-clay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFJCYF3871F5KJNTBT2","tsKey":"us-alabama-cleburne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFJQY7DJV3ZFRS1TGDR","tsKey":"us-alabama-coffee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFJEA2NVR1NFA4WSPWA","tsKey":"us-alabama-colbert-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFNE610J729EGG04PHF","tsKey":"us-alabama-conecuh-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFK2KHXFRM30KYH8YHD","tsKey":"us-alabama-coosa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFN13H76ZQY7NMABC63","tsKey":"us-alabama-covington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFM4ZE5FCX9X2JBR9JN","tsKey":"us-alabama-crenshaw-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFN8Y9AZB47BRZQV9CG","tsKey":"us-alabama-cullman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFJE1SCENN0X3AHAPBA","tsKey":"us-alabama-dale-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFKXVG8JM5VMXYE39NS","tsKey":"us-alabama-dallas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFNQC0N5XC7VKEQDQN3","tsKey":"us-alabama-dekalb-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFJR7VEVS5DV83K75AH","tsKey":"us-alabama-elmore-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFN9QVQ40FQEGH8MAGX","tsKey":"us-alabama-escambia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFKJACYVGERRAYPRA5K","tsKey":"us-alabama-etowah-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFMSFQ962GVFYQK6D5X","tsKey":"us-alabama-fayette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFKAWKXY5ZTEK5FC7X3","tsKey":"us-alabama-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFKTBDEJ8N4PHVH2E5K","tsKey":"us-alabama-geneva-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFNAD5FSMFC63VGA483","tsKey":"us-alabama-greene-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFJC89DMBVZN2F6PNBA","tsKey":"us-alabama-hale-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFKEPZW2M7X3D5GJKXC","tsKey":"us-alabama-henry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFNZG0JSWP60QDMDN5Q","tsKey":"us-alabama-houston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFKFR143JVE727XFDST","tsKey":"us-alabama-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFMW1VTN2N00HEYSZ8V","tsKey":"us-alabama-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFN3JCDKH4W36Z6JADC","tsKey":"us-alabama-lamar-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFNH9VDCN2QBMQMTX2T","tsKey":"us-alabama-lauderdale-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFJ1VB89J9ZZ5FD4DJA","tsKey":"us-alabama-lawrence-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFKS6ED8GW1NKDQ58YG","tsKey":"us-alabama-lee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFJBT1ZZHF6E70WPYA3","tsKey":"us-alabama-limestone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFK9JHBEEW3H0FMPM0N","tsKey":"us-alabama-lowndes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFKV8F2AB3V0ST140AX","tsKey":"us-alabama-macon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFKPN7ZZ1R1YZCC5WEV","tsKey":"us-alabama-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFMJYBZXXZC0EY5QM1Y","tsKey":"us-alabama-marengo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFKYAPVYEYY7X5Z6D5W","tsKey":"us-alabama-marion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFK9Z45A0PPK7GPBG88","tsKey":"us-alabama-marshall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFKVB6D8FGEM0C8J36D","tsKey":"us-alabama-mobile-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFJYFE9H592BYS2VPBC","tsKey":"us-alabama-monroe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFMN5ADX0PB4737352C","tsKey":"us-alabama-montgomery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFM7NR25XT4SGK2KH8Z","tsKey":"us-alabama-morgan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFNGQENXSNP9C7D6R5B","tsKey":"us-alabama-perry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFJT43YQFWTBBNATN17","tsKey":"us-alabama-pickens-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFNFX1S4N2HTGGF87T7","tsKey":"us-alabama-pike-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFN8ZM442XR7YCTQ3WR","tsKey":"us-alabama-randolph-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFNV68RV3ZNXC5MEMFM","tsKey":"us-alabama-russell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFMWNXSKQM9Z26SYN2F","tsKey":"us-alabama-shelby-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFM321NBW6ZRN25G9G5","tsKey":"us-alabama-st-clair-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFMEZPRT7NDM56H20R5","tsKey":"us-alabama-sumter-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFJRMXBWFBYKRCFCPR6","tsKey":"us-alabama-talladega-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFNQXDCPJC8D08TXEZP","tsKey":"us-alabama-tallapoosa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFMD18S5R6FT60WX08P","tsKey":"us-alabama-tuscaloosa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFNJ390474TVHEPM235","tsKey":"us-alabama-walker-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFMHEESD1R8505A57PV","tsKey":"us-alabama-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFM95BPQ79SMN8EDSBA","tsKey":"us-alabama-wilcox-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HHYFNNS1TSNJ3CGD3HN03","tsKey":"us-alabama-winston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alabama","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114"},{"id":"gdst_01GW2HJ01X4HXTD5877QM7WFEZ","tsKey":"us-alaska-aleutians-east-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alaska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ"},{"id":"gdst_01GW2HJ01X0G834RM34SEK12V3","tsKey":"us-alaska-aleutians-west-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alaska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ"},{"id":"gdst_01GW2HJ01XP7TGRX1JENHYFR4C","tsKey":"us-alaska-anchorage-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alaska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ"},{"id":"gdst_01GW2HJ01XC4KEM6DJM87QN5XK","tsKey":"us-alaska-bethel-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alaska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ"},{"id":"gdst_01GW2HJ01X8XM35GJS8GCW2G3A","tsKey":"us-alaska-bristol-bay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alaska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ"},{"id":"gdst_01GW2HJ01XZZYA1A2BWNTENH20","tsKey":"us-alaska-denali-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alaska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ"},{"id":"gdst_01GW2HJ01XV43BSA8VVK96XSZ5","tsKey":"us-alaska-dillingham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alaska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ"},{"id":"gdst_01GW2HJ01XHTSNJ1EQ03CH59X3","tsKey":"us-alaska-fairbanks-north-star-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alaska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ"},{"id":"gdst_01GW2HJ01XWCWNC7QAK1849VXY","tsKey":"us-alaska-haines-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alaska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ"},{"id":"gdst_01GW2HJ01X3E6S7RN91KW4JMJY","tsKey":"us-alaska-hoonah-angoon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alaska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ"},{"id":"gdst_01GW2HJ01XA7SEJ9K71BN11FPN","tsKey":"us-alaska-juneau-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alaska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ"},{"id":"gdst_01GW2HJ01XYBXR6X7VZS4PSTFA","tsKey":"us-alaska-kenai-peninsula-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alaska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ"},{"id":"gdst_01GW2HJ01XXQJQV9PAMSZQ87YK","tsKey":"us-alaska-ketchikan-gateway-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alaska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ"},{"id":"gdst_01GW2HJ01XMF97T58VKJESXE85","tsKey":"us-alaska-kodiak-island-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alaska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ"},{"id":"gdst_01GW2HJ01XRKWVBQTGFZQW33VB","tsKey":"us-alaska-kusilvak-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alaska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ"},{"id":"gdst_01GW2HJ01XD2S7SX5G57MD0451","tsKey":"us-alaska-lake-and-peninsula-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alaska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ"},{"id":"gdst_01GW2HJ01X840S4WQ42715Z84M","tsKey":"us-alaska-matanuska-susitna-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alaska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ"},{"id":"gdst_01GW2HJ01X09X2A93TDYQHWJEZ","tsKey":"us-alaska-nome-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alaska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ"},{"id":"gdst_01GW2HJ01X3539WSTRP2658HYS","tsKey":"us-alaska-north-slope-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alaska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ"},{"id":"gdst_01GW2HJ01XXSRHT5X7W2792R4Q","tsKey":"us-alaska-northwest-arctic-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alaska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ"},{"id":"gdst_01GW2HJ01XZ09MCP275ABWTAV6","tsKey":"us-alaska-petersburg-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alaska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ"},{"id":"gdst_01GW2HJ01XCF8Y72Z5CKBJ95EH","tsKey":"us-alaska-prince-of-wales-hyder-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alaska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ"},{"id":"gdst_01GW2HJ01XPS1FHX7DP3HTH6ED","tsKey":"us-alaska-sitka-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alaska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ"},{"id":"gdst_01GW2HJ01XJTPJSP4P5TV5H0GY","tsKey":"us-alaska-skagway-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alaska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ"},{"id":"gdst_01GW2HJ01XW9PD17EMVV5H837D","tsKey":"us-alaska-southeast-fairbanks-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alaska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ"},{"id":"gdst_01GW2HJ01XMDHYPWE1YMS8XE7V","tsKey":"us-alaska-valdez-cordova-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alaska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ"},{"id":"gdst_01GW2HJ01XTMH3J05MR3C268RG","tsKey":"us-alaska-wrangell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alaska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ"},{"id":"gdst_01GW2HJ01YHV4YAVAF0GPGNDE0","tsKey":"us-alaska-yakutat-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alaska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ"},{"id":"gdst_01GW2HJ01XH6KV89WVBAFFZDDM","tsKey":"us-alaska-yukon-koyukuk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-alaska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ"},{"id":"gdst_01GW2HJ13RVVVZX6QJPBYKPWJH","tsKey":"us-arizona-apache-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arizona","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ0MERT6FW07XV7PZWZWE"},{"id":"gdst_01GW2HJ13QXQYTYE9PNNQ97KYN","tsKey":"us-arizona-cochise-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arizona","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ0MERT6FW07XV7PZWZWE"},{"id":"gdst_01GW2HJ13QFJ8F8VJE4RBEQTTQ","tsKey":"us-arizona-coconino-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arizona","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ0MERT6FW07XV7PZWZWE"},{"id":"gdst_01GW2HJ13RE5CV50G0HN7YRJV9","tsKey":"us-arizona-gila-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arizona","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ0MERT6FW07XV7PZWZWE"},{"id":"gdst_01GW2HJ13QQAT9FVR5AD79065X","tsKey":"us-arizona-graham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arizona","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ0MERT6FW07XV7PZWZWE"},{"id":"gdst_01GW2HJ13Q77X3A4KX4G9271G8","tsKey":"us-arizona-greenlee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arizona","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ0MERT6FW07XV7PZWZWE"},{"id":"gdst_01GW2HJ13Q8YR8GJVY03V6K32V","tsKey":"us-arizona-la-paz-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arizona","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ0MERT6FW07XV7PZWZWE"},{"id":"gdst_01GW2HJ13Q2NR256YMY9KJN07Z","tsKey":"us-arizona-maricopa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arizona","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ0MERT6FW07XV7PZWZWE"},{"id":"gdst_01GW2HJ13RWDS6380T01FESE0B","tsKey":"us-arizona-mohave-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arizona","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ0MERT6FW07XV7PZWZWE"},{"id":"gdst_01GW2HJ13Q711KDJKHJ6GSK2S9","tsKey":"us-arizona-navajo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arizona","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ0MERT6FW07XV7PZWZWE"},{"id":"gdst_01GW2HJ13R62GYX7P0R9RYNEJE","tsKey":"us-arizona-pima-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arizona","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ0MERT6FW07XV7PZWZWE"},{"id":"gdst_01GW2HJ13QJ63JVVBWDAJ58YD7","tsKey":"us-arizona-pinal-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arizona","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ0MERT6FW07XV7PZWZWE"},{"id":"gdst_01GW2HJ13QNQ3S3JVFDJWKZW4B","tsKey":"us-arizona-santa-cruz-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arizona","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ0MERT6FW07XV7PZWZWE"},{"id":"gdst_01GW2HJ13RBHQR3T5CCWRA04N2","tsKey":"us-arizona-yavapai-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arizona","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ0MERT6FW07XV7PZWZWE"},{"id":"gdst_01GW2HJ13RQGYYKMHE20C112P0","tsKey":"us-arizona-yuma-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arizona","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ0MERT6FW07XV7PZWZWE"},{"id":"gdst_01GW2HJ1TBW4TGEG8MF9Q36E1Q","tsKey":"us-arkansas-arkansas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TD96QKPZTVHHVYVHPC","tsKey":"us-arkansas-ashley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TF49QF4RPESVA24W07","tsKey":"us-arkansas-baxter-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TFWT9X46AEZFRGH6FN","tsKey":"us-arkansas-benton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TB975QAN56580SP2DA","tsKey":"us-arkansas-boone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TEKPEJ65TBM4YKMN29","tsKey":"us-arkansas-bradley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TEHZZA34YC097VH3GF","tsKey":"us-arkansas-calhoun-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TCTRV3BQVT8F9B4NQ0","tsKey":"us-arkansas-carroll-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TC010VF6S5D3TS1JH0","tsKey":"us-arkansas-chicot-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TB30DQJXRTQAHW5A44","tsKey":"us-arkansas-clark-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TE9JBFG7NVJWF4V3VW","tsKey":"us-arkansas-clay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TEY4FD936DKDM19NWN","tsKey":"us-arkansas-cleburne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TC34KGE929M0C7WM9A","tsKey":"us-arkansas-cleveland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TCFA60KGY64DDPW3GA","tsKey":"us-arkansas-columbia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TBKGGTWQBETR2S903F","tsKey":"us-arkansas-conway-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TE61Q9TQAJM4DWFJAS","tsKey":"us-arkansas-craighead-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TCDVQW9NCQV2YTNQRG","tsKey":"us-arkansas-crawford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TFYT0ZKCRTT73D5EWZ","tsKey":"us-arkansas-crittenden-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TE9ES6KNM78XYDC740","tsKey":"us-arkansas-cross-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TE8870J91JFH1DR1HN","tsKey":"us-arkansas-dallas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TFZ48XZP93SFAFNBHE","tsKey":"us-arkansas-desha-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TBYZ4DAMM1V1DYNP19","tsKey":"us-arkansas-drew-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TCE7W2BZWFBHPX4E3M","tsKey":"us-arkansas-faulkner-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TCMSVRP6TGYZG5Q04D","tsKey":"us-arkansas-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TF741WB1FFQNBNKWVE","tsKey":"us-arkansas-fulton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TBNZKG5EN4BJ5FYK35","tsKey":"us-arkansas-garland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TCJ4YWYXHK3GFJR4ZT","tsKey":"us-arkansas-grant-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TEKAWYMQY8XKD7FGSW","tsKey":"us-arkansas-greene-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TFK4HQE0FK3V97K2PC","tsKey":"us-arkansas-hempstead-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TC1TYPPCDF87D7HV8X","tsKey":"us-arkansas-hot-spring-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TBYS6NP5WKPB8T9702","tsKey":"us-arkansas-howard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TFJV42PKSM0GK6Z9J4","tsKey":"us-arkansas-independence-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TENZ7TN38198HQY023","tsKey":"us-arkansas-izard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TCX8NA1D1R120S4HCY","tsKey":"us-arkansas-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TFMQMDDMD7W052JBFZ","tsKey":"us-arkansas-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TBQBY3AFMCEZ1AHM6G","tsKey":"us-arkansas-johnson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TD3VMH3A8Q6J1Q7TTC","tsKey":"us-arkansas-lafayette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TF6DK09PKNGABQXZA6","tsKey":"us-arkansas-lawrence-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TF1P1CJY0QVARDVPBH","tsKey":"us-arkansas-lee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TEVPATS94SHM6SVHDX","tsKey":"us-arkansas-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TDN8RNX2BAS0JVGYKC","tsKey":"us-arkansas-little-river-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TD5TN8YH012XNBP22N","tsKey":"us-arkansas-logan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TB0XX4Q5SCN0GMS3XN","tsKey":"us-arkansas-lonoke-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TD9WN1ZY1YJ1WSWKZ2","tsKey":"us-arkansas-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TD16S3Y6D1RZR4NJR6","tsKey":"us-arkansas-marion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TDKWAP0579FH30YAP7","tsKey":"us-arkansas-miller-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TDCJ5KT2A9BET66FMQ","tsKey":"us-arkansas-mississippi-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TEXM0DG7E4KM7C35C2","tsKey":"us-arkansas-monroe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TBGE95286595TX11R6","tsKey":"us-arkansas-montgomery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TD5MVQ1DDREKKPG8R0","tsKey":"us-arkansas-nevada-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TBT0MTHBN6RW647JRA","tsKey":"us-arkansas-newton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TDSDDPTQF0PH5NH1PT","tsKey":"us-arkansas-ouachita-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TFZEXA80Z006KEQZJK","tsKey":"us-arkansas-perry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TF6TSF820P0DCQJB6S","tsKey":"us-arkansas-phillips-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TEXWCKPF9MEWB0WMYT","tsKey":"us-arkansas-pike-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TBBB2N92X4QY085VQX","tsKey":"us-arkansas-poinsett-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TDJMVZC111GWMS7KGV","tsKey":"us-arkansas-polk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TD35VEAA6WCXNF7NS1","tsKey":"us-arkansas-pope-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TEFVY0RYG1R0C737ZC","tsKey":"us-arkansas-prairie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TF55G5G0WQ030YWXYA","tsKey":"us-arkansas-pulaski-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TDFW1G3DBFQ2CDRAJ8","tsKey":"us-arkansas-randolph-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TEDZF7SZAT4VVG4FHQ","tsKey":"us-arkansas-saline-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TF1W2Y40FQSNDG3DC1","tsKey":"us-arkansas-scott-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TCVXCFDVNAXVVYJQSA","tsKey":"us-arkansas-searcy-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TE3G7GNQTSX34YF5PZ","tsKey":"us-arkansas-sebastian-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TDZ7W0B6ST52R61ES4","tsKey":"us-arkansas-sevier-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TE4S796TDSM401YVHF","tsKey":"us-arkansas-sharp-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TCQQ8H7Z5RCHBZ9B2V","tsKey":"us-arkansas-st-francis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TDT4XA5PJ01AFMK276","tsKey":"us-arkansas-stone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TE6W2XKXGQ3XTE8WRC","tsKey":"us-arkansas-union-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TAXHY075PX1K9KP9JN","tsKey":"us-arkansas-van-buren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TCXSRM9GY602JCR9F0","tsKey":"us-arkansas-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TBNWEKRA5E0ZKMMTYZ","tsKey":"us-arkansas-white-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TCJZ89W02N24CN1KGR","tsKey":"us-arkansas-woodruff-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ1TEXZNRSWB4FT0SYKSQ","tsKey":"us-arkansas-yell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-arkansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC"},{"id":"gdst_01GW2HJ2S3NV642EBKYB453WV2","tsKey":"us-california-alameda-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S0FCS7K0AKCRDGXDVS","tsKey":"us-california-alpine-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2RZTR8JSBS9N7NWE7RH","tsKey":"us-california-amador-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S0BF8VEVE4C2JJ7XDP","tsKey":"us-california-butte-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S2375BWT5BZRVYFQBQ","tsKey":"us-california-calaveras-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S22WBM3SCG9A0W9WWY","tsKey":"us-california-colusa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S2B8RM2W8G4XGXD9YQ","tsKey":"us-california-contra-costa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S29P9EGP90SDM23B83","tsKey":"us-california-del-norte-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S31P315AJ89ZCA0C7T","tsKey":"us-california-el-dorado-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S3F38PQ9371BZ2711A","tsKey":"us-california-fresno-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2RZTSM5SRNKKP6CMA1W","tsKey":"us-california-glenn-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S31C34DF484QHSBTE1","tsKey":"us-california-humboldt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S2Z1BQHXGZ0PPE9FEV","tsKey":"us-california-imperial-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S26VB6FGYS10WH4NBD","tsKey":"us-california-inyo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S2FE9H9HWN63YTRZX5","tsKey":"us-california-kern-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S2VXZ65220HWFG7P8R","tsKey":"us-california-kings-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S0NP9P9KRWW2BWNAJ3","tsKey":"us-california-lake-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S3KSDBFS16JSAPDAZV","tsKey":"us-california-lassen-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S3YA4SH7YRMT2XFM5K","tsKey":"us-california-los-angeles-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S2WKVS2TC6332PJGBC","tsKey":"us-california-madera-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S28VBX43G7VV20FJRN","tsKey":"us-california-marin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S0NKDE9ENJ465KQ6WN","tsKey":"us-california-mariposa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S00J3086ZYZPPNA1ZB","tsKey":"us-california-mendocino-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S2P3CEVK5S3ZEZ6F6Q","tsKey":"us-california-merced-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S0PZHSY20AR3RYH3X9","tsKey":"us-california-modoc-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S0KG4KF8D0Z2Q82AA8","tsKey":"us-california-mono-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S274EH19Y4G10BCN79","tsKey":"us-california-monterey-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S0N7EFJR843V3J8S1V","tsKey":"us-california-napa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S0CY1BH0CRSFX3RS4A","tsKey":"us-california-nevada-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S0H7FBKRZ3Z1X68VY8","tsKey":"us-california-orange-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S3YDHZ7Y37GGG6ZXPD","tsKey":"us-california-placer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S2WB9E7AB5ACJHWDMR","tsKey":"us-california-plumas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S1RTTPB99TDP8PXS7S","tsKey":"us-california-riverside-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S3PDNBQNM938FD1GR6","tsKey":"us-california-sacramento-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S1V8R197ZPXMJDZE8J","tsKey":"us-california-san-benito-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S3ZBV5QB5DAXV0ZTQK","tsKey":"us-california-san-bernardino-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S1ZXYM6QXPT72BRW9W","tsKey":"us-california-san-diego-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S1061RNRAT6S4RJN1S","tsKey":"us-california-san-francisco-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S2K53D4DC13M78AC3G","tsKey":"us-california-san-joaquin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S344VZ0TN0S3ZZJ690","tsKey":"us-california-san-luis-obispo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S18EKZY5X34G3PESCJ","tsKey":"us-california-san-mateo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S1HEEFPD9QYFYFY4RM","tsKey":"us-california-santa-barbara-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S39QVV0JNJPRFJ2JDN","tsKey":"us-california-santa-clara-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S1B9WCBZXGQDMXQ06H","tsKey":"us-california-santa-cruz-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S0986PGZQTC3P0C2JR","tsKey":"us-california-shasta-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S2X9ZDDTP4Z58RKP44","tsKey":"us-california-sierra-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S39FPMRSGQKPFEV3HJ","tsKey":"us-california-siskiyou-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S1M29WW2M3VCQ50X3B","tsKey":"us-california-solano-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S3BR9ACMV83E31ABJK","tsKey":"us-california-sonoma-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S0VXQRAH0TJ2J285KE","tsKey":"us-california-stanislaus-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S13CSJ07S446G4P43H","tsKey":"us-california-sutter-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S1WH5MHREF3QQ5W8E6","tsKey":"us-california-tehama-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S3WJ59X7XTNWRZDR96","tsKey":"us-california-trinity-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S2PDH6KNXE2P2ZHBSQ","tsKey":"us-california-tulare-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S1KF0C7KMTQY3G9QJY","tsKey":"us-california-tuolumne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S32NBERK4HP2TS8RA4","tsKey":"us-california-ventura-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S1TAEB9SX8DXC90R2J","tsKey":"us-california-yolo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ2S0K40WVRMZ91AEWKKY","tsKey":"us-california-yuba-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-california","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1"},{"id":"gdst_01GW2HJ3JJSK9C2HHH98442X1W","tsKey":"us-colorado-adams-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JHX7GVQWNJZF15A06K","tsKey":"us-colorado-alamosa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JMHPQ0QBREX96072SN","tsKey":"us-colorado-arapahoe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JJ1AJ7T302DZANT838","tsKey":"us-colorado-archuleta-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JJ720W2N4AQAE415WJ","tsKey":"us-colorado-baca-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JMH7N32QH68JA5J5CA","tsKey":"us-colorado-bent-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JHZ4Y3SMD24JF2HFYN","tsKey":"us-colorado-boulder-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JHK35PAMTGRAQSAWV2","tsKey":"us-colorado-broomfield-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JJFWD2V4ZA62EHD51T","tsKey":"us-colorado-chaffee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JJW4ZAGNN0KECXBXJG","tsKey":"us-colorado-cheyenne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JM1KNEKWJRXKMBQYSQ","tsKey":"us-colorado-clear-creek-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JJ9M0M4SN02D9JYWXV","tsKey":"us-colorado-conejos-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JKKH6F2NM51BGK4Q0H","tsKey":"us-colorado-costilla-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JHE7RMF6QZC5GE5GB7","tsKey":"us-colorado-crowley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JM8QP05ZPWQ2ZZ9E60","tsKey":"us-colorado-custer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JKWA0984CKTYKCSBPM","tsKey":"us-colorado-delta-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JHPQBTQ7DTAKMYFQSG","tsKey":"us-colorado-denver-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JNV08WFQNBM1K445FA","tsKey":"us-colorado-dolores-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JH5NN7C9DDRR888V5T","tsKey":"us-colorado-douglas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JKVHXVKP7TFAECNYS2","tsKey":"us-colorado-eagle-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JN2MT9TK49E74G2Y9J","tsKey":"us-colorado-elbert-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JMSPCY3NG9NDWY9JPB","tsKey":"us-colorado-el-paso-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JKN1FSEPFE4S6MXQ6E","tsKey":"us-colorado-fremont-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JNN67MR6B5NBJE2AT4","tsKey":"us-colorado-garfield-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JHY56T90S51W3TWVYV","tsKey":"us-colorado-gilpin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JMD5084JNGQVR0P0YT","tsKey":"us-colorado-grand-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JMMJZTDH6A0W92YATR","tsKey":"us-colorado-gunnison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JJ1VS9R62N3JVJS9X2","tsKey":"us-colorado-hinsdale-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JM22E0TBHED6VY9QX0","tsKey":"us-colorado-huerfano-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JJ63Z4034TN2P0QA6A","tsKey":"us-colorado-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JJTA9W5GRB1V8JXY3R","tsKey":"us-colorado-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JK8222M4V8D05NN2EE","tsKey":"us-colorado-kiowa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JK21BS35DE5BJEB9FH","tsKey":"us-colorado-kit-carson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JMBR6MFE49V5WKV97J","tsKey":"us-colorado-lake-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JNPAEETDC068KBBNN7","tsKey":"us-colorado-la-plata-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JKYAF7R1A5DGFM8R90","tsKey":"us-colorado-larimer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JN89F8ZYJ60725BVMW","tsKey":"us-colorado-las-animas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JJWKGWA8JT6VFEMHKG","tsKey":"us-colorado-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JK1G1X93QVTTK7DYY3","tsKey":"us-colorado-logan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JKTZJT4C9634BVR256","tsKey":"us-colorado-mesa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JM6KWJ5V9C3ECZ488Y","tsKey":"us-colorado-mineral-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JKZXAQKZZR58AHYQ2W","tsKey":"us-colorado-moffat-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JJKNJY5QDR53EZADV4","tsKey":"us-colorado-montezuma-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JKYX29EYQ88B7EMC26","tsKey":"us-colorado-montrose-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JKXDGC7N1R9W62VHYX","tsKey":"us-colorado-morgan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JMXE8XQH0CG521H4WK","tsKey":"us-colorado-otero-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JKRX6TGAZ9ZHA7QDVB","tsKey":"us-colorado-ouray-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JNXQ39AXV55H3C51ES","tsKey":"us-colorado-park-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JJBM6GBY4T69GA6F3F","tsKey":"us-colorado-phillips-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JKTG57YNWYDD1PMNCP","tsKey":"us-colorado-pitkin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JN40WYPZGXMKDE7XYD","tsKey":"us-colorado-prowers-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JM9BK5DK142W477QZR","tsKey":"us-colorado-pueblo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JMBT7FQ4WWTC42Z4BH","tsKey":"us-colorado-rio-blanco-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JJC6KN6KB4FCBR4CBZ","tsKey":"us-colorado-rio-grande-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JN3CPMMF8DJEADX25Q","tsKey":"us-colorado-routt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JMNXXG1QRY2ZXVVRYZ","tsKey":"us-colorado-saguache-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JJM3MYQ8FV93JWKDM3","tsKey":"us-colorado-san-juan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JN6K5KDM3SRPWHXRZN","tsKey":"us-colorado-san-miguel-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JNY9QRXMWK9K9Y7BXW","tsKey":"us-colorado-sedgwick-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JMXVEKN3SX9W3CD9NY","tsKey":"us-colorado-summit-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JMKG3BA33G8XMGM6KK","tsKey":"us-colorado-teller-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JMCFH3K6SFRDBZEQV3","tsKey":"us-colorado-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JJC2VMDAY609SZMXHF","tsKey":"us-colorado-weld-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ3JMGTJ56QJRWYVRBZ1Z","tsKey":"us-colorado-yuma-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-colorado","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46"},{"id":"gdst_01GW2HJ4N02WJ44VR83H1W7E4K","tsKey":"us-connecticut-fairfield-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-connecticut","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ48BS27DYW8W4GNH4P2W"},{"id":"gdst_01GW2HJ4N0QJFH3WHYRCTCM7VJ","tsKey":"us-connecticut-hartford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-connecticut","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ48BS27DYW8W4GNH4P2W"},{"id":"gdst_01GW2HJ4N04V9R38901XV4EP3E","tsKey":"us-connecticut-litchfield-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-connecticut","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ48BS27DYW8W4GNH4P2W"},{"id":"gdst_01GW2HJ4N0RTVKF21WQJB95QK2","tsKey":"us-connecticut-middlesex-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-connecticut","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ48BS27DYW8W4GNH4P2W"},{"id":"gdst_01GW2HJ4N04KNXJMFH9S9YWVCC","tsKey":"us-connecticut-new-haven-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-connecticut","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ48BS27DYW8W4GNH4P2W"},{"id":"gdst_01GW2HJ4N0GFSSVPEA7F8FV4K5","tsKey":"us-connecticut-new-london-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-connecticut","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ48BS27DYW8W4GNH4P2W"},{"id":"gdst_01GW2HJ4N08M9PPJ479H17QPBF","tsKey":"us-connecticut-tolland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-connecticut","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ48BS27DYW8W4GNH4P2W"},{"id":"gdst_01GW2HJ4N04HTYDGMT48EEYNYP","tsKey":"us-connecticut-windham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-connecticut","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ48BS27DYW8W4GNH4P2W"},{"id":"gdst_01GW2HJ57548FSSB9QZDTAW30Y","tsKey":"us-delaware-kent-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-delaware","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ4XTJT4GBEWDBY057B01"},{"id":"gdst_01GW2HJ575H9JNQ8YYWD29VB6D","tsKey":"us-delaware-new-castle-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-delaware","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ4XTJT4GBEWDBY057B01"},{"id":"gdst_01GW2HJ575QFVN0G5CM5RM4CWQ","tsKey":"us-delaware-sussex-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-delaware","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ4XTJT4GBEWDBY057B01"},{"id":"gdst_01GW2HJ5PRHENWX5ZZZKM0VMET","tsKey":"us-district-of-columbia-district-of-columbia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-district-of-columbia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5A278S2G84AB3N9FCW0"},{"id":"gdst_01GW2HJ6FK8C0CSZYPT3K3V7JN","tsKey":"us-florida-alachua-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FMK996ZKB5M1S0ZCN9","tsKey":"us-florida-baker-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FMMPWH62ZCYTKH7ZHS","tsKey":"us-florida-bay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FPEG059V7AFAPG9HFY","tsKey":"us-florida-bradford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FQT471QSCDM2SPTJP8","tsKey":"us-florida-brevard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FNFSYYEGHVT3AZCR2W","tsKey":"us-florida-broward-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FKG5QF9GZ7RT197ETM","tsKey":"us-florida-calhoun-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FN4WSKXBMVW43PD0YE","tsKey":"us-florida-charlotte-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FN39FEQH2S7PYRKG39","tsKey":"us-florida-citrus-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FPTRCHPY5RSYD5BBY1","tsKey":"us-florida-clay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FQWEG7SPJYKST53NZE","tsKey":"us-florida-collier-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FKHEZN54AB7MDR26J7","tsKey":"us-florida-columbia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FPBRBCY54FAXMK5TZ7","tsKey":"us-florida-desoto-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FN3BFP41J52HCBC22P","tsKey":"us-florida-dixie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FN87HSZ86WC0BK5CVE","tsKey":"us-florida-duval-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FQRGYQMZZYW520QTYA","tsKey":"us-florida-escambia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FPFFWW4GF0SA3MWM68","tsKey":"us-florida-flagler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FP1GC5D1M73Y3QERTG","tsKey":"us-florida-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FK4N8T9BN8GZFZ8WRS","tsKey":"us-florida-gadsden-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FNY6NK5034MGX64FWQ","tsKey":"us-florida-gilchrist-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FNW1MH5B9DSM45HR7G","tsKey":"us-florida-glades-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FNKGXTWWTJPC25M15K","tsKey":"us-florida-gulf-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FPY20GPFKB6QZ1GGTJ","tsKey":"us-florida-hamilton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FNGETPGAJ0VYHF5V85","tsKey":"us-florida-hardee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FNT89EDZV9NRY97GGY","tsKey":"us-florida-hendry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FNH6Q033RNVYTF3K7W","tsKey":"us-florida-hernando-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FKB52BBM9P744DP3GR","tsKey":"us-florida-highlands-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FQH5ZBCVWKHJ18SJJJ","tsKey":"us-florida-hillsborough-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FKZX1WGB9MA99J4V11","tsKey":"us-florida-holmes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FNR7DDW3AVXF682SQ9","tsKey":"us-florida-indian-river-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FNNJYV30Z0XT9PTGP7","tsKey":"us-florida-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FQEERHMN8TT7PJ8J6P","tsKey":"us-florida-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FPT0STMV78SRNFMMFA","tsKey":"us-florida-lafayette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FN5M6HXZE8SP6FGSFK","tsKey":"us-florida-lake-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FNM02KKB9GZGA532Y0","tsKey":"us-florida-lee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FKR8YMSCTJX4HT31F1","tsKey":"us-florida-leon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FQB30ANNQWV2W367PW","tsKey":"us-florida-levy-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FPTJTA3W4B67A8M24D","tsKey":"us-florida-liberty-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FNAVNHHMZ6ZHCK8EG7","tsKey":"us-florida-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FN67JNDPA38HME0R54","tsKey":"us-florida-manatee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FK61ATE9ZJQZB5C1PK","tsKey":"us-florida-marion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FPWNKMD2YK7675DXJ8","tsKey":"us-florida-martin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FPC6D8JRA4SWT0YS6K","tsKey":"us-florida-miami-dade-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FKPS717RC57JHS6PWB","tsKey":"us-florida-monroe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FMXHY7K8R3KNEEBQRG","tsKey":"us-florida-nassau-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FM64SNTTYFY2KYB1M0","tsKey":"us-florida-okaloosa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FPKXB628T7B49ZWV5F","tsKey":"us-florida-okeechobee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FKPRA6G9W0MVNH763Y","tsKey":"us-florida-orange-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FMXGCV26YQX9EZ20M5","tsKey":"us-florida-osceola-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FMXR6J2D91ZVXV79XM","tsKey":"us-florida-palm-beach-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FMZ0JYX9KTGBERPMDX","tsKey":"us-florida-pasco-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FP82V3862VK2F50ZV3","tsKey":"us-florida-pinellas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FPQ66X2N4B7BBHR29E","tsKey":"us-florida-polk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FMN0A4X8R3D22SQGFD","tsKey":"us-florida-putnam-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FMWNBEVR6RKBBAVV73","tsKey":"us-florida-santa-rosa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FMGHRTKCZXV0S7V2T2","tsKey":"us-florida-sarasota-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FME4KZSCVY5QHZ7QQJ","tsKey":"us-florida-seminole-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FMQBSD4Z5N8QAJEV35","tsKey":"us-florida-st-johns-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FKPVNFYCGTCBFAVX1T","tsKey":"us-florida-st-lucie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FKG3EJSWZ72BK1FZZE","tsKey":"us-florida-sumter-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FPYZFHRJ7D16GPXH1M","tsKey":"us-florida-suwannee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FPJMH1YB190VDFHCHV","tsKey":"us-florida-taylor-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FK9YNK52JGK86Y5DG6","tsKey":"us-florida-union-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FM48K8M6J39FYDHP0B","tsKey":"us-florida-volusia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FPZA6H79NE6EAG6JPB","tsKey":"us-florida-wakulla-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FMW86A4NDJ8KV3B9BG","tsKey":"us-florida-walton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ6FPPRE1R3ZT30D328NH","tsKey":"us-florida-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-florida","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY"},{"id":"gdst_01GW2HJ7C1JNFEKGZ2BK857YFV","tsKey":"us-georgia-appling-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C4MN6RR04Q5W72CXND","tsKey":"us-georgia-atkinson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C4RQCM5EAGT32HY7XM","tsKey":"us-georgia-bacon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C7S7832NNAG7C0EWK8","tsKey":"us-georgia-baker-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C46RHVARZPP5NSRW6P","tsKey":"us-georgia-baldwin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C71QW0ZSS9JSX6QTRD","tsKey":"us-georgia-banks-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C1KQT9QNV9KKWM70XC","tsKey":"us-georgia-barrow-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C432GCRB40VHVJAEQ4","tsKey":"us-georgia-bartow-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7CAVC8RG4F6ZZ0SW6NC","tsKey":"us-georgia-ben-hill-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C7B58NNJS88Q4FA67A","tsKey":"us-georgia-berrien-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C7QGJ8DVEHYHHRZ21M","tsKey":"us-georgia-bibb-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C4ATSCJP0V1RYY8G07","tsKey":"us-georgia-bleckley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C4BFNM3XBQRCWQ368C","tsKey":"us-georgia-brantley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C767JM9A9ACWY0PVB3","tsKey":"us-georgia-brooks-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C1K2X6SAGVC8HEEVV2","tsKey":"us-georgia-bryan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C4D40H5N1VG3DS37EV","tsKey":"us-georgia-bulloch-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C71D8MX6V7VD3FWX4T","tsKey":"us-georgia-burke-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C7Y3VX0VXM7C2AJV39","tsKey":"us-georgia-butts-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C43S76Y9N0SVDATH8W","tsKey":"us-georgia-calhoun-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C7TPJD91SM799B4C9H","tsKey":"us-georgia-camden-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C1D6DVSJH0JYBCNTRQ","tsKey":"us-georgia-candler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7CAAQ7ZPS0Z98A7HFNG","tsKey":"us-georgia-carroll-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C8PV12V34TCS354FWR","tsKey":"us-georgia-catoosa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C4EAXH7ZQE8CJBG9VE","tsKey":"us-georgia-charlton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C7373CX69YZ1HXE8RZ","tsKey":"us-georgia-chatham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C54NZV9S21C81D1TPY","tsKey":"us-georgia-chattahoochee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C1QQEWZD4V0YT3C3K2","tsKey":"us-georgia-chattooga-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C5N7PZ4QHMNVW1T8AQ","tsKey":"us-georgia-cherokee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C15XKJDGPRPBFMZ9JM","tsKey":"us-georgia-clarke-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C7FY3CFH74AT3Z3326","tsKey":"us-georgia-clay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C5W95W6AVV10SQ73D0","tsKey":"us-georgia-clayton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C823TJKWCH9573MCRD","tsKey":"us-georgia-clinch-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C3HHPXY0FFSYX02YVQ","tsKey":"us-georgia-cobb-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C3RNJVCQ6QN1AJE1NV","tsKey":"us-georgia-coffee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C19Y9RTXFDGBFFGDEX","tsKey":"us-georgia-colquitt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C3EKRQS0HRYT2B5TR9","tsKey":"us-georgia-columbia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C8J4CAYFEEG3Y6RF1P","tsKey":"us-georgia-cook-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C3WBTYB0VNB9EB2KB3","tsKey":"us-georgia-coweta-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C111WFWYZ80VKXT0Y9","tsKey":"us-georgia-crawford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C4A481K5VXT0GDTVA8","tsKey":"us-georgia-crisp-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C872NRKMBY70GP6G8H","tsKey":"us-georgia-dade-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C8N0FFV70V9H43Z5FZ","tsKey":"us-georgia-dawson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C4QX7FJF09MMTNBHY2","tsKey":"us-georgia-decatur-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C88WJZ1PTH6M291Y1C","tsKey":"us-georgia-dekalb-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C19NPZ8XS5N91E65GG","tsKey":"us-georgia-dodge-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C4QTYMJWZ74YZ6G854","tsKey":"us-georgia-dooly-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C4DWD5NPT5ZKEGPN42","tsKey":"us-georgia-dougherty-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C8H7W9K0HYNEN2DW9Z","tsKey":"us-georgia-douglas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C888CWH6VBXH6KY1VZ","tsKey":"us-georgia-early-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C4RFS7ENCB1FKCMTSS","tsKey":"us-georgia-echols-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C42AZGZQXFS9ZWX4FQ","tsKey":"us-georgia-effingham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C8QMY7BKYYG3KSX72Y","tsKey":"us-georgia-elbert-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C1AH6XY05XKV6FRNZ1","tsKey":"us-georgia-emanuel-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C4AVV9BWZWGRXNHVNS","tsKey":"us-georgia-evans-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C8J79VGK0RRRNZ7D98","tsKey":"us-georgia-fannin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C1QFT66E590524AHNT","tsKey":"us-georgia-fayette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C43NF2PHW66WVJ0D9A","tsKey":"us-georgia-floyd-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C88ME5DFYEHHFER6X0","tsKey":"us-georgia-forsyth-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C42RC2T2GHSBAW889F","tsKey":"us-georgia-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C84VS5ZRSR95H3H7C0","tsKey":"us-georgia-fulton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C281Y3X37S14GRJFFW","tsKey":"us-georgia-gilmer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C2F2T668C5T8Y2AR6M","tsKey":"us-georgia-glascock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C89S1TS4STWES5VJ6S","tsKey":"us-georgia-glynn-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C2JV5F9C119N5KKTR2","tsKey":"us-georgia-gordon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C26T2XF56EGHWWY6BR","tsKey":"us-georgia-grady-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C8TQF9XAAFR6M3DAKH","tsKey":"us-georgia-greene-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C9JWDYC9AH7VN9MVD5","tsKey":"us-georgia-gwinnett-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C5R66BTH2GN90E7ND3","tsKey":"us-georgia-habersham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C2EMESMPFKARYAVH61","tsKey":"us-georgia-hall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C5YTKVDVZFBTC40P09","tsKey":"us-georgia-hancock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C8XDZR6NE6TV9TSH4S","tsKey":"us-georgia-haralson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C98KSYS84FDKQ0D2PW","tsKey":"us-georgia-harris-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C5V5AHN3HXXBSEXE26","tsKey":"us-georgia-hart-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C3ZQDXQ8SGR5PGPM09","tsKey":"us-georgia-heard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C9MZS88HW7CFX037R1","tsKey":"us-georgia-henry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C89BGSVCXJA8ZKZ17Z","tsKey":"us-georgia-houston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C5723GMT99NPDZPSCX","tsKey":"us-georgia-irwin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C25K7VYK9JCYVD4TDV","tsKey":"us-georgia-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C5V604ES80R647JJNG","tsKey":"us-georgia-jasper-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C9383Y4W8VEJ56DJWQ","tsKey":"us-georgia-jeff-davis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C9G8GSWBS7CTF8Q645","tsKey":"us-georgia-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C53D6P6J13V7NQY92Z","tsKey":"us-georgia-jenkins-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C9VSJ6HV6Q0EJ6Q6YR","tsKey":"us-georgia-johnson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C24A18BJJTMD16Z3VW","tsKey":"us-georgia-jones-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C5X7VP59BSRT7MYSCS","tsKey":"us-georgia-lamar-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C5WRQA9CC0NJDPYMC2","tsKey":"us-georgia-lanier-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C29GKQHR2BSK4QDN2Q","tsKey":"us-georgia-laurens-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C9KTADME0075VRDDH4","tsKey":"us-georgia-lee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C9EY2KGGMPBCFEFH3F","tsKey":"us-georgia-liberty-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C5M9FJZ4MBC28MBMZH","tsKey":"us-georgia-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C9GECJ3YDMP98DSM2Z","tsKey":"us-georgia-long-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C6Q3WJGZ1PQGPTXCVM","tsKey":"us-georgia-lowndes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C2R5D72PCSGDCBEHK7","tsKey":"us-georgia-lumpkin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C9N0T53E77BJENQ257","tsKey":"us-georgia-macon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C6PM50GPRFK85J8V84","tsKey":"us-georgia-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C2ABN4RD7TEKRKSW6T","tsKey":"us-georgia-marion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C6Y3G89PE3FJAGDMQE","tsKey":"us-georgia-mcduffie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C6DTTCHD11YD4W4CPM","tsKey":"us-georgia-mcintosh-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C6M9NB8DWP24RVDFVB","tsKey":"us-georgia-meriwether-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C222GJTD67DS9XNT7X","tsKey":"us-georgia-miller-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C6066GPRS0PHN75XVD","tsKey":"us-georgia-mitchell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C99AGZME8CEGA09K6W","tsKey":"us-georgia-monroe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C62ZGZP22FN0Y9KJD8","tsKey":"us-georgia-montgomery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C596W12CDV64GBAWYT","tsKey":"us-georgia-morgan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C62CCQ1ENTR5BCH5JA","tsKey":"us-georgia-murray-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C5P3B9MSXSTVRR2WSN","tsKey":"us-georgia-muscogee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C3FJEF64B0NVFY03RF","tsKey":"us-georgia-newton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C9RQXX335S67K5AMJ1","tsKey":"us-georgia-oconee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C6C11PS7E33F5KEDZZ","tsKey":"us-georgia-oglethorpe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C6WX8WVR3T1XEYX73K","tsKey":"us-georgia-paulding-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C3Z031DX9KTTYBNB7W","tsKey":"us-georgia-peach-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C9BRF54993DB4W5PHQ","tsKey":"us-georgia-pickens-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C6GDAPH2R7TW91MY82","tsKey":"us-georgia-pierce-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C6P04YRNFRBT75PK3W","tsKey":"us-georgia-pike-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C3FY42E4HG3ZTTBF2P","tsKey":"us-georgia-polk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C6PQQPS56DGG50N7BE","tsKey":"us-georgia-pulaski-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C9WV7EGGH9S6J4DC1Y","tsKey":"us-georgia-putnam-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C5FJ6EZPPN938V0RH6","tsKey":"us-georgia-quitman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C65FA6WC9WEQ9JSMRN","tsKey":"us-georgia-rabun-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C3HVNA81168D7K4T45","tsKey":"us-georgia-randolph-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7CAHBD8D0M325PJZAZZ","tsKey":"us-georgia-richmond-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C67P7FFY63J0VM2XCQ","tsKey":"us-georgia-rockdale-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C9CY5SH19SK3M9JDCJ","tsKey":"us-georgia-schley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7CATATTRDBY1QZ09DXE","tsKey":"us-georgia-screven-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C30ZJ8GKQPH28C982T","tsKey":"us-georgia-seminole-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C6X2NAKQ23XSQTBB6K","tsKey":"us-georgia-spalding-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C6XW39R5ESB88ZV7B8","tsKey":"us-georgia-stephens-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C95TRMVVCC017V2ZM8","tsKey":"us-georgia-stewart-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7CA5K6YJ38ZB6CDH1QA","tsKey":"us-georgia-sumter-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7CA8GJ8YHPMQ8PN7999","tsKey":"us-georgia-talbot-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C328ZF6WNWT3D77JJS","tsKey":"us-georgia-taliaferro-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C7K676WBCEDSDKQ6XP","tsKey":"us-georgia-tattnall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C7P7FH0BNK6AFJ7MRZ","tsKey":"us-georgia-taylor-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C9B8QZ0S2JG3GC7J85","tsKey":"us-georgia-telfair-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7CAA0HJ3HN7FHXYVY04","tsKey":"us-georgia-terrell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C74QEA7HES8WTASCPP","tsKey":"us-georgia-thomas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C35Y7QPN3YC3NZ0G2B","tsKey":"us-georgia-tift-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C7HJ6NEXMYM6ZM1D1T","tsKey":"us-georgia-toombs-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C7GJJY6Q1NMPYAHP6Z","tsKey":"us-georgia-towns-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C9D2105X3XVAFNB7BB","tsKey":"us-georgia-treutlen-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C3FNJ78YWXA9SD2RG3","tsKey":"us-georgia-troup-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C9GKH4R2T75J52PF06","tsKey":"us-georgia-turner-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C7ET0EK062NQX016ZR","tsKey":"us-georgia-twiggs-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7CAKCWKN03X7QDJQMP1","tsKey":"us-georgia-union-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C3JKEC7Q6KSYF712Z6","tsKey":"us-georgia-upson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C7KC3HP6GFAVZ253R8","tsKey":"us-georgia-walker-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C900ZZF0HVQC5ZZ5R1","tsKey":"us-georgia-walton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7CA5AN2QP59EQ5T49X6","tsKey":"us-georgia-ware-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C7YKMSYVZ4QRQ1CV28","tsKey":"us-georgia-warren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C31X0220XGWVNZFVYW","tsKey":"us-georgia-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7CAX2HD5J6Y1HW1PXZK","tsKey":"us-georgia-wayne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C84YYYHQJQNR76Y7NZ","tsKey":"us-georgia-webster-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C2PD5ZA64RDTSKGGCJ","tsKey":"us-georgia-wheeler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C8KZN1CDJ6JD3JANYN","tsKey":"us-georgia-white-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C2XTH83K0JEN42NMAM","tsKey":"us-georgia-whitfield-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C8Z3V0QYXFNS53NEMG","tsKey":"us-georgia-wilcox-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C5RVKCWBNF4SKKYGAT","tsKey":"us-georgia-wilkes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C2QKS3KWHV9TS7T9BX","tsKey":"us-georgia-wilkinson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ7C5WYZ7WWHNKETGY123","tsKey":"us-georgia-worth-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-georgia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0"},{"id":"gdst_01GW2HJ8810RHV00SX2A5HTSQH","tsKey":"us-hawaii-hawaii-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-hawaii","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ7VX37RF69KKXAYE05QN"},{"id":"gdst_01GW2HJ8825R70DKR2NH8X2D3P","tsKey":"us-hawaii-honolulu-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-hawaii","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ7VX37RF69KKXAYE05QN"},{"id":"gdst_01GW2HJ882FEZVQYN624P89A5A","tsKey":"us-hawaii-kalawao-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-hawaii","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ7VX37RF69KKXAYE05QN"},{"id":"gdst_01GW2HJ8813ZM9RKQRZXQN1SNR","tsKey":"us-hawaii-kauai-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-hawaii","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ7VX37RF69KKXAYE05QN"},{"id":"gdst_01GW2HJ8813GCD190445K61K12","tsKey":"us-hawaii-maui-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-hawaii","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ7VX37RF69KKXAYE05QN"},{"id":"gdst_01GW2HJ9173F8WJ8RMWMZA17NT","tsKey":"us-idaho-ada-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ917DQ9840FXD2HB2B6X","tsKey":"us-idaho-adams-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ918CJM9M1BBRE02CNVR","tsKey":"us-idaho-bannock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ919VR0FSGS8H7A6F0HT","tsKey":"us-idaho-bear-lake-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ917X5KVY8E0DD0G54RS","tsKey":"us-idaho-benewah-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ9190XMY5DAKCZ8XCDCG","tsKey":"us-idaho-bingham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ9195J5PPRA79RV79GTA","tsKey":"us-idaho-blaine-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ9160PMPKE3JQTCBA2KH","tsKey":"us-idaho-boise-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ917DAQP5MD4VYJA7X5B","tsKey":"us-idaho-bonner-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ9179DQT77EZ4AC47FJV","tsKey":"us-idaho-bonneville-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ916R94RD16C3DK7GPZ2","tsKey":"us-idaho-boundary-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ917Q6X5SPJG3JZX71TA","tsKey":"us-idaho-butte-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ918QXQ59QHRN251B2VJ","tsKey":"us-idaho-camas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ918W6RJXTSYDYDZXV3N","tsKey":"us-idaho-canyon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ9182DZDDKWTJWXXRWT0","tsKey":"us-idaho-caribou-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ919GKYR5WTMX8E9X4NX","tsKey":"us-idaho-cassia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ918F5R5Q04NZFP4W0J9","tsKey":"us-idaho-clark-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ9191Q8KVJZQ9B8051ZD","tsKey":"us-idaho-clearwater-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ9197DYZJZD7MRKZ1C85","tsKey":"us-idaho-custer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ918RP0EWAQNNNDAFPE7","tsKey":"us-idaho-elmore-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ918SV1GAB0R7JKWSKFB","tsKey":"us-idaho-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ9188TDRJXD04MGBCNX4","tsKey":"us-idaho-fremont-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ916TRFFRKN47WQH3XR9","tsKey":"us-idaho-gem-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ918X4RT1V77FPC8YR7B","tsKey":"us-idaho-gooding-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ919WFJ5NVVFE7N17AEY","tsKey":"us-idaho-idaho-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ9173S7D19YWK05CEH3B","tsKey":"us-idaho-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ918P1HM4ERX0JZ6ES3K","tsKey":"us-idaho-jerome-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ918RVMNA1BTWPR1RH5V","tsKey":"us-idaho-kootenai-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ9176671TE0M3YP4CPZW","tsKey":"us-idaho-latah-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ91911VMB7MNPYH8B20Z","tsKey":"us-idaho-lemhi-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ918PRNDZ86XXY6WV2QC","tsKey":"us-idaho-lewis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ9183P5DB35CS0WT67CB","tsKey":"us-idaho-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ9187HG8V4KPM4FS6N5E","tsKey":"us-idaho-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ917D9PHXKR22RPB63WJ","tsKey":"us-idaho-minidoka-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ9184S1ANX1K8WETD81W","tsKey":"us-idaho-nez-perce-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ917SYQ8D3VM9KZE671K","tsKey":"us-idaho-oneida-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ918GNT0K42MSMHWM9DN","tsKey":"us-idaho-owyhee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ918F64EHFZ9AVVYT3WY","tsKey":"us-idaho-payette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ9173DDZ46PEJ6K7MKKF","tsKey":"us-idaho-power-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ917FGFEAA37D51BNB3F","tsKey":"us-idaho-shoshone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ917JQVW1J116X00091Y","tsKey":"us-idaho-teton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ917284XSVNVEY289RV0","tsKey":"us-idaho-twin-falls-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ918CF1B166PFZ7V489G","tsKey":"us-idaho-valley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJ919BJC79Q954GQ06M39","tsKey":"us-idaho-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-idaho","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4"},{"id":"gdst_01GW2HJA0B2TVKAHV0KJPFX0XB","tsKey":"us-illinois-adams-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA08RE10W7EK9HDDZES0","tsKey":"us-illinois-alexander-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA06J8ZMQEYEHBQV4ZS4","tsKey":"us-illinois-bond-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA08P8D5NA1F4P7WBE3M","tsKey":"us-illinois-boone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0679QE8ZNWRRKARQYR","tsKey":"us-illinois-brown-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA08ZVMBF8MDMSGGC88N","tsKey":"us-illinois-bureau-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0CHZNVSRCE1G6C0097","tsKey":"us-illinois-calhoun-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA08W6KVTCDEYXF0XKVT","tsKey":"us-illinois-carroll-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0B7RR49AA5GK60ENMK","tsKey":"us-illinois-cass-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA063XWDASV69B4JB9NY","tsKey":"us-illinois-champaign-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0DFDVAH5V6CSV87BXD","tsKey":"us-illinois-christian-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA08H22R3Y44GPCXET89","tsKey":"us-illinois-clark-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0BNPA177E7HM509SSB","tsKey":"us-illinois-clay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0DWWNNC77VXZKV1MZR","tsKey":"us-illinois-clinton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA06BQ66FH2Y8SX7GXE1","tsKey":"us-illinois-coles-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0DT7VED6AYYK5131BT","tsKey":"us-illinois-cook-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA08QBH1954847J38JT4","tsKey":"us-illinois-crawford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA06NWJ6NSK8MTTFB5DK","tsKey":"us-illinois-cumberland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA08RN1RSSYDW5869PE4","tsKey":"us-illinois-dekalb-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0BE7FF4F7YKAR9VKSG","tsKey":"us-illinois-dewitt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA080YKJK1CBG5X3M6X1","tsKey":"us-illinois-douglas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA08C5FJGYDWNHD1B9GE","tsKey":"us-illinois-dupage-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0BZQK1QRN7XV70T6KZ","tsKey":"us-illinois-edgar-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA080SAZ5QHTRQSPVA0E","tsKey":"us-illinois-edwards-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA069EB46K8GG1ERCQHP","tsKey":"us-illinois-effingham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA08X3Q1YZA1K5QDH907","tsKey":"us-illinois-fayette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA08RK3G14XDEZMYHJ1J","tsKey":"us-illinois-ford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA06M5N6QNTP00W8N7RP","tsKey":"us-illinois-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA093BG5C0ZBFPFKH6RC","tsKey":"us-illinois-fulton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0CA3DGG3NMADXQEE17","tsKey":"us-illinois-gallatin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0B184K944W1D0CNYDF","tsKey":"us-illinois-greene-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA09ZDHNH2PPM88BGXC3","tsKey":"us-illinois-grundy-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA06X1VS0G1XVF6HTQ5V","tsKey":"us-illinois-hamilton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0C8FVMV8SCQ54QZPR4","tsKey":"us-illinois-hancock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0BY6CBTNP5Z8QC0QT2","tsKey":"us-illinois-hardin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0CGE0H6TQTP02NQ2M0","tsKey":"us-illinois-henderson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA06J6FTMZ78QA9Q102Z","tsKey":"us-illinois-henry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0CGVY424N160YDKBXE","tsKey":"us-illinois-iroquois-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA06B3JZ70TTHVS3DSX1","tsKey":"us-illinois-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA073RRWR32GEYT0A50V","tsKey":"us-illinois-jasper-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA09189VSYANM68ZNB45","tsKey":"us-illinois-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0CDTCHPWFQCCZQ79D3","tsKey":"us-illinois-jersey-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0CBQ99XMGYTJJFXRP9","tsKey":"us-illinois-jo-daviess-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0C38BFMB7QY8412J3M","tsKey":"us-illinois-johnson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA07R4CJF5ST8JT6AG7T","tsKey":"us-illinois-kane-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA09NASYHQBV99MRP80C","tsKey":"us-illinois-kankakee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0942EZYHMMYC4X2865","tsKey":"us-illinois-kendall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0C1QSZ1V7J4T4AJS8C","tsKey":"us-illinois-knox-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0CVJXJRSF9MK11DD7N","tsKey":"us-illinois-lake-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA09JWQQTV98CPHWYQGQ","tsKey":"us-illinois-lasalle-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0921TEG77198TSCPQY","tsKey":"us-illinois-lawrence-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA070NA14HDTEFMYHYEJ","tsKey":"us-illinois-lee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA09PY05MEG97NFJP1SN","tsKey":"us-illinois-livingston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA07SY3CGTV1RX1FAS6A","tsKey":"us-illinois-logan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0C3XGT03ZF2P152BJV","tsKey":"us-illinois-macon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA090ST5HNYGQ336BA26","tsKey":"us-illinois-macoupin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0C8G6SP2VC60REJVPK","tsKey":"us-illinois-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA07T0RA02J8MPCXJ43N","tsKey":"us-illinois-marion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0CS3Q8QHE6D6PHGNF9","tsKey":"us-illinois-marshall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA09ZK2C9F9ZD3TXSRHM","tsKey":"us-illinois-mason-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA09S8NJ2JZESRW8V9EY","tsKey":"us-illinois-massac-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA09AYBDHX3QA8YXX7ZZ","tsKey":"us-illinois-mcdonough-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA093HFQEW8BGY4PTAZQ","tsKey":"us-illinois-mchenry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0C4XGYCWPFCMTY20V7","tsKey":"us-illinois-mclean-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA078C0DF3S4QP67RWYZ","tsKey":"us-illinois-menard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA093V6XZT29Q7BWF6MG","tsKey":"us-illinois-mercer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA09MR04GA9GJWMQ5YR7","tsKey":"us-illinois-monroe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0C2RBCW61D0BQJEY5C","tsKey":"us-illinois-montgomery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA094VW6AHTFSBM42FWS","tsKey":"us-illinois-morgan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA07CZZ7P1EDSCK0QADC","tsKey":"us-illinois-moultrie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA098A150DMVGRE7CJG1","tsKey":"us-illinois-ogle-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0A5YY4TCMK7NT5YAZX","tsKey":"us-illinois-peoria-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA07E8B1X5JAGJ3F0EWV","tsKey":"us-illinois-perry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0AF792SQJSGRD37K2E","tsKey":"us-illinois-piatt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0D45R08WZQ5WWBBG9N","tsKey":"us-illinois-pike-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0CE1J7MCBQ834X8M7V","tsKey":"us-illinois-pope-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0ADQB0204HZD0BQNQQ","tsKey":"us-illinois-pulaski-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA07NQ46ZJXMRY68YAQM","tsKey":"us-illinois-putnam-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0D5KGJJTS03DX12B4W","tsKey":"us-illinois-randolph-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0AAW281CNA8WBMV6Q7","tsKey":"us-illinois-richland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0DX5GVCQFQQ7ZXHFQT","tsKey":"us-illinois-rock-island-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0ABGDNQ10B42ZCZTC2","tsKey":"us-illinois-saline-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0A22S2NBFN5VMWSW4P","tsKey":"us-illinois-sangamon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA076YSCDSN55KD1VXF8","tsKey":"us-illinois-schuyler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0DA27SNZ2X7FRGTVD5","tsKey":"us-illinois-scott-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0DT5GMK0RXDKQGSBDX","tsKey":"us-illinois-shelby-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA07X4H6SDBGQ5M112XJ","tsKey":"us-illinois-stark-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0CEXFC72X19WSEKS6Y","tsKey":"us-illinois-st-clair-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0AXEHZ9Q7ZQ6SAK7KY","tsKey":"us-illinois-stephenson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA071BTPKM6SCAZ7KGCX","tsKey":"us-illinois-tazewell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0DBAGC9K13JH6NHRNM","tsKey":"us-illinois-union-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0BRT3X2PDWK4Z82WTP","tsKey":"us-illinois-vermilion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0DT3JYQNP2X2K6Q3M5","tsKey":"us-illinois-wabash-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0C7GRHEHHBQSYY32CJ","tsKey":"us-illinois-warren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA08859DE42AQ83XVQG0","tsKey":"us-illinois-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0BC7A0ED5A1MDDE45H","tsKey":"us-illinois-wayne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0DYGRQ0XXCBJZHAEQ6","tsKey":"us-illinois-white-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0B6SBGW5QPGJW88RCM","tsKey":"us-illinois-whiteside-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0BHBX11A19XA1HZ6HA","tsKey":"us-illinois-will-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0C8Y454T759JKBV37J","tsKey":"us-illinois-williamson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA0DRBQ65SE30GHV7D20","tsKey":"us-illinois-winnebago-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJA08PP17PAF8MMNBVWN4","tsKey":"us-illinois-woodford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-illinois","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M"},{"id":"gdst_01GW2HJB04K4S9GEXA0EWB03BF","tsKey":"us-indiana-adams-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB04PKSNAJYN3Q8Q861N","tsKey":"us-indiana-allen-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB04D2B3CZ75YEK1674D","tsKey":"us-indiana-bartholomew-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB031KZFRETBF57E1J5Z","tsKey":"us-indiana-benton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB01Q139Z2YX2Y5S2RQW","tsKey":"us-indiana-blackford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB01E44AP2Y1FN8AQA18","tsKey":"us-indiana-boone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB03HR03HHVZEFWTM09Y","tsKey":"us-indiana-brown-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB03FTFZXXHNKFTA56NE","tsKey":"us-indiana-carroll-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB04238389S3HB79VYQB","tsKey":"us-indiana-cass-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB03TQHHV3XQPDZ43KVQ","tsKey":"us-indiana-clark-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB01GJZQWWX0YR2S938B","tsKey":"us-indiana-clay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB0538W6FS02Q8T6JE2V","tsKey":"us-indiana-clinton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB03PPNN75Z2PPD4GPWN","tsKey":"us-indiana-crawford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB05EEVRTAJRGEAAJVRA","tsKey":"us-indiana-daviess-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB0690HFF8BVBWZZH6G9","tsKey":"us-indiana-dearborn-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB03A9SKH2YKTBWKW51F","tsKey":"us-indiana-decatur-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB01NCY3DB3PTWBGFQ0P","tsKey":"us-indiana-dekalb-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB04SN3ZSN2FPQ5KTB27","tsKey":"us-indiana-delaware-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB0647RXBPAAMK84YRDF","tsKey":"us-indiana-dubois-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB0605QZ4ZYKKWA0AFPX","tsKey":"us-indiana-elkhart-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB05T4BKH8PMV8G78FN0","tsKey":"us-indiana-fayette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB0564SX7ZYNSQHZ79FG","tsKey":"us-indiana-floyd-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB04W8D9M2B460FW930S","tsKey":"us-indiana-fountain-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB06C3RSM6G770VDB07R","tsKey":"us-indiana-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB04SKNAEY0EJ6TPYZZS","tsKey":"us-indiana-fulton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB00HFTX3PBYEC0XB68M","tsKey":"us-indiana-gibson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB04MVKAAPVQJNVQMHCN","tsKey":"us-indiana-grant-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB030PSM8TAJG3HFAH2X","tsKey":"us-indiana-greene-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB03KKC6NXWQ62GST21T","tsKey":"us-indiana-hamilton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB00QTDCZDBDHB8R09Z7","tsKey":"us-indiana-hancock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB05W8KG7X5S41QZKNMZ","tsKey":"us-indiana-harrison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB0480WS24EWTNDG4E39","tsKey":"us-indiana-hendricks-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB03AERAZ4N63DKV1KNR","tsKey":"us-indiana-henry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB03QDF6RJ37C3YW183V","tsKey":"us-indiana-howard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB00JFB52T33PZR1JA2N","tsKey":"us-indiana-huntington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB03FAEKXNJM9MQPQJH4","tsKey":"us-indiana-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB05YRJ821D7KT3MJTYA","tsKey":"us-indiana-jasper-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB04Z7201JGPHSF93N8T","tsKey":"us-indiana-jay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB03AEW37XEDK474NJ7A","tsKey":"us-indiana-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB00Y0KNN8K5E6P0ZFMD","tsKey":"us-indiana-jennings-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB05MBJR2M148YJDM1GT","tsKey":"us-indiana-johnson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB05KPV2MY80TQN5FKZY","tsKey":"us-indiana-knox-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB00PWRJQ4KHB7508CAW","tsKey":"us-indiana-kosciusko-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB03X6XSQGPY0D3ZCBZJ","tsKey":"us-indiana-lagrange-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB05788DRMGGFWZW06H3","tsKey":"us-indiana-lake-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB03HY3VXWAJ86JMN721","tsKey":"us-indiana-laporte-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB0472H6ZPYVX0X5R8M3","tsKey":"us-indiana-lawrence-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB01HJC40P2KVYDJBF6E","tsKey":"us-indiana-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB03P75BGA6BS2C5S32B","tsKey":"us-indiana-marion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB04F6KRYWMXHWCWK88X","tsKey":"us-indiana-marshall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB03T8C844NW6P0RBX2E","tsKey":"us-indiana-martin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB03863T4AFHY5T5SZVP","tsKey":"us-indiana-miami-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB01CBF3G85T4Q9N84PK","tsKey":"us-indiana-monroe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB05CF1ETYDRBBGQ5N6P","tsKey":"us-indiana-montgomery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB03TK7FBGNVMAYHRJC3","tsKey":"us-indiana-morgan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB05QS2BCPNNAKX3CZ98","tsKey":"us-indiana-newton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB048922S7JZ25Q41RM7","tsKey":"us-indiana-noble-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB016HRWJQJ87DBMJP8F","tsKey":"us-indiana-ohio-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB02DZDM2Z1WAH3XQ8AY","tsKey":"us-indiana-orange-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB04528XSZXPA5P6Z135","tsKey":"us-indiana-owen-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB02H0QS2ESXTSXR46C0","tsKey":"us-indiana-parke-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB056NRC5V34V7VKHN81","tsKey":"us-indiana-perry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB01DQXZ6EX03NQ0479M","tsKey":"us-indiana-pike-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB02Z2TJNFKH4Z0FA2AA","tsKey":"us-indiana-porter-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB05M3QPXNF9SNFT37BT","tsKey":"us-indiana-posey-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB014N5ZSS6GJW7TF0ER","tsKey":"us-indiana-pulaski-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB04PB388ZRQ2CVK05M1","tsKey":"us-indiana-putnam-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB02XN8Y6DEW4QCZ16KX","tsKey":"us-indiana-randolph-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB02V7QHBCE7JCWNSVM6","tsKey":"us-indiana-ripley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB01TWBR580KGW2BC8YZ","tsKey":"us-indiana-rush-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB05BM2QPK52VJ48SF2K","tsKey":"us-indiana-scott-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB04P263ZB2Q8VQJXQRQ","tsKey":"us-indiana-shelby-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB05MXKKWECMMKATQANM","tsKey":"us-indiana-spencer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB02WTWKXD416T5B6HDJ","tsKey":"us-indiana-starke-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB023XDDKZDJJBG10938","tsKey":"us-indiana-steuben-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB02WR7VNXEVY2RCCH07","tsKey":"us-indiana-st-joseph-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB01KRNAVW6PHFFDVRQ1","tsKey":"us-indiana-sullivan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB065GRHN0KQQCRWFGKR","tsKey":"us-indiana-switzerland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB04689WDG19JE7GZ9V8","tsKey":"us-indiana-tippecanoe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB02ZPS4J2PS72ZKJA0A","tsKey":"us-indiana-tipton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB02RBG4TW8GPS7HBVXS","tsKey":"us-indiana-union-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB06E546JPR4HF1TAZMJ","tsKey":"us-indiana-vanderburgh-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB04NX56K5B0TVSBVFWF","tsKey":"us-indiana-vermillion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB020N0XG1NCDX51V0KZ","tsKey":"us-indiana-vigo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB02P1KE2TMXFQ64HJM6","tsKey":"us-indiana-wabash-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB05YV3BJNYNG8RVPQ3Q","tsKey":"us-indiana-warren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB01J6NY81AN30H0CPWC","tsKey":"us-indiana-warrick-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB02NESM87X4SGPZDTN8","tsKey":"us-indiana-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB05SEHEM0DJ5B4FB79R","tsKey":"us-indiana-wayne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB01MW95VFFF5W6G4B9G","tsKey":"us-indiana-wells-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB02QK81ST1HEN65G4YB","tsKey":"us-indiana-white-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJB0109XM51PJRQBMQX5A","tsKey":"us-indiana-whitley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-indiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF"},{"id":"gdst_01GW2HJCXW1BXXBPE94T3SEXHG","tsKey":"us-iowa-adair-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCY0KVE2AAD4N92TCRWJ","tsKey":"us-iowa-adams-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCY0FC4B3RZH2V7V6ZTV","tsKey":"us-iowa-allamakee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXYQ16YYE2SNFP44RFQ","tsKey":"us-iowa-appanoose-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXV6AG6WTDBM6YBH6SB","tsKey":"us-iowa-audubon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXYN24VCQTPFQZFFWTC","tsKey":"us-iowa-benton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCY0E1486QWR4FPGVBCA","tsKey":"us-iowa-black-hawk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXYB9J3C1KV2V2EP4ND","tsKey":"us-iowa-boone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXVEWKFYKKAH4QENBS6","tsKey":"us-iowa-bremer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXZZ11PAEQJZG96J2C4","tsKey":"us-iowa-buchanan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXVAWC4261TPQVV4QJR","tsKey":"us-iowa-buena-vista-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXZFYDAJKGH7T1NAY2C","tsKey":"us-iowa-butler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCY0XNB89YGR91RN41AD","tsKey":"us-iowa-calhoun-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXZSKR9VSFZT28H5KCG","tsKey":"us-iowa-carroll-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCY1R0THXTRM52Q57KNR","tsKey":"us-iowa-cass-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXVHZQR49PB8QBJXXW7","tsKey":"us-iowa-cedar-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXZ10X9BXG2QCEG4Y6G","tsKey":"us-iowa-cerro-gordo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCY00QNCK3BJSDDHFD2T","tsKey":"us-iowa-cherokee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCY12SZGTY0WTE6ZJWF9","tsKey":"us-iowa-chickasaw-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXVN5A80DZA42WJQC8R","tsKey":"us-iowa-clarke-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXZRRS117HMJ8VT3KQQ","tsKey":"us-iowa-clay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXZJ135DBAZ779E1T72","tsKey":"us-iowa-clayton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXVW14B3E2XQZA040NQ","tsKey":"us-iowa-clinton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXVZEW1VFT6G0XVMDJW","tsKey":"us-iowa-crawford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXZV00YFFWPS8TE3Y8M","tsKey":"us-iowa-dallas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCY0G3W7D8CTH8A7FP4P","tsKey":"us-iowa-davis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXW9MXZH5A084DED76T","tsKey":"us-iowa-decatur-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXVGBMKXTAKV160SD40","tsKey":"us-iowa-delaware-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXZWVHDM1Q5EHMKABMC","tsKey":"us-iowa-des-moines-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXYJK3X4X4J9PW7XC8Z","tsKey":"us-iowa-dickinson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXXFM5J8J96ZYCT3212","tsKey":"us-iowa-dubuque-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXWRSZ70REH43202ZP4","tsKey":"us-iowa-emmet-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCY0NY6CZS5MV2K29MZX","tsKey":"us-iowa-fayette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXW4NF3K71K4R3KESB2","tsKey":"us-iowa-floyd-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXXBDJ6H6SD67A4GFFN","tsKey":"us-iowa-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCY03BBM4NS3V2C53DC2","tsKey":"us-iowa-fremont-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXZY7Z2QCAX2F1F7AKX","tsKey":"us-iowa-greene-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXXS9ZT0WX3HKHDCNPW","tsKey":"us-iowa-grundy-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXXPCHRTRH9M2G98WEM","tsKey":"us-iowa-guthrie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXWCA9SS48GSSHTCEA1","tsKey":"us-iowa-hamilton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXZZJVHFQCP0623GPN1","tsKey":"us-iowa-hancock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCY012JW692BR1WS2T10","tsKey":"us-iowa-hardin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCY0PCXJ4D2GYDN0SFQN","tsKey":"us-iowa-harrison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXWHH4BRMBZKR525SM1","tsKey":"us-iowa-henry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXXMCT4WD7GYFWP9ZJZ","tsKey":"us-iowa-howard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXZQ62P42TKCWQMEYB7","tsKey":"us-iowa-humboldt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXXTAVXZWQ9211J1BZP","tsKey":"us-iowa-ida-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXW3TFN1XJHG7257S2Q","tsKey":"us-iowa-iowa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCY06GWPDDCFZGVC5JHS","tsKey":"us-iowa-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXZ614NA1WBTD8PKQ8K","tsKey":"us-iowa-jasper-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXXRABY8C7G64MK57DK","tsKey":"us-iowa-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXX44JZ616JFTQYAAZG","tsKey":"us-iowa-johnson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXW7JJZ7CFW0FTX39KG","tsKey":"us-iowa-jones-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXX976S7VZJ5JNSX3XY","tsKey":"us-iowa-keokuk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCY0TXKEWE3QNXVYH6PK","tsKey":"us-iowa-kossuth-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXXB25KMEMKS82BKDPX","tsKey":"us-iowa-lee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXWW2VSEMQ5GXKK47EK","tsKey":"us-iowa-linn-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCY0B71D1QMSS0S4XQ76","tsKey":"us-iowa-louisa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCY1S5E381Y86FG55B46","tsKey":"us-iowa-lucas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCY1M7XW3TX9VCH8DD7H","tsKey":"us-iowa-lyon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXWPSQZBVB8F909VK2B","tsKey":"us-iowa-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCY1CQ1PHGN8NMPBS639","tsKey":"us-iowa-mahaska-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXW9FK5JJAN9PMQKH8N","tsKey":"us-iowa-marion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXXC71APH3KSZTRN399","tsKey":"us-iowa-marshall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXX8NEJ5HPFMH8BAZQ7","tsKey":"us-iowa-mills-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCY09B45KXC7G1RFFYCS","tsKey":"us-iowa-mitchell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCY1V3HJXG2VY335TXPC","tsKey":"us-iowa-monona-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXXJSFYCMD54WM4HMXF","tsKey":"us-iowa-monroe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXWARX4DAWJ4AVECV44","tsKey":"us-iowa-montgomery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXXEDPTMSA2D3KYXZPB","tsKey":"us-iowa-muscatine-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXW2ZGTGWPXRBTWN56K","tsKey":"us-iowa-obrien-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCY14XPKF77SW9EKCRKJ","tsKey":"us-iowa-osceola-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXXXD5VWPZGEBXTS8T7","tsKey":"us-iowa-page-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCY0ZKTHYDN8CFYYJBE6","tsKey":"us-iowa-palo-alto-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXYRSF86XXRQZHGVCW0","tsKey":"us-iowa-plymouth-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXWWVGDNCZGGR88H800","tsKey":"us-iowa-pocahontas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXX2NBRDSN14PMXHV71","tsKey":"us-iowa-polk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXX4YFMQX0P4M47FDTN","tsKey":"us-iowa-pottawattamie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCY0237RZM9ET78C36EN","tsKey":"us-iowa-poweshiek-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXXPFGTW055SJ04ASBP","tsKey":"us-iowa-ringgold-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXWR0C7B62WYSXTJS8N","tsKey":"us-iowa-sac-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXXM3KBW6J5N9J1846X","tsKey":"us-iowa-scott-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCY0BEXYC5X3QY79TJBJ","tsKey":"us-iowa-shelby-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCY198CWMZQQ25QCR7J7","tsKey":"us-iowa-sioux-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXW46444266Z1T5A1GE","tsKey":"us-iowa-story-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXYZWS8XS5Q91PJBK25","tsKey":"us-iowa-tama-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCY1F60FFG72YYZ82JZD","tsKey":"us-iowa-taylor-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXWNZ3909ETRZKTMJWQ","tsKey":"us-iowa-union-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXY5VZSQ1RH4MNPW39N","tsKey":"us-iowa-van-buren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCY0P2KPVMVAYPY8J3JY","tsKey":"us-iowa-wapello-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXWG3HPVNHAMP9F3MT3","tsKey":"us-iowa-warren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXYF6PPDRGVW4V3E4FG","tsKey":"us-iowa-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCY18DA3HAK8C7CQPAKC","tsKey":"us-iowa-wayne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCY0T911XBEHZTQQT8T7","tsKey":"us-iowa-webster-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXYSY87HDNZWK323C3C","tsKey":"us-iowa-winnebago-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCY1TMQ2YWG800WZV8HK","tsKey":"us-iowa-winneshiek-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXYS5N15Q4CZ7HQGCQA","tsKey":"us-iowa-woodbury-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCXWA91KARBS76Q4CCM0","tsKey":"us-iowa-worth-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJCY0HJN2TN6Z8WK14342","tsKey":"us-iowa-wright-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-iowa","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ"},{"id":"gdst_01GW2HJE7BZV3D802KM5WZ2JD2","tsKey":"us-kansas-allen-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE78BXFFZ3T64761PH4H","tsKey":"us-kansas-anderson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7770DSR76E91M8MGJY","tsKey":"us-kansas-atchison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7BA5E5GP8S6ZQ0QPRB","tsKey":"us-kansas-barber-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE78C89T9BDRHXW3P3F9","tsKey":"us-kansas-barton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7BPKHASKAVE5G0N2HT","tsKey":"us-kansas-bourbon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE79GAFYT77DANSFQ6PD","tsKey":"us-kansas-brown-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE77K45ZM342EB4P80P1","tsKey":"us-kansas-butler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7894ED7VD9CNVH66ZC","tsKey":"us-kansas-chase-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE78DY8YKMWQK3A1RBV8","tsKey":"us-kansas-chautauqua-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7BEBZ02A0KK9VE0D44","tsKey":"us-kansas-cherokee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE79YYA9DWPJTN7THEPQ","tsKey":"us-kansas-cheyenne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE79NHHDJD5G1EJD5YBH","tsKey":"us-kansas-clark-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE75XYAF5DY6HHTX6742","tsKey":"us-kansas-clay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE75E1SJ196X5BSGJ5DH","tsKey":"us-kansas-cloud-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7AH66S874KW73K7N9X","tsKey":"us-kansas-coffey-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7A7K4F1V9A4RJ8XM33","tsKey":"us-kansas-comanche-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE79KCRJCKASQCDWMV5K","tsKey":"us-kansas-cowley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7BSBSK9HTMFBRH4252","tsKey":"us-kansas-crawford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7582991TD8XSKCXVJ4","tsKey":"us-kansas-decatur-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE797CEX32YC00PAV8ST","tsKey":"us-kansas-dickinson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7C7ASZAJTQMX8177NK","tsKey":"us-kansas-doniphan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7AF64MSWATDQVTF42J","tsKey":"us-kansas-douglas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE79ER7B63VVNS69BXMJ","tsKey":"us-kansas-edwards-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE763NX91EQ6AC5KAD0E","tsKey":"us-kansas-elk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE79QBXH37R26BKZCDYA","tsKey":"us-kansas-ellis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE79P9JPEVPRYH0HHE08","tsKey":"us-kansas-ellsworth-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7AXAKCVQ2R1F0371EV","tsKey":"us-kansas-finney-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE79F70B9M33YQRQ1JK8","tsKey":"us-kansas-ford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7788T419WK4NC400BJ","tsKey":"us-kansas-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7CKSNTVXKP6GD5JTFT","tsKey":"us-kansas-geary-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE790KYFJ1CJKC3G27K6","tsKey":"us-kansas-gove-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE76M57TPVTAZ8QJW9WP","tsKey":"us-kansas-graham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7CJDYSC1J79SHGTS9K","tsKey":"us-kansas-grant-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7AJFDY0B4VWFEJCQ2J","tsKey":"us-kansas-gray-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7CVEBHPH3B9M321AV0","tsKey":"us-kansas-greeley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE79HT5SH0N39NK4XJDR","tsKey":"us-kansas-greenwood-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE76WNZ95Q0DN6QWQKDR","tsKey":"us-kansas-hamilton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE796C7QNG7ATWY0ESAN","tsKey":"us-kansas-harper-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE79BB34PATM8QZG16CQ","tsKey":"us-kansas-harvey-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7AEG459TSAYT88S2EQ","tsKey":"us-kansas-haskell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7CQ5QPCVN1AAN2NFTQ","tsKey":"us-kansas-hodgeman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE76TX613BPJ1K45R79N","tsKey":"us-kansas-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE794PP5EBDDZN5SYQZY","tsKey":"us-kansas-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7CX9PZHC87ZXE8QD8Z","tsKey":"us-kansas-jewell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE77SQGC46BBSM9RY0KW","tsKey":"us-kansas-johnson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7A35NR3CE779VP8TZX","tsKey":"us-kansas-kearny-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE762KGP48PYDH1CTY1K","tsKey":"us-kansas-kingman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE77RMDZB438QWR3BHA2","tsKey":"us-kansas-kiowa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE77D2FPP6X2GG1RFN9A","tsKey":"us-kansas-labette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7AVEC87HFDCR9RQTXG","tsKey":"us-kansas-lane-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE77VMTQB3ZH9CAAVT6F","tsKey":"us-kansas-leavenworth-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE76C61DEJX698VCT73N","tsKey":"us-kansas-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7BQ0SZRFB9QP4851H6","tsKey":"us-kansas-linn-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE77JR9Y63SPX9F9XAER","tsKey":"us-kansas-logan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7AB685S6YYCNDDQ5K3","tsKey":"us-kansas-lyon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE760KQCW5SZXTZ9EPNK","tsKey":"us-kansas-marion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7BH58SGSR8F8JJ7ZAM","tsKey":"us-kansas-marshall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE77DT2TQBYG96G8ZM0R","tsKey":"us-kansas-mcpherson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7711RGCM0FH5WTTRFD","tsKey":"us-kansas-meade-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7BDHZ2TSEZ1V1NK9SX","tsKey":"us-kansas-miami-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7AY9G2FSGWQ4CT377M","tsKey":"us-kansas-mitchell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE78WWZJPEMRZ8G81DZG","tsKey":"us-kansas-montgomery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE76D80YYME39BCY1BB7","tsKey":"us-kansas-morris-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7BS6BZGHCB7682SDDZ","tsKey":"us-kansas-morton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE78ETN4X3WVY01FSJVF","tsKey":"us-kansas-nemaha-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7ASS77KR26ZM60RMF0","tsKey":"us-kansas-neosho-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE76JWWMZH5XWQEVRJ8S","tsKey":"us-kansas-ness-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7BTA161R0HC1DA0CPG","tsKey":"us-kansas-norton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7AFSSBAGYMQ9XDWZS6","tsKey":"us-kansas-osage-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE789KBM53C2TC4HNGK4","tsKey":"us-kansas-osborne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE78EKCGKY4KQ88TSNB2","tsKey":"us-kansas-ottawa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE76C6VWJWJS3CQPA507","tsKey":"us-kansas-pawnee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7BERRREC4EQQ9ZJZZD","tsKey":"us-kansas-phillips-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7BYAWFKG7XANKPHNRF","tsKey":"us-kansas-pottawatomie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7AAXTG5JAQ9JZ7MG5W","tsKey":"us-kansas-pratt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7BX2D6Z7G6D2DZRDC7","tsKey":"us-kansas-rawlins-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE769VWFAG0NHNSRPFCD","tsKey":"us-kansas-reno-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE78T5B5551TK34B711E","tsKey":"us-kansas-republic-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7AT05HJW0ZJ26G3CP2","tsKey":"us-kansas-rice-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7B6EX0V9BQN8462GHF","tsKey":"us-kansas-riley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE76NHZ63HBKTNR2J4KE","tsKey":"us-kansas-rooks-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE78D58ZCPW5TZ9BT8JM","tsKey":"us-kansas-rush-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7827C052X03SM0T4SY","tsKey":"us-kansas-russell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7ADWX2428F28ES69SX","tsKey":"us-kansas-saline-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE78X2PN5WJYVA8ZJ91Q","tsKey":"us-kansas-scott-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE76ST6VM91T0CAPMYYW","tsKey":"us-kansas-sedgwick-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7BZKP886FPJW1RP3P8","tsKey":"us-kansas-seward-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE78396T8BCFBY2YZBR8","tsKey":"us-kansas-shawnee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7A5QJ3WTW2HE68W6PX","tsKey":"us-kansas-sheridan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE78RXF0CW876PWKXJ5M","tsKey":"us-kansas-sherman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE78BBF0F8YJKXY5V0NS","tsKey":"us-kansas-smith-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE77RY9PTV8AX8Q9RKRW","tsKey":"us-kansas-stafford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE78X8NTA8ZXPS6C2D0K","tsKey":"us-kansas-stanton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE785H8RWYMY7JN8EKEC","tsKey":"us-kansas-stevens-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7ATWK4D0TQ3JYW3T2V","tsKey":"us-kansas-sumner-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7B6GYEKRFQTN06Y0YC","tsKey":"us-kansas-thomas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7773SVFEM9VCJACDSC","tsKey":"us-kansas-trego-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE79CQFZAHSZHB642DW0","tsKey":"us-kansas-wabaunsee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7B458HPYV4ZBDX0B7N","tsKey":"us-kansas-wallace-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7B7AQ36NF5T82NW7VF","tsKey":"us-kansas-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE779GJ1B0F2Z7RKAYF0","tsKey":"us-kansas-wichita-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7731G6PNT42V4WQ6SJ","tsKey":"us-kansas-wilson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE79EZVGKKZBZT55XKB7","tsKey":"us-kansas-woodson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJE7AH10XV1G0K5KRVWKY","tsKey":"us-kansas-wyandotte-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kansas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW"},{"id":"gdst_01GW2HJFK1B6GTSJ42CWKHRMBS","tsKey":"us-kentucky-adair-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJY2PR0V6J19Z9AD8BK","tsKey":"us-kentucky-allen-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK1Y4K8M1K56D8PMQ1G","tsKey":"us-kentucky-anderson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK17DCCZR6E6QQHS3N1","tsKey":"us-kentucky-ballard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJYV48QNGP6B0DH8VF6","tsKey":"us-kentucky-barren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK0W6MDW6H1Z7PFZPAK","tsKey":"us-kentucky-bath-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK08PCK0MGCFPMQJBDE","tsKey":"us-kentucky-bell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK0CNF69SCERQTARTDG","tsKey":"us-kentucky-boone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJY9T2W619341Q9WXDZ","tsKey":"us-kentucky-bourbon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK10MDPVV3TXYY2FKVH","tsKey":"us-kentucky-boyd-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK343MHJJ6VB9X77J81","tsKey":"us-kentucky-boyle-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK3693AGQKD1CJK7Q1C","tsKey":"us-kentucky-bracken-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJYX3G5MXZJRNPZG2BT","tsKey":"us-kentucky-breathitt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK0K41J36KSCME2QMVJ","tsKey":"us-kentucky-breckinridge-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK0N1D1X3MX3HE6JWX2","tsKey":"us-kentucky-bullitt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJY1E4N2DY2GXY9EFY4","tsKey":"us-kentucky-butler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK3EXHMPGE3RJ720P2Y","tsKey":"us-kentucky-caldwell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK0Q2PTNMKJ6KCXENE4","tsKey":"us-kentucky-calloway-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK1Z6TFR5GY29TVHYMC","tsKey":"us-kentucky-campbell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK0NH1GGAF809V64XY2","tsKey":"us-kentucky-carlisle-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK0K8NP9JWCHZPE80TX","tsKey":"us-kentucky-carroll-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJYQ1MKWAFFXH7X8E34","tsKey":"us-kentucky-carter-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK1HVY1R0K30N015118","tsKey":"us-kentucky-casey-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK35RG4H8721W9WVC0Y","tsKey":"us-kentucky-christian-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK1ZMEJRNBSQFFPCXV9","tsKey":"us-kentucky-clark-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK3N7TJRQ831DPSD8FF","tsKey":"us-kentucky-clay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJYM1MK8461KY87G0QM","tsKey":"us-kentucky-clinton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK3BKJD3ADX398GSW7C","tsKey":"us-kentucky-crittenden-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK1HHS311QRQV0972N4","tsKey":"us-kentucky-cumberland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK3X096KBMR5KT2Z30H","tsKey":"us-kentucky-daviess-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK1NHQY2P4SPZ13R352","tsKey":"us-kentucky-edmonson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJY21WWQR954WKGMPEB","tsKey":"us-kentucky-elliott-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK1F1ZZ74PRXC3XETGN","tsKey":"us-kentucky-estill-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK1JYPKJPRB37XTCAN3","tsKey":"us-kentucky-fayette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK1396P6FPCY22FY25H","tsKey":"us-kentucky-fleming-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK196SDNV7QPZDTHM6H","tsKey":"us-kentucky-floyd-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK3S1MJ69VNK93GR4HP","tsKey":"us-kentucky-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK37HYJ99383BR467AJ","tsKey":"us-kentucky-fulton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJY6ZSF1TX9VKHD2BRG","tsKey":"us-kentucky-gallatin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK1YN79YKYRFE7A78EY","tsKey":"us-kentucky-garrard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK1JTTP3F9Y1DCAYGKM","tsKey":"us-kentucky-grant-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK17V47AEN0QMF4EPA4","tsKey":"us-kentucky-graves-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK1EV1VCKSKGE0CAND9","tsKey":"us-kentucky-grayson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJYT44GR2SA2JPZJGQM","tsKey":"us-kentucky-green-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK3J6RFPMTBCVNQE762","tsKey":"us-kentucky-greenup-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK19FQJ9DD9FKB4Z0E4","tsKey":"us-kentucky-hancock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK2JDXW8XGC014VV34N","tsKey":"us-kentucky-hardin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK3K32PBWJT53V333PV","tsKey":"us-kentucky-harlan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK1HBY2F76S509GJGZZ","tsKey":"us-kentucky-harrison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJY3QTJZJB79FKJPTEW","tsKey":"us-kentucky-hart-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK1E1Y4052CM3F8NN5K","tsKey":"us-kentucky-henderson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJY7BNQQ1WV8VC4Q3YG","tsKey":"us-kentucky-henry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK3J97CQD44B7JY0SXS","tsKey":"us-kentucky-hickman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK1CRPZSPA80FCCDBG2","tsKey":"us-kentucky-hopkins-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK2PY4RGY2F460JZSYM","tsKey":"us-kentucky-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJZHV38NZZ0RFKN359T","tsKey":"us-kentucky-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJZ946S827BPVWMAZ32","tsKey":"us-kentucky-jessamine-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJZ8126QGGRDTPGMTAB","tsKey":"us-kentucky-johnson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK3XS79SZ9A0XC462S4","tsKey":"us-kentucky-kenton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK2W9AGJ0AD778RESD8","tsKey":"us-kentucky-knott-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJZCWQ9HKVEXYNB8FTJ","tsKey":"us-kentucky-knox-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJZPT7RNQMXM7H8HKR8","tsKey":"us-kentucky-larue-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK2DVWDG37HYNXNP1KT","tsKey":"us-kentucky-laurel-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK2PVPJSDEHHPVYXDYQ","tsKey":"us-kentucky-lawrence-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJZP10PCD10EGK9GN3Y","tsKey":"us-kentucky-lee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK2WD294P3BHHF151ZF","tsKey":"us-kentucky-leslie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK29N4JY909826X6DTY","tsKey":"us-kentucky-letcher-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJZB0R67RK9BYTMVGNQ","tsKey":"us-kentucky-lewis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJZ0RESEXZ3EY9XGE3S","tsKey":"us-kentucky-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJZSMW5Q79PWYJ6AJWE","tsKey":"us-kentucky-livingston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK2K6X9SH9FJZDKJ1NW","tsKey":"us-kentucky-logan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJZPM4M7JP9AHM309JX","tsKey":"us-kentucky-lyon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJZJ66WWQNXKDQF5JHY","tsKey":"us-kentucky-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJZKVBNMHEK885NYMWV","tsKey":"us-kentucky-magoffin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK2V3AK7BQMQ3TKKJDY","tsKey":"us-kentucky-marion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJZBQCZ7HP55R3NXNXA","tsKey":"us-kentucky-marshall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJZ5A17G84ZDX7TAXF2","tsKey":"us-kentucky-martin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK36JFHG951K6PCMXGY","tsKey":"us-kentucky-mason-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJZM75WWH5ANF33TCFZ","tsKey":"us-kentucky-mccracken-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK2GGT0C6HD8WG0XCC2","tsKey":"us-kentucky-mccreary-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK24BX4HVZDSZM2SKCT","tsKey":"us-kentucky-mclean-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK2YSDGTWAAJV2N5D5Q","tsKey":"us-kentucky-meade-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK2MHQ22ZNRAAPQWSVZ","tsKey":"us-kentucky-menifee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJZE07G44H407TVNHTH","tsKey":"us-kentucky-mercer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJZYD2HNKSPGTD03ND4","tsKey":"us-kentucky-metcalfe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJZKZPCSB443NJ39345","tsKey":"us-kentucky-monroe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJZP135A9P1S0XBA48H","tsKey":"us-kentucky-montgomery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJZJRH219VSYVE5BDRX","tsKey":"us-kentucky-morgan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK2H3SYDCHQDFQ5FAGM","tsKey":"us-kentucky-muhlenberg-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK0Q8VV8HTNJSRAZPP7","tsKey":"us-kentucky-nelson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK2BFV93VXGZP9BEQ62","tsKey":"us-kentucky-nicholas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJX2NJTWVP97319VDMR","tsKey":"us-kentucky-ohio-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK2KX7631585X4XS6H9","tsKey":"us-kentucky-oldham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJXZP035N608CJVV1T0","tsKey":"us-kentucky-owen-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJY8686NVZJD0DK207G","tsKey":"us-kentucky-owsley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK0ATAHFWA2Z65N5RGM","tsKey":"us-kentucky-pendleton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK0W6RZ3YPRCJD6SMCG","tsKey":"us-kentucky-perry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK3BJYRN5H51ZWMG0NW","tsKey":"us-kentucky-pike-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK2G45NZMEWKWQ4G5S5","tsKey":"us-kentucky-powell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJYZHNRDH44TTZVNFAA","tsKey":"us-kentucky-pulaski-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK0BDC1T41XJ06AZZ39","tsKey":"us-kentucky-robertson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK2G82AA2VK7REEJ38C","tsKey":"us-kentucky-rockcastle-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK03XK3KB7AZAH2B0EV","tsKey":"us-kentucky-rowan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK0PF24G6A66EPZP8K5","tsKey":"us-kentucky-russell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJYTRAM5JGPJBMFDT05","tsKey":"us-kentucky-scott-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK3ENNDVEDCC5PYYBW1","tsKey":"us-kentucky-shelby-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK368PD7Y3N95H5AAWA","tsKey":"us-kentucky-simpson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK2KW6068YA0Y1J6ZKF","tsKey":"us-kentucky-spencer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK00CJFPWVJDABKFD4X","tsKey":"us-kentucky-taylor-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJY5YMKA9S26J59E1QK","tsKey":"us-kentucky-todd-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK04YVVMXVS0XS1N5F6","tsKey":"us-kentucky-trigg-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK3FXX8G3KW66YCK7NJ","tsKey":"us-kentucky-trimble-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK33RW2WRJP3CFRJYGG","tsKey":"us-kentucky-union-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK2CXA3ECCSCKHHK0MP","tsKey":"us-kentucky-warren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFJYGEQ8MVV13539YFQ4","tsKey":"us-kentucky-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK03H5VXE9JHRMBK2J8","tsKey":"us-kentucky-wayne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK0M6F370XJXWM68RR8","tsKey":"us-kentucky-webster-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK2BVDNNE44JN6F6HCX","tsKey":"us-kentucky-whitley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK0M8SFAVGEGQKYYDPK","tsKey":"us-kentucky-wolfe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJFK08M7YTNB63AMK6GSV","tsKey":"us-kentucky-woodford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-kentucky","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ"},{"id":"gdst_01GW2HJGHEFCRJ8FM4FD5AXFHH","tsKey":"us-louisiana-acadia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHHJZNZ8NF0EYR0VAC7","tsKey":"us-louisiana-allen-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHF32Z46NYYG3G0SQ39","tsKey":"us-louisiana-ascension-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHG24QYDP72KZAXA2WJ","tsKey":"us-louisiana-assumption-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHH2CPC1ZYSANHSS8PH","tsKey":"us-louisiana-avoyelles-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHG7QZCYCPYZ8WZBQEM","tsKey":"us-louisiana-beauregard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHEM08NBKTFBNHNGX03","tsKey":"us-louisiana-bienville-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHGV8YPRB8YN4T2F627","tsKey":"us-louisiana-bossier-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHGAHAYZS9PQGY13VDJ","tsKey":"us-louisiana-caddo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHHHC6T62QHCA9J4RVG","tsKey":"us-louisiana-calcasieu-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHGXMVKV947YABHNJHJ","tsKey":"us-louisiana-caldwell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHGM9MTS3KETR05Y9SN","tsKey":"us-louisiana-cameron-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHGTYJ34JBW179DP1YS","tsKey":"us-louisiana-catahoula-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHHPDHSHDPKCB1EW82R","tsKey":"us-louisiana-claiborne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHHM2TPBBK6S1JJKRPA","tsKey":"us-louisiana-concordia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHGYD74339CP83XHKTG","tsKey":"us-louisiana-desoto-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHEBCSAE50ECMA02ADS","tsKey":"us-louisiana-east-baton-rouge-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHGE01YZBFFHAAQZN15","tsKey":"us-louisiana-east-carroll-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHHDHN7MEAYTYGDWPYW","tsKey":"us-louisiana-east-feliciana-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHHNV79795P2XXMZTFS","tsKey":"us-louisiana-evangeline-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHG7WMY3RYK1EKZFA26","tsKey":"us-louisiana-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHGT5N44AQ9BTM57W0G","tsKey":"us-louisiana-grant-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHHCEAXJ3K3418SFZFJ","tsKey":"us-louisiana-iberia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHGAEZ7D038KS72BF6Z","tsKey":"us-louisiana-iberville-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHGDQY8AVKQV605N2CA","tsKey":"us-louisiana-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHGMGFFTPTM4Q5JVCWQ","tsKey":"us-louisiana-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHEADWVGEJE0MZGQMXK","tsKey":"us-louisiana-jefferson-davis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHGJS9NMNPV3CXC3G5G","tsKey":"us-louisiana-lafayette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHFBTJHPHVXA8XXM7JJ","tsKey":"us-louisiana-lafourche-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHG56QD814NRPXYCKT8","tsKey":"us-louisiana-la-salle-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHFF85X0TZ3EZBZZF7C","tsKey":"us-louisiana-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHFQZJPJ53JD4M74XMA","tsKey":"us-louisiana-livingston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHH0QZFPSZ4ZNK4271Z","tsKey":"us-louisiana-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHGB596J1QKCPJBQV50","tsKey":"us-louisiana-morehouse-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHFH742RY4P1NE6K5MT","tsKey":"us-louisiana-natchitoches-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHHQSZG43Z1BXRAA5PM","tsKey":"us-louisiana-orleans-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHE54HM4SFVNH8SP2HX","tsKey":"us-louisiana-ouachita-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHFSYPBXF20NB5MQJYG","tsKey":"us-louisiana-plaquemines-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHFNH1R89V0GDDX2TQ0","tsKey":"us-louisiana-pointe-coupee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHFA5RQB8A001SCKM49","tsKey":"us-louisiana-rapides-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHFZRH6VFAJQQPNR0V5","tsKey":"us-louisiana-red-river-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHGYQEY67V23TSFDRGS","tsKey":"us-louisiana-richland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHFGWV69YQG91N694GW","tsKey":"us-louisiana-sabine-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHHAAN988PQ5AF4QZ64","tsKey":"us-louisiana-st-bernard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHFPWVRHEMQQ1RFWRQZ","tsKey":"us-louisiana-st-charles-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHFPPZ1NMA7HPDS1B3F","tsKey":"us-louisiana-st-helena-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHF04CE7BK62DGM0AAD","tsKey":"us-louisiana-st-james-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHGDVDG1K8TNQ6NG0XT","tsKey":"us-louisiana-st-john-the-baptist-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHFXS23A6FG43V2BX9K","tsKey":"us-louisiana-st-landry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHFVGCB687JG20JF55Z","tsKey":"us-louisiana-st-martin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHHPZ6JZRYH6YS14EC3","tsKey":"us-louisiana-st-mary-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHFWRC52B74N3N5CCEM","tsKey":"us-louisiana-st-tammany-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHFZ8SP1P780VTBMRDJ","tsKey":"us-louisiana-tangipahoa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHHXGN1HYFNQWMG548Q","tsKey":"us-louisiana-tensas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHHF6SNESVJ3NGADAHR","tsKey":"us-louisiana-terrebonne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHGBVF6X2CTQ775B407","tsKey":"us-louisiana-union-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHF0C9PFWQ1KYWYY6FP","tsKey":"us-louisiana-vermilion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHFKJHC46652NQ0FEAB","tsKey":"us-louisiana-vernon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHG0CDW43DG0KH1WQ20","tsKey":"us-louisiana-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHG78ZB3R9YA8M4PK0K","tsKey":"us-louisiana-webster-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHFVPG4PW5RX5FJ2M77","tsKey":"us-louisiana-west-baton-rouge-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHHXZ36H1Q8WD5R5H77","tsKey":"us-louisiana-west-carroll-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHGTV3GP1X4GC2YW6HX","tsKey":"us-louisiana-west-feliciana-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJGHF5VXHGY25DTE6D636","tsKey":"us-louisiana-winn-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-louisiana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B"},{"id":"gdst_01GW2HJHGWRS5RGQ41BPGKZFRB","tsKey":"us-maine-androscoggin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maine","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJH13NCXACKZGG242PM97"},{"id":"gdst_01GW2HJHGWNT2Q7EAHHN9MGR9R","tsKey":"us-maine-aroostook-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maine","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJH13NCXACKZGG242PM97"},{"id":"gdst_01GW2HJHGWB2R1BXMD9RJJ6Q9W","tsKey":"us-maine-cumberland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maine","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJH13NCXACKZGG242PM97"},{"id":"gdst_01GW2HJHGVFQGJH989MZ7EV34H","tsKey":"us-maine-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maine","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJH13NCXACKZGG242PM97"},{"id":"gdst_01GW2HJHGVVV8S8ZYTS04E15QH","tsKey":"us-maine-hancock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maine","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJH13NCXACKZGG242PM97"},{"id":"gdst_01GW2HJHGWP4W6TZFEEMM4X9ND","tsKey":"us-maine-kennebec-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maine","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJH13NCXACKZGG242PM97"},{"id":"gdst_01GW2HJHGWPQJRM5QGWPW07X54","tsKey":"us-maine-knox-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maine","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJH13NCXACKZGG242PM97"},{"id":"gdst_01GW2HJHGVKES3WSMKTTZF3TEZ","tsKey":"us-maine-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maine","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJH13NCXACKZGG242PM97"},{"id":"gdst_01GW2HJHGW5Z3G797Y14A75QK1","tsKey":"us-maine-oxford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maine","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJH13NCXACKZGG242PM97"},{"id":"gdst_01GW2HJHGW473VKHYP38XS1Z31","tsKey":"us-maine-penobscot-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maine","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJH13NCXACKZGG242PM97"},{"id":"gdst_01GW2HJHGWWRT6REE2XNPW1PFH","tsKey":"us-maine-piscataquis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maine","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJH13NCXACKZGG242PM97"},{"id":"gdst_01GW2HJHGWXSXZZ2KCS2SFE8KA","tsKey":"us-maine-sagadahoc-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maine","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJH13NCXACKZGG242PM97"},{"id":"gdst_01GW2HJHGWKR2E7QC3SH9Q6CKS","tsKey":"us-maine-somerset-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maine","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJH13NCXACKZGG242PM97"},{"id":"gdst_01GW2HJHGWRVYMRP6AZ5P5RNQ1","tsKey":"us-maine-waldo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maine","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJH13NCXACKZGG242PM97"},{"id":"gdst_01GW2HJHGV1FSW2XDFF3NFK30D","tsKey":"us-maine-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maine","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJH13NCXACKZGG242PM97"},{"id":"gdst_01GW2HJHGW1PRQSDXEP6X2NMBB","tsKey":"us-maine-york-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maine","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJH13NCXACKZGG242PM97"},{"id":"gdst_01GW2HJJ70C5MT3PR1V0VXEKYW","tsKey":"us-maryland-allegany-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maryland","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7"},{"id":"gdst_01GW2HJJ70HPJ8S1QW1E9ENBGB","tsKey":"us-maryland-anne-arundel-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maryland","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7"},{"id":"gdst_01GW2HJJ729PHNZG9E80TE28WV","tsKey":"us-maryland-baltimore-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maryland","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7"},{"id":"gdst_01GW2HJJ71QEM85CBNTTF8WGNG","tsKey":"us-maryland-baltimore-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maryland","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7"},{"id":"gdst_01GW2HJJ7062JPVVD870XBJMRD","tsKey":"us-maryland-calvert-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maryland","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7"},{"id":"gdst_01GW2HJJ71RVQEY7PY5JN1X4XE","tsKey":"us-maryland-caroline-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maryland","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7"},{"id":"gdst_01GW2HJJ71S0QRJNFCZ18F0RH2","tsKey":"us-maryland-carroll-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maryland","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7"},{"id":"gdst_01GW2HJJ71YC1GBSCWT95QSSHY","tsKey":"us-maryland-cecil-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maryland","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7"},{"id":"gdst_01GW2HJJ700GSB9D3ECG1HGJNB","tsKey":"us-maryland-charles-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maryland","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7"},{"id":"gdst_01GW2HJJ70E6N0NJWDHFHN1TBQ","tsKey":"us-maryland-dorchester-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maryland","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7"},{"id":"gdst_01GW2HJJ71Q23Z55E9CA04TRX8","tsKey":"us-maryland-frederick-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maryland","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7"},{"id":"gdst_01GW2HJJ71XP031ZH3XJ0EXYSC","tsKey":"us-maryland-garrett-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maryland","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7"},{"id":"gdst_01GW2HJJ7216EJQ2JE05PJEZY6","tsKey":"us-maryland-harford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maryland","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7"},{"id":"gdst_01GW2HJJ71F9KHQPTS7YMJSQYM","tsKey":"us-maryland-howard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maryland","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7"},{"id":"gdst_01GW2HJJ70SXBPAN6EGST1EG2F","tsKey":"us-maryland-kent-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maryland","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7"},{"id":"gdst_01GW2HJJ71EXA7CNZGHA7QAQSD","tsKey":"us-maryland-montgomery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maryland","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7"},{"id":"gdst_01GW2HJJ71GA3D9DQ0VAFDAPMQ","tsKey":"us-maryland-prince-georges-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maryland","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7"},{"id":"gdst_01GW2HJJ706PD2JJHRS9CZW1KN","tsKey":"us-maryland-queen-annes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maryland","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7"},{"id":"gdst_01GW2HJJ70J3XTFPAYNGN5R35T","tsKey":"us-maryland-somerset-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maryland","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7"},{"id":"gdst_01GW2HJJ70BK8MTMN2B1QE12J5","tsKey":"us-maryland-st-marys-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maryland","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7"},{"id":"gdst_01GW2HJJ71D4GGWDVG01E3814S","tsKey":"us-maryland-talbot-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maryland","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7"},{"id":"gdst_01GW2HJJ71QBE7KQVG5PNZCT4F","tsKey":"us-maryland-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maryland","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7"},{"id":"gdst_01GW2HJJ710SCBG70MCCD71068","tsKey":"us-maryland-wicomico-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maryland","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7"},{"id":"gdst_01GW2HJJ71H2WZFS5JWAYPN655","tsKey":"us-maryland-worcester-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-maryland","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7"},{"id":"gdst_01GW2HJK0F23DDDZT1XEN7QYY0","tsKey":"us-massachusetts-barnstable-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-massachusetts","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJJGA979WFBS7S7ECK0JK"},{"id":"gdst_01GW2HJK0GMZHTY5N6YDRWAJX6","tsKey":"us-massachusetts-berkshire-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-massachusetts","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJJGA979WFBS7S7ECK0JK"},{"id":"gdst_01GW2HJK0GJ4P2RHZ1FZ7D7A8M","tsKey":"us-massachusetts-bristol-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-massachusetts","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJJGA979WFBS7S7ECK0JK"},{"id":"gdst_01GW2HJK0FNR6FSH09KT1C5S5Q","tsKey":"us-massachusetts-dukes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-massachusetts","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJJGA979WFBS7S7ECK0JK"},{"id":"gdst_01GW2HJK0GHQH44HQ6NFNA4XE1","tsKey":"us-massachusetts-essex-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-massachusetts","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJJGA979WFBS7S7ECK0JK"},{"id":"gdst_01GW2HJK0F3PF8Q5APBPP2Z7Z0","tsKey":"us-massachusetts-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-massachusetts","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJJGA979WFBS7S7ECK0JK"},{"id":"gdst_01GW2HJK0F7YTPCG8YK7VWDQW2","tsKey":"us-massachusetts-hampden-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-massachusetts","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJJGA979WFBS7S7ECK0JK"},{"id":"gdst_01GW2HJK0FKBFPSHE1TV2G0FQQ","tsKey":"us-massachusetts-hampshire-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-massachusetts","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJJGA979WFBS7S7ECK0JK"},{"id":"gdst_01GW2HJK0FQAD98JBQH0XNSZ27","tsKey":"us-massachusetts-middlesex-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-massachusetts","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJJGA979WFBS7S7ECK0JK"},{"id":"gdst_01GW2HJK0G321MGS037KJ1B876","tsKey":"us-massachusetts-nantucket-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-massachusetts","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJJGA979WFBS7S7ECK0JK"},{"id":"gdst_01GW2HJK0FSQPAQV9F6VGWR6MD","tsKey":"us-massachusetts-norfolk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-massachusetts","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJJGA979WFBS7S7ECK0JK"},{"id":"gdst_01GW2HJK0FAGFX8AEDBNMAS06D","tsKey":"us-massachusetts-plymouth-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-massachusetts","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJJGA979WFBS7S7ECK0JK"},{"id":"gdst_01GW2HJK0GJPP4ZEG8G4G9VXKV","tsKey":"us-massachusetts-suffolk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-massachusetts","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJJGA979WFBS7S7ECK0JK"},{"id":"gdst_01GW2HJK0G9AK3W7P2ATBQKRYT","tsKey":"us-massachusetts-worcester-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-massachusetts","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJJGA979WFBS7S7ECK0JK"},{"id":"gdst_01GW2HJKW13CJ66V0H0ERJW4KR","tsKey":"us-michigan-alcona-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVYF7Z0A84DGNR5QSRN","tsKey":"us-michigan-alger-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVZXR46EYD5MKMDTK01","tsKey":"us-michigan-allegan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVZ6YXJT7Z1STTT9NYG","tsKey":"us-michigan-alpena-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVX3HMVG3H0EB6WF8M1","tsKey":"us-michigan-antrim-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW1JDEBE66HZ27JP06F","tsKey":"us-michigan-arenac-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW1X63C4NGHJTYQNFMB","tsKey":"us-michigan-baraga-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVX8Y90MDW9RBSMEX44","tsKey":"us-michigan-barry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVZ2H9B610XACCTPK2R","tsKey":"us-michigan-bay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVZER8HVG73404YEK5D","tsKey":"us-michigan-benzie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVZ8A5ABM8132CAR5QZ","tsKey":"us-michigan-berrien-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVXYG2SVDX6P852R88W","tsKey":"us-michigan-branch-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW0CRXX3APEC3VXYNVK","tsKey":"us-michigan-calhoun-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVZF89B6ZDWXDZA5MVK","tsKey":"us-michigan-cass-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW1P47BB8X64WKV222Q","tsKey":"us-michigan-charlevoix-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVZQNXVQ4BVJB5H8ZJM","tsKey":"us-michigan-cheboygan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVZ1PHV5W8PHFMN5XRE","tsKey":"us-michigan-chippewa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVX5XA3553MDGZVWY9G","tsKey":"us-michigan-clare-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVXMF232GTP7T3DJ0Z1","tsKey":"us-michigan-clinton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW103NKXMS1MGQAGM14","tsKey":"us-michigan-crawford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVZ4P7MG4EEGXPYYJ1V","tsKey":"us-michigan-delta-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVZ8D6WXF439SHNX89S","tsKey":"us-michigan-dickinson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVXBSKS814EDVKFQRHQ","tsKey":"us-michigan-eaton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVZZ561H6C2H7ES0NGY","tsKey":"us-michigan-emmet-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW15HMVHN9FA8M98942","tsKey":"us-michigan-genesee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVZAW6PDRFQ7YQNGE3W","tsKey":"us-michigan-gladwin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW24FW1F8PQ25WM7B1V","tsKey":"us-michigan-gogebic-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW20JW2W4M6M5V0VXE1","tsKey":"us-michigan-grand-traverse-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVX88AYC4BMASJ4MJG9","tsKey":"us-michigan-gratiot-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW1RJ93S0R24KG4XZA9","tsKey":"us-michigan-hillsdale-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVXBM7FACMPT07SKRKT","tsKey":"us-michigan-houghton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW10N99NEZSAKWJ2TG8","tsKey":"us-michigan-huron-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVZXT0CG296X7PWGE1H","tsKey":"us-michigan-ingham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW2NY7A903S4AWX8169","tsKey":"us-michigan-ionia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVZJCAKQSHY3VMVWA7D","tsKey":"us-michigan-iosco-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW06CAX40G50FWC0RSC","tsKey":"us-michigan-iron-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVX3VAC1330E97N16RZ","tsKey":"us-michigan-isabella-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVZ46XGDC2758XFSVQ5","tsKey":"us-michigan-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVXQCPRKHNPMQSHK2NZ","tsKey":"us-michigan-kalamazoo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVZSP0ZRA04EJ3AMK6Z","tsKey":"us-michigan-kalkaska-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW09N1A7ZQ1SJ3SGNA7","tsKey":"us-michigan-kent-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVX3KS6WJWFPFXQ6SKD","tsKey":"us-michigan-keweenaw-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVX1Z8MGXKG16K0AVRA","tsKey":"us-michigan-lake-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW0WQDC86B04RBXXRCF","tsKey":"us-michigan-lapeer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW14Y23F70H3VV0EF2G","tsKey":"us-michigan-leelanau-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVY6QJN6TEQHDP96Z6S","tsKey":"us-michigan-lenawee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW00XJ5CECXCSBPY1J5","tsKey":"us-michigan-livingston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW0GG3ZZ4GQH9QDJGKS","tsKey":"us-michigan-luce-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVY11VEZRMWGBF0ZH59","tsKey":"us-michigan-mackinac-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW0B0CZBFXSVWYS2CVB","tsKey":"us-michigan-macomb-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW0VV9TQG8YA5JA34D1","tsKey":"us-michigan-manistee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVYE46KGSSAZNEW760S","tsKey":"us-michigan-marquette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW1PQSKE3P947MWE1EH","tsKey":"us-michigan-mason-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVYQ59TW5AEN302ZDY4","tsKey":"us-michigan-mecosta-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW1Q9J881C9EFD7X6KF","tsKey":"us-michigan-menominee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVYQST0MS164ASTR8NS","tsKey":"us-michigan-midland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW1DQ9TM3WAYQ24PCWF","tsKey":"us-michigan-missaukee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW0H9GEJ03ZJAK02RB5","tsKey":"us-michigan-monroe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVY921V94TQ2PWQQFFH","tsKey":"us-michigan-montcalm-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW18XWF071C6RDJ729A","tsKey":"us-michigan-montmorency-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW1S3HV7RW17A374DF8","tsKey":"us-michigan-muskegon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVYT1SAW3S1AW7Y1P3N","tsKey":"us-michigan-newaygo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW037T6MBASHHN8RJ98","tsKey":"us-michigan-oakland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW22MRHF2TST9DPT33K","tsKey":"us-michigan-oceana-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW1H8H5C8HFTMCE9HSQ","tsKey":"us-michigan-ogemaw-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW0A9YDJKPTKNCC7288","tsKey":"us-michigan-ontonagon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVYN6CM4B94DWT0T78E","tsKey":"us-michigan-osceola-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW0JAK8T8SVHDD4C43R","tsKey":"us-michigan-oscoda-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW1C5H9KPGS0857C0RB","tsKey":"us-michigan-otsego-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW201NQ91K3A1N7DFV0","tsKey":"us-michigan-ottawa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW21A3QF9W34EJ8M1G2","tsKey":"us-michigan-presque-isle-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVYERBJ0MYBVYHFGMDB","tsKey":"us-michigan-roscommon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW0Z02NDA3D1FVSEYAY","tsKey":"us-michigan-saginaw-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW20C95Y2D6E65JK81E","tsKey":"us-michigan-sanilac-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW2N3599S0DC8NSDMYY","tsKey":"us-michigan-schoolcraft-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVYP0GJDB7CHCEJZGN6","tsKey":"us-michigan-shiawassee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW0HSYY48EHZJGFW9DM","tsKey":"us-michigan-st-clair-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW1PAH2EPRKY6R7HFQQ","tsKey":"us-michigan-st-joseph-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW0W6PQBBT9K9VDE2G9","tsKey":"us-michigan-tuscola-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW0VQB7R08YSBBN84Q9","tsKey":"us-michigan-van-buren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVYSG0DSEG4Y4DP6JBG","tsKey":"us-michigan-washtenaw-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKW0PHRTPF1H10EET4H9","tsKey":"us-michigan-wayne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJKVYEY49Q2S2NBRS0ZH1","tsKey":"us-michigan-wexford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-michigan","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015"},{"id":"gdst_01GW2HJMPPM22186VAJ15NG7C8","tsKey":"us-minnesota-aitkin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPPTEY93MVSMZPAP44H","tsKey":"us-minnesota-anoka-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPQYSXRF5TVBZXBYKFK","tsKey":"us-minnesota-becker-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPQ7A3ZPXDG9WNVP6KR","tsKey":"us-minnesota-beltrami-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPN2KDQD3JE2K59EAFA","tsKey":"us-minnesota-benton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPP7QJYF144TT15M233","tsKey":"us-minnesota-big-stone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPQ5HEDESSNBTZF537F","tsKey":"us-minnesota-blue-earth-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPRZE93PW1V3VAQCPX9","tsKey":"us-minnesota-brown-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPP2YWSRAN8VAKXFYQ8","tsKey":"us-minnesota-carlton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPN03D66S25R75JBV49","tsKey":"us-minnesota-carver-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPR5WZB3KVCSE0JFJ0D","tsKey":"us-minnesota-cass-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPQ4K7Z62YB5H0PC08P","tsKey":"us-minnesota-chippewa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPPTN37PHM0ZDZ5MZPC","tsKey":"us-minnesota-chisago-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPRG22VWH98WEKVADTP","tsKey":"us-minnesota-clay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPN4S48MNFA4F30ZEZ4","tsKey":"us-minnesota-clearwater-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPRMVDWS4KV17CKNQH9","tsKey":"us-minnesota-cook-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPQPXN5KBEG3NCCQR6A","tsKey":"us-minnesota-cottonwood-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPPRNV737Y7QKY9P01V","tsKey":"us-minnesota-crow-wing-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPPBVRFCKZN9H8P3NNF","tsKey":"us-minnesota-dakota-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPNMM5TCJHWQ86XRA87","tsKey":"us-minnesota-dodge-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPPTEDR55T9P66VGAPE","tsKey":"us-minnesota-douglas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPPMHJGYE1J1P23233W","tsKey":"us-minnesota-faribault-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPPGH2CXY71BNFJBWF4","tsKey":"us-minnesota-fillmore-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPQG5JFVB3CNKV08QSB","tsKey":"us-minnesota-freeborn-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPRKFY3F8D8NH9SD56T","tsKey":"us-minnesota-goodhue-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPNPH8DHF8912YDY1TP","tsKey":"us-minnesota-grant-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPP595YT82MEWF79B4W","tsKey":"us-minnesota-hennepin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPREBFABDK4JC9TR0M2","tsKey":"us-minnesota-houston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPNDNJ9YFADBB1BAJKB","tsKey":"us-minnesota-hubbard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPP85K0GVGFV29BV9ZE","tsKey":"us-minnesota-isanti-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPQCK6TYFW5D4Z82945","tsKey":"us-minnesota-itasca-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPPAEWERR86696ZYT0E","tsKey":"us-minnesota-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPQB6HFW0P7J0Y8KABK","tsKey":"us-minnesota-kanabec-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPNGNMWC46ADRBCE27C","tsKey":"us-minnesota-kandiyohi-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPQCCQ71VK4PYVTRHD5","tsKey":"us-minnesota-kittson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPQ2X29W09HRAGZANWQ","tsKey":"us-minnesota-koochiching-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPMFD36PB76T2MFMJDB","tsKey":"us-minnesota-lac-qui-parle-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPQVYPGY10CZ7A69MHK","tsKey":"us-minnesota-lake-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPPETTYVF9DCHA5HA87","tsKey":"us-minnesota-lake-of-the-woods-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPQPKH3C254K42N7XF9","tsKey":"us-minnesota-le-sueur-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPNA5R97RDH5SX58M5K","tsKey":"us-minnesota-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPNJ0N8WQD9A4AS9Q3B","tsKey":"us-minnesota-lyon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPQ547KBZQJ10CJGYXK","tsKey":"us-minnesota-mahnomen-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPN58049WPJTW05X2MW","tsKey":"us-minnesota-marshall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPN6GPNF2QVV1Y5AVMH","tsKey":"us-minnesota-martin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPNJ2H01SAPRVFJ3XXP","tsKey":"us-minnesota-mcleod-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPNWWHJ7PD437G2HW6C","tsKey":"us-minnesota-meeker-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPNVJDPHYGE503JDRFT","tsKey":"us-minnesota-mille-lacs-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPN47JQ3SR08RV0F019","tsKey":"us-minnesota-morrison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPNZMANVFAGM1C03QNF","tsKey":"us-minnesota-mower-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPQW4B9QTFDAEVP3R37","tsKey":"us-minnesota-murray-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPNSYGASX3NJVDEEP2E","tsKey":"us-minnesota-nicollet-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPNX81FYWZWDKC7076G","tsKey":"us-minnesota-nobles-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPQTV1Q2W15V7V5FH47","tsKey":"us-minnesota-norman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPNG3KS0V8KXPKH2QCR","tsKey":"us-minnesota-olmsted-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPNCGCFK0SK5YYK783G","tsKey":"us-minnesota-otter-tail-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPN4DBVGDDVYNRMBVMY","tsKey":"us-minnesota-pennington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPPXA7K4XF48MSM34P2","tsKey":"us-minnesota-pine-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPPV7RXRVGT29J3Q2P3","tsKey":"us-minnesota-pipestone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPPMTXN59WBPPGWT20S","tsKey":"us-minnesota-polk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPNTTB1N8VFMHFBW5N6","tsKey":"us-minnesota-pope-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPQX13RTS0JYKAF1R4Z","tsKey":"us-minnesota-ramsey-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPQD2FMZT1M0PM4PCVH","tsKey":"us-minnesota-red-lake-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPNXQSYRZPWD68AWR7Y","tsKey":"us-minnesota-redwood-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPP7AFVTRPX5060NDDE","tsKey":"us-minnesota-renville-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPQYP2H4STFS0QFZX3R","tsKey":"us-minnesota-rice-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPPE1XQNA26FF22W1XV","tsKey":"us-minnesota-rock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPQJC8XQE2V4P1XMS4P","tsKey":"us-minnesota-roseau-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPR19YNQAH6Q90MAJJ5","tsKey":"us-minnesota-scott-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPPMYGQ99FGJ85W0GV4","tsKey":"us-minnesota-sherburne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPQXM2Q5TZY4GH176TM","tsKey":"us-minnesota-sibley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPPB11772KNY4MBSA7J","tsKey":"us-minnesota-stearns-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPNPJ7F1HRBEYXXX12M","tsKey":"us-minnesota-steele-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPPE85QW1K22PQYHEMD","tsKey":"us-minnesota-stevens-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPP9QBRP11SPV5G85Z4","tsKey":"us-minnesota-st-louis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPQKQ0AK8ZM0F1Z2RAE","tsKey":"us-minnesota-swift-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPN974Q1SKTYHGQ04AN","tsKey":"us-minnesota-todd-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPQWAAT25D71ZNGDY9A","tsKey":"us-minnesota-traverse-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPPZ5KM1MMQWFYXY6PX","tsKey":"us-minnesota-wabasha-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPQG1CNPJYNH1Q9JW4S","tsKey":"us-minnesota-wadena-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPNATZM89B5NJZVZN8M","tsKey":"us-minnesota-waseca-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPP10X9NQQ8Z8KPSXBK","tsKey":"us-minnesota-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPQKBMJ8W8PN5KBXFX4","tsKey":"us-minnesota-watonwan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPQ2191QBCW1Z7P9XE8","tsKey":"us-minnesota-wilkin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPQ6HDAZRRYTM2ARAMZ","tsKey":"us-minnesota-winona-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPPM2WZQ1KNW5D5T7DE","tsKey":"us-minnesota-wright-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJMPQXR3Q609QN1Z3W1CC","tsKey":"us-minnesota-yellow-medicine-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-minnesota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY"},{"id":"gdst_01GW2HJPD3Z91GQB9K26F4S05H","tsKey":"us-mississippi-adams-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPCZ495Y7GN082G3BPN9","tsKey":"us-mississippi-alcorn-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD01AXA1RH75J5TP6AV","tsKey":"us-mississippi-amite-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD2QQ9DWA8QBEM6VA5Z","tsKey":"us-mississippi-attala-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD0T3P1WQ0ZMB6DEWSS","tsKey":"us-mississippi-benton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD0EQTYX0PRHY7KBB00","tsKey":"us-mississippi-bolivar-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPCZNX3MS3R0RV5F5ZNR","tsKey":"us-mississippi-calhoun-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD0M2GCMZJX5HK2HH60","tsKey":"us-mississippi-carroll-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPCZJRZR6XWS2DPCEHXS","tsKey":"us-mississippi-chickasaw-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD35J0JBKCMHGYHAFV9","tsKey":"us-mississippi-choctaw-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD01S6ESM5X4WMZ3Y6T","tsKey":"us-mississippi-claiborne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD21AHCQR0SBCZZSKWS","tsKey":"us-mississippi-clarke-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD3V8VEMWWT8W1YCVD7","tsKey":"us-mississippi-clay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD3D4ZF6R8B0QKTP27G","tsKey":"us-mississippi-coahoma-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPCZB12MRB0Z79K60H89","tsKey":"us-mississippi-copiah-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD09BXK5XVP2WXETK19","tsKey":"us-mississippi-covington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD4T14X3P9DJNB0PX35","tsKey":"us-mississippi-desoto-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD2TS9QJG17C0WSDC86","tsKey":"us-mississippi-forrest-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPCZBZYTA1BS8XJ8JP1F","tsKey":"us-mississippi-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD0VVQFD187PAJHBD35","tsKey":"us-mississippi-george-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD1DYXJEVRQ0YC0GJGX","tsKey":"us-mississippi-greene-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD2YDN03YS4BHFDD0GA","tsKey":"us-mississippi-grenada-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD1THT91MFC5FNVTSW4","tsKey":"us-mississippi-hancock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD32GG1R755TV4QD2A4","tsKey":"us-mississippi-harrison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPCZWGMM2E9N1QQXSNC3","tsKey":"us-mississippi-hinds-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD11PWCQCRFYHC3VBXP","tsKey":"us-mississippi-holmes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD1DBDRCRD6DEK5AZ2J","tsKey":"us-mississippi-humphreys-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD311XMSG5TWB6S7HTG","tsKey":"us-mississippi-issaquena-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD2DWGD47EVX7S2ZE5P","tsKey":"us-mississippi-itawamba-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD1SZNZSFW5KJ53EYRJ","tsKey":"us-mississippi-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPCZBJY9HXF8KT9SYMFT","tsKey":"us-mississippi-jasper-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD3NVNER2XT69VQV6HE","tsKey":"us-mississippi-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPCZ1M9CCPNFPE46SA7Q","tsKey":"us-mississippi-jefferson-davis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD1418S5R2T55QC2C0P","tsKey":"us-mississippi-jones-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD29QHAW095KM2JHZH6","tsKey":"us-mississippi-kemper-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD34GE68BM5XM2MAZFX","tsKey":"us-mississippi-lafayette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD14XMDRQB526H8WBZ8","tsKey":"us-mississippi-lamar-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPCZ40F891HA4JAYDP85","tsKey":"us-mississippi-lauderdale-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD2MCKMVD01QP8WZQSV","tsKey":"us-mississippi-lawrence-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPCZS2VTS4CP1GYN4F6Z","tsKey":"us-mississippi-leake-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD2GCRGV83V0QH9XWEK","tsKey":"us-mississippi-lee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPCZBNE0XMCF00G3THZ2","tsKey":"us-mississippi-leflore-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD27AB5HFJ9H9QXNF2K","tsKey":"us-mississippi-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD2G0D3ZEE1SKP1R0T0","tsKey":"us-mississippi-lowndes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD4YSDKK1WE5K9XAXM0","tsKey":"us-mississippi-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD1VR2T0M5C5QVKWX3Y","tsKey":"us-mississippi-marion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD480XCH71WBCDMEP6C","tsKey":"us-mississippi-marshall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPCZN8YB3YCQJXN599TM","tsKey":"us-mississippi-monroe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD11PGNZBJZS2D0GMBJ","tsKey":"us-mississippi-montgomery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD0HT0ERY4JS2J4FK26","tsKey":"us-mississippi-neshoba-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD13WDV0DP7WZSESS4G","tsKey":"us-mississippi-newton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD0WBWMQ0XGYTP90DVS","tsKey":"us-mississippi-noxubee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD3C9CXMH8HS1HY6A2X","tsKey":"us-mississippi-oktibbeha-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD2ARGVWARB4MX7EC0J","tsKey":"us-mississippi-panola-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD1GVJM6ARTVTS0KHR1","tsKey":"us-mississippi-pearl-river-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD3Q75AHFMCHBKD0Y0F","tsKey":"us-mississippi-perry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD3QP0C3Y8XKJC1SE9P","tsKey":"us-mississippi-pike-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD0J407E6SM0PSB9NV9","tsKey":"us-mississippi-pontotoc-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD0NDSVGDFFKB3HQR4J","tsKey":"us-mississippi-prentiss-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD1M3FVNC5R49XV72WM","tsKey":"us-mississippi-quitman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD191BEYY947HSKRZVC","tsKey":"us-mississippi-rankin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD28FW7TQ66GCBTT5X5","tsKey":"us-mississippi-scott-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD3J16XYF3TRCYEZRKZ","tsKey":"us-mississippi-sharkey-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD0SK2V0K3WVDSGJZQ6","tsKey":"us-mississippi-simpson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD1CW565SZ2VEW7Q4DA","tsKey":"us-mississippi-smith-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD38671S5008EM2VA94","tsKey":"us-mississippi-stone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD3Q0SVS1BQEGY7GWX2","tsKey":"us-mississippi-sunflower-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD4FK287G8FD28P8HDM","tsKey":"us-mississippi-tallahatchie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD1123YMS35WPA1W26M","tsKey":"us-mississippi-tate-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD04NWD0G7YYMS4C43P","tsKey":"us-mississippi-tippah-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD1105EGKQQDABKNX4Q","tsKey":"us-mississippi-tishomingo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD22GMRW31RPX690C1Q","tsKey":"us-mississippi-tunica-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD37AJKMKZM8Y0YJQ7P","tsKey":"us-mississippi-union-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD3N1RFP1N3G5FTN6JE","tsKey":"us-mississippi-walthall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD4V1TEK5EAH759Q3SY","tsKey":"us-mississippi-warren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD0VFJ3880DMQRGXT0Z","tsKey":"us-mississippi-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD2JE1H2JTYHQ8EPW2E","tsKey":"us-mississippi-wayne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD237V2GYYXEVA4V1TX","tsKey":"us-mississippi-webster-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD22ZSKVN7KA6RNJETK","tsKey":"us-mississippi-wilkinson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD31WYTCMGTW1989MQJ","tsKey":"us-mississippi-winston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD494TBFQ5EJ9CMMGSW","tsKey":"us-mississippi-yalobusha-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJPD2PBZ5TTCD69MDJ7S3","tsKey":"us-mississippi-yazoo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-mississippi","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9"},{"id":"gdst_01GW2HJQJQK2KJ21K7FK3X41N6","tsKey":"us-missouri-adair-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJV8SGF95NJW7KRAW6T","tsKey":"us-missouri-andrew-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJVYSG60X5TNG0499KD","tsKey":"us-missouri-atchison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJQ4B1FC9QGTFDRPH0X","tsKey":"us-missouri-audrain-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJQYV7B1PQ71GZACZH3","tsKey":"us-missouri-barry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJVMBAYG5GM19802FQB","tsKey":"us-missouri-barton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJWRHH3NWY3QPJ1NV8N","tsKey":"us-missouri-bates-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJVCPGMT4AY4V27D9EZ","tsKey":"us-missouri-benton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJQ7C9N34J38N78GA6W","tsKey":"us-missouri-bollinger-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJVP1STQREK9193XJ5K","tsKey":"us-missouri-boone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJQYBXE25H5YCH56WZC","tsKey":"us-missouri-buchanan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJQ733GKGXZ94X58X0Z","tsKey":"us-missouri-butler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJVTXZ07DQ6F7ZA967D","tsKey":"us-missouri-caldwell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJVE22S8FZ2N09S819P","tsKey":"us-missouri-callaway-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJRAD09JCWSBDGJ3JTP","tsKey":"us-missouri-camden-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJVT0ZJ8VEXEERJHM4Q","tsKey":"us-missouri-cape-girardeau-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJQ1XFQMDC6S601TK0M","tsKey":"us-missouri-carroll-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJRRS7XG644X99ES5KB","tsKey":"us-missouri-carter-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJV34E6DX84AV1WECZN","tsKey":"us-missouri-cass-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJVGXZG821RHMBVQFTZ","tsKey":"us-missouri-cedar-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJRW3RWGWG4T39N1DE1","tsKey":"us-missouri-chariton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJQN4CVRD1Z2FRS2ES8","tsKey":"us-missouri-christian-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJRN6M3F723RDNDPEK3","tsKey":"us-missouri-clark-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJRKHTXDRQFTE4Z1WZV","tsKey":"us-missouri-clay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJVD19T7A88EYBKT8QE","tsKey":"us-missouri-clinton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJRSXGGS7GZQ1YG7P8T","tsKey":"us-missouri-cole-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJQ3YRN2CXX056D1PNZ","tsKey":"us-missouri-cooper-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJRQ70Z8Q7AA3FVQBSR","tsKey":"us-missouri-crawford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJRMCKHW84S07TBGWCW","tsKey":"us-missouri-dade-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJVAW1NCA3VN6QWMZ4F","tsKey":"us-missouri-dallas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJRD0QE6SPE6R31Q3C6","tsKey":"us-missouri-daviess-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJW9BV0M90XRE8J6DDS","tsKey":"us-missouri-dekalb-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJQVQV1TPGQPV393S8K","tsKey":"us-missouri-dent-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJRBQPZJ0JXCV1WHHJV","tsKey":"us-missouri-douglas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJWE5PV77B1HTXMEM20","tsKey":"us-missouri-dunklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJVDGG5XNBAVTSH3QC4","tsKey":"us-missouri-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJR40CQC2PM50W32ZFN","tsKey":"us-missouri-gasconade-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJQYBRSS2KCM1Y36Y1G","tsKey":"us-missouri-gentry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJRMYA2M4S06KEE49V0","tsKey":"us-missouri-greene-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJREJ01N40NM32NE9JZ","tsKey":"us-missouri-grundy-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJWM0X6VFFK1C6QGWVF","tsKey":"us-missouri-harrison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJV2ZTS20DXMZD88B1T","tsKey":"us-missouri-henry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJQMGX78S93RJMWRE7D","tsKey":"us-missouri-hickory-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJRK0D1774FWEBPCXXT","tsKey":"us-missouri-holt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJW9NEXM2JDA18P4HV8","tsKey":"us-missouri-howard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJWRV1RKB5TYGRRVJ5M","tsKey":"us-missouri-howell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJVA5VN8XK4083DZ60T","tsKey":"us-missouri-iron-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJTJX24P4ECQB1BE2WR","tsKey":"us-missouri-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJPD7MVXK5DA37VT1K7","tsKey":"us-missouri-jasper-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJTKE1GB3Q0RRCK2PYM","tsKey":"us-missouri-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJVW7VDRM1PMJH1QJ3K","tsKey":"us-missouri-johnson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJPDKQACQ0NKRSWMT8V","tsKey":"us-missouri-knox-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJR4V2T7YM68PV6F676","tsKey":"us-missouri-laclede-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJVN0V62P4HR0K6KTH1","tsKey":"us-missouri-lafayette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJPS168MFAE0WBNTJN2","tsKey":"us-missouri-lawrence-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJSKQBQT1QEMSCEQKXM","tsKey":"us-missouri-lewis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJWGC2P5CQG4106WXA8","tsKey":"us-missouri-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJTFG2PT2VNWM6CEG6D","tsKey":"us-missouri-linn-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJPMX020ARMD0QDGZ5X","tsKey":"us-missouri-livingston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJTNJZJCWA59AJV83FW","tsKey":"us-missouri-macon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJW28SZN5XRG0NMT44W","tsKey":"us-missouri-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJSPPZ5YP9SG4E93DKS","tsKey":"us-missouri-maries-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJW2DS1NRWMAVY7RXED","tsKey":"us-missouri-marion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJSRG4EA7P8R88XN8CK","tsKey":"us-missouri-mcdonald-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJSBM9F2N835010BQE1","tsKey":"us-missouri-mercer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJP2D1MR7625G8343TF","tsKey":"us-missouri-miller-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJWTZQ3Q2E3BZC36J1R","tsKey":"us-missouri-mississippi-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJTSF226AQ5G2PPQZKY","tsKey":"us-missouri-moniteau-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJPSKNMYQA8HM5M1MDJ","tsKey":"us-missouri-monroe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJST7H12SY0SZ8MSP7H","tsKey":"us-missouri-montgomery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJSGM3J09MJTJQGPMRD","tsKey":"us-missouri-morgan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJWVYBA3GBYE7NGVJWK","tsKey":"us-missouri-new-madrid-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJTNBSN192CG1S9X9BR","tsKey":"us-missouri-newton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJS263QTX77MVCEZFS8","tsKey":"us-missouri-nodaway-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJWV0ZS5YZBTZZQPG9K","tsKey":"us-missouri-oregon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJPF9XHBK0ZVZJMANJ2","tsKey":"us-missouri-osage-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJSZW7NSPX58Y84DM7P","tsKey":"us-missouri-ozark-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJWDED06SR768GAQDQV","tsKey":"us-missouri-pemiscot-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJS1HDHP3599DNJJ6J4","tsKey":"us-missouri-perry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJPJ5YNZV3YE5SRA7M4","tsKey":"us-missouri-pettis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJSGW0GQE37525Y4EWD","tsKey":"us-missouri-phelps-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJT6NFXR2ZRREZKEE2B","tsKey":"us-missouri-pike-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJW9EGJYEPY3JB8005W","tsKey":"us-missouri-platte-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJSF2YE8GRE98FA5Y5Z","tsKey":"us-missouri-polk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJP1871S39EAPHWJMD0","tsKey":"us-missouri-pulaski-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJSXZGR90B349XQ3EFV","tsKey":"us-missouri-putnam-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJTZC96XW0D3ZT5SPX0","tsKey":"us-missouri-ralls-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJSBNXJTFF8RTQNWJ75","tsKey":"us-missouri-randolph-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJS0SHERB09WPDWY59X","tsKey":"us-missouri-ray-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJPYYJYQD3D44FMA9CM","tsKey":"us-missouri-reynolds-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJS6HN0SPTJGPQ0M61M","tsKey":"us-missouri-ripley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJPZS8V6N5WCRMGBMEN","tsKey":"us-missouri-saline-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJS36XPAGE4HXZC27ND","tsKey":"us-missouri-schuyler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJWB4DJCMBBFBRT9S2X","tsKey":"us-missouri-scotland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJTGZK9W1S6XCYK26D8","tsKey":"us-missouri-scott-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJTNXD6E21VGN66Y5T0","tsKey":"us-missouri-shannon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJPXSM23PH2QSQTT6PV","tsKey":"us-missouri-shelby-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJW7KD7K1191QD0RG3Y","tsKey":"us-missouri-st-charles-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJTV6ZWNBT9FRZY9QZB","tsKey":"us-missouri-st-clair-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJSN4NQYP50SXH10Q7J","tsKey":"us-missouri-ste-genevieve-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJS5GJVG62DR425PGYA","tsKey":"us-missouri-st-francois-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJT9QQ5K85C7SKN2ARE","tsKey":"us-missouri-st-louis-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJW5H3EF6YV06RBQ5Q4","tsKey":"us-missouri-st-louis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJTNKMQ4VD84MFDD9GC","tsKey":"us-missouri-stoddard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJW40NFRERA4ASBM1EW","tsKey":"us-missouri-stone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJPE4K1E04S3M1S0DFW","tsKey":"us-missouri-sullivan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJTM5JZ03V1DRX6ZFT5","tsKey":"us-missouri-taney-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJTZ8HRM2PHX3DTJYV6","tsKey":"us-missouri-texas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJWTG0MJW3D5CT8MTYC","tsKey":"us-missouri-vernon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJT0JZ4XHHZ125ZZG6H","tsKey":"us-missouri-warren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJQC3RWG783XPM80BRK","tsKey":"us-missouri-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJVWHCC5VZA919KMGR8","tsKey":"us-missouri-wayne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJTJPV4ZD4R9621Y62V","tsKey":"us-missouri-webster-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJWB59Z6GT70PQ9XFK0","tsKey":"us-missouri-worth-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJQJQM16XDQHWZVC67TYA","tsKey":"us-missouri-wright-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-missouri","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M"},{"id":"gdst_01GW2HJRBMES7DX944F9GZJ5EY","tsKey":"us-montana-beaverhead-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBJNFDMFD0NQZWFFMZK","tsKey":"us-montana-big-horn-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBJGM7PW2757ZBMF3B1","tsKey":"us-montana-blaine-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBKKVFBVXZPS5K9F969","tsKey":"us-montana-broadwater-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBJN46FKXCP7CHK7CCT","tsKey":"us-montana-carbon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBMPW89TCXABWVDDTGB","tsKey":"us-montana-carter-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBGEVTRE44MZQ13MQJW","tsKey":"us-montana-cascade-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBJSGE86VXB93PE47XN","tsKey":"us-montana-chouteau-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBMBXM1396BZ4SDTVMM","tsKey":"us-montana-custer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBJ9EXZE2R1RJ5M3RG8","tsKey":"us-montana-daniels-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBKRQSAMPSR3GF6WT5Z","tsKey":"us-montana-dawson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBJWWWYCXEZ4PDD541N","tsKey":"us-montana-deer-lodge-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBMP0CFQQPX12YABAE7","tsKey":"us-montana-fallon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBMHKC7NXHQPE5J49B2","tsKey":"us-montana-fergus-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBKPD6AFABAT79RAWQ4","tsKey":"us-montana-flathead-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBKYQNE8VKS8BB4WW1D","tsKey":"us-montana-gallatin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBMCTCM6XXRPMQQEFTQ","tsKey":"us-montana-garfield-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBKRDTRFRVFNZYADZ80","tsKey":"us-montana-glacier-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBHTR8N0GJ7SANQWGE9","tsKey":"us-montana-golden-valley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBMFPPQF18509127X7X","tsKey":"us-montana-granite-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBKXS0EGEPSKME1HR00","tsKey":"us-montana-hill-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBHMZN4VXY44A882DRR","tsKey":"us-montana-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBMBAS58VY1NZ7XTM43","tsKey":"us-montana-judith-basin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBKZNS9Y8X21BDZY7Q7","tsKey":"us-montana-lake-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBKT3BCWGTSCTG3ADC4","tsKey":"us-montana-lewis-and-clark-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBHTSFMAK4AXXXSJ32S","tsKey":"us-montana-liberty-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBKZQ4XG9X0YG9TF9AF","tsKey":"us-montana-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBHKBBXE59CG4E25137","tsKey":"us-montana-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBHS6N4GYD5RW5C7RVM","tsKey":"us-montana-mccone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBHEAZ7DVGHQ8JMDB4N","tsKey":"us-montana-meagher-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBMX8V954FHX7JXZYZF","tsKey":"us-montana-mineral-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBHD2VG549Z56JE9520","tsKey":"us-montana-missoula-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBHH2FQ0FM8X3KFJSXH","tsKey":"us-montana-musselshell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBKX8GB32256REY5Q59","tsKey":"us-montana-park-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBH5JHM5C7CV0DYWMZX","tsKey":"us-montana-petroleum-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBH7T84A5WG8HB7PHNG","tsKey":"us-montana-phillips-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBKBTM63RP1831TSMQ5","tsKey":"us-montana-pondera-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBKBNVRA0NMGJR3ARME","tsKey":"us-montana-powder-river-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBJPKY1GPVZ54S6EDTK","tsKey":"us-montana-powell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBKJXHMGGY4NTDWM30F","tsKey":"us-montana-prairie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBKNVBK3JT2XMZEDBBT","tsKey":"us-montana-ravalli-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBJ16RAM0XGVZHD2N9Z","tsKey":"us-montana-richland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBK4S8XV1CV7RX0C3N2","tsKey":"us-montana-roosevelt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBJTRZ010SRVG3PH123","tsKey":"us-montana-rosebud-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBKPAGDY29G13YFP167","tsKey":"us-montana-sanders-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBJ19T3BVB0P4WXR728","tsKey":"us-montana-sheridan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBHE9VD9ZH5B5FK3FNQ","tsKey":"us-montana-silver-bow-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBM2N5KJD3B4XMEA3ZJ","tsKey":"us-montana-stillwater-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBJ17PC6Q3M85RFMAES","tsKey":"us-montana-sweet-grass-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBHFX1H6PAVSAWW4SXP","tsKey":"us-montana-teton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBJF5QZC957ZFRDCZVK","tsKey":"us-montana-toole-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBME3568WYW0BCS0S4E","tsKey":"us-montana-treasure-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBMPAS6HYJBF93A0CBA","tsKey":"us-montana-valley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBHXBC13PHJZ4E4V304","tsKey":"us-montana-wheatland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBJT0XGCAD802D4VAD9","tsKey":"us-montana-wibaux-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJRBMRHM9KT0R6MC9VZS7","tsKey":"us-montana-yellowstone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-montana","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD"},{"id":"gdst_01GW2HJS8FJ7BBQR02SN0VGTV9","tsKey":"us-nebraska-adams-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8BWRF2JE8NFT69B3Z3","tsKey":"us-nebraska-antelope-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8FFJ352CSZQQ1SPMVA","tsKey":"us-nebraska-arthur-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8DN3XC47QBE7TX66MC","tsKey":"us-nebraska-banner-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8B2046XE5T92EAZB1Y","tsKey":"us-nebraska-blaine-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8DBSRZTF26Y5N8KX7A","tsKey":"us-nebraska-boone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8DXP6VE9MWNM4N57EM","tsKey":"us-nebraska-box-butte-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8GSKMVS78KFXMNE7GQ","tsKey":"us-nebraska-boyd-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8FZFBB1ZZ462JG9WV0","tsKey":"us-nebraska-brown-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8DQYTTCA630GR7FFNP","tsKey":"us-nebraska-buffalo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8GG064MM2EYJ93GQQT","tsKey":"us-nebraska-burt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8B8Z5ZD38FV9CK77N5","tsKey":"us-nebraska-butler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8D17XDH3YCA5WGHN2F","tsKey":"us-nebraska-cass-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8F72NKPR8MPZ3EN540","tsKey":"us-nebraska-cedar-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8DYKFCZED7H3KFDCTC","tsKey":"us-nebraska-chase-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8GND19J0F52SYVE78K","tsKey":"us-nebraska-cherry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8DB7WDZ9X7YRNHEFBR","tsKey":"us-nebraska-cheyenne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8B8H25ZG4EVQF2S6NE","tsKey":"us-nebraska-clay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8CRX21SDDECT0FG2CX","tsKey":"us-nebraska-colfax-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8DASKXZS44N21QFADR","tsKey":"us-nebraska-cuming-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8FBZRTSV5Y1N5MAE93","tsKey":"us-nebraska-custer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8GG4TTVJNFNED2RJRC","tsKey":"us-nebraska-dakota-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8D1447K4M3CVC29NCG","tsKey":"us-nebraska-dawes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8CHC86JPMX7164Y0E5","tsKey":"us-nebraska-dawson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8GSQCJ4C4NHKQE6GZ0","tsKey":"us-nebraska-deuel-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8D1RB6AGKD7MKRG9SM","tsKey":"us-nebraska-dixon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8CZZTT9ZSA8VF6EG4T","tsKey":"us-nebraska-dodge-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8GVXGQ769881PERD6E","tsKey":"us-nebraska-douglas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8DNNV5W74RSYRJZPC3","tsKey":"us-nebraska-dundy-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8FZ10BYSCFYVN8YVK2","tsKey":"us-nebraska-fillmore-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8G5JDXHNZBZSB4R49E","tsKey":"us-nebraska-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8CDNMXC85R0Z0Z0MYG","tsKey":"us-nebraska-frontier-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8G6PEM9WNJV40KANKB","tsKey":"us-nebraska-furnas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8GH1YHCF9339G30S92","tsKey":"us-nebraska-gage-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8FTGR523ZXHS8446S7","tsKey":"us-nebraska-garden-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8DK0R27R0WB2S0P6YQ","tsKey":"us-nebraska-garfield-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8CMHV5TX3NPETH362E","tsKey":"us-nebraska-gosper-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8DZECAFK5MWZ0DNE4N","tsKey":"us-nebraska-grant-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8F3DCDS9DWBVXQ6D2B","tsKey":"us-nebraska-greeley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8EEEBQ9PX99642NTMH","tsKey":"us-nebraska-hall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8EGJZKA6RAY16VP19A","tsKey":"us-nebraska-hamilton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8E2WPF5G9S3WYCTSSA","tsKey":"us-nebraska-harlan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8CPSK9J83K07D1XFXM","tsKey":"us-nebraska-hayes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8E2APKN8K10TW8PE6P","tsKey":"us-nebraska-hitchcock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8FTNMAG2MV6CKCBNHE","tsKey":"us-nebraska-holt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8GV4BT3XE6RABAFFTM","tsKey":"us-nebraska-hooker-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8CWS2RZSX0P651HT0C","tsKey":"us-nebraska-howard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8GJ7J89PR63AFEN534","tsKey":"us-nebraska-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8CEWHXDVVDAZMCNWF5","tsKey":"us-nebraska-johnson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8E8R9SSZV4B9GR5DP6","tsKey":"us-nebraska-kearney-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8E7909VZCRBYZ2C3PH","tsKey":"us-nebraska-keith-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8GSJWPQN9NAKFF64EM","tsKey":"us-nebraska-keya-paha-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8EA38QYT34XHYVP56Q","tsKey":"us-nebraska-kimball-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8FC3H8W31726VPSF2X","tsKey":"us-nebraska-knox-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8E6FGN9PB9HBA7YF13","tsKey":"us-nebraska-lancaster-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8GX63EMMDZV1TZS9JV","tsKey":"us-nebraska-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8GGRV1ZVP84Y6T49DY","tsKey":"us-nebraska-logan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8E792F9SWXTTYS9MSJ","tsKey":"us-nebraska-loup-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8EKBHJ880MMCH44RCA","tsKey":"us-nebraska-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8C0H19P4N872BAW0MV","tsKey":"us-nebraska-mcpherson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8BKT6C1J2WDJXJFEXB","tsKey":"us-nebraska-merrick-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8EB998V6Q1QYM8NMT7","tsKey":"us-nebraska-morrill-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8BKPKMCYMFBHEACJV0","tsKey":"us-nebraska-nance-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8ET7CGH2N8Q1805DKM","tsKey":"us-nebraska-nemaha-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8EN7CHSHMMYGSZ9TVB","tsKey":"us-nebraska-nuckolls-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8GWV0MX9MMCJ106T9Q","tsKey":"us-nebraska-otoe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8E7Q7PYPTHH82PZHSY","tsKey":"us-nebraska-pawnee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8BZKYXJAJHMAARH713","tsKey":"us-nebraska-perkins-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8BJAY6D7ZJ0TN0X4KF","tsKey":"us-nebraska-phelps-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8FV0PJZPFWHQ28G2CS","tsKey":"us-nebraska-pierce-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8EQ06RWSHZ1J70QDXQ","tsKey":"us-nebraska-platte-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8EVDYNEGSZDFAWPPWE","tsKey":"us-nebraska-polk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8FX2V797BJSJAB3A38","tsKey":"us-nebraska-red-willow-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8B0WFMFMH1AH4R5VVC","tsKey":"us-nebraska-richardson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8C3QEVYAF939JAJEQ7","tsKey":"us-nebraska-rock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8CPRT3KWTR3WE0KX8A","tsKey":"us-nebraska-saline-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8EV3HHBTE9R9PZ1R5P","tsKey":"us-nebraska-sarpy-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8CH763Z3FV6T7EP4HN","tsKey":"us-nebraska-saunders-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8FYTTX48RGJZ2RV1ZJ","tsKey":"us-nebraska-scotts-bluff-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8BCE6T66QR91CSAGP8","tsKey":"us-nebraska-seward-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8C1H3CAKM3WNX2KPCH","tsKey":"us-nebraska-sheridan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8BKB0W0N6G8JGMREXS","tsKey":"us-nebraska-sherman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8FEXBVRCSQXSNY812K","tsKey":"us-nebraska-sioux-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8F5M78SQ53X6QMQ640","tsKey":"us-nebraska-stanton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8CP5XE7MTC7PZEWD3C","tsKey":"us-nebraska-thayer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8BHYB4YP61CVEAB4HP","tsKey":"us-nebraska-thomas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8D369V5TSRSBCFC9H4","tsKey":"us-nebraska-thurston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8GRGRZXX3ZB7976KEW","tsKey":"us-nebraska-valley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8GTF9Y86DKYEXS76A5","tsKey":"us-nebraska-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8FRVZEDEWN2CZ91GSA","tsKey":"us-nebraska-wayne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8DDBQEWJ62BVKM5JP8","tsKey":"us-nebraska-webster-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8BN2K0R5Q339SS16ZA","tsKey":"us-nebraska-wheeler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJS8F2PBH2Q3A9XDAJPVK","tsKey":"us-nebraska-york-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nebraska","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158"},{"id":"gdst_01GW2HJTDCZSFQ1C1WBZB04PNR","tsKey":"us-nevada-carson-city-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nevada","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJSQZ19Y230FJHNKHSW89"},{"id":"gdst_01GW2HJTDCW9CVJ3A8PR9THVFA","tsKey":"us-nevada-churchill-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nevada","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJSQZ19Y230FJHNKHSW89"},{"id":"gdst_01GW2HJTDC3K732ADR34G57FY9","tsKey":"us-nevada-clark-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nevada","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJSQZ19Y230FJHNKHSW89"},{"id":"gdst_01GW2HJTDB29QR2N1D5261X7KF","tsKey":"us-nevada-douglas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nevada","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJSQZ19Y230FJHNKHSW89"},{"id":"gdst_01GW2HJTDBT3S50XWXJ9WD1ZAA","tsKey":"us-nevada-elko-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nevada","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJSQZ19Y230FJHNKHSW89"},{"id":"gdst_01GW2HJTDBB23BSYG3PQPTT7G5","tsKey":"us-nevada-esmeralda-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nevada","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJSQZ19Y230FJHNKHSW89"},{"id":"gdst_01GW2HJTDCR8YQSWMXZR110027","tsKey":"us-nevada-eureka-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nevada","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJSQZ19Y230FJHNKHSW89"},{"id":"gdst_01GW2HJTDCPA59ER378VCCDJ30","tsKey":"us-nevada-humboldt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nevada","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJSQZ19Y230FJHNKHSW89"},{"id":"gdst_01GW2HJTDCJKN58E8SJDFGKR5M","tsKey":"us-nevada-lander-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nevada","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJSQZ19Y230FJHNKHSW89"},{"id":"gdst_01GW2HJTDCA4XW42AZAT6JZY60","tsKey":"us-nevada-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nevada","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJSQZ19Y230FJHNKHSW89"},{"id":"gdst_01GW2HJTDCX54JAAWWNANSRX6T","tsKey":"us-nevada-lyon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nevada","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJSQZ19Y230FJHNKHSW89"},{"id":"gdst_01GW2HJTDBXJGR912V5HK6SFKV","tsKey":"us-nevada-mineral-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nevada","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJSQZ19Y230FJHNKHSW89"},{"id":"gdst_01GW2HJTDCQKDFNYAZFYBJ3CBK","tsKey":"us-nevada-nye-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nevada","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJSQZ19Y230FJHNKHSW89"},{"id":"gdst_01GW2HJTDCTHJA8S0VRCWKYG50","tsKey":"us-nevada-pershing-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nevada","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJSQZ19Y230FJHNKHSW89"},{"id":"gdst_01GW2HJTDCWEE15E0AX1F16R5X","tsKey":"us-nevada-storey-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nevada","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJSQZ19Y230FJHNKHSW89"},{"id":"gdst_01GW2HJTDCD6N3B35397K5AF6E","tsKey":"us-nevada-washoe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nevada","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJSQZ19Y230FJHNKHSW89"},{"id":"gdst_01GW2HJTDB4PRRNZC99518258D","tsKey":"us-nevada-white-pine-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-nevada","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJSQZ19Y230FJHNKHSW89"},{"id":"gdst_01GW2HJV6SJBHT6WAKKX0DJNKM","tsKey":"us-new-hampshire-belknap-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-hampshire","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJTSK0AMAVYF9QD9GXBAR"},{"id":"gdst_01GW2HJV6RN2DJFBYA51PCG54P","tsKey":"us-new-hampshire-carroll-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-hampshire","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJTSK0AMAVYF9QD9GXBAR"},{"id":"gdst_01GW2HJV6SD70WMGF3DC5G32PH","tsKey":"us-new-hampshire-cheshire-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-hampshire","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJTSK0AMAVYF9QD9GXBAR"},{"id":"gdst_01GW2HJV6SWRQMJ0H36AAEPTM1","tsKey":"us-new-hampshire-coos-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-hampshire","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJTSK0AMAVYF9QD9GXBAR"},{"id":"gdst_01GW2HJV6SHA14KTRRVV1RWN4F","tsKey":"us-new-hampshire-grafton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-hampshire","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJTSK0AMAVYF9QD9GXBAR"},{"id":"gdst_01GW2HJV6SMJSYYYGH76E9ABYA","tsKey":"us-new-hampshire-hillsborough-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-hampshire","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJTSK0AMAVYF9QD9GXBAR"},{"id":"gdst_01GW2HJV6SFHVNX9WGMJ1XT6T9","tsKey":"us-new-hampshire-merrimack-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-hampshire","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJTSK0AMAVYF9QD9GXBAR"},{"id":"gdst_01GW2HJV6SH4SM8ST5JVAJ9F6B","tsKey":"us-new-hampshire-rockingham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-hampshire","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJTSK0AMAVYF9QD9GXBAR"},{"id":"gdst_01GW2HJV6SBMKWPBB0R1TA7XEG","tsKey":"us-new-hampshire-strafford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-hampshire","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJTSK0AMAVYF9QD9GXBAR"},{"id":"gdst_01GW2HJV6SKH45337NJT8VKXX0","tsKey":"us-new-hampshire-sullivan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-hampshire","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJTSK0AMAVYF9QD9GXBAR"},{"id":"gdst_01GW2HJVRYTB7WHD57CCCKCCWV","tsKey":"us-new-jersey-atlantic-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-jersey","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6"},{"id":"gdst_01GW2HJVRXNY5TTK2S6CRSAM4Q","tsKey":"us-new-jersey-bergen-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-jersey","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6"},{"id":"gdst_01GW2HJVRYMA2JG78WW1RDPKAB","tsKey":"us-new-jersey-burlington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-jersey","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6"},{"id":"gdst_01GW2HJVRX7JYXYRP9M854JH38","tsKey":"us-new-jersey-camden-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-jersey","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6"},{"id":"gdst_01GW2HJVRX53RBQHSVDDQBRJ09","tsKey":"us-new-jersey-cape-may-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-jersey","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6"},{"id":"gdst_01GW2HJVRYD6H5R1P6G4V9Z30T","tsKey":"us-new-jersey-cumberland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-jersey","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6"},{"id":"gdst_01GW2HJVRXZ4DRHEJV18C97WVQ","tsKey":"us-new-jersey-essex-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-jersey","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6"},{"id":"gdst_01GW2HJVRXBE5EW3V1GA90RKWP","tsKey":"us-new-jersey-gloucester-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-jersey","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6"},{"id":"gdst_01GW2HJVRXBX55CRCKVEW8Y1C4","tsKey":"us-new-jersey-hudson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-jersey","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6"},{"id":"gdst_01GW2HJVRXFJKV1172H8WD61QY","tsKey":"us-new-jersey-hunterdon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-jersey","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6"},{"id":"gdst_01GW2HJVRXWKX7PSY69ZJ0251S","tsKey":"us-new-jersey-mercer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-jersey","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6"},{"id":"gdst_01GW2HJVRY9J0HY0XBME8K521Q","tsKey":"us-new-jersey-middlesex-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-jersey","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6"},{"id":"gdst_01GW2HJVRYYT1Z93BW682FWV3V","tsKey":"us-new-jersey-monmouth-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-jersey","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6"},{"id":"gdst_01GW2HJVRYNHRGMNQFFYPGHDRT","tsKey":"us-new-jersey-morris-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-jersey","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6"},{"id":"gdst_01GW2HJVRX6SD2TYF4MAXN2YVS","tsKey":"us-new-jersey-ocean-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-jersey","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6"},{"id":"gdst_01GW2HJVRX12VEAD153BGSVNG3","tsKey":"us-new-jersey-passaic-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-jersey","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6"},{"id":"gdst_01GW2HJVRY3234JG0YQTHVMAT4","tsKey":"us-new-jersey-salem-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-jersey","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6"},{"id":"gdst_01GW2HJVRYFY6Z326D7WCT6YZP","tsKey":"us-new-jersey-somerset-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-jersey","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6"},{"id":"gdst_01GW2HJVRYH1FSW31NSBF9FB4P","tsKey":"us-new-jersey-sussex-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-jersey","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6"},{"id":"gdst_01GW2HJVRYF4M9Z5R21S88YZRM","tsKey":"us-new-jersey-union-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-jersey","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6"},{"id":"gdst_01GW2HJVRYRQPEHRYGDSG5614N","tsKey":"us-new-jersey-warren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-jersey","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6"},{"id":"gdst_01GW2HJX2SFF538DAKAG9EWBSJ","tsKey":"us-new-mexico-bernalillo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-mexico","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY"},{"id":"gdst_01GW2HJX2VMKC1D3241GD5N371","tsKey":"us-new-mexico-catron-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-mexico","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY"},{"id":"gdst_01GW2HJX2V2E1H4BC16X8E16MT","tsKey":"us-new-mexico-chaves-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-mexico","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY"},{"id":"gdst_01GW2HJX2SXX8EDJGTAMQVN67A","tsKey":"us-new-mexico-cibola-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-mexico","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY"},{"id":"gdst_01GW2HJX2S3N15E6JKQVDG20QF","tsKey":"us-new-mexico-colfax-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-mexico","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY"},{"id":"gdst_01GW2HJX2VRW8MM7KVZQFB95H8","tsKey":"us-new-mexico-curry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-mexico","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY"},{"id":"gdst_01GW2HJX2V1KHWD2QAQQ10RKP3","tsKey":"us-new-mexico-de-baca-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-mexico","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY"},{"id":"gdst_01GW2HJX2TN8CZZP7TA9046YEP","tsKey":"us-new-mexico-dona-ana-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-mexico","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY"},{"id":"gdst_01GW2HJX2SBXSPH7VXXTTMNAFM","tsKey":"us-new-mexico-eddy-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-mexico","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY"},{"id":"gdst_01GW2HJX2TW8MGAE87HMQ44JW3","tsKey":"us-new-mexico-grant-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-mexico","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY"},{"id":"gdst_01GW2HJX2TZ0C3SQBWVVN6KA04","tsKey":"us-new-mexico-guadalupe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-mexico","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY"},{"id":"gdst_01GW2HJX2TW151ARYGNE1CA70Z","tsKey":"us-new-mexico-harding-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-mexico","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY"},{"id":"gdst_01GW2HJX2VNE1D7Y3VXA041JZZ","tsKey":"us-new-mexico-hidalgo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-mexico","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY"},{"id":"gdst_01GW2HJX2TYV4SMS5VAY783BGX","tsKey":"us-new-mexico-lea-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-mexico","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY"},{"id":"gdst_01GW2HJX2SXYBPV1JT56PZ9WDA","tsKey":"us-new-mexico-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-mexico","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY"},{"id":"gdst_01GW2HJX2SPKCXNKHKPVHCASYB","tsKey":"us-new-mexico-los-alamos-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-mexico","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY"},{"id":"gdst_01GW2HJX2VH01NWX2VN8ENMC2A","tsKey":"us-new-mexico-luna-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-mexico","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY"},{"id":"gdst_01GW2HJX2V6PT6ZDRF61EAX6S9","tsKey":"us-new-mexico-mckinley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-mexico","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY"},{"id":"gdst_01GW2HJX2TDBV4VD6A463JXGR3","tsKey":"us-new-mexico-mora-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-mexico","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY"},{"id":"gdst_01GW2HJX2V6C2V82WY4PBG68K7","tsKey":"us-new-mexico-otero-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-mexico","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY"},{"id":"gdst_01GW2HJX2TWD0NHRA2G0K6JJM8","tsKey":"us-new-mexico-quay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-mexico","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY"},{"id":"gdst_01GW2HJX2T0DB1FSJ1ED9DB0SY","tsKey":"us-new-mexico-rio-arriba-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-mexico","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY"},{"id":"gdst_01GW2HJX2TXNMGSWC4RTPEB8EJ","tsKey":"us-new-mexico-roosevelt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-mexico","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY"},{"id":"gdst_01GW2HJX2TV3058GBBBF9QDH0S","tsKey":"us-new-mexico-sandoval-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-mexico","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY"},{"id":"gdst_01GW2HJX2SXGCTAPSRBQX5SXFD","tsKey":"us-new-mexico-san-juan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-mexico","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY"},{"id":"gdst_01GW2HJX2V3ABHJM7N1FV70HGY","tsKey":"us-new-mexico-san-miguel-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-mexico","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY"},{"id":"gdst_01GW2HJX2TTCR3F1J1HQBK3A66","tsKey":"us-new-mexico-santa-fe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-mexico","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY"},{"id":"gdst_01GW2HJX2VNXYQR9G4QTT9TQNM","tsKey":"us-new-mexico-sierra-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-mexico","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY"},{"id":"gdst_01GW2HJX2S8TVW592CZ9Z8FKD4","tsKey":"us-new-mexico-socorro-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-mexico","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY"},{"id":"gdst_01GW2HJX2V2CZPW44YCE05JCCB","tsKey":"us-new-mexico-taos-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-mexico","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY"},{"id":"gdst_01GW2HJX2T1XVMS3SSFH6F9YC6","tsKey":"us-new-mexico-torrance-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-mexico","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY"},{"id":"gdst_01GW2HJX2VX09E72AXRKERSSE2","tsKey":"us-new-mexico-union-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-mexico","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY"},{"id":"gdst_01GW2HJX2T1SAF7MS5X62CQPZH","tsKey":"us-new-mexico-valencia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-mexico","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY"},{"id":"gdst_01GW2HJXTP34DS5JYTVKP38TY3","tsKey":"us-new-york-albany-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTK3CF1HS75VYHB66EP","tsKey":"us-new-york-allegany-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTPQZYD4ERJH8AM5D48","tsKey":"us-new-york-bronx-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTMXZFKTCSEXS55MZRT","tsKey":"us-new-york-broome-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTQ06BSGBPRETYFXWJ4","tsKey":"us-new-york-cattaraugus-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTMXG7HVT6S83BKV6D5","tsKey":"us-new-york-cayuga-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTMX1QXP49MZ3GPEXGE","tsKey":"us-new-york-chautauqua-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTQ20FHJQSAPDZRFDN2","tsKey":"us-new-york-chemung-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTPYC4YVEPKYJYHV967","tsKey":"us-new-york-chenango-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTMXBZXHPHFHKEJHTSP","tsKey":"us-new-york-clinton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTK58N83XKP5ABZFT5E","tsKey":"us-new-york-columbia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTQ4GV4EATNYV5NX0A8","tsKey":"us-new-york-cortland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTQ20XM6EABJHE6BW7V","tsKey":"us-new-york-delaware-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTMB93RRW7EYRETMY9G","tsKey":"us-new-york-dutchess-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTQMVYAN60W19TM29QH","tsKey":"us-new-york-erie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTPCF6GGHB4M1FDN4MN","tsKey":"us-new-york-essex-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTNSE3S4RSP4Q3R74ZK","tsKey":"us-new-york-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTNA5SMMMJVVJ2E90M9","tsKey":"us-new-york-fulton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTMCMASSP055XZY6BPD","tsKey":"us-new-york-genesee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTNCS765ECSE92J7N4B","tsKey":"us-new-york-greene-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTN4X0HRRJRWPDSTNXT","tsKey":"us-new-york-hamilton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTMZYV1P19JH77XVR5V","tsKey":"us-new-york-herkimer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTNJPH6H0KSFQ0JNJYD","tsKey":"us-new-york-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTQW8F7BJ3YZHFWZV9S","tsKey":"us-new-york-kings-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTPVC3TMCNZNXQX5ZPB","tsKey":"us-new-york-lewis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTNXTB29VZW3V8E025N","tsKey":"us-new-york-livingston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTQ5HY7Y85T4SRFR358","tsKey":"us-new-york-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTNBR3Q7JFHEC8R96PY","tsKey":"us-new-york-monroe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTMJSYTR7PW4ZCSZQ8S","tsKey":"us-new-york-montgomery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTNR5PQXWNADG3H8W64","tsKey":"us-new-york-nassau-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTQAVJ2A5N9EEGNDG2J","tsKey":"us-new-york-new-york-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTNZYFVBCR6J3E77GF1","tsKey":"us-new-york-niagara-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTP143ZY1M10A8TTYXM","tsKey":"us-new-york-oneida-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTQEVJMWNK1NJPQ53Q8","tsKey":"us-new-york-onondaga-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTM17QW1603KMAZ27XS","tsKey":"us-new-york-ontario-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTNZQBEX6654NFVW67B","tsKey":"us-new-york-orange-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTN6CK455AVKRF7A2Q7","tsKey":"us-new-york-orleans-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTN2NRYMZSR377YNHYS","tsKey":"us-new-york-oswego-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTPJ5SWFSY696YHS1YC","tsKey":"us-new-york-otsego-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTQSATT6JKVN1Y0D4W6","tsKey":"us-new-york-putnam-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTN5EK731V87N3AA1J8","tsKey":"us-new-york-queens-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTMKR9FZFRGAAJ4GAXQ","tsKey":"us-new-york-rensselaer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTQFSSXJ074CFFG6WE5","tsKey":"us-new-york-richmond-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTN4SRXST97GQVPTP5G","tsKey":"us-new-york-rockland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTP1SVH7WX67M31GGB6","tsKey":"us-new-york-saratoga-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTPV40SDNBP83R77M8E","tsKey":"us-new-york-schenectady-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTMRJYX42FTDJB81TKJ","tsKey":"us-new-york-schoharie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTQK6CSGEQMCRHTTE4P","tsKey":"us-new-york-schuyler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTPDT9CMYS8FC3HKC31","tsKey":"us-new-york-seneca-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTPPNVWZKA259RGPEP3","tsKey":"us-new-york-steuben-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTPNRQ917053N9PBJEY","tsKey":"us-new-york-st-lawrence-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTPK5W9SQQEH9AV4BEN","tsKey":"us-new-york-suffolk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTQNRRGMDM4TSX3S1XA","tsKey":"us-new-york-sullivan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTPBGAY1SQBB77B5A91","tsKey":"us-new-york-tioga-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTM8KQ6Q0XHPGA8RHQK","tsKey":"us-new-york-tompkins-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTQM6QAT9VMBPEV6G38","tsKey":"us-new-york-ulster-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTP5X654NEJ42AMQCWS","tsKey":"us-new-york-warren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTQJWN8EQE4X9AXRPDF","tsKey":"us-new-york-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTPYK7N7T1CCDP5P5K5","tsKey":"us-new-york-wayne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTQT4SZZ4H63A2AW5D5","tsKey":"us-new-york-westchester-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTM05F649RTGH0T6MC4","tsKey":"us-new-york-wyoming-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJXTM4YH8M3VVF6GQ4KJ0","tsKey":"us-new-york-yates-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-new-york","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A"},{"id":"gdst_01GW2HJYWWGG4KBXHRZ20W0GGK","tsKey":"us-north-carolina-alamance-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWYTR9CFJ5RJD6V34XA","tsKey":"us-north-carolina-alexander-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWW9EC1AHBG0W65SDK7","tsKey":"us-north-carolina-alleghany-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWY554HX33T79JTTT8Z","tsKey":"us-north-carolina-anson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWZD2GAR59K5DW78E87","tsKey":"us-north-carolina-ashe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWXRHWRR4NMEXH3PTF7","tsKey":"us-north-carolina-avery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWX82GTQSK81FFSPXXW","tsKey":"us-north-carolina-beaufort-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWZBPAFXJSZNQ1YMSM8","tsKey":"us-north-carolina-bertie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWWNBKRR42MNTDKCJ2H","tsKey":"us-north-carolina-bladen-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWXJD4B5D9KP6C6WX03","tsKey":"us-north-carolina-brunswick-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWWTK6R12RP8Z1XYQQR","tsKey":"us-north-carolina-buncombe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWZVKXEWSKFVVWQ3QVS","tsKey":"us-north-carolina-burke-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWXWK97QRRD3P1Z1386","tsKey":"us-north-carolina-cabarrus-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWWNKYSPNY2MG989EKM","tsKey":"us-north-carolina-caldwell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWZHRW8J3AMYSB4H7V7","tsKey":"us-north-carolina-camden-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWZTZRH5MW4P026JF2Z","tsKey":"us-north-carolina-carteret-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWZ9FSMDBE5EVK2404H","tsKey":"us-north-carolina-caswell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWX436ZRQBG6R82YX2T","tsKey":"us-north-carolina-catawba-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWX4RGC53TH13C590D4","tsKey":"us-north-carolina-chatham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWX6TCH83CDH2KRNK06","tsKey":"us-north-carolina-cherokee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWXG6YKY7ND6QAKDQQ3","tsKey":"us-north-carolina-chowan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYX0YNHB4PGDDYYXA4SW","tsKey":"us-north-carolina-clay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWZC2R8DMY885ZQW1W0","tsKey":"us-north-carolina-cleveland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWXVDVR7S7W2F5R2XES","tsKey":"us-north-carolina-columbus-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYX0Z1SA7ZTK4RRVJFAE","tsKey":"us-north-carolina-craven-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYX0614PSXCEXAZ750KE","tsKey":"us-north-carolina-cumberland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWZTD7NGRW2D7WF9N7X","tsKey":"us-north-carolina-currituck-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWW3820KT9FGY712FPR","tsKey":"us-north-carolina-dare-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWW0ZRP9Z9QNF78X0W1","tsKey":"us-north-carolina-davidson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWX1HCTP526AX5MKD19","tsKey":"us-north-carolina-davie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWXGD137YR230QP1FCY","tsKey":"us-north-carolina-duplin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWZW90EZZZ1YVK8MCMG","tsKey":"us-north-carolina-durham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWXV99HZJRHB9RFYD7H","tsKey":"us-north-carolina-edgecombe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWWJBYBG773454FPMGF","tsKey":"us-north-carolina-forsyth-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWXCNEKBY62ESFJ7PWW","tsKey":"us-north-carolina-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWX106N0RKXXETCMV0G","tsKey":"us-north-carolina-gaston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWZ84E0VMZEYT1FMH05","tsKey":"us-north-carolina-gates-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWXRGJVTFNQ288M99NY","tsKey":"us-north-carolina-graham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWX3TBQCR7E4PDKRAXJ","tsKey":"us-north-carolina-granville-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWZJHA5RWHW8NYHTCXC","tsKey":"us-north-carolina-greene-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWW6M9S7WKJ115G39SA","tsKey":"us-north-carolina-guilford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWXES0EKXAYVX4VG4Z8","tsKey":"us-north-carolina-halifax-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWZ48DM0FYE3MHNWHM5","tsKey":"us-north-carolina-harnett-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWYRJ86FXQTNSDYSXA7","tsKey":"us-north-carolina-haywood-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWZCD4PKF3349CZXFJQ","tsKey":"us-north-carolina-henderson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWW4Q0NEKJTTVZCP1AZ","tsKey":"us-north-carolina-hertford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYX0HV2A946FGKFNPEDW","tsKey":"us-north-carolina-hoke-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWY17W1S8EC1HRRG110","tsKey":"us-north-carolina-hyde-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWZ18CQJ8QQS4WA4S1J","tsKey":"us-north-carolina-iredell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWYEHJWEED9F4MEZ95F","tsKey":"us-north-carolina-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYX0GQQKP9VQ3M6PYZGH","tsKey":"us-north-carolina-johnston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWWTKNH3VPEEZV9FPF2","tsKey":"us-north-carolina-jones-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWYNSYNBX85550Y7JYE","tsKey":"us-north-carolina-lee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYX04TNJS2N5JRHJBJ35","tsKey":"us-north-carolina-lenoir-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWZ0039N42WV1MAQ21V","tsKey":"us-north-carolina-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYX0DPH6WTXCA9Z02FTX","tsKey":"us-north-carolina-macon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWYW8ES0T6GFFCK3K1H","tsKey":"us-north-carolina-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWW4E0JES1NFM5A9CGG","tsKey":"us-north-carolina-martin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWY8N1CW807Q93RVCV9","tsKey":"us-north-carolina-mcdowell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYX00DZ6HG3QW6GWKYN6","tsKey":"us-north-carolina-mecklenburg-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWYZ3SX98BHHMG3Z170","tsKey":"us-north-carolina-mitchell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWZ8Q8DZTR0CNYCTKPG","tsKey":"us-north-carolina-montgomery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYX06WPNRA0W1YKQBJBY","tsKey":"us-north-carolina-moore-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWWVJZE0WQ5QEX5Q5GK","tsKey":"us-north-carolina-nash-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWY3VEZBCAWKMJFE7RN","tsKey":"us-north-carolina-new-hanover-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYX05QHQMNV6MBHZ4MG5","tsKey":"us-north-carolina-northampton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWZZVPY70G4P4AT5BN5","tsKey":"us-north-carolina-onslow-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWYRG6T96AJP4QCMABX","tsKey":"us-north-carolina-orange-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYX0T6SQZT8K0D6XEEE8","tsKey":"us-north-carolina-pamlico-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWYK7533KK5BQB235Y8","tsKey":"us-north-carolina-pasquotank-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWWPDXJ77414ZRET2KA","tsKey":"us-north-carolina-pender-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWYK9H5GTXQPNBME6MY","tsKey":"us-north-carolina-perquimans-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWZD0RRGEJESDSB4CE9","tsKey":"us-north-carolina-person-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWY5RGFQESFXJQDE04J","tsKey":"us-north-carolina-pitt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYX0YV1E9HHRA9RA4EP1","tsKey":"us-north-carolina-polk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWWQEF68YEZG710JJZ8","tsKey":"us-north-carolina-randolph-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWYWFHQ9FXJZ4MW3PHZ","tsKey":"us-north-carolina-richmond-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYX0962J6PVAWPQ99JQ2","tsKey":"us-north-carolina-robeson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWZDAZWJ7HK4N6V6TH1","tsKey":"us-north-carolina-rockingham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWYKC6BEY2HXG4QRFGD","tsKey":"us-north-carolina-rowan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYX0PY3D8242EQTX19CP","tsKey":"us-north-carolina-rutherford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWYP2S0Q3SB4M1Q9CMK","tsKey":"us-north-carolina-sampson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWWHZX23DC0EMDN19YK","tsKey":"us-north-carolina-scotland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWWAAGHPBYQSE26F8GF","tsKey":"us-north-carolina-stanly-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWYA7AVVNBVV5YXACBK","tsKey":"us-north-carolina-stokes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYX0HFMQT57GMWJKQKMM","tsKey":"us-north-carolina-surry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWZYZYV8P4K0Z29RJQ4","tsKey":"us-north-carolina-swain-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWYZEDEA8EBCE1H2NHW","tsKey":"us-north-carolina-transylvania-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYX0Q8JH2WMBKE6ZCA54","tsKey":"us-north-carolina-tyrrell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWZCABZ5YBEMQ6Y6M8P","tsKey":"us-north-carolina-union-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWWRW37J7M45VZN3P24","tsKey":"us-north-carolina-vance-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWYBYSS4NFZE6C8R5NK","tsKey":"us-north-carolina-wake-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYX0C8G8NWPAV928A7Y6","tsKey":"us-north-carolina-warren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWYVW8ZBFMT7MEP3EP0","tsKey":"us-north-carolina-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYX0ER50MJFMY973Y8DH","tsKey":"us-north-carolina-watauga-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWW5YC2V2FARFTXH7HV","tsKey":"us-north-carolina-wayne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWXXZD5N0NVAXF0MPKT","tsKey":"us-north-carolina-wilkes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWXQPMKSKNF4MEE7KBW","tsKey":"us-north-carolina-wilson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWWCNGW8WQSA9XXVKXV","tsKey":"us-north-carolina-yadkin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HJYWXWBN2G06Y0GRWCB24","tsKey":"us-north-carolina-yancey-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459"},{"id":"gdst_01GW2HK05NZ2KDN94YXV5RRFA7","tsKey":"us-north-dakota-adams-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05M2P5H417KEY55GQ90","tsKey":"us-north-dakota-barnes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05KY6Z8C6AM14K9KEQS","tsKey":"us-north-dakota-benson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05JVHVTSJSWKZWSKK3E","tsKey":"us-north-dakota-billings-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05KF00HTS6FY654FQ5S","tsKey":"us-north-dakota-bottineau-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05NFY0FX9J6HQCFHPJ6","tsKey":"us-north-dakota-bowman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05MCZGVD0RWKAQSFBQ8","tsKey":"us-north-dakota-burke-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05NV4EZYCSMTDANECR7","tsKey":"us-north-dakota-burleigh-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05K9JF3FEKAQDDBRRKW","tsKey":"us-north-dakota-cass-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05JE05TVDAGFWY45XGA","tsKey":"us-north-dakota-cavalier-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05N7RPTGW84758RJNJN","tsKey":"us-north-dakota-dickey-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05NC65PFV9J2NX18H5M","tsKey":"us-north-dakota-divide-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05MZP5R08P1HRE08D0C","tsKey":"us-north-dakota-dunn-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05K3YTA4T2QCYRFC1ZB","tsKey":"us-north-dakota-eddy-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05KP8XTG6YZWHV23SB9","tsKey":"us-north-dakota-emmons-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05J1RWW2R08YNPXET9C","tsKey":"us-north-dakota-foster-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05NXWVY1ASAJSF6N57F","tsKey":"us-north-dakota-golden-valley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05J0F8QAS1NDKN91PQZ","tsKey":"us-north-dakota-grand-forks-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05KKA74GHY0WW9C91CQ","tsKey":"us-north-dakota-grant-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05KT8R4P4T8M6WF1V1Z","tsKey":"us-north-dakota-griggs-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05M2MM8919JSEQW479N","tsKey":"us-north-dakota-hettinger-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05KTYZ9T7A9P34X060V","tsKey":"us-north-dakota-kidder-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05J96ZTFD9JTTBTMTQR","tsKey":"us-north-dakota-lamoure-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05KE7GCHGG2D8PFVDWN","tsKey":"us-north-dakota-logan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05NWT1CXPHRVTG0EEKZ","tsKey":"us-north-dakota-mchenry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05NRDBDRJ8TCZHCVZJP","tsKey":"us-north-dakota-mcintosh-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05KY298ZN5BNQDMM8C0","tsKey":"us-north-dakota-mckenzie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05MV1ZZPTV0DD5VMFYG","tsKey":"us-north-dakota-mclean-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05N3GW9D1A6YH2WTB28","tsKey":"us-north-dakota-mercer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05KK1MWTZPCF9XAGQX0","tsKey":"us-north-dakota-morton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05JXXT8D8YHX9NAG0PP","tsKey":"us-north-dakota-mountrail-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05KETJFN51BG63H6M38","tsKey":"us-north-dakota-nelson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05M4J4KPH1G4RR3DE85","tsKey":"us-north-dakota-oliver-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05MFBY13W5AET46JR4J","tsKey":"us-north-dakota-pembina-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05MDJSB7MFWJ5GFGB71","tsKey":"us-north-dakota-pierce-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05M9HN4MZ80KNKVDMTE","tsKey":"us-north-dakota-ramsey-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05J02AF5K8PW3C6PBXV","tsKey":"us-north-dakota-ransom-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05MNKSQGXW73N06TTJD","tsKey":"us-north-dakota-renville-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05NT4R3FACBS0E2TY31","tsKey":"us-north-dakota-richland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05JECMRMH5YQ579PQ71","tsKey":"us-north-dakota-rolette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05MD9BSH82G56M2VT65","tsKey":"us-north-dakota-sargent-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05NN6QAPJG2QTAEK1AH","tsKey":"us-north-dakota-sheridan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05NF64PVPHERKHEXJ4Y","tsKey":"us-north-dakota-sioux-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05NFR0DJGSP2SAG4W75","tsKey":"us-north-dakota-slope-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05MEXGXWMHTH0J6G4GC","tsKey":"us-north-dakota-stark-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05KRQRAQQXATKXYC4XE","tsKey":"us-north-dakota-steele-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05MYW20JAYC1S6MB6BC","tsKey":"us-north-dakota-stutsman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05NV57Z34HZ21KAMYW9","tsKey":"us-north-dakota-towner-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05M454SG0D3JRNB7Q4T","tsKey":"us-north-dakota-traill-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05NTBN9M70BBVW9QJGW","tsKey":"us-north-dakota-walsh-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05MA0H0RMMFKH29BTV8","tsKey":"us-north-dakota-ward-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05KN85J5163HG2FRD5S","tsKey":"us-north-dakota-wells-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK05NJVNB02121FQNQTYV","tsKey":"us-north-dakota-williams-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-north-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K"},{"id":"gdst_01GW2HK14ZH045GFMXHPWE1NHJ","tsKey":"us-ohio-adams-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14YR8PH8DWVW08HJ2HK","tsKey":"us-ohio-allen-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14ZNXTDM0PTK9Y302RZ","tsKey":"us-ohio-ashland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK152GPEGWBK059WD9TWA","tsKey":"us-ohio-ashtabula-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK150QP0V510FCCF0GQR6","tsKey":"us-ohio-athens-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14ZC3MMPKKXCR05TYJP","tsKey":"us-ohio-auglaize-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14Z3674EV8EF400GQW4","tsKey":"us-ohio-belmont-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14YNS1DHV5SVXYG1591","tsKey":"us-ohio-brown-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14Z0RJMDGT5Q15ZHASX","tsKey":"us-ohio-butler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK1506ANKWC9HDD46KP99","tsKey":"us-ohio-carroll-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK151T6PTYM3G9ZW87BZ8","tsKey":"us-ohio-champaign-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK150D1Q6JYHWM7H9BEYT","tsKey":"us-ohio-clark-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK1506K2YQHZJZ64PJA7Q","tsKey":"us-ohio-clermont-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14YM8RRWVTBDA5KA5VF","tsKey":"us-ohio-clinton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK15051RYHC4FHJ1F6VSJ","tsKey":"us-ohio-columbiana-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK151APPM06YZT28EYZQ8","tsKey":"us-ohio-coshocton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK15038W8ZBHN587V97QV","tsKey":"us-ohio-crawford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK152XDM8AG7ZRF5RAD6B","tsKey":"us-ohio-cuyahoga-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK150HYB559QNY96828E8","tsKey":"us-ohio-darke-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14YVMEHSRCEGQ5KHV8Y","tsKey":"us-ohio-defiance-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK150NGN3R9J31E6GJSR6","tsKey":"us-ohio-delaware-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK150M4BYPHDKDDTDZMJK","tsKey":"us-ohio-erie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK15117HJQG6YAG87AGWH","tsKey":"us-ohio-fairfield-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14YXPKYKRA8KNFWHMQR","tsKey":"us-ohio-fayette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK150N36HW12FJDC5NPYE","tsKey":"us-ohio-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK152NCXDTYQVP97W5013","tsKey":"us-ohio-fulton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK1520AD6KV6T0VQ95QPZ","tsKey":"us-ohio-gallia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14XKJFBYKA7AZECBK7K","tsKey":"us-ohio-geauga-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK152VGD0YKJCFNNG9HY1","tsKey":"us-ohio-greene-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK151EXR1MGTTQCWE35ZQ","tsKey":"us-ohio-guernsey-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK150VJEW3F577J7MM59G","tsKey":"us-ohio-hamilton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14X0NPQXQ852D4CF522","tsKey":"us-ohio-hancock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14XSXRZX1GA0VXBF6W0","tsKey":"us-ohio-hardin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK152E4CHFYNCR0E5RBRF","tsKey":"us-ohio-harrison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK151WP8BFAETP5JT512X","tsKey":"us-ohio-henry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK150743Y7318RM9NVZFB","tsKey":"us-ohio-highland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK152Q3PTMKTST7PY2QMY","tsKey":"us-ohio-hocking-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14X8S8YMAMGC4ATF71H","tsKey":"us-ohio-holmes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK150B4DSKQNAX8C8HH7N","tsKey":"us-ohio-huron-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK15293G2JH8HA0N5P7HA","tsKey":"us-ohio-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK150CAPJ8YJV58QSZWM4","tsKey":"us-ohio-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK1516P99HNBKP561W5PA","tsKey":"us-ohio-knox-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK151RM6FYA08Q3BVCJ2W","tsKey":"us-ohio-lake-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK150QF4Y3EE35BYA6JQV","tsKey":"us-ohio-lawrence-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14XQ0SEZ0MF0B2SFXBR","tsKey":"us-ohio-licking-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK151D8F5JJRT3DDRRWEX","tsKey":"us-ohio-logan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK1503FEJ5BJH2ZTT757E","tsKey":"us-ohio-lorain-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK1516VEZWSY5SCQTZBQX","tsKey":"us-ohio-lucas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14XXW7ZBG1RRP0QRKG3","tsKey":"us-ohio-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK150K5BYZTRWG531C9XK","tsKey":"us-ohio-mahoning-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK1501TJF1EHXGA5D8Y6A","tsKey":"us-ohio-marion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK151RPY4R3AY27H7FTS7","tsKey":"us-ohio-medina-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14YR3NR91QTT5J660XC","tsKey":"us-ohio-meigs-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14YC0H11R99SCCPE8KX","tsKey":"us-ohio-mercer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14X27WRR0DRX5QN7307","tsKey":"us-ohio-miami-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK151QG689HHZE76VAE86","tsKey":"us-ohio-monroe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK1519V0WM5N4P0Y9JNG4","tsKey":"us-ohio-montgomery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK151E1TWQY63WBRAPSK7","tsKey":"us-ohio-morgan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14Y1YWCDAPK5KE5KA6B","tsKey":"us-ohio-morrow-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14YHTXQP78PTFMRWV7Y","tsKey":"us-ohio-muskingum-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14XGQBV9S9B3M3VE9WB","tsKey":"us-ohio-noble-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK1523R7W9HPSXTN9DEHC","tsKey":"us-ohio-ottawa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14YZG5GV1WPPE1MZ43T","tsKey":"us-ohio-paulding-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK151NK71Y9QG50M4WX7E","tsKey":"us-ohio-perry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14YXMJQW3RDK1H3WJ5Q","tsKey":"us-ohio-pickaway-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14XQD1Z9S2G1R0J84WX","tsKey":"us-ohio-pike-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14YST2GS2CSHDDM7VSG","tsKey":"us-ohio-portage-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14ZY9EE6S2ZSDX22CJG","tsKey":"us-ohio-preble-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK151E9FMGRXPVAMJPQW9","tsKey":"us-ohio-putnam-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14Z7ZQ6YN8R18SGFQ58","tsKey":"us-ohio-richland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14Z3VGYB6CKHW9FF3FR","tsKey":"us-ohio-ross-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14X1FRWYC64X5MZ64EH","tsKey":"us-ohio-sandusky-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK152RSFWA3GSAHAMNR9T","tsKey":"us-ohio-scioto-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14XJHTE9T8KB9XR0P77","tsKey":"us-ohio-seneca-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14ZC0NRFP3HDM12323F","tsKey":"us-ohio-shelby-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14Z6P7V92FSP9WXS7FV","tsKey":"us-ohio-stark-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK151CXPK24WM3ATRHJB8","tsKey":"us-ohio-summit-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK152SG7QEYRCTKPJHN9D","tsKey":"us-ohio-trumbull-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14ZY89XCWEAWPB0EK1F","tsKey":"us-ohio-tuscarawas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14X8YE8BHPYQ9AM5EM4","tsKey":"us-ohio-union-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14ZJV3K0ADJP6VVM4YC","tsKey":"us-ohio-van-wert-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK152A73CZTV8G25WQ863","tsKey":"us-ohio-vinton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK151D5350355E7S1HCPM","tsKey":"us-ohio-warren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14ZP3F2C1RDMGW83Q55","tsKey":"us-ohio-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14YAY1WF7NT1CTFT3S1","tsKey":"us-ohio-wayne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14Z996R5VDDZ8SMEV54","tsKey":"us-ohio-williams-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14YQC9CV3DN3SYN7WPF","tsKey":"us-ohio-wood-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK14ZHKGBZQ62S4Q3QMNN","tsKey":"us-ohio-wyandot-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-ohio","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW"},{"id":"gdst_01GW2HK2DY7EQAPYARTVNA05M3","tsKey":"us-oklahoma-adair-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DTGA2BCJNKRX1V45T3","tsKey":"us-oklahoma-alfalfa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DXKHY6HYNA775BFDVV","tsKey":"us-oklahoma-atoka-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DY5M972KANSEXCTAKQ","tsKey":"us-oklahoma-beaver-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DS85Z94FH0H7Q14DCW","tsKey":"us-oklahoma-beckham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DTV4XD15G87YM6KGGC","tsKey":"us-oklahoma-blaine-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DTAHC2A3ZKY1TRRCP7","tsKey":"us-oklahoma-bryan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DXCG2XG2V49F7M76BP","tsKey":"us-oklahoma-caddo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DT2TFMAN0JWXRTZ9MA","tsKey":"us-oklahoma-canadian-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DSEFQQDY8HVP24CXDA","tsKey":"us-oklahoma-carter-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DYXPSHPTD69P181AM5","tsKey":"us-oklahoma-cherokee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DY0QZE8MEXZ08205MW","tsKey":"us-oklahoma-choctaw-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DVMXZ1DV1WK2R8N6FR","tsKey":"us-oklahoma-cimarron-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DXSQF9ZK31DJWSB2NP","tsKey":"us-oklahoma-cleveland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DVJ2QRXQ4RCX0EF6F4","tsKey":"us-oklahoma-coal-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DSS24XFEWEA7T7AR0N","tsKey":"us-oklahoma-comanche-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DYKSFN70R3F5AP05JA","tsKey":"us-oklahoma-cotton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DV24DCDERPGS4NX6B3","tsKey":"us-oklahoma-craig-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DWTQQE5NVC8GEBGF5D","tsKey":"us-oklahoma-creek-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DVZW9B96TZM3J50JCK","tsKey":"us-oklahoma-custer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DYJVRZTC7Y7R5HY668","tsKey":"us-oklahoma-delaware-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DSAYSH09Z6ZGCJ3SCN","tsKey":"us-oklahoma-dewey-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DVVVPFF9G5G7G59KF2","tsKey":"us-oklahoma-ellis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DWZZ81C87KYPNCF87Z","tsKey":"us-oklahoma-garfield-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DV217FG5QQTKFPF5MH","tsKey":"us-oklahoma-garvin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DYFS6QGYJQ1H1VEGN1","tsKey":"us-oklahoma-grady-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DSZRAKCEH1X47KMGX4","tsKey":"us-oklahoma-grant-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DVC9GDACZ12AJ7X9X4","tsKey":"us-oklahoma-greer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DWJBM3WGRY9S6B945F","tsKey":"us-oklahoma-harmon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DSWG4VTNX7NVMJW8A8","tsKey":"us-oklahoma-harper-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DWEVX78ZBV5TMKF0XN","tsKey":"us-oklahoma-haskell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DSH6YVSGN8J8M3TQ8P","tsKey":"us-oklahoma-hughes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DVVMJTJMHN62VXMESG","tsKey":"us-oklahoma-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DXNNPS2WP0DBGB2JGX","tsKey":"us-oklahoma-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DWDX2QQXA3JRYV52N3","tsKey":"us-oklahoma-johnston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DVCCB8NTDNVK0DWQ7Q","tsKey":"us-oklahoma-kay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DTTH26NZW5QSGQWAX0","tsKey":"us-oklahoma-kingfisher-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DW8MP6Q3XZY2CN6YE3","tsKey":"us-oklahoma-kiowa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DXZG34J3R3D5ATZ4A1","tsKey":"us-oklahoma-latimer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DX86W6Y6HZ8ZDRAXJV","tsKey":"us-oklahoma-leflore-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DTAN4WVE2A7J8SBSNF","tsKey":"us-oklahoma-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DVS07MWRT0CCF845GW","tsKey":"us-oklahoma-logan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DVAPH39K8QBHA4MP25","tsKey":"us-oklahoma-love-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DWJ1Z1FC86WS6FP27B","tsKey":"us-oklahoma-major-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DXVZ9PM3W3XFKBCWQW","tsKey":"us-oklahoma-marshall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DTQ0EWHHXSGFDP4MC4","tsKey":"us-oklahoma-mayes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DT77NG88MBHDV7C76A","tsKey":"us-oklahoma-mcclain-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DXJSWQYJH0BH6S21C0","tsKey":"us-oklahoma-mccurtain-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DVHYPYNXS9RFDNEN17","tsKey":"us-oklahoma-mcintosh-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DVRCQW6ET22ECVKBPB","tsKey":"us-oklahoma-murray-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DVR92ENRW75QDD3H1B","tsKey":"us-oklahoma-muskogee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DXM29J1DJFKDXDKC7S","tsKey":"us-oklahoma-noble-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DXWP6PTE1ADKMREA85","tsKey":"us-oklahoma-nowata-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DWWW2A35XBCFZ22J9E","tsKey":"us-oklahoma-okfuskee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DTVMPKTV0M245SG0D0","tsKey":"us-oklahoma-oklahoma-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DWSEYESXMR4PHGABD3","tsKey":"us-oklahoma-okmulgee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DXQKGXYP3W3Z1362A4","tsKey":"us-oklahoma-osage-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DXJTRPATMQBPTKDHY8","tsKey":"us-oklahoma-ottawa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DWK5NJNZ0XYYB197JF","tsKey":"us-oklahoma-pawnee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DWMNQ5XRT81Z1NWPZ1","tsKey":"us-oklahoma-payne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DXX5QAPFJD8FF60RDN","tsKey":"us-oklahoma-pittsburg-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DTX144CGF3KJPTBD39","tsKey":"us-oklahoma-pontotoc-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DWNHTS4TXX33CY934W","tsKey":"us-oklahoma-pottawatomie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DTXC3QX20A6TME04X8","tsKey":"us-oklahoma-pushmataha-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DYJYVQ21GC3S8PBRSJ","tsKey":"us-oklahoma-roger-mills-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DWZ6K6GNF4ZQGX9X21","tsKey":"us-oklahoma-rogers-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DXTPDNHJVM4BP03M5J","tsKey":"us-oklahoma-seminole-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DWXG3F5PCXQNN1TB9N","tsKey":"us-oklahoma-sequoyah-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DW2TDHA9FTPTTS7WME","tsKey":"us-oklahoma-stephens-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DXMQPR55YZK0TWPP6R","tsKey":"us-oklahoma-texas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DXKX5DRPQAK4H2V76G","tsKey":"us-oklahoma-tillman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DW11PQBMGN8K2NY37Y","tsKey":"us-oklahoma-tulsa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DW7FHFGJZ3ZRCFVMS2","tsKey":"us-oklahoma-wagoner-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DT9F7P481P7CYWPC9K","tsKey":"us-oklahoma-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DWH6Y47VYAJ7E5FZC9","tsKey":"us-oklahoma-washita-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DXYH3J0SDW67E43XE5","tsKey":"us-oklahoma-woods-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK2DT3RJ5R040YHJFWY67","tsKey":"us-oklahoma-woodward-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oklahoma","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1"},{"id":"gdst_01GW2HK36GC87NKTM45ENNYY8N","tsKey":"us-oregon-baker-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oregon","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE"},{"id":"gdst_01GW2HK36FV666VFGZJZG9AJK1","tsKey":"us-oregon-benton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oregon","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE"},{"id":"gdst_01GW2HK36FG250ZPETC5G5SE86","tsKey":"us-oregon-clackamas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oregon","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE"},{"id":"gdst_01GW2HK36H0A9MHWX9Q9KK3JED","tsKey":"us-oregon-clatsop-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oregon","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE"},{"id":"gdst_01GW2HK36G6BRY7X3DKH62AVXS","tsKey":"us-oregon-columbia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oregon","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE"},{"id":"gdst_01GW2HK36F4HBEBCPW4BXA87JM","tsKey":"us-oregon-coos-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oregon","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE"},{"id":"gdst_01GW2HK36FASQKMFQXFN8S7998","tsKey":"us-oregon-crook-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oregon","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE"},{"id":"gdst_01GW2HK36HH8EEK8S6Y17XZZKC","tsKey":"us-oregon-curry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oregon","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE"},{"id":"gdst_01GW2HK36F4J6X9C53S6CTSVHE","tsKey":"us-oregon-deschutes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oregon","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE"},{"id":"gdst_01GW2HK36HFK9F6SEAYDYKY8DQ","tsKey":"us-oregon-douglas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oregon","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE"},{"id":"gdst_01GW2HK36FY4P73MTQ9RDT6728","tsKey":"us-oregon-gilliam-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oregon","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE"},{"id":"gdst_01GW2HK36G94WQRF7BKRFREDD0","tsKey":"us-oregon-grant-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oregon","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE"},{"id":"gdst_01GW2HK36H5EX83Z7P3EFEGDYA","tsKey":"us-oregon-harney-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oregon","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE"},{"id":"gdst_01GW2HK36F4DTXKN3EKPFJXC1M","tsKey":"us-oregon-hood-river-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oregon","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE"},{"id":"gdst_01GW2HK36FJDDRBJ4YKY81HSBZ","tsKey":"us-oregon-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oregon","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE"},{"id":"gdst_01GW2HK36FA3P76V5N5VYRQTPK","tsKey":"us-oregon-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oregon","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE"},{"id":"gdst_01GW2HK36G6BTRSAKJN3035XGC","tsKey":"us-oregon-josephine-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oregon","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE"},{"id":"gdst_01GW2HK36G1MX7K66F7HYEVKPQ","tsKey":"us-oregon-klamath-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oregon","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE"},{"id":"gdst_01GW2HK36F9DK8BJVTSYAVBF5Y","tsKey":"us-oregon-lake-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oregon","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE"},{"id":"gdst_01GW2HK36GJS50NQFW64B6NEQ4","tsKey":"us-oregon-lane-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oregon","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE"},{"id":"gdst_01GW2HK36H4DDG2QJ27QFEFN3W","tsKey":"us-oregon-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oregon","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE"},{"id":"gdst_01GW2HK36GD31RMDRN0E8C6HGA","tsKey":"us-oregon-linn-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oregon","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE"},{"id":"gdst_01GW2HK36HX4BR968WREYH4VEP","tsKey":"us-oregon-malheur-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oregon","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE"},{"id":"gdst_01GW2HK36G7YSQR3A9KDRCYTFK","tsKey":"us-oregon-marion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oregon","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE"},{"id":"gdst_01GW2HK36G9CSP1163XJPMW24K","tsKey":"us-oregon-morrow-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oregon","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE"},{"id":"gdst_01GW2HK36GDDMRBKX6EKQFYZSD","tsKey":"us-oregon-multnomah-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oregon","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE"},{"id":"gdst_01GW2HK36FTVKVBPDXS8FC2523","tsKey":"us-oregon-polk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oregon","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE"},{"id":"gdst_01GW2HK36HQFCHJT97HVDKTKFY","tsKey":"us-oregon-sherman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oregon","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE"},{"id":"gdst_01GW2HK36HS7RY56P8A5MEJX46","tsKey":"us-oregon-tillamook-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oregon","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE"},{"id":"gdst_01GW2HK36GKMTTGYE72KDC9K90","tsKey":"us-oregon-umatilla-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oregon","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE"},{"id":"gdst_01GW2HK36G5WGYYEY8A50SB3GB","tsKey":"us-oregon-union-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oregon","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE"},{"id":"gdst_01GW2HK36HCV438SJVXV09HD3K","tsKey":"us-oregon-wallowa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oregon","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE"},{"id":"gdst_01GW2HK36GYP6S0BDCWSCYPHDA","tsKey":"us-oregon-wasco-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oregon","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE"},{"id":"gdst_01GW2HK36H3V9C53S61EJ40FSA","tsKey":"us-oregon-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oregon","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE"},{"id":"gdst_01GW2HK36FSQJ82JVSRSFZ5EKZ","tsKey":"us-oregon-wheeler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oregon","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE"},{"id":"gdst_01GW2HK36GEDFD2KDE5VSS9N4S","tsKey":"us-oregon-yamhill-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-oregon","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE"},{"id":"gdst_01GW2HK3X2GD6CV4A9WB591241","tsKey":"us-pennsylvania-adams-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3WZB92PD7S1XX2RR3KE","tsKey":"us-pennsylvania-allegheny-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3WZS5J8RA3FHB9PMCD9","tsKey":"us-pennsylvania-armstrong-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3WZWYA8FQM93HYC1N7S","tsKey":"us-pennsylvania-beaver-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X2E2F36QGY5DW4TKVR","tsKey":"us-pennsylvania-bedford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X1GTTZN6RB92H7JAD8","tsKey":"us-pennsylvania-berks-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3WYW95SQCBDQH6EDQWN","tsKey":"us-pennsylvania-blair-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3WYZ6MY0VH1D0H16CBY","tsKey":"us-pennsylvania-bradford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3WZDVHDT78KTZ3839N5","tsKey":"us-pennsylvania-bucks-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X1FJ1RHPYVMWBPNNQV","tsKey":"us-pennsylvania-butler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3WYT93T8HZ80TPFBM02","tsKey":"us-pennsylvania-cambria-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3WZ1VJWHQ5NX1RR0HY9","tsKey":"us-pennsylvania-cameron-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X168HZKQ13PT7V1EW3","tsKey":"us-pennsylvania-carbon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3WZF15207K3XCAPXTEK","tsKey":"us-pennsylvania-centre-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X0WHDWZH0TKH2RRHZG","tsKey":"us-pennsylvania-chester-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3WY5C8QXV5PNN4Y0CYT","tsKey":"us-pennsylvania-clarion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X0SBJ9XS32PMZ5WSZB","tsKey":"us-pennsylvania-clearfield-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X2KYJXGKJ7KZQXVQMB","tsKey":"us-pennsylvania-clinton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X1E56Y8YPXSXCR3P7Q","tsKey":"us-pennsylvania-columbia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X0QF6Z0FVJ2F6KMV88","tsKey":"us-pennsylvania-crawford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X2686354YYVZ5GV2EJ","tsKey":"us-pennsylvania-cumberland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X200WKWEDQFZCTCFK0","tsKey":"us-pennsylvania-dauphin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X06HQN1S7ATXV39KED","tsKey":"us-pennsylvania-delaware-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3WZK40A70D1MF7AXM6F","tsKey":"us-pennsylvania-elk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X083X99DAQ264GG96B","tsKey":"us-pennsylvania-erie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X05PJ50EXBVT4SPAJ7","tsKey":"us-pennsylvania-fayette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X1J6FHE11S2NP0PE3E","tsKey":"us-pennsylvania-forest-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X0CTMENG3HZA3K1KXH","tsKey":"us-pennsylvania-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X1WPG3Q6PPG194BBBE","tsKey":"us-pennsylvania-fulton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X2TGS5Y1N0DGDBYYZM","tsKey":"us-pennsylvania-greene-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X058DQQ01XZSQ0A6SB","tsKey":"us-pennsylvania-huntingdon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3WZAB5XJDQ4WHXB696D","tsKey":"us-pennsylvania-indiana-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X2MMR84JZT0V6MPZXH","tsKey":"us-pennsylvania-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X0QG0C9T5H74SHRJW7","tsKey":"us-pennsylvania-juniata-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3WZYRE98PD5C1SJJM7J","tsKey":"us-pennsylvania-lackawanna-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X2BKPNKHYT5ZN27VXA","tsKey":"us-pennsylvania-lancaster-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X0MEDZQPMXWQ0QK8ZM","tsKey":"us-pennsylvania-lawrence-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X1ES6RN3T2WW5T1XKT","tsKey":"us-pennsylvania-lebanon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X24223KPRA7B8JP19A","tsKey":"us-pennsylvania-lehigh-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X0W3F0DQ4HCCSBZZJS","tsKey":"us-pennsylvania-luzerne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X18DR7XK060YA0A9KV","tsKey":"us-pennsylvania-lycoming-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X2YCK7E72N93HG89DE","tsKey":"us-pennsylvania-mckean-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X0RV353TY6Y8EMKNDM","tsKey":"us-pennsylvania-mercer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3WZSFGY4DR96TBARCFJ","tsKey":"us-pennsylvania-mifflin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X05MPWZX2SG97RBXEE","tsKey":"us-pennsylvania-monroe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X2AWJSA4M3ZJCZZSVT","tsKey":"us-pennsylvania-montgomery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3WZV4GAM56KXCWSHVTR","tsKey":"us-pennsylvania-montour-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X0HHP52GRMNT6GRJQT","tsKey":"us-pennsylvania-northampton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X2GEN9XK9FCEH859Z1","tsKey":"us-pennsylvania-northumberland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X10EMXM15576ZASJ43","tsKey":"us-pennsylvania-perry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X0RGVH6AQZ7N6SFYY3","tsKey":"us-pennsylvania-philadelphia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X2VAYEQ3M9TJJXJQ52","tsKey":"us-pennsylvania-pike-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3WZ7GD67KWC5PQRFMQA","tsKey":"us-pennsylvania-potter-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X2E5X1SM0Q7MN9EZ4K","tsKey":"us-pennsylvania-schuylkill-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X1VFW0NZ7663WDECYP","tsKey":"us-pennsylvania-snyder-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X1KTWA9QCQ1CKM5RXF","tsKey":"us-pennsylvania-somerset-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3WZAJBC8QHZFVH7VVWC","tsKey":"us-pennsylvania-sullivan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X12KBPFFZKYSEP0AJ2","tsKey":"us-pennsylvania-susquehanna-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X16MA2VX4M9G4RM4MD","tsKey":"us-pennsylvania-tioga-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X10CGXRQE3QJ29Z8ZM","tsKey":"us-pennsylvania-union-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X1WY3P8GK5VAKHYKT6","tsKey":"us-pennsylvania-venango-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3WZF4Z1RFSF65TQ9PMY","tsKey":"us-pennsylvania-warren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X1J3DTQF97FD8EFXBW","tsKey":"us-pennsylvania-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X23R0ESH12198NWRNM","tsKey":"us-pennsylvania-wayne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X2YXAE9YENYTDBK143","tsKey":"us-pennsylvania-westmoreland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X20E606PEAH4CMH2F2","tsKey":"us-pennsylvania-wyoming-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK3X1MTFFYT8YT4YXZ7GK","tsKey":"us-pennsylvania-york-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-pennsylvania","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY"},{"id":"gdst_01GW2HK4RFZKENE7F8966EKBE6","tsKey":"us-rhode-island-bristol-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-rhode-island","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK49A5XQ8ZDFKQSF098SJ"},{"id":"gdst_01GW2HK4RFNXTG4QFGJ6RQ33F1","tsKey":"us-rhode-island-kent-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-rhode-island","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK49A5XQ8ZDFKQSF098SJ"},{"id":"gdst_01GW2HK4RFED0DYV8H0KXFZQG2","tsKey":"us-rhode-island-newport-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-rhode-island","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK49A5XQ8ZDFKQSF098SJ"},{"id":"gdst_01GW2HK4RFYMFERMT6SA3WWFKE","tsKey":"us-rhode-island-providence-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-rhode-island","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK49A5XQ8ZDFKQSF098SJ"},{"id":"gdst_01GW2HK4RFRV6D5G7MT9MXTRZH","tsKey":"us-rhode-island-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-rhode-island","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK49A5XQ8ZDFKQSF098SJ"},{"id":"gdst_01GW2HK5EY6Q64YM8PCZPAH0CB","tsKey":"us-south-carolina-abbeville-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EYB16JHTA84JCXW1TH","tsKey":"us-south-carolina-aiken-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EW7RG806XKQZ2YBFMA","tsKey":"us-south-carolina-allendale-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EYP2G2VQ18H8T3QKZC","tsKey":"us-south-carolina-anderson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EX60MBBRFC8F9FBQK0","tsKey":"us-south-carolina-bamberg-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EZ1PQAEBSB471NQB6M","tsKey":"us-south-carolina-barnwell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EZ35VPWVAF1X9NNGAK","tsKey":"us-south-carolina-beaufort-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EZ89NPWPZGKYVFTY7V","tsKey":"us-south-carolina-berkeley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EY6NBG30JJS22931W2","tsKey":"us-south-carolina-calhoun-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EZT8C2AKNJV4JC0MHT","tsKey":"us-south-carolina-charleston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EY8XM8JEPYMJQTP644","tsKey":"us-south-carolina-cherokee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EYN7YTMR2N80KNHGS4","tsKey":"us-south-carolina-chester-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EYPK4ZMP8RQPW22JRA","tsKey":"us-south-carolina-chesterfield-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EXVG0HCD1J13NY7YF2","tsKey":"us-south-carolina-clarendon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EYP1CQFC74N5PMZNCJ","tsKey":"us-south-carolina-colleton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EX7RV93EMEKQNCKHSJ","tsKey":"us-south-carolina-darlington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EY08GXYP083SWP4Q2D","tsKey":"us-south-carolina-dillon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EXA2B4DFKVF1JGMWCE","tsKey":"us-south-carolina-dorchester-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EXK8C33X6NRSBT1V7Y","tsKey":"us-south-carolina-edgefield-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EXWY8HHVJ5XT9PBT2N","tsKey":"us-south-carolina-fairfield-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EY32YE1H7T92BDMS4S","tsKey":"us-south-carolina-florence-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EYHZASETH25XKTPMFR","tsKey":"us-south-carolina-georgetown-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EYYWBY5NH6GTYA4Q5W","tsKey":"us-south-carolina-greenville-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EYHHN1X991R5M3X02X","tsKey":"us-south-carolina-greenwood-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EXCJDE16BJTX0Z8F0V","tsKey":"us-south-carolina-hampton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EYQZYK9WDY7V4TDTW1","tsKey":"us-south-carolina-horry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EXSW6061PX9EWCTQZ0","tsKey":"us-south-carolina-jasper-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EXYVYFJKTKXEC5XVVG","tsKey":"us-south-carolina-kershaw-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EZ1SCA29XDHP6TCYS0","tsKey":"us-south-carolina-lancaster-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EYBTD8DMZ0PMCXFDC1","tsKey":"us-south-carolina-laurens-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EXEDCSZD210N9PXS8S","tsKey":"us-south-carolina-lee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EZ597NYB3VKYY9ZGQJ","tsKey":"us-south-carolina-lexington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EZA7FN4B1FYV66SN16","tsKey":"us-south-carolina-marion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EYDGJKJG4PNAZ40PQS","tsKey":"us-south-carolina-marlboro-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EXFPJC8P7B2WTWS3SV","tsKey":"us-south-carolina-mccormick-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EXQXE1GTRKZM48Q2W1","tsKey":"us-south-carolina-newberry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EXN4DC0VXYFSR9453G","tsKey":"us-south-carolina-oconee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EXK2CVDMS26ER8FFX1","tsKey":"us-south-carolina-orangeburg-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EZYTCH3AFNCX59AYGH","tsKey":"us-south-carolina-pickens-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EXMR9495G0KGFMBHEW","tsKey":"us-south-carolina-richland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EXC4STC4PR5VFG62G8","tsKey":"us-south-carolina-saluda-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EXX8TEZGWQC08X1VS0","tsKey":"us-south-carolina-spartanburg-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EXXVCN5D0NKA0VSNYF","tsKey":"us-south-carolina-sumter-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EYP3D0ZGX5ACWS0E0E","tsKey":"us-south-carolina-union-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EY33X9C93SGCT3MH82","tsKey":"us-south-carolina-williamsburg-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK5EZYKCRSWJZPHYS5HNB","tsKey":"us-south-carolina-york-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-carolina","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14"},{"id":"gdst_01GW2HK67GXNSXR3FHZY24KW4Y","tsKey":"us-south-dakota-aurora-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67H8W1XNCQFARSYFDBS","tsKey":"us-south-dakota-beadle-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67GPCCBXGX71AH5G265","tsKey":"us-south-dakota-bennett-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67K3P6NCCQQ6K8K8NM1","tsKey":"us-south-dakota-bon-homme-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67HH85DMJXYF1VXA9NE","tsKey":"us-south-dakota-brookings-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67KQ9B3Y19C521DSQZ4","tsKey":"us-south-dakota-brown-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67JTFZTZQZQG8JR72JJ","tsKey":"us-south-dakota-brule-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67GC80TWVZXS471TRQK","tsKey":"us-south-dakota-buffalo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67HZEF7Y2FYRNKMXDKP","tsKey":"us-south-dakota-butte-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67KPS8ZDJZ241SJRAKW","tsKey":"us-south-dakota-campbell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67HJK3CT40X7X98903P","tsKey":"us-south-dakota-charles-mix-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67JH5DG40RDWN1Z76KR","tsKey":"us-south-dakota-clark-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67KFRATB98HWBS7T367","tsKey":"us-south-dakota-clay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67GDD2SDVSNV1ZNDS6P","tsKey":"us-south-dakota-codington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67KWMMYN2VMD294C1FD","tsKey":"us-south-dakota-corson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67HNDTY6JSCYSM3Y90V","tsKey":"us-south-dakota-custer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67GDJ1ZB4CR6T3G0KR1","tsKey":"us-south-dakota-davison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67JQZYKV4WB88JEAF8Y","tsKey":"us-south-dakota-day-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67H11ZA2WZ6NGD2K0CQ","tsKey":"us-south-dakota-deuel-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67H55YYNRTB5YXMNPXB","tsKey":"us-south-dakota-dewey-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67GN623MCKHVYWTQGAR","tsKey":"us-south-dakota-douglas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67HQCR3J4EWKCV8A64R","tsKey":"us-south-dakota-edmunds-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67K1735SXSGNTCAY59R","tsKey":"us-south-dakota-fall-river-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67JECA877DEW9NMKWD5","tsKey":"us-south-dakota-faulk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67H9DKQ4RXBHRAWT86C","tsKey":"us-south-dakota-grant-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67KGK03329W0S2TDMRM","tsKey":"us-south-dakota-gregory-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67GTTHKQR955RYMRJ4R","tsKey":"us-south-dakota-haakon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67J31DT7RWB95J1GJMX","tsKey":"us-south-dakota-hamlin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67HXDMSXQGE58RRCSBT","tsKey":"us-south-dakota-hand-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67GY6H7E0211MXE3ZWD","tsKey":"us-south-dakota-hanson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67HKC1TMCEPR1GKCX01","tsKey":"us-south-dakota-harding-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67H25YRXEA8W4FYWWNH","tsKey":"us-south-dakota-hughes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67JN8RGV8JAMJCVV9RT","tsKey":"us-south-dakota-hutchinson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67HVE7VFF95SF2D5YSN","tsKey":"us-south-dakota-hyde-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67KSVH0PRDRHJZSYFW7","tsKey":"us-south-dakota-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67KFET4EFGJV00RSKGB","tsKey":"us-south-dakota-jerauld-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67H248Y297WJW9RR00V","tsKey":"us-south-dakota-jones-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67J6YRDC71SQMPYTH44","tsKey":"us-south-dakota-kingsbury-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67HJYWVDCQAZF8XAE93","tsKey":"us-south-dakota-lake-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67KG884HNG43WM85AE3","tsKey":"us-south-dakota-lawrence-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67K066RYHWW0YCWNQD9","tsKey":"us-south-dakota-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67H6KFAK56QMDET06JC","tsKey":"us-south-dakota-lyman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67J7YWP9F4BBX7AJBN4","tsKey":"us-south-dakota-marshall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67GNF79815FP2NXHMHH","tsKey":"us-south-dakota-mccook-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67KNY3QC4652YYCARVC","tsKey":"us-south-dakota-mcpherson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67H19K9VFV1CRQWMT48","tsKey":"us-south-dakota-meade-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67GY3AW7G0PE5EJ9P0W","tsKey":"us-south-dakota-mellette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67JGKN02H973WD886WD","tsKey":"us-south-dakota-miner-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67KBVEK9MD5J598N87H","tsKey":"us-south-dakota-minnehaha-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67J30MRTG1V411X04CG","tsKey":"us-south-dakota-moody-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67J9DK0JXBK4VK4C4EM","tsKey":"us-south-dakota-oglala-lakota-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67GFC51SCGXA8K0FXWT","tsKey":"us-south-dakota-pennington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67K27B29V4DEHZTDR8K","tsKey":"us-south-dakota-perkins-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67JBZ1AWDTE5CGG114C","tsKey":"us-south-dakota-potter-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67KD5P7JHW633MRVG65","tsKey":"us-south-dakota-roberts-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67GEP6C25CJTCBJRM5F","tsKey":"us-south-dakota-sanborn-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67JN5ZCCWCQV234CG83","tsKey":"us-south-dakota-spink-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67J75V3D67GB68TRENZ","tsKey":"us-south-dakota-stanley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67JAYBSHSDWHWVS1A17","tsKey":"us-south-dakota-sully-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67JQJSJMHFK1KRA6ENK","tsKey":"us-south-dakota-todd-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67KARDZVPME5PSKE91G","tsKey":"us-south-dakota-tripp-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67G1MDK6BQM3WS66V78","tsKey":"us-south-dakota-turner-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67JW88K9777SBN89J07","tsKey":"us-south-dakota-union-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67KG9JT31RJGMV8FKJ5","tsKey":"us-south-dakota-walworth-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67KFPPKMQEP2GV1HTTB","tsKey":"us-south-dakota-yankton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK67H4CZAEXPHG3F8CPW7","tsKey":"us-south-dakota-ziebach-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-south-dakota","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND"},{"id":"gdst_01GW2HK773EZ32DNSAQ16BTB7A","tsKey":"us-tennessee-anderson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK774H15Q26KAJSS4NZVD","tsKey":"us-tennessee-bedford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK771VW3M641RVY84ERQ0","tsKey":"us-tennessee-benton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK771CHHE5FBZ0Z2EFPWT","tsKey":"us-tennessee-bledsoe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK774S271GAN22RZ1H1V3","tsKey":"us-tennessee-blount-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK772HAV3Y3R2N21NG1H9","tsKey":"us-tennessee-bradley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK7713YT3GFS99V7YFKCT","tsKey":"us-tennessee-campbell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK776MFPEQ2W881VSPG4E","tsKey":"us-tennessee-cannon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK772NGMVF6S89WJWJ4Q5","tsKey":"us-tennessee-carroll-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK774ZFRXTZQGGAR6PSDZ","tsKey":"us-tennessee-carter-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK77263SKY2EJVVW3FGX4","tsKey":"us-tennessee-cheatham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK775BTTDSHC1YEKPY16Y","tsKey":"us-tennessee-chester-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK772PMSA3FJXZY3W69NG","tsKey":"us-tennessee-claiborne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK771NC7B75E8AC48SB2A","tsKey":"us-tennessee-clay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK775MKJAT7T7FF2MA5JK","tsKey":"us-tennessee-cocke-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK771QS1S2HX4JB81CQNS","tsKey":"us-tennessee-coffee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK772WWHSZHZ8P84E2W1W","tsKey":"us-tennessee-crockett-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK772PK205A67ATDAT7SM","tsKey":"us-tennessee-cumberland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK774JQD3ZDVN5APH40QZ","tsKey":"us-tennessee-davidson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK775HQT62C50D28N74PS","tsKey":"us-tennessee-decatur-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK772K91EXWSJ61GJ7D55","tsKey":"us-tennessee-dekalb-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK775R6QDR0P9PMGZ4BN6","tsKey":"us-tennessee-dickson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK7719JW503AWGGK4SQ9B","tsKey":"us-tennessee-dyer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK7722DEKPE80EGXZPSC4","tsKey":"us-tennessee-fayette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK772QZGE5224ZFV8J7JT","tsKey":"us-tennessee-fentress-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK774MA0PAJ5CVD5G47MX","tsKey":"us-tennessee-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK775N2B6WC2SMYRQTA87","tsKey":"us-tennessee-gibson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK775DYDWQVANKHXDEJQC","tsKey":"us-tennessee-giles-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK7715D21D8XBAK4WY6QT","tsKey":"us-tennessee-grainger-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK7726AE54MGK8YMY5END","tsKey":"us-tennessee-greene-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK77273A2Y4WKVC1ZX1RW","tsKey":"us-tennessee-grundy-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK7742RW1TGX8MR7KKDAJ","tsKey":"us-tennessee-hamblen-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK773GB901TKXT8TT8A3N","tsKey":"us-tennessee-hamilton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK7737V5Q47RNH89HK220","tsKey":"us-tennessee-hancock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK771WBJZNYWBT4VZPQEQ","tsKey":"us-tennessee-hardeman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK773KDZ17REN23GJMV7P","tsKey":"us-tennessee-hardin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK775A87A1P86BX4F6270","tsKey":"us-tennessee-hawkins-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK774TN193TVXJX8JMWJH","tsKey":"us-tennessee-haywood-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK773JNRZF1TWPSCSJ8W2","tsKey":"us-tennessee-henderson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK7759A21C23RSZPXK7Q2","tsKey":"us-tennessee-henry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK771P9NYDZD1BV82ARJX","tsKey":"us-tennessee-hickman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK7730TWGE8SZXVSEJY1N","tsKey":"us-tennessee-houston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK7747H27TGDJWBS6WECZ","tsKey":"us-tennessee-humphreys-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK773YY57SCY0MR18K8SB","tsKey":"us-tennessee-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK7756NEC12SDCRG4Q65M","tsKey":"us-tennessee-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK775PMF4S74M238N5PZT","tsKey":"us-tennessee-johnson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK7710G9A2RDKHKYXHY5R","tsKey":"us-tennessee-knox-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK7730FKC8MEE6VYQZ2GA","tsKey":"us-tennessee-lake-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK776X7X7KAXNABPP7H1B","tsKey":"us-tennessee-lauderdale-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK774HVMK5T0KA1KMCKPZ","tsKey":"us-tennessee-lawrence-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK773T9NHFEK0SFBFTM1S","tsKey":"us-tennessee-lewis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK776XEZE5RB5G26H0EJE","tsKey":"us-tennessee-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK77158X1F8978QEB36B2","tsKey":"us-tennessee-loudon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK773666AG87F3Q1J9584","tsKey":"us-tennessee-macon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK774JGZX35KHSSECW2XH","tsKey":"us-tennessee-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK776AX08M5N81RR0XX06","tsKey":"us-tennessee-marion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK771595X5CPCY21SHFRW","tsKey":"us-tennessee-marshall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK773H0JWFK0FN4693KK9","tsKey":"us-tennessee-maury-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK773KBHA2W2AKR5WHV00","tsKey":"us-tennessee-mcminn-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK773DR9A9KK7A2GRHB1N","tsKey":"us-tennessee-mcnairy-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK7768H2XSWV1NEENG6SQ","tsKey":"us-tennessee-meigs-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK776KKJHRB6NRDYTYTJ6","tsKey":"us-tennessee-monroe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK773EJKNG3KE9PR9AJ1Y","tsKey":"us-tennessee-montgomery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK775YD66AD58RJ4JD8SH","tsKey":"us-tennessee-moore-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK7724T0ZVN1GVFQSD6S3","tsKey":"us-tennessee-morgan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK7769GZC122H1A03J4N7","tsKey":"us-tennessee-obion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK775RMEG5JPS9MKNZAXR","tsKey":"us-tennessee-overton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK773PARN4F481XT0A1GW","tsKey":"us-tennessee-perry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK7739F5VQV85YNCMVSDY","tsKey":"us-tennessee-pickett-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK772KQ6F5TFAHVFFS513","tsKey":"us-tennessee-polk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK773DXRH3Y8A83S8SQB9","tsKey":"us-tennessee-putnam-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK774DHWHCVZ69JMV24VM","tsKey":"us-tennessee-rhea-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK7755K3TF704T55V6TZZ","tsKey":"us-tennessee-roane-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK774J99A6QQ2ZPHAM90J","tsKey":"us-tennessee-robertson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK774J91RED3Q498YAHCV","tsKey":"us-tennessee-rutherford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK772P1H2FFZDVYFDFWBY","tsKey":"us-tennessee-scott-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK7765NVBZ05PFEDNGK9G","tsKey":"us-tennessee-sequatchie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK77441ZSWNNEHMB5H2E6","tsKey":"us-tennessee-sevier-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK77635XKC5RQ1BKGG75E","tsKey":"us-tennessee-shelby-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK775AH3NC648AGP5PWJA","tsKey":"us-tennessee-smith-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK77495HGMQ79GBT81SY6","tsKey":"us-tennessee-stewart-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK776DTQ7SXBPTSB0AWND","tsKey":"us-tennessee-sullivan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK775HAM3Q647RS9T1C7A","tsKey":"us-tennessee-sumner-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK774SZBVARTENW9KDX4Q","tsKey":"us-tennessee-tipton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK776AG5TEFHV7SS4F0AK","tsKey":"us-tennessee-trousdale-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK7761XKZQA21H787JT2Z","tsKey":"us-tennessee-unicoi-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK772AAFA6C6VH786MTGP","tsKey":"us-tennessee-union-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK774CZ7QP5PSR8D1VHG2","tsKey":"us-tennessee-van-buren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK774N851RQ6V5WT8WMW6","tsKey":"us-tennessee-warren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK772GG41GNFY4QK85F35","tsKey":"us-tennessee-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK776S9EEPDFXEGD3WAHG","tsKey":"us-tennessee-wayne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK775CCZVT1MMT1C9EPB4","tsKey":"us-tennessee-weakley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK7729PZAW0Y0J74GNSDM","tsKey":"us-tennessee-white-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK7750HXCBEX9YG1PY5H8","tsKey":"us-tennessee-williamson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK772NZHG6EB10PS1ZP04","tsKey":"us-tennessee-wilson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-tennessee","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0"},{"id":"gdst_01GW2HK865KM0WKPQFYNSGXXG8","tsKey":"us-texas-anderson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK867DVCNCX81ZZ41H0QA","tsKey":"us-texas-andrews-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86BVGA042YC6JJR6SY0","tsKey":"us-texas-angelina-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86CS4JE17WGE19T7H05","tsKey":"us-texas-aransas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK860N5VH6T5EWQN8JNGJ","tsKey":"us-texas-archer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK860XP5S3NX14535446X","tsKey":"us-texas-armstrong-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8654AS34NVME9EPGE0W","tsKey":"us-texas-atascosa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK865VJTCZFGSB97XDBE8","tsKey":"us-texas-austin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK865M78VGFHRAWDNDPAJ","tsKey":"us-texas-bailey-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK867D87AK3CD25FB4WQE","tsKey":"us-texas-bandera-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK860S1FQBPDNECFYKHGZ","tsKey":"us-texas-bastrop-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK865PNVBM27SJHTJ2JQF","tsKey":"us-texas-baylor-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8657SMPDNW8A1868G0C","tsKey":"us-texas-bee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8671NT52J3J4BZ8ZCNP","tsKey":"us-texas-bell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8655ENYRSP0DY69161K","tsKey":"us-texas-bexar-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK860EK9QBMZ2Z7R8B4FN","tsKey":"us-texas-blanco-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK865ERYJW6FJ3ERFJRER","tsKey":"us-texas-borden-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK865BWBAEE6HY3JYBT75","tsKey":"us-texas-bosque-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86CBYHYVPW1SFAWK8G7","tsKey":"us-texas-bowie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8656BXZTXNTNJHQ1Z5R","tsKey":"us-texas-brazoria-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86740YG45T5YJK9XFMD","tsKey":"us-texas-brazos-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86C5SNN97YTMRF7FWXM","tsKey":"us-texas-brewster-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK862EAJ2M1V4PPWE8E0C","tsKey":"us-texas-briscoe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK860YCDN3N1CDNGVPDF5","tsKey":"us-texas-brooks-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8621FM0CMYSDQ4FVRKX","tsKey":"us-texas-brown-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86CH74KQANXHPDET380","tsKey":"us-texas-burleson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK860N82Q54JC8E2FZXHA","tsKey":"us-texas-burnet-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8625FD701KD48B94E9T","tsKey":"us-texas-caldwell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86CG5PGZ07X2MYAGRVG","tsKey":"us-texas-calhoun-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK867NDTNV6K8NT7C5ZHQ","tsKey":"us-texas-callahan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK862V3Z5MD201YG5T07V","tsKey":"us-texas-cameron-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK860DXMAM2J34QBT27N1","tsKey":"us-texas-camp-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK863ZE25XXRQ2SGSK2KN","tsKey":"us-texas-carson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86365JDFNX34J6TZSWZ","tsKey":"us-texas-cass-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK860NR2JCNMXFCC1N9B3","tsKey":"us-texas-castro-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86C2YH9GJ2CJSDB8T36","tsKey":"us-texas-chambers-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8639MTTG69P15XNNZ4G","tsKey":"us-texas-cherokee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK867736AQJDV201AZRZ7","tsKey":"us-texas-childress-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK863MW725PQW4TEBER0C","tsKey":"us-texas-clay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK860T88HD3DX65EWV83P","tsKey":"us-texas-cochran-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK863E69GABGE5BRZRZJK","tsKey":"us-texas-coke-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK867MEKX9EWS3X2F7DM2","tsKey":"us-texas-coleman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK863KAS8FJN4YCFN0QDH","tsKey":"us-texas-collin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK863AEHK5D48M38T0J9Z","tsKey":"us-texas-collingsworth-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK867SB4J437F9YB80C8E","tsKey":"us-texas-colorado-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8636TPD96Y9AA0N6M3Y","tsKey":"us-texas-comal-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86CXWK7VDBTBDDBTT9C","tsKey":"us-texas-comanche-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK860EXBRYT43QVAN83A2","tsKey":"us-texas-concho-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86CDJZ0ZQQY45HGK1VR","tsKey":"us-texas-cooke-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8602WCQ2YB4MV3M2KAT","tsKey":"us-texas-coryell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8691VXWYY6EHM0S8ZKW","tsKey":"us-texas-cottle-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8600X4VMJ6VWPDYNVQX","tsKey":"us-texas-crane-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK869RJPVSBKGB3Y01QQ6","tsKey":"us-texas-crockett-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK867X23DPPXCNP5EXXKR","tsKey":"us-texas-crosby-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86983QRKVABDGD07NRK","tsKey":"us-texas-culberson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK869DKJ7HE4MMKHRNB20","tsKey":"us-texas-dallam-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8696WAJDX9GMRRZGEAJ","tsKey":"us-texas-dallas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK860MNPR668GZY19M43V","tsKey":"us-texas-dawson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86CWA4KF28XSXZH59N1","tsKey":"us-texas-deaf-smith-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK867ARSWXQ5N8ZP8PB18","tsKey":"us-texas-delta-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK869GCP8Y4S7MTRHP506","tsKey":"us-texas-denton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK861175X4GF2E79G8VNV","tsKey":"us-texas-dewitt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8695QR93VBES8SJT6XH","tsKey":"us-texas-dickens-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK861667CQ5K72WGDN94W","tsKey":"us-texas-dimmit-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86DW3JSPNTRXF8QYPBK","tsKey":"us-texas-donley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8687B4ZK3ZR1TR7VGGM","tsKey":"us-texas-duval-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK869GM8R6RYG4JJC0TBK","tsKey":"us-texas-eastland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86C3GQS4CX3ZPE3WKEN","tsKey":"us-texas-ector-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK861901MZ7AY6Y2TVYS4","tsKey":"us-texas-edwards-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8690FVSZRGWC4RY2J0B","tsKey":"us-texas-ellis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86CZ480KDJ62VF27MH0","tsKey":"us-texas-el-paso-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK868KSFZ9E1ZRT11GZ4T","tsKey":"us-texas-erath-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86971CEEQ348ZRM9V3S","tsKey":"us-texas-falls-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8691PJQE0FVAX0C48N6","tsKey":"us-texas-fannin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86159KX3NS21BJN8P1Q","tsKey":"us-texas-fayette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8698WQ4F3PHPX98VMYJ","tsKey":"us-texas-fisher-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8684VDMKTSEJMMAN9BK","tsKey":"us-texas-floyd-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86CJA4S42HQX88SVW0N","tsKey":"us-texas-foard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK869E0W9TQGSMFHHEW8C","tsKey":"us-texas-fort-bend-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK861R63S1EXDBKV7VT1Y","tsKey":"us-texas-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86D17D9JGNJQZ6A7RXV","tsKey":"us-texas-freestone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK868V4GPPK9R5F3XNWMT","tsKey":"us-texas-frio-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86D252EE9XPF3D12D4R","tsKey":"us-texas-gaines-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86DS3836JV8Z1PJKN0F","tsKey":"us-texas-galveston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK861H9SHAGT8WCYNTYY3","tsKey":"us-texas-garza-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK868FX6V4Q43DQK5S5ZN","tsKey":"us-texas-gillespie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8687RSWMYAHH07B26TF","tsKey":"us-texas-glasscock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK868BXQMES01761B7TP9","tsKey":"us-texas-goliad-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86190VD5Y8XDAX8RH2F","tsKey":"us-texas-gonzales-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK861RVJ0BKJPTZRK4F0T","tsKey":"us-texas-gray-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86A5YWVMD2Z4FVMYAHG","tsKey":"us-texas-grayson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK868N46C8KZ8DNSN5XDZ","tsKey":"us-texas-gregg-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK861MSDV2K5E3M40NPTA","tsKey":"us-texas-grimes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK868T9FHE9CXZN1ETGST","tsKey":"us-texas-guadalupe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86AQ68SX90T4VZRGR80","tsKey":"us-texas-hale-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK861600EK0WC65DRNDG7","tsKey":"us-texas-hall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86A3108V5TPYARK1AX7","tsKey":"us-texas-hamilton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK861G6R66DQG02XV540A","tsKey":"us-texas-hansford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86AA5T6NWT3QNCXFFR8","tsKey":"us-texas-hardeman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86AKXX3DQ1WTWMSJQMK","tsKey":"us-texas-hardin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86AR40C01VR6K43ADR6","tsKey":"us-texas-harris-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86AXB1BDPDQS673T4SJ","tsKey":"us-texas-harrison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK868YTCP5SNG2JAC5NMW","tsKey":"us-texas-hartley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86DHRAMCEK06PXHMTVX","tsKey":"us-texas-haskell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8681EXYJSPQ0PSC0PNR","tsKey":"us-texas-hays-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86A61BFPTG6Z62Q5VXZ","tsKey":"us-texas-hemphill-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86A9RGPDNF1VV57VJJX","tsKey":"us-texas-henderson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86A31WVWDFTCW1XX7VE","tsKey":"us-texas-hidalgo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK861K68J7D0X1V168C1Y","tsKey":"us-texas-hill-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK868XWBZZ5CP1ZWNB47V","tsKey":"us-texas-hockley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86D0QQBFR3R6MMV95AF","tsKey":"us-texas-hood-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86ANZTEC4G04BN5D6HG","tsKey":"us-texas-hopkins-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86DXCZ9GRVPH6GXWTD1","tsKey":"us-texas-houston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK861MQDSQ1F28CRM9Q6B","tsKey":"us-texas-howard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86D8H7Z18A3MSWN5YHV","tsKey":"us-texas-hudspeth-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK868P73W7P0ZKN6P1Z49","tsKey":"us-texas-hunt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK861PN307GW4RBZ3WJV4","tsKey":"us-texas-hutchinson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86A7PJ694QW392HP2T3","tsKey":"us-texas-irion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86A134SHRMV91BWZ5XD","tsKey":"us-texas-jack-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86A7ESPX6QR6ZMNNBBB","tsKey":"us-texas-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8680M7WZVTM360JW374","tsKey":"us-texas-jasper-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86ANFH15YNK7JBHJDGX","tsKey":"us-texas-jeff-davis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86DESAQ6043E0A8XC0P","tsKey":"us-texas-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK861NNSBEJQRZAAVE99T","tsKey":"us-texas-jim-hogg-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86B2BBHVYTXW819GZBM","tsKey":"us-texas-jim-wells-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK861B7WJYEF8YTBVR36Q","tsKey":"us-texas-johnson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86BK3TRMK8PFG5WWK9F","tsKey":"us-texas-jones-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK868QWDX846QTSD9WXYW","tsKey":"us-texas-karnes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86D29ZQ71G9D82CD4PB","tsKey":"us-texas-kaufman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86BF95QT2AGFTD0P6A5","tsKey":"us-texas-kendall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86CRSP9BR6XWTBS8P95","tsKey":"us-texas-kenedy-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK862QZSMRZVD30TCPKMF","tsKey":"us-texas-kent-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK862XF3SCPAA4TKPWJHK","tsKey":"us-texas-kerr-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK865QR07CHB6C41PS4SD","tsKey":"us-texas-kimble-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK868CF1V51FVK1AV7JF6","tsKey":"us-texas-king-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK865N95H64FCFWK3AWE8","tsKey":"us-texas-kinney-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86CSXQB1SER0DWSSA9Q","tsKey":"us-texas-kleberg-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8626D4FD9VXH63ZCZKY","tsKey":"us-texas-knox-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK865G070KG3NFZFC5S7W","tsKey":"us-texas-lamar-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK868Y51WPCE9AR6ZF2GX","tsKey":"us-texas-lamb-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK865J32WBGDAJ6KNVHNC","tsKey":"us-texas-lampasas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK862BNW53YG9RRA0ETD7","tsKey":"us-texas-la-salle-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8651YFR6CX8SB8ZS7ZE","tsKey":"us-texas-lavaca-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK866JBGYSGCR5REAQVXT","tsKey":"us-texas-lee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK868FHNR6PK8C60MRGFF","tsKey":"us-texas-leon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8669GNYY03ZPFWP8ZDP","tsKey":"us-texas-liberty-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK866DV5AB3YAZYRTJADR","tsKey":"us-texas-limestone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK866F8RVDF21Z2PXADMW","tsKey":"us-texas-lipscomb-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8622SQ4NJJ8PD8MJJTR","tsKey":"us-texas-live-oak-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK869PJVPD4W47HMA44K4","tsKey":"us-texas-llano-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK866JFW2YHJF8W6WYTZY","tsKey":"us-texas-loving-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK862K3VP4YWBT6P26Q1E","tsKey":"us-texas-lubbock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8662QSTM9V0T785AX3Z","tsKey":"us-texas-lynn-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8694DZNHW4ECPCRCDKT","tsKey":"us-texas-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86CPJZTVAQ4GCM8D7ZV","tsKey":"us-texas-marion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8662CRSDVRZNZT0ENK1","tsKey":"us-texas-martin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8620T40PZWH4HSMQVGQ","tsKey":"us-texas-mason-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86CG71XH4QAVK33HX7Q","tsKey":"us-texas-matagorda-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK866GS2VP5ZEQN32NZ7W","tsKey":"us-texas-maverick-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK866CCBRZYM2EGX10VKT","tsKey":"us-texas-mcculloch-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK862V0E9751TPD6S42WJ","tsKey":"us-texas-mclennan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86C2DK18268A5VXW1S9","tsKey":"us-texas-mcmullen-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK869RQRZBN8PKMPRB0A5","tsKey":"us-texas-medina-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK866WN9Y2EM9G56AH33Q","tsKey":"us-texas-menard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86239SS8G1NZ1H0PTDP","tsKey":"us-texas-midland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8669GA1T94EE0FMC3DT","tsKey":"us-texas-milam-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK866AJWG1T21WA55RKF2","tsKey":"us-texas-mills-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK869YAM7VGAH4N1VVEY9","tsKey":"us-texas-mitchell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86CSKJCJ5X33NR26Y2D","tsKey":"us-texas-montague-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK862F1GCDK42W7H2SQ1V","tsKey":"us-texas-montgomery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK866TGV150SZD4S970MG","tsKey":"us-texas-moore-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK869JBRS3ZGASTQ13893","tsKey":"us-texas-morris-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86AQ3YQVY3T799MDKKV","tsKey":"us-texas-motley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86ANGEF83RCT44NH7SB","tsKey":"us-texas-nacogdoches-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK862ED6RQ35MD2J3VXPE","tsKey":"us-texas-navarro-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86A027DWX3Z8QGA24B5","tsKey":"us-texas-newton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK862WRANMKYNK49T05JH","tsKey":"us-texas-nolan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK866PA6RYAGN055AG0W6","tsKey":"us-texas-nueces-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK85YY2M6XVGH9W541NKV","tsKey":"us-texas-ochiltree-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK85YQ2EF0N8HFPPEDMX0","tsKey":"us-texas-oldham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8630471R2N9MDF1282K","tsKey":"us-texas-orange-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK866PX2WXV8NE24YEZ1P","tsKey":"us-texas-palo-pinto-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86D9WWBQD38NF0TQM1Z","tsKey":"us-texas-panola-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK85Y2CB9CX9A76NQR9VD","tsKey":"us-texas-parker-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK863R6NN53YDP9N0SZHY","tsKey":"us-texas-parmer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86B8VCT6EXFXE1TX50P","tsKey":"us-texas-pecos-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK866VYMDN3D18TPWY4KX","tsKey":"us-texas-polk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86DGSVBWE046P8V0551","tsKey":"us-texas-potter-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86BCSPP9SJ933TVHGND","tsKey":"us-texas-presidio-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK85YM8TAFBWCWYZ94Z3K","tsKey":"us-texas-rains-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK85Y70TKKPBNH0XHCPAK","tsKey":"us-texas-randall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK863ZZWNTG6C71J4NGS4","tsKey":"us-texas-reagan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK863FBJ64Z2S46WDAB1A","tsKey":"us-texas-real-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK863HCMWC7CC76QH5X5Z","tsKey":"us-texas-red-river-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK866TMVNVMJP8H5MG0EV","tsKey":"us-texas-reeves-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86BH17EMKTYJP8SPF4G","tsKey":"us-texas-refugio-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK85YXV25G35HC8181R9Z","tsKey":"us-texas-roberts-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8631C1816HKJ1666TY3","tsKey":"us-texas-robertson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK85ZQQD3668RBRF2G8TS","tsKey":"us-texas-rockwall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8637TW5Y4QD18V26YN0","tsKey":"us-texas-runnels-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86BM94GYR8FJWNDCBKY","tsKey":"us-texas-rusk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK863E2W7PF8F0BBM8150","tsKey":"us-texas-sabine-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK866FHHCVW31GWXHRPT6","tsKey":"us-texas-san-augustine-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86B0HXQ7P5CZE9VRN9N","tsKey":"us-texas-san-jacinto-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86BFHPQBERDZCNHHF1A","tsKey":"us-texas-san-patricio-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK85ZQRZ926NF3VA4SC7G","tsKey":"us-texas-san-saba-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK867BWWGDDW65BG18B61","tsKey":"us-texas-schleicher-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK864CC9PEFH34C44G07X","tsKey":"us-texas-scurry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK864N4MZ7P397K5RFCDW","tsKey":"us-texas-shackelford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86417AFYCMPK57F7AMC","tsKey":"us-texas-shelby-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8679VJ66PMQ6NPWERCC","tsKey":"us-texas-sherman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8640PVAZ7H6YN9EHGXF","tsKey":"us-texas-smith-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK85Z5XWBWAE65V48EQ7N","tsKey":"us-texas-somervell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK864W3QD7YHAFGK1AVNR","tsKey":"us-texas-starr-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK85Z91GV719TYMDN3P89","tsKey":"us-texas-stephens-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8641GRZ3KKN8J9RV5M7","tsKey":"us-texas-sterling-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK85ZAVACCP4TAGM0GXF2","tsKey":"us-texas-stonewall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK864WX7H6X7RZNB25MZ1","tsKey":"us-texas-sutton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK864W823PJ26SWT469AJ","tsKey":"us-texas-swisher-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK867XNRSZHPV7SB0Z0V1","tsKey":"us-texas-tarrant-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK864E13DRWBG7R9RHRF1","tsKey":"us-texas-taylor-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86BSVYMAY0MCZVXVGAP","tsKey":"us-texas-terrell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK85ZJB3A5J8MP392V38Q","tsKey":"us-texas-terry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK864F3VMC1BP9FXSGSRA","tsKey":"us-texas-throckmorton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK85Z9Y9KMJHJ4BP7QVAK","tsKey":"us-texas-titus-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK864S55GKNY9EBR0GYDV","tsKey":"us-texas-tom-green-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK864V115DGT5QA57A9VC","tsKey":"us-texas-travis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK8679F2504D509PS6Q4Z","tsKey":"us-texas-trinity-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK864X2YKB1ZQ5XCC4NEK","tsKey":"us-texas-tyler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK85ZPSPM92XEE5JHZZTV","tsKey":"us-texas-upshur-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86BS1NFYQ4DR6HAS3BW","tsKey":"us-texas-upton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK85Z4H56VKVM2SF0ZAXK","tsKey":"us-texas-uvalde-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86BF9CJXGZC9H7EXXNN","tsKey":"us-texas-val-verde-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK864960JGT5WNZ043QF0","tsKey":"us-texas-van-zandt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK864W7PE5VG26A9ZQGYT","tsKey":"us-texas-victoria-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK867F1XBG5EYD9KQ9YKK","tsKey":"us-texas-walker-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86B0TY1EJPYFZW3TYTZ","tsKey":"us-texas-waller-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK85ZA2Q0EK6S1BV4J9R6","tsKey":"us-texas-ward-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK864PB51HAF32NEPP1VX","tsKey":"us-texas-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86B2SG2SNWZ266MG5YJ","tsKey":"us-texas-webb-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK867TV872KE92T8Y57N2","tsKey":"us-texas-wharton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK864XPW2BJ9Y7PVBS9WV","tsKey":"us-texas-wheeler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK865PGY2FMADP18FRCX4","tsKey":"us-texas-wichita-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86B1E08GD0RQKXGRTW4","tsKey":"us-texas-wilbarger-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK865A2Z3SVBSY62QH8JR","tsKey":"us-texas-willacy-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK85ZGZ3Y187XDHC8V641","tsKey":"us-texas-williamson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK867EN5XWS9DKHX6TFK6","tsKey":"us-texas-wilson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86BT68QGFRV4FR39MDM","tsKey":"us-texas-winkler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK85ZGZPXD31JT7WKF6S2","tsKey":"us-texas-wise-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86511GKYG74MDKMCCW4","tsKey":"us-texas-wood-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86B53WDQPPQYSH7GYSG","tsKey":"us-texas-yoakum-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK867TP5H09728DP3874Z","tsKey":"us-texas-young-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK86BAG8TZAP6YQSMYYV8","tsKey":"us-texas-zapata-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK85ZFWAN3XWR00T42Z3X","tsKey":"us-texas-zavala-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-texas","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7"},{"id":"gdst_01GW2HK98HRX1BFGZY9R0SC260","tsKey":"us-utah-beaver-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-utah","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023"},{"id":"gdst_01GW2HK98JXMEVBWYGNTPN8RSV","tsKey":"us-utah-box-elder-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-utah","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023"},{"id":"gdst_01GW2HK98H04BKQ0PQ0QMHBQP1","tsKey":"us-utah-cache-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-utah","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023"},{"id":"gdst_01GW2HK98HG2J7M30AD7FBW910","tsKey":"us-utah-carbon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-utah","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023"},{"id":"gdst_01GW2HK98HCJDV21TNVV4HN306","tsKey":"us-utah-daggett-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-utah","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023"},{"id":"gdst_01GW2HK98GYZN5MJA6GQM7QHG1","tsKey":"us-utah-davis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-utah","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023"},{"id":"gdst_01GW2HK98H9F5406ZZ7WSD4HCP","tsKey":"us-utah-duchesne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-utah","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023"},{"id":"gdst_01GW2HK98JWW80QD336955YA0E","tsKey":"us-utah-emery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-utah","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023"},{"id":"gdst_01GW2HK98JAK2GGG4QBSXZ82ZA","tsKey":"us-utah-garfield-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-utah","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023"},{"id":"gdst_01GW2HK98HNBMKTYB2YRK2PNVW","tsKey":"us-utah-grand-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-utah","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023"},{"id":"gdst_01GW2HK98JWZTVYSDGCPT1D4XX","tsKey":"us-utah-iron-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-utah","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023"},{"id":"gdst_01GW2HK98H2Y954B3PZZQC751J","tsKey":"us-utah-juab-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-utah","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023"},{"id":"gdst_01GW2HK98JTAXP7EYBA5YX4RRQ","tsKey":"us-utah-kane-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-utah","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023"},{"id":"gdst_01GW2HK98HH4RNSKR73YFGV0XF","tsKey":"us-utah-millard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-utah","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023"},{"id":"gdst_01GW2HK98GXAEMQKFRDE39K2JE","tsKey":"us-utah-morgan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-utah","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023"},{"id":"gdst_01GW2HK98GKGMZNPBWXNETRTYP","tsKey":"us-utah-piute-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-utah","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023"},{"id":"gdst_01GW2HK98HFRHEB14D497QR0XM","tsKey":"us-utah-rich-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-utah","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023"},{"id":"gdst_01GW2HK98GAW301K4PXXS7MKT8","tsKey":"us-utah-salt-lake-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-utah","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023"},{"id":"gdst_01GW2HK98HZZCWA7VV1QJ0N1AB","tsKey":"us-utah-san-juan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-utah","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023"},{"id":"gdst_01GW2HK98HWZE3VG4MRRRPQ241","tsKey":"us-utah-sanpete-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-utah","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023"},{"id":"gdst_01GW2HK98HTGQYQCBSVMAPMMT4","tsKey":"us-utah-sevier-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-utah","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023"},{"id":"gdst_01GW2HK98HBH9RE9R68CSCCX7D","tsKey":"us-utah-summit-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-utah","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023"},{"id":"gdst_01GW2HK98H162S44MV5B98NN4T","tsKey":"us-utah-tooele-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-utah","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023"},{"id":"gdst_01GW2HK98J1247471ZX03EGMZT","tsKey":"us-utah-uintah-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-utah","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023"},{"id":"gdst_01GW2HK98HP7YK2B2Q8RESP0DS","tsKey":"us-utah-utah-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-utah","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023"},{"id":"gdst_01GW2HK98HE3DC9W0X9MYT19DS","tsKey":"us-utah-wasatch-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-utah","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023"},{"id":"gdst_01GW2HK98JN80A260RA8NXDMJR","tsKey":"us-utah-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-utah","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023"},{"id":"gdst_01GW2HK98HP9Z0H36YSFJSA7CF","tsKey":"us-utah-wayne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-utah","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023"},{"id":"gdst_01GW2HK98HJ535HXZH46E670FJ","tsKey":"us-utah-weber-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-utah","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023"},{"id":"gdst_01GW2HKA1DN1RDPNK833QTQ7XJ","tsKey":"us-vermont-addison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-vermont","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK9J2HNR9ZCJJHF8WAGDT"},{"id":"gdst_01GW2HKA1DZ85FZB0D3YW58BKJ","tsKey":"us-vermont-bennington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-vermont","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK9J2HNR9ZCJJHF8WAGDT"},{"id":"gdst_01GW2HKA1CSWVQ0VB6FHB9PFQX","tsKey":"us-vermont-caledonia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-vermont","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK9J2HNR9ZCJJHF8WAGDT"},{"id":"gdst_01GW2HKA1DVN0JBPV2AVHQMN7P","tsKey":"us-vermont-chittenden-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-vermont","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK9J2HNR9ZCJJHF8WAGDT"},{"id":"gdst_01GW2HKA1DP57P5CWDPHVBZ9XA","tsKey":"us-vermont-essex-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-vermont","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK9J2HNR9ZCJJHF8WAGDT"},{"id":"gdst_01GW2HKA1DBG48D4YQ9PNPVP33","tsKey":"us-vermont-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-vermont","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK9J2HNR9ZCJJHF8WAGDT"},{"id":"gdst_01GW2HKA1DT10W7BMXJAVK9GFT","tsKey":"us-vermont-grand-isle-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-vermont","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK9J2HNR9ZCJJHF8WAGDT"},{"id":"gdst_01GW2HKA1DR5Z3FS8R93GKGQ9G","tsKey":"us-vermont-lamoille-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-vermont","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK9J2HNR9ZCJJHF8WAGDT"},{"id":"gdst_01GW2HKA1DFK2M1AJAMTGXS54B","tsKey":"us-vermont-orange-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-vermont","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK9J2HNR9ZCJJHF8WAGDT"},{"id":"gdst_01GW2HKA1D6B6TGYJ70S5J9R4J","tsKey":"us-vermont-orleans-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-vermont","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK9J2HNR9ZCJJHF8WAGDT"},{"id":"gdst_01GW2HKA1DCP4F78171W7AJFQV","tsKey":"us-vermont-rutland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-vermont","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK9J2HNR9ZCJJHF8WAGDT"},{"id":"gdst_01GW2HKA1DFC2GWHGW8SAQ3F5W","tsKey":"us-vermont-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-vermont","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK9J2HNR9ZCJJHF8WAGDT"},{"id":"gdst_01GW2HKA1D3XVZ020NJY6F98CX","tsKey":"us-vermont-windham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-vermont","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK9J2HNR9ZCJJHF8WAGDT"},{"id":"gdst_01GW2HKA1DV1WJ0Q6TVA44NJ2D","tsKey":"us-vermont-windsor-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-vermont","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK9J2HNR9ZCJJHF8WAGDT"},{"id":"gdst_01GW2HKB0PJZRSP1HDTZPWQZ0Q","tsKey":"us-virginia-accomack-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0JBK9TRQ1X194M03XA","tsKey":"us-virginia-albemarle-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0FW4TZW1KG1G2GGH6P","tsKey":"us-virginia-alexandria-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0H3ZS2Q9381Y1YTQJH","tsKey":"us-virginia-alleghany-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0GN3ECM4GEK863VWJ4","tsKey":"us-virginia-amelia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0J7W9VAA5Z2NP2DT0S","tsKey":"us-virginia-amherst-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0H586ZXETHKM0JR5QP","tsKey":"us-virginia-appomattox-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0HQ34JX4SB211WD84Q","tsKey":"us-virginia-arlington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0HRY5D6E3P0F9WRY16","tsKey":"us-virginia-augusta-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0GXW530Z9F2S0Y5CRW","tsKey":"us-virginia-bath-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0HSET8AD2QS3DW5CTH","tsKey":"us-virginia-bedford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0PZQ7H7HX8377E9YHT","tsKey":"us-virginia-bland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0JMK7FTVPHHCZWMD4E","tsKey":"us-virginia-botetourt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0MZG7D05TJS4G5QMEN","tsKey":"us-virginia-bristol-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0H5PMAAPVBDJ0D186X","tsKey":"us-virginia-brunswick-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0PJ6J621PN5KWVPEW4","tsKey":"us-virginia-buchanan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0GBN2NVT1MH0KDR4NR","tsKey":"us-virginia-buckingham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0FYS4B10FJ7FPPYHSJ","tsKey":"us-virginia-buena-vista-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0HTFX3HDD208Y3QXG0","tsKey":"us-virginia-campbell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0HVWEFS7G7ZQKKPNJM","tsKey":"us-virginia-caroline-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0J2GF31268NYDY8E3Y","tsKey":"us-virginia-carroll-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0HS8ZX8EY67T4TF46X","tsKey":"us-virginia-charles-city-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0PZY44QRDZZH62TN8K","tsKey":"us-virginia-charlotte-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0FY8X9FB05Q72QNRE5","tsKey":"us-virginia-charlottesville-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0M5TTA410XSE0FP2Y4","tsKey":"us-virginia-chesapeake-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0PSBKNGN85WHVTB6JS","tsKey":"us-virginia-chesterfield-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0GBMW3SPGPKS9RG7C8","tsKey":"us-virginia-clarke-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0P6Y87TEST13Q32CCD","tsKey":"us-virginia-colonial-heights-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0MVM77MBMF7RXF2M29","tsKey":"us-virginia-covington-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0HP1RF1VAK4C11XHKJ","tsKey":"us-virginia-craig-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0GV2VTRRVQH3KDBKFJ","tsKey":"us-virginia-culpeper-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0HEAHZ4DFZWYY2ZXJ3","tsKey":"us-virginia-cumberland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0KBEFKV554MWFC53QN","tsKey":"us-virginia-danville-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0H3FYXKEVCDJ447QJ8","tsKey":"us-virginia-dickenson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0JNBSJ1R8Y8CRM5NVV","tsKey":"us-virginia-dinwiddie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0FMSE84CHQCV38TTJ8","tsKey":"us-virginia-emporia-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0JK3ND13FVSKVP87TW","tsKey":"us-virginia-essex-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0HZJYN6NQAQWMTSY8E","tsKey":"us-virginia-fairfax-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0NJVC3N82WNDDT9C8S","tsKey":"us-virginia-fairfax-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0MA2EGPWWYJT3CNQAV","tsKey":"us-virginia-falls-church-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0H56GT8XWKRFG6NPMJ","tsKey":"us-virginia-fauquier-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0GZ8WQQW89Z5ZJ0MBN","tsKey":"us-virginia-floyd-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0JK4PYYB55WWFM9K37","tsKey":"us-virginia-fluvanna-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0J4YXEA2HWGNB9BPWZ","tsKey":"us-virginia-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0J933V3XRK15B3T73W","tsKey":"us-virginia-frederick-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0PSGNJE6T8H90HPCHH","tsKey":"us-virginia-fredericksburg-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0MYSAT95PSV24MEAMT","tsKey":"us-virginia-galax-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0N96EZNGWJG43GAS9J","tsKey":"us-virginia-giles-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0JETDKXPPHQ0J718VJ","tsKey":"us-virginia-gloucester-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0G0QRBEZ07CC0RWWAM","tsKey":"us-virginia-goochland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0N9ASZ8CRDF004RNFW","tsKey":"us-virginia-grayson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0JDMRVC1CHYRYTFQGZ","tsKey":"us-virginia-greene-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0JPJYKAXDXAFEEYR78","tsKey":"us-virginia-greensville-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0N8P1FNFJ1BPTR8WE5","tsKey":"us-virginia-halifax-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0P8P7PS73DJRZCFNJ0","tsKey":"us-virginia-hampton-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0JTS7DZ9A76CHMNZ3D","tsKey":"us-virginia-hanover-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0FRNA08GACDV11XHGZ","tsKey":"us-virginia-harrisonburg-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0PMBBB5K1R414D6N15","tsKey":"us-virginia-henrico-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0NAT6691254555QNGA","tsKey":"us-virginia-henry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0J7726Z2CR3Y5TSFQ7","tsKey":"us-virginia-highland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0FS0TT1EGPYDZCTMKY","tsKey":"us-virginia-hopewell-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0NWQ0XFZCKHSZHHWTA","tsKey":"us-virginia-isle-of-wight-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0JEN9PW8VH3YWG1ZHX","tsKey":"us-virginia-james-city-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0KTX4H59EF3V8Z0XJD","tsKey":"us-virginia-king-and-queen-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0NHWW6YH4RG2NXJGPN","tsKey":"us-virginia-king-george-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0GVB2W0GTGK5BEYY0D","tsKey":"us-virginia-king-william-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0JHSAB7WPWAPSMHYGR","tsKey":"us-virginia-lancaster-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0NGNA730MD28CPHDQ1","tsKey":"us-virginia-lee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0M65Y0P1QXB4SPKVV1","tsKey":"us-virginia-lexington-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0NM1DQRYN1XJMW9MD2","tsKey":"us-virginia-loudoun-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0KC52V3FDKNJ5B2HVX","tsKey":"us-virginia-louisa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0GK2CABDFY1PWK6JDG","tsKey":"us-virginia-lunenburg-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0KE6VN72G8YDMS6KEF","tsKey":"us-virginia-lynchburg-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0GFF7F7FST6MQ4H1N7","tsKey":"us-virginia-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0MS6X6709G4516QS7M","tsKey":"us-virginia-manassas-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0M76FXBT19NYNBTDXM","tsKey":"us-virginia-manassas-park-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0PWC3EBBWD25FN49K6","tsKey":"us-virginia-martinsville-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0JN6MEMJABDGXQ4B5R","tsKey":"us-virginia-mathews-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0N869YBT65S8HVJ08V","tsKey":"us-virginia-mecklenburg-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0JZAXBMN9VNTNMZZZ3","tsKey":"us-virginia-middlesex-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0EBMXHF0EECFJ60B4W","tsKey":"us-virginia-montgomery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0F1Q74BT7X2JPN8X5K","tsKey":"us-virginia-nelson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0KZQYVTF5GHP9NY03P","tsKey":"us-virginia-new-kent-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0PAPZNAVGNE1VQFQTW","tsKey":"us-virginia-newport-news-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0M2V4Z0M8JMFS26E3M","tsKey":"us-virginia-norfolk-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0N88RHCHAX4QNMDFKZ","tsKey":"us-virginia-northampton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0KQS1XAQZ924V8G4DG","tsKey":"us-virginia-northumberland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0KKMCGNSTZG6YG1JC9","tsKey":"us-virginia-norton-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0K0ZV03EP0NEMDAKT0","tsKey":"us-virginia-nottoway-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0KFGV7RW5FFDZG29F9","tsKey":"us-virginia-orange-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0KRAZ85M9CJV73RYZM","tsKey":"us-virginia-page-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0F58509XFMEVD1BG70","tsKey":"us-virginia-patrick-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0NHHK2MWB4W0891PFB","tsKey":"us-virginia-petersburg-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0KMV61ZJ14MP06GQQF","tsKey":"us-virginia-pittsylvania-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0PR6W8E6DW7WJ489GG","tsKey":"us-virginia-poquoson-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0K0YPERNG3ZMW61XC3","tsKey":"us-virginia-portsmouth-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0FQ8Y4GB4VCVRPM6BB","tsKey":"us-virginia-powhatan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0N9AZC1MD3C7PRDRR9","tsKey":"us-virginia-prince-edward-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0N1DH9TJSVQJ7NQ7CM","tsKey":"us-virginia-prince-george-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0MAJKW3NPWSPDPPZ01","tsKey":"us-virginia-prince-william-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0F7KYTS267567CSZ09","tsKey":"us-virginia-pulaski-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0NHHBVD9VWC456QB30","tsKey":"us-virginia-radford-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0F48KQVT5ZH54AA00J","tsKey":"us-virginia-rappahannock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0G8HHGGBQ8XEH3DBB7","tsKey":"us-virginia-richmond-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0NCHVAD1VF9J889TB5","tsKey":"us-virginia-richmond-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0PSG78HP329YQ2NN3E","tsKey":"us-virginia-roanoke-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0NKYDZ5F4RCT97DTWS","tsKey":"us-virginia-roanoke-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0MYD69PQ9SHKQ36WFH","tsKey":"us-virginia-rockbridge-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0NG5FCAYAT4B2FQEY5","tsKey":"us-virginia-rockingham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0K1JMQH4AGNCZ8BG6M","tsKey":"us-virginia-russell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0GHESXG2394TH7WVW8","tsKey":"us-virginia-salem-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0MSDATG91HA86MFTSC","tsKey":"us-virginia-scott-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0MA48KQ0DM8QC0SXRJ","tsKey":"us-virginia-shenandoah-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0F7RKJ60T5A1EAS1MK","tsKey":"us-virginia-smyth-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0N4T0CMMZHN8QEYG12","tsKey":"us-virginia-southampton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0N2MEBEK9TWTQ9BVQF","tsKey":"us-virginia-spotsylvania-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0K87S28FP0PX6GM8WS","tsKey":"us-virginia-stafford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0N3GZGJ34ABRPHY991","tsKey":"us-virginia-staunton-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0GWGXFKKR0N6EWER8H","tsKey":"us-virginia-suffolk-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0MP1TA2FAZZ012Z4SB","tsKey":"us-virginia-surry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0MHKBHCVWTJMQZ5E3G","tsKey":"us-virginia-sussex-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0MKT9661MVQBWASX6P","tsKey":"us-virginia-tazewell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0HDVCT703CEJAP63SH","tsKey":"us-virginia-virginia-beach-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0FE8REZNCYTFXDAJHR","tsKey":"us-virginia-warren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0MZJNXJVFR04QXADPD","tsKey":"us-virginia-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0GF74GCJPT6H8N3XT6","tsKey":"us-virginia-waynesboro-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0PJ788W3NDZB6362WV","tsKey":"us-virginia-westmoreland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0K1R8TAG0ZEHTKTJ84","tsKey":"us-virginia-williamsburg-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0H4VACBK484AHVCEW1","tsKey":"us-virginia-winchester-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0MWB71FPEMZP6BM3F8","tsKey":"us-virginia-wise-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0FF1A4F9V19C7FP9W2","tsKey":"us-virginia-wythe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKB0P1TJKMDXBKCDRMYQK","tsKey":"us-virginia-york-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY"},{"id":"gdst_01GW2HKCP3P76FCM0GEPH0AZE0","tsKey":"us-washington-adams-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP36ART109KQSMS8EZY","tsKey":"us-washington-asotin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP3AAT07RD5MXCMH5WN","tsKey":"us-washington-benton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP5NFRN86F4YPMWA7D5","tsKey":"us-washington-chelan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP557E4MRQ5V71M0CDW","tsKey":"us-washington-clallam-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP4X9XA7TH2BKWPY940","tsKey":"us-washington-clark-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP2EAE7C5F5E25BYXMG","tsKey":"us-washington-columbia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP392EMXTDG3C7R3R3D","tsKey":"us-washington-cowlitz-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP32NBE7903E043NXYR","tsKey":"us-washington-douglas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP3RKZQ7R85GX02G2PX","tsKey":"us-washington-ferry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP3PXMDKA2A6RGPF9VB","tsKey":"us-washington-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP3ZJCEX3P08VC5J5W1","tsKey":"us-washington-garfield-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP3X8SXWE6X92DQP59B","tsKey":"us-washington-grant-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP5TF9525A0BM5PGRAV","tsKey":"us-washington-grays-harbor-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP35R0QQDS36EWMTDH1","tsKey":"us-washington-island-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP5WX94VXBJ7PJ4CWS8","tsKey":"us-washington-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP4C7PVQBHG546JNZPV","tsKey":"us-washington-king-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP4YHJXVDB17W0BME2E","tsKey":"us-washington-kitsap-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP4VW36XYMV6FM4YQMP","tsKey":"us-washington-kittitas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP40AKG4G0P6CVHMAMH","tsKey":"us-washington-klickitat-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP306CC8J5P0GSBDZWV","tsKey":"us-washington-lewis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP45FPNZXVZWP4K7A3E","tsKey":"us-washington-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP338BHCGRH613N8PWP","tsKey":"us-washington-mason-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP5Y0J5S08HYHVRM5CG","tsKey":"us-washington-okanogan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP5ZCVMXG4AXJNF6R6Y","tsKey":"us-washington-pacific-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP4EE0Q6EDSA5299FB3","tsKey":"us-washington-pend-oreille-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP48QHP1A2D9S2RNET3","tsKey":"us-washington-pierce-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP551CCT11Y8MZAQ3YB","tsKey":"us-washington-san-juan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP5BCN22F1ZKGVDBJTD","tsKey":"us-washington-skagit-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP4E4QSYB0X17CZZEDV","tsKey":"us-washington-skamania-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP5KASMWWZEQY72XNSF","tsKey":"us-washington-snohomish-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP4FQKVV16SQJSSHCHN","tsKey":"us-washington-spokane-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP3791MPS2DG1YFRV5W","tsKey":"us-washington-stevens-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP4W5CG9G1VXVP3H7KZ","tsKey":"us-washington-thurston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP4YRD03PZZKJBDXP7F","tsKey":"us-washington-wahkiakum-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP5JDVGDWT50D93G1PV","tsKey":"us-washington-walla-walla-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP5NR5XR4WAY7ARM2X9","tsKey":"us-washington-whatcom-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP4HPPG65FAY487923C","tsKey":"us-washington-whitman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKCP4ZQ07PN77F3XS7YHM","tsKey":"us-washington-yakima-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-washington","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A"},{"id":"gdst_01GW2HKDC2M55R8MQA6QZ0AMVJ","tsKey":"us-west-virginia-barbour-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC4YYGSCV8TVBPJPZ18","tsKey":"us-west-virginia-berkeley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC4PHT815Q8DHTG6Y9C","tsKey":"us-west-virginia-boone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC26FE7AJB2SATZJ42Q","tsKey":"us-west-virginia-braxton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC539NY6VYWX9TD9QDT","tsKey":"us-west-virginia-brooke-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC5A0CPK7MRVVZNRNP8","tsKey":"us-west-virginia-cabell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC2RE1DRM5B9D41Z74S","tsKey":"us-west-virginia-calhoun-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC5YFP8SP8WVZAMVM82","tsKey":"us-west-virginia-clay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC47VV7T8DP2M1Y06W0","tsKey":"us-west-virginia-doddridge-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC5X8R75TEDXB2P2T9V","tsKey":"us-west-virginia-fayette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC2A76TNJYN6REAXPW8","tsKey":"us-west-virginia-gilmer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC28FES6EFXV2BK0G24","tsKey":"us-west-virginia-grant-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC259GJ0A4P0MS992TS","tsKey":"us-west-virginia-greenbrier-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC26Z9Q2QD4158JZF8N","tsKey":"us-west-virginia-hampshire-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC46NCNZP9MMBCBCJAF","tsKey":"us-west-virginia-hancock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC5QT28D438J15AEVBM","tsKey":"us-west-virginia-hardy-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC3M62MYK7ZZ7XXHRTW","tsKey":"us-west-virginia-harrison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC5327485PJZZSBKH9F","tsKey":"us-west-virginia-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC382M1HFNZ8EV7ZJM3","tsKey":"us-west-virginia-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC2KXAZXVP18JXN1GXM","tsKey":"us-west-virginia-kanawha-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC5TSD2KREWGG5Z1W5X","tsKey":"us-west-virginia-lewis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC47R8691TT4S3NRPZW","tsKey":"us-west-virginia-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC3H0X5GS4WANEANRP5","tsKey":"us-west-virginia-logan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC2KF947C6XVWN9HX3Q","tsKey":"us-west-virginia-marion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC3P48A3V54BRR6CS8V","tsKey":"us-west-virginia-marshall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC3EC1CJQF2R88CSRT4","tsKey":"us-west-virginia-mason-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC5ZCE7D6QF9THEJ35H","tsKey":"us-west-virginia-mcdowell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC41KRPEBGBCMYG34QG","tsKey":"us-west-virginia-mercer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC5FNDCJS5V8M73AMCA","tsKey":"us-west-virginia-mineral-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC34KKBJR8DWYY8SVMD","tsKey":"us-west-virginia-mingo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC2G5DHHW2YTZNRZSR6","tsKey":"us-west-virginia-monongalia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC57PXRS5PKFYB6NVX0","tsKey":"us-west-virginia-monroe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC3R8KXZND57D3VRGMH","tsKey":"us-west-virginia-morgan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC58V2QA4Q6NS9D4P6Y","tsKey":"us-west-virginia-nicholas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC3TRB77165XHW10960","tsKey":"us-west-virginia-ohio-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC5MET3M6J24YX82B6Q","tsKey":"us-west-virginia-pendleton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC4P71S0TJSJV29P47W","tsKey":"us-west-virginia-pleasants-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC335T5QQVWVZ9YJYX3","tsKey":"us-west-virginia-pocahontas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC5XP5QPSPTQJF58TWE","tsKey":"us-west-virginia-preston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC2NX08TJ6PZ7GYP52V","tsKey":"us-west-virginia-putnam-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC4H0AYYV4SVBQXMQ5R","tsKey":"us-west-virginia-raleigh-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC3GDFY9G5KJ7N396F6","tsKey":"us-west-virginia-randolph-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC4GY3TS187TT5E9P2F","tsKey":"us-west-virginia-ritchie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC3VC0Y6V03V5WHZXDH","tsKey":"us-west-virginia-roane-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC2T8KMGEVZSGJ69HQ0","tsKey":"us-west-virginia-summers-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC3SYJ7HZVAJCSA8JA9","tsKey":"us-west-virginia-taylor-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC37WH3T9B5SNEWF5N2","tsKey":"us-west-virginia-tucker-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC48F1K2VJZT3RXBDV2","tsKey":"us-west-virginia-tyler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC3AM6JANW0Z804YY74","tsKey":"us-west-virginia-upshur-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC4BH88NK0FGRBZ70N2","tsKey":"us-west-virginia-wayne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC2ERH4CFVAGKVS0NZ2","tsKey":"us-west-virginia-webster-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC477C3SSH4WG6WQACT","tsKey":"us-west-virginia-wetzel-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC4S32QH97YEAT9ZZ3Y","tsKey":"us-west-virginia-wirt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC458EM3WXRPGGN0QSQ","tsKey":"us-west-virginia-wood-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKDC4Y9A09BEVX8Q24F52","tsKey":"us-west-virginia-wyoming-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-west-virginia","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR"},{"id":"gdst_01GW2HKE1NZVPD27G1ZKRX3GX1","tsKey":"us-wisconsin-adams-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1HMV0QJPF94Z2BEMVH","tsKey":"us-wisconsin-ashland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1HQXS3G1PK2BR6J8V2","tsKey":"us-wisconsin-barron-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1H7WRNB8109V0T27TQ","tsKey":"us-wisconsin-bayfield-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1N11Z5BRGXDR5DE3FX","tsKey":"us-wisconsin-brown-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1JDYE2FJT9MECX3QWF","tsKey":"us-wisconsin-buffalo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1J8884PWW1S754533X","tsKey":"us-wisconsin-burnett-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1KR1F3STVHQ0SSCT18","tsKey":"us-wisconsin-calumet-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1JQDQPW43SEA4W210X","tsKey":"us-wisconsin-chippewa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1JFFVE7RPPAEJSQZN7","tsKey":"us-wisconsin-clark-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1KT9GFD9FT4PTCBQWN","tsKey":"us-wisconsin-columbia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1KDFM0374NEHQ5RXSB","tsKey":"us-wisconsin-crawford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1JD4XK3K5K10HC71Y0","tsKey":"us-wisconsin-dane-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1KSP490AHAX17NNZYW","tsKey":"us-wisconsin-dodge-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1GXKYD6Y4JSRGYX9HZ","tsKey":"us-wisconsin-door-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1M2KWVESH20KZQX7MM","tsKey":"us-wisconsin-douglas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1GX5TVFF8NGBGNMSDA","tsKey":"us-wisconsin-dunn-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1KJ2VRA12HDRWVHTMQ","tsKey":"us-wisconsin-eau-claire-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1K68JEST2B2M2WCEHS","tsKey":"us-wisconsin-florence-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1GXP4YKSPJEP0KKPFE","tsKey":"us-wisconsin-fond-du-lac-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1KWQCY071NY0NA9Y6H","tsKey":"us-wisconsin-forest-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1M74GTTSM2T3M35PW0","tsKey":"us-wisconsin-grant-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1GWCAPY05CCS7T3XVB","tsKey":"us-wisconsin-green-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1MA4MXCV6C7Q1KN598","tsKey":"us-wisconsin-green-lake-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1MXZA44AP0GG704SYH","tsKey":"us-wisconsin-iowa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1MXYD9T5M51GB49FJY","tsKey":"us-wisconsin-iron-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1KNS272G8MB63JBHWH","tsKey":"us-wisconsin-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1MM3552T4Q6G4WSDZN","tsKey":"us-wisconsin-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1M99W44PQKAE1SVT41","tsKey":"us-wisconsin-juneau-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1M6SPQW932784KMDYJ","tsKey":"us-wisconsin-kenosha-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1MJXEMHD3C7VA29P4V","tsKey":"us-wisconsin-kewaunee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1HGNSD5BCXZDPBMZGV","tsKey":"us-wisconsin-la-crosse-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1MK22TPN32S0DQEW7F","tsKey":"us-wisconsin-lafayette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1KE8ZK80XJER7BM2WW","tsKey":"us-wisconsin-langlade-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1HKGB18Z8DSCAAX1YF","tsKey":"us-wisconsin-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1NFJY99ST87CCD78NH","tsKey":"us-wisconsin-manitowoc-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1HTHX3T8AB2KPSQWA6","tsKey":"us-wisconsin-marathon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1MJXXCK299MWRTRD7E","tsKey":"us-wisconsin-marinette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1MN23DR1HWER10B2J5","tsKey":"us-wisconsin-marquette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1KH3TYQGWT12HFGATR","tsKey":"us-wisconsin-menominee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1NEEWGZKD525DPDK8Q","tsKey":"us-wisconsin-milwaukee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1HCX4EA37Z7H11YHY6","tsKey":"us-wisconsin-monroe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1MKYMJ48AAFYN611JG","tsKey":"us-wisconsin-oconto-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1MJRCWXDEPF5A9MNE4","tsKey":"us-wisconsin-oneida-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1K19VW3XJSPT7TJ9NK","tsKey":"us-wisconsin-outagamie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1N94B8CSXCTSZGED58","tsKey":"us-wisconsin-ozaukee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1MFX1RP03YYJ9DEZER","tsKey":"us-wisconsin-pepin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1M0W1B2BKW8TSB7YJE","tsKey":"us-wisconsin-pierce-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1H57SX2JGAZ82FB95W","tsKey":"us-wisconsin-polk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1MY4MT2DXTK6AH9PKD","tsKey":"us-wisconsin-portage-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1K0G73R28JDEC3FNYV","tsKey":"us-wisconsin-price-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1JSW2XCNDRKYX4SE6C","tsKey":"us-wisconsin-racine-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1HM62MR59QYNWTC8Q1","tsKey":"us-wisconsin-richland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1NEM4TJ5K2KZ50XQ6Q","tsKey":"us-wisconsin-rock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1JJQ7DXFR36HSN9EDA","tsKey":"us-wisconsin-rusk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1J7YVD2F0AD7AS553Q","tsKey":"us-wisconsin-sauk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1JN153J839T7Q0218X","tsKey":"us-wisconsin-sawyer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1HQJ6A45HFKX1QWXZC","tsKey":"us-wisconsin-shawano-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1N0MHVFYACB98CZ0DQ","tsKey":"us-wisconsin-sheboygan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1KW2HFY0RA6WGFDM7Y","tsKey":"us-wisconsin-st-croix-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1JCTQ1J5MKFXKE6R3V","tsKey":"us-wisconsin-taylor-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1K6T7PAFS9FE64XBBV","tsKey":"us-wisconsin-trempealeau-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1JKWFQZ3FQSMRJM2GK","tsKey":"us-wisconsin-vernon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1J0CEPDP8GK08NM167","tsKey":"us-wisconsin-vilas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1NNEFFNJ93AZYJQVVQ","tsKey":"us-wisconsin-walworth-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1HF3ZSC2DRHMSAF8DP","tsKey":"us-wisconsin-washburn-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1NNPAX3TGJKD7PYV0S","tsKey":"us-wisconsin-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1J8JHS1F0CPN2YN8HB","tsKey":"us-wisconsin-waukesha-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1KTRV5F4G113XW4FV9","tsKey":"us-wisconsin-waupaca-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1NA5728TFSRQW7J4ZF","tsKey":"us-wisconsin-waushara-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1J5RTHF2B9YM2RTN8E","tsKey":"us-wisconsin-winnebago-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKE1HQEXMF3PZZNM683HQ","tsKey":"us-wisconsin-wood-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wisconsin","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK"},{"id":"gdst_01GW2HKETVKKYVQJJG89BPPCG2","tsKey":"us-wyoming-albany-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wyoming","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV"},{"id":"gdst_01GW2HKETT2YZ4N0BMFSDY4KT6","tsKey":"us-wyoming-big-horn-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wyoming","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV"},{"id":"gdst_01GW2HKETVT9GR8CVF23R55DFK","tsKey":"us-wyoming-campbell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wyoming","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV"},{"id":"gdst_01GW2HKETW9614S6VMPDG5VTFG","tsKey":"us-wyoming-carbon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wyoming","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV"},{"id":"gdst_01GW2HKETVBFV6PA4WZX3M4RGP","tsKey":"us-wyoming-converse-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wyoming","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV"},{"id":"gdst_01GW2HKETW0BGT97DWSV2HSFD8","tsKey":"us-wyoming-crook-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wyoming","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV"},{"id":"gdst_01GW2HKETWZBYZ9QV485HEX3M8","tsKey":"us-wyoming-fremont-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wyoming","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV"},{"id":"gdst_01GW2HKETV194EGNVDTSEWDBK6","tsKey":"us-wyoming-goshen-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wyoming","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV"},{"id":"gdst_01GW2HKETVTJG1JNESES2R8XCS","tsKey":"us-wyoming-hot-springs-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wyoming","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV"},{"id":"gdst_01GW2HKETVEKZBW19M0Z9J3QNB","tsKey":"us-wyoming-johnson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wyoming","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV"},{"id":"gdst_01GW2HKETW8Z2074XPPRG2N2W8","tsKey":"us-wyoming-laramie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wyoming","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV"},{"id":"gdst_01GW2HKETVTKVJB62703CG21XP","tsKey":"us-wyoming-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wyoming","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV"},{"id":"gdst_01GW2HKETTA0FA1KQFXDS6E17H","tsKey":"us-wyoming-natrona-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wyoming","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV"},{"id":"gdst_01GW2HKETV55HRRF7AF9W0SH6F","tsKey":"us-wyoming-niobrara-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wyoming","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV"},{"id":"gdst_01GW2HKETVECCRN4ESV2G5GSP3","tsKey":"us-wyoming-park-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wyoming","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV"},{"id":"gdst_01GW2HKETT65MBG2D3GHRTMYDQ","tsKey":"us-wyoming-platte-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wyoming","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV"},{"id":"gdst_01GW2HKETTMR4Z4AB3D517VQJ5","tsKey":"us-wyoming-sheridan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wyoming","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV"},{"id":"gdst_01GW2HKETVDM6PS6G4A4QP48G0","tsKey":"us-wyoming-sublette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wyoming","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV"},{"id":"gdst_01GW2HKETVW7A5Z25YCZ7T924X","tsKey":"us-wyoming-sweetwater-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wyoming","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV"},{"id":"gdst_01GW2HKETV201GQXER3E3YDGFR","tsKey":"us-wyoming-teton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wyoming","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV"},{"id":"gdst_01GW2HKETVV4T48MEJ6EMX74RG","tsKey":"us-wyoming-uinta-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wyoming","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV"},{"id":"gdst_01GW2HKETVJ56T1TDW4XZT431H","tsKey":"us-wyoming-washakie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wyoming","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV"},{"id":"gdst_01GW2HKETT803G2P13M7WD9D04","tsKey":"us-wyoming-weston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"parent":{"tsKey":"us-wyoming","tsNs":"gov-dist"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV"}]
\ No newline at end of file
diff --git a/packages/ui/mockData/json/fieldOpt.govDists.json b/packages/ui/mockData/json/fieldOpt.govDists.json
new file mode 100644
index 0000000000..540a15acb9
--- /dev/null
+++ b/packages/ui/mockData/json/fieldOpt.govDists.json
@@ -0,0 +1 @@
+[{"id":"gdst_01GW2HKFSK070K54ZRAT3H42C4","tsKey":"ca-alberta","tsNs":"gov-dist","abbrev":"AB","country":{"cca2":"CA"},"govDistType":{"tsKey":"type-province","tsNs":"gov-dist"},"parentId":null,"name":"Alberta","slug":"ca-alberta","iso":"CA-AB","countryId":"ctry_01GW2HHDKAWXWYHAAESAA5HH94"},{"id":"gdst_01GW2HKFSMR5V1P769F2G2804N","tsKey":"ca-british-columbia","tsNs":"gov-dist","abbrev":"BC","country":{"cca2":"CA"},"govDistType":{"tsKey":"type-province","tsNs":"gov-dist"},"parentId":null,"name":"British Columbia","slug":"ca-british-columbia","iso":"CA-BC","countryId":"ctry_01GW2HHDKAWXWYHAAESAA5HH94"},{"id":"gdst_01GW2HKFSRPH07M2AQSJWESENJ","tsKey":"ca-manitoba","tsNs":"gov-dist","abbrev":"MB","country":{"cca2":"CA"},"govDistType":{"tsKey":"type-province","tsNs":"gov-dist"},"parentId":null,"name":"Manitoba","slug":"ca-manitoba","iso":"CA-MB","countryId":"ctry_01GW2HHDKAWXWYHAAESAA5HH94"},{"id":"gdst_01GW2HKFSRBQ5FXY7ESXTZGR2V","tsKey":"ca-new-brunswick","tsNs":"gov-dist","abbrev":"NB","country":{"cca2":"CA"},"govDistType":{"tsKey":"type-province","tsNs":"gov-dist"},"parentId":null,"name":"New Brunswick","slug":"ca-new-brunswick","iso":"CA-NB","countryId":"ctry_01GW2HHDKAWXWYHAAESAA5HH94"},{"id":"gdst_01GW2HKFSS7E4VCJ3PSAFDZG4A","tsKey":"ca-newfoundland-and-labrador","tsNs":"gov-dist","abbrev":"NL","country":{"cca2":"CA"},"govDistType":{"tsKey":"type-province","tsNs":"gov-dist"},"parentId":null,"name":"Newfoundland and Labrador","slug":"ca-newfoundland-and-labrador","iso":"CA-NL","countryId":"ctry_01GW2HHDKAWXWYHAAESAA5HH94"},{"id":"gdst_01GW2HKFSWQPT9JHKMGGN43BRA","tsKey":"ca-northwest-territories","tsNs":"gov-dist","abbrev":"NT","country":{"cca2":"CA"},"govDistType":{"tsKey":"type-territory","tsNs":"gov-dist"},"parentId":null,"name":"Northwest Territories","slug":"ca-northwest-territories","iso":"CA-NT","countryId":"ctry_01GW2HHDKAWXWYHAAESAA5HH94"},{"id":"gdst_01GW2HKFSY6D07GJX9M0MT2VWQ","tsKey":"ca-nova-scotia","tsNs":"gov-dist","abbrev":"NS","country":{"cca2":"CA"},"govDistType":{"tsKey":"type-province","tsNs":"gov-dist"},"parentId":null,"name":"Nova Scotia","slug":"ca-nova-scotia","iso":"CA-NS","countryId":"ctry_01GW2HHDKAWXWYHAAESAA5HH94"},{"id":"gdst_01GW2HKFSZRAJ76MWQSW5GX6KZ","tsKey":"ca-nunavut","tsNs":"gov-dist","abbrev":"NU","country":{"cca2":"CA"},"govDistType":{"tsKey":"type-territory","tsNs":"gov-dist"},"parentId":null,"name":"Nunavut","slug":"ca-nunavut","iso":"CA-NU","countryId":"ctry_01GW2HHDKAWXWYHAAESAA5HH94"},{"id":"gdst_01GW2HKFTJXFCJ87G5J1XKA6R3","tsKey":"ca-ontario","tsNs":"gov-dist","abbrev":"ON","country":{"cca2":"CA"},"govDistType":{"tsKey":"type-province","tsNs":"gov-dist"},"parentId":null,"name":"Ontario","slug":"ca-ontario","iso":"CA-ON","countryId":"ctry_01GW2HHDKAWXWYHAAESAA5HH94"},{"id":"gdst_01GW2HKFTNQQHHFQ9SRDB91SHQ","tsKey":"ca-prince-edward-island","tsNs":"gov-dist","abbrev":"PE","country":{"cca2":"CA"},"govDistType":{"tsKey":"type-province","tsNs":"gov-dist"},"parentId":null,"name":"Prince Edward Island","slug":"ca-prince-edward-island","iso":"CA-PE","countryId":"ctry_01GW2HHDKAWXWYHAAESAA5HH94"},{"id":"gdst_01GW2HKFTNBZ4QT6F6AHNF8H46","tsKey":"ca-quebec","tsNs":"gov-dist","abbrev":"QC","country":{"cca2":"CA"},"govDistType":{"tsKey":"type-province","tsNs":"gov-dist"},"parentId":null,"name":"Quebec","slug":"ca-quebec","iso":"CA-QC","countryId":"ctry_01GW2HHDKAWXWYHAAESAA5HH94"},{"id":"gdst_01GW2HKFTR4D2KWGB6G1GJ15PB","tsKey":"ca-saskatchewan","tsNs":"gov-dist","abbrev":"SK","country":{"cca2":"CA"},"govDistType":{"tsKey":"type-province","tsNs":"gov-dist"},"parentId":null,"name":"Saskatchewan","slug":"ca-saskatchewan","iso":"CA-SK","countryId":"ctry_01GW2HHDKAWXWYHAAESAA5HH94"},{"id":"gdst_01GW2HKFTRD0ANP4QTCTQ9VH0J","tsKey":"ca-yukon","tsNs":"gov-dist","abbrev":"YT","country":{"cca2":"CA"},"govDistType":{"tsKey":"type-territory","tsNs":"gov-dist"},"parentId":null,"name":"Yukon","slug":"ca-yukon","iso":"CA-YT","countryId":"ctry_01GW2HHDKAWXWYHAAESAA5HH94"},{"id":"gdst_01GW2HKJ7NT27K6BDAV0KE00H0","tsKey":"mx-aguascalientes","tsNs":"gov-dist","abbrev":"Ags.","country":{"cca2":"MX"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Aguascalientes","slug":"mx-aguascalientes","iso":"MX-AGU","countryId":"ctry_01GW2HHDKB9DG2T2YZM5MFFVX9"},{"id":"gdst_01GW2HKJ7NHSPR1AZ1RKJR6VAX","tsKey":"mx-baja-california","tsNs":"gov-dist","abbrev":"B.C.","country":{"cca2":"MX"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Baja California","slug":"mx-baja-california","iso":"MX-BCN","countryId":"ctry_01GW2HHDKB9DG2T2YZM5MFFVX9"},{"id":"gdst_01GW2HKJ7PP2TBNC8MQQS02N6S","tsKey":"mx-baja-california-sur","tsNs":"gov-dist","abbrev":"B.C.S.","country":{"cca2":"MX"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Baja California Sur","slug":"mx-baja-california-sur","iso":"MX-BCS","countryId":"ctry_01GW2HHDKB9DG2T2YZM5MFFVX9"},{"id":"gdst_01GW2HKJ7PYKWCEPVPG68EDP4F","tsKey":"mx-campeche","tsNs":"gov-dist","abbrev":"Camp.","country":{"cca2":"MX"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Campeche","slug":"mx-campeche","iso":"MX-CAM","countryId":"ctry_01GW2HHDKB9DG2T2YZM5MFFVX9"},{"id":"gdst_01GW2HKJ7QP8FG3WQCWFTQKJC7","tsKey":"mx-chiapas","tsNs":"gov-dist","abbrev":"Chis.","country":{"cca2":"MX"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Chiapas","slug":"mx-chiapas","iso":"MX-CHP","countryId":"ctry_01GW2HHDKB9DG2T2YZM5MFFVX9"},{"id":"gdst_01GW2HKJ7QGNZ81C60E6AX505R","tsKey":"mx-chihuahua","tsNs":"gov-dist","abbrev":"Chih.","country":{"cca2":"MX"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Chihuahua","slug":"mx-chihuahua","iso":"MX-CHH","countryId":"ctry_01GW2HHDKB9DG2T2YZM5MFFVX9"},{"id":"gdst_01GW2HKJ7QDVHS9K3FJGJ3DCVG","tsKey":"mx-coahuila","tsNs":"gov-dist","abbrev":"Coah.","country":{"cca2":"MX"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Coahuila","slug":"mx-coahuila","iso":"MX-COA","countryId":"ctry_01GW2HHDKB9DG2T2YZM5MFFVX9"},{"id":"gdst_01GW2HKJ7R844VVGTC4G4TTXE0","tsKey":"mx-colima","tsNs":"gov-dist","abbrev":"Col.","country":{"cca2":"MX"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Colima","slug":"mx-colima","iso":"MX-COL","countryId":"ctry_01GW2HHDKB9DG2T2YZM5MFFVX9"},{"id":"gdst_01GW2HKJ7RNCFT58G1MBPDX7RE","tsKey":"mx-durango","tsNs":"gov-dist","abbrev":"Dgo.","country":{"cca2":"MX"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Durango","slug":"mx-durango","iso":"MX-DUR","countryId":"ctry_01GW2HHDKB9DG2T2YZM5MFFVX9"},{"id":"gdst_01GW2HKJ7SKC6E0B6N0NY2K6M8","tsKey":"mx-guanajuato","tsNs":"gov-dist","abbrev":"Gto.","country":{"cca2":"MX"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Guanajuato","slug":"mx-guanajuato","iso":"MX-GUA","countryId":"ctry_01GW2HHDKB9DG2T2YZM5MFFVX9"},{"id":"gdst_01GW2HKJ7SDMPRET5KPDRK8Y5Y","tsKey":"mx-guerrero","tsNs":"gov-dist","abbrev":"Gro.","country":{"cca2":"MX"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Guerrero","slug":"mx-guerrero","iso":"MX-GRO","countryId":"ctry_01GW2HHDKB9DG2T2YZM5MFFVX9"},{"id":"gdst_01GW2HKJ7SDVGBXMWX3GN3QNK0","tsKey":"mx-hidalgo","tsNs":"gov-dist","abbrev":"Hgo.","country":{"cca2":"MX"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Hidalgo","slug":"mx-hidalgo","iso":"MX-HID","countryId":"ctry_01GW2HHDKB9DG2T2YZM5MFFVX9"},{"id":"gdst_01GW2HKJ7TRTV31X30NRY0NYX2","tsKey":"mx-jalisco","tsNs":"gov-dist","abbrev":"Jal.","country":{"cca2":"MX"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Jalisco","slug":"mx-jalisco","iso":"MX-JAL","countryId":"ctry_01GW2HHDKB9DG2T2YZM5MFFVX9"},{"id":"gdst_01GW2HKJ7TH3H6DP8T7X9JD0P7","tsKey":"mx-mexico","tsNs":"gov-dist","abbrev":"Méx.","country":{"cca2":"MX"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Mexico","slug":"mx-mexico","iso":"MX-DIF","countryId":"ctry_01GW2HHDKB9DG2T2YZM5MFFVX9"},{"id":"gdst_01GW2HKJ7TVTPXQXX72QHX8P8T","tsKey":"mx-michoacan","tsNs":"gov-dist","abbrev":"Mich.","country":{"cca2":"MX"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Michoacan","slug":"mx-michoacan","iso":"MX-MIC","countryId":"ctry_01GW2HHDKB9DG2T2YZM5MFFVX9"},{"id":"gdst_01GW2HKJ7VTQZZ91SN99P0N4ZH","tsKey":"mx-morelos","tsNs":"gov-dist","abbrev":"Mor.","country":{"cca2":"MX"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Morelos","slug":"mx-morelos","iso":"MX-MOR","countryId":"ctry_01GW2HHDKB9DG2T2YZM5MFFVX9"},{"id":"gdst_01GW2HKJ7VAF5NW1VQ7KQ54A4T","tsKey":"mx-nayarit","tsNs":"gov-dist","abbrev":"Nay.","country":{"cca2":"MX"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Nayarit","slug":"mx-nayarit","iso":"MX-NAY","countryId":"ctry_01GW2HHDKB9DG2T2YZM5MFFVX9"},{"id":"gdst_01GW2HKJ7WVV7V5NA1XP5BD0A7","tsKey":"mx-nuevo-leon","tsNs":"gov-dist","abbrev":"N.L.","country":{"cca2":"MX"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Nuevo Leon","slug":"mx-nuevo-leon","iso":"MX-NLE","countryId":"ctry_01GW2HHDKB9DG2T2YZM5MFFVX9"},{"id":"gdst_01GW2HKJ7WMZRAAAYWXZ4HV89S","tsKey":"mx-oaxaca","tsNs":"gov-dist","abbrev":"Oax.","country":{"cca2":"MX"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Oaxaca","slug":"mx-oaxaca","iso":"MX-OAX","countryId":"ctry_01GW2HHDKB9DG2T2YZM5MFFVX9"},{"id":"gdst_01GW2HKJ7WQS81DVDTGPKDBGYR","tsKey":"mx-puebla","tsNs":"gov-dist","abbrev":"Pue.","country":{"cca2":"MX"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Puebla","slug":"mx-puebla","iso":"MX-PUE","countryId":"ctry_01GW2HHDKB9DG2T2YZM5MFFVX9"},{"id":"gdst_01GW2HKJ7XQWNY7KYE4GFSRVY9","tsKey":"mx-queretaro","tsNs":"gov-dist","abbrev":"Qro.","country":{"cca2":"MX"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Queretaro","slug":"mx-queretaro","iso":"MX-QUE","countryId":"ctry_01GW2HHDKB9DG2T2YZM5MFFVX9"},{"id":"gdst_01GW2HKJ7X3M2TZXDZ2984KY3V","tsKey":"mx-quintana-roo","tsNs":"gov-dist","abbrev":"Q. Roo.","country":{"cca2":"MX"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Quintana Roo","slug":"mx-quintana-roo","iso":"MX-ROO","countryId":"ctry_01GW2HHDKB9DG2T2YZM5MFFVX9"},{"id":"gdst_01GW2HKJ7X81B6PQNKDGBY35FT","tsKey":"mx-san-luis-potosi","tsNs":"gov-dist","abbrev":"S.L.P.","country":{"cca2":"MX"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"San Luis Potosi","slug":"mx-san-luis-potosi","iso":"MX-SLP","countryId":"ctry_01GW2HHDKB9DG2T2YZM5MFFVX9"},{"id":"gdst_01GW2HKJ7XBS59FF133TSA8CX5","tsKey":"mx-sinaloa","tsNs":"gov-dist","abbrev":"Sin.","country":{"cca2":"MX"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Sinaloa","slug":"mx-sinaloa","iso":"MX-SIN","countryId":"ctry_01GW2HHDKB9DG2T2YZM5MFFVX9"},{"id":"gdst_01GW2HKJ7YBSH4ANCX20Y2Z153","tsKey":"mx-sonora","tsNs":"gov-dist","abbrev":"Son.","country":{"cca2":"MX"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Sonora","slug":"mx-sonora","iso":"MX-SON","countryId":"ctry_01GW2HHDKB9DG2T2YZM5MFFVX9"},{"id":"gdst_01GW2HKJ7Y4KN0Y21FFKGM0R36","tsKey":"mx-tabasco","tsNs":"gov-dist","abbrev":"Tab.","country":{"cca2":"MX"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Tabasco","slug":"mx-tabasco","iso":"MX-TAB","countryId":"ctry_01GW2HHDKB9DG2T2YZM5MFFVX9"},{"id":"gdst_01GW2HKJ7YV4W4HKPX6RX8ZGWD","tsKey":"mx-tamaulipas","tsNs":"gov-dist","abbrev":"Tamps.","country":{"cca2":"MX"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Tamaulipas","slug":"mx-tamaulipas","iso":"MX-TAM","countryId":"ctry_01GW2HHDKB9DG2T2YZM5MFFVX9"},{"id":"gdst_01GW2HKJ7ZQFMCWT4EF2DW9HRC","tsKey":"mx-tlaxcala","tsNs":"gov-dist","abbrev":"Tlax.","country":{"cca2":"MX"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Tlaxcala","slug":"mx-tlaxcala","iso":"MX-TLA","countryId":"ctry_01GW2HHDKB9DG2T2YZM5MFFVX9"},{"id":"gdst_01GW2HKJ7ZPEGHSE8Y0C6AJ2HK","tsKey":"mx-veracruz","tsNs":"gov-dist","abbrev":"Ver.","country":{"cca2":"MX"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Veracruz","slug":"mx-veracruz","iso":"MX-VER","countryId":"ctry_01GW2HHDKB9DG2T2YZM5MFFVX9"},{"id":"gdst_01GW2HKJ7ZAFQ34D6TVHT2AJ88","tsKey":"mx-yucatan","tsNs":"gov-dist","abbrev":"Yuc.","country":{"cca2":"MX"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Yucatan","slug":"mx-yucatan","iso":"MX-YUC","countryId":"ctry_01GW2HHDKB9DG2T2YZM5MFFVX9"},{"id":"gdst_01GW2HKJ7Z862E7R2ENKYPSZPY","tsKey":"mx-zacatecas","tsNs":"gov-dist","abbrev":"Zac.","country":{"cca2":"MX"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Zacatecas","slug":"mx-zacatecas","iso":"MX-ZAC","countryId":"ctry_01GW2HHDKB9DG2T2YZM5MFFVX9"},{"id":"gdst_01GW2HKF7MNPRM44JZ70DZNZ75","tsKey":"pr-adjuntas","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Adjuntas","slug":"pr-adjuntas","iso":"PR-01","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7QQADN2XEJEGRZGA32","tsKey":"pr-aguada","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Aguada","slug":"pr-aguada","iso":"PR-02","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7GDB9A0Y61RH4DE1Y7","tsKey":"pr-aguadilla","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Aguadilla","slug":"pr-aguadilla","iso":"PR-03","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7MHG9HQGMG6HW76GTY","tsKey":"pr-aguas-buenas","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Aguas Buenas","slug":"pr-aguas-buenas","iso":"PR-04","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7QZYRM5N4YWRDX0D51","tsKey":"pr-aibonito","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Aibonito","slug":"pr-aibonito","iso":"PR-05","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7MJ6N0ZP2EVQW7PKSZ","tsKey":"pr-anasco","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Añasco","slug":"pr-anasco","iso":"PR-06","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7ASDCF6MJX1GR7A9WD","tsKey":"pr-arecibo","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Arecibo","slug":"pr-arecibo","iso":"PR-07","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7QAWDF8MDJPC4ATW3C","tsKey":"pr-arroyo","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Arroyo","slug":"pr-arroyo","iso":"PR-08","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7KWSFQ2BBNE06FBJ8B","tsKey":"pr-barceloneta","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Barceloneta","slug":"pr-barceloneta","iso":"PR-09","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7AAHGX7T7W6AZJWYAE","tsKey":"pr-barranquitas","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Barranquitas","slug":"pr-barranquitas","iso":"PR-10","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7K7GQPKHXMAZ353S8Q","tsKey":"pr-bayamon","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Bayamón","slug":"pr-bayamon","iso":"PR-11","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7NB99SEGDAGPWGQ7HH","tsKey":"pr-cabo-rojo","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Cabo Rojo","slug":"pr-cabo-rojo","iso":"PR-12","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7BSBYYNEMZ6QVF8227","tsKey":"pr-caguas","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Caguas","slug":"pr-caguas","iso":"PR-13","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7E342VRJMB9JBQGCB8","tsKey":"pr-camuy","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Camuy","slug":"pr-camuy","iso":"PR-14","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7K6K1YGQMXC75C7FEN","tsKey":"pr-canovanas","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Canóvanas","slug":"pr-canovanas","iso":"PR-15","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7B83PQP7G4GY5H1F1Y","tsKey":"pr-carolina","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Carolina","slug":"pr-carolina","iso":"PR-16","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7N2795CHTK7B9FMBMT","tsKey":"pr-catano","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Cataño","slug":"pr-catano","iso":"PR-17","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7EJC9Z7Q854T284T8Q","tsKey":"pr-cayey","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Cayey","slug":"pr-cayey","iso":"PR-18","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7N4BXQNPGJ2SSB3HZP","tsKey":"pr-ceiba","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Ceiba","slug":"pr-ceiba","iso":"PR-19","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7KNW1P6M0CBTP9DJPH","tsKey":"pr-ciales","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Ciales","slug":"pr-ciales","iso":"PR-20","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7ES2899PBSYADF5CGZ","tsKey":"pr-cidra","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Cidra","slug":"pr-cidra","iso":"PR-21","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7E1MAS1DCAF251JMS0","tsKey":"pr-coamo","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Coamo","slug":"pr-coamo","iso":"PR-22","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7C8TEXW0TX7BNR3ZJP","tsKey":"pr-comerio","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Comerío","slug":"pr-comerio","iso":"PR-23","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7NM95AMSGKNYVNMX4K","tsKey":"pr-corozal","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Corozal","slug":"pr-corozal","iso":"PR-24","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7NJ8N815ZSVQ6PP8F8","tsKey":"pr-culebra","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Culebra","slug":"pr-culebra","iso":"PR-25","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7KY7TE0STKHEKB8TCT","tsKey":"pr-dorado","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Dorado","slug":"pr-dorado","iso":"PR-26","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7FJX1TV2FACXBDTY8V","tsKey":"pr-fajardo","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Fajardo","slug":"pr-fajardo","iso":"PR-27","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7CT97CA6YVEKY451FF","tsKey":"pr-florida","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Florida","slug":"pr-florida","iso":"PR-28","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7FKYKQ8FJ5EAG5FQGG","tsKey":"pr-guanica","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Guánica","slug":"pr-guanica","iso":"PR-29","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7N8X0C9FVKWQRPZ0N5","tsKey":"pr-guayama","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Guayama","slug":"pr-guayama","iso":"PR-30","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7FP0SMK1DBEP03CCPT","tsKey":"pr-guayanilla","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Guayanilla","slug":"pr-guayanilla","iso":"PR-31","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7CPSVHHJVMRV1TCEPH","tsKey":"pr-guaynabo","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Guaynabo","slug":"pr-guaynabo","iso":"PR-32","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7KPB26QY6V5AGPHQCK","tsKey":"pr-gurabo","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Gurabo","slug":"pr-gurabo","iso":"PR-33","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7PBJAHMG2YTEB5E6QN","tsKey":"pr-hatillo","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Hatillo","slug":"pr-hatillo","iso":"PR-34","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7GKZBEW06ATJGN7YA0","tsKey":"pr-hormigueros","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Hormigueros","slug":"pr-hormigueros","iso":"PR-35","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7C8PZMQX3ZPA4SQA0R","tsKey":"pr-humacao","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Humacao","slug":"pr-humacao","iso":"PR-36","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7QNDYT5EJJSNHV70Q0","tsKey":"pr-isabela","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Isabela","slug":"pr-isabela","iso":"PR-37","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7GFWQFZM4W8B6XE278","tsKey":"pr-jayuya","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Jayuya","slug":"pr-jayuya","iso":"PR-38","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7JCH0F0VGDMC9T859G","tsKey":"pr-juana-diaz","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Juana Díaz","slug":"pr-juana-diaz","iso":"PR-39","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7KKF2ZRBGWJ65XYB1H","tsKey":"pr-juncos","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Juncos","slug":"pr-juncos","iso":"PR-40","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7GJZ9K8JZHNY36F1S1","tsKey":"pr-lajas","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Lajas","slug":"pr-lajas","iso":"PR-41","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7GP9242YXKBP7ZY7SZ","tsKey":"pr-lares","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Lares","slug":"pr-lares","iso":"PR-42","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7DQFZ2RSYBJQ6ZTTSX","tsKey":"pr-las-marias","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Las Marías","slug":"pr-las-marias","iso":"PR-43","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7MZFQQ65W2WV6B3HFJ","tsKey":"pr-las-piedras","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Las Piedras","slug":"pr-las-piedras","iso":"PR-44","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7P4GF3D9AH52RC8PAB","tsKey":"pr-loiza","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Loíza","slug":"pr-loiza","iso":"PR-45","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7G4BFBE603PNE92JZ7","tsKey":"pr-luquillo","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Luquillo","slug":"pr-luquillo","iso":"PR-46","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7PWWJXJ0XKJW6BRCQ1","tsKey":"pr-manati","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Manatí","slug":"pr-manati","iso":"PR-47","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7DKTN8REXVNGVAECB8","tsKey":"pr-maricao","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Maricao","slug":"pr-maricao","iso":"PR-48","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7GJBK2M8GR9YSWMHM0","tsKey":"pr-maunabo","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Maunabo","slug":"pr-maunabo","iso":"PR-49","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7PJWWVN43HSZXECPP4","tsKey":"pr-mayaguez","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Mayagüez","slug":"pr-mayaguez","iso":"PR-50","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7M2DS24Q59CSHA0DY5","tsKey":"pr-moca","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Moca","slug":"pr-moca","iso":"PR-51","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7H4FBMYSFFGJZYH0MH","tsKey":"pr-morovis","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Morovis","slug":"pr-morovis","iso":"PR-52","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7HJBVR2JFQ1VAWS6JD","tsKey":"pr-naguabo","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Naguabo","slug":"pr-naguabo","iso":"PR-53","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7DCSXHCYDJ28QWER0N","tsKey":"pr-naranjito","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Naranjito","slug":"pr-naranjito","iso":"PR-54","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7PQJ4CM33MH3AEM1RA","tsKey":"pr-orocovis","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Orocovis","slug":"pr-orocovis","iso":"PR-55","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7HFBFSHR7JYV7NHF0Z","tsKey":"pr-patillas","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Patillas","slug":"pr-patillas","iso":"PR-56","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7MD86ZXFZYAKS2GJNR","tsKey":"pr-penuelas","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Peñuelas","slug":"pr-penuelas","iso":"PR-57","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7PV9TMP8VWK93FTV2J","tsKey":"pr-ponce","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Ponce","slug":"pr-ponce","iso":"PR-58","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7D4HT3G8QJ6825DV48","tsKey":"pr-quebradillas","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Quebradillas","slug":"pr-quebradillas","iso":"PR-59","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7HMQPDNKPBKNXDZR6P","tsKey":"pr-rincon","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Rincón","slug":"pr-rincon","iso":"PR-60","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7HDC2BETD8TXG8M3N8","tsKey":"pr-rio-grande","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Río Grande","slug":"pr-rio-grande","iso":"PR-61","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7PYS8BKRNW15QN0S0D","tsKey":"pr-sabana-grande","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Sabana Grande","slug":"pr-sabana-grande","iso":"PR-62","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7MZHTPEG6PYHA6FWFF","tsKey":"pr-salinas","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Salinas","slug":"pr-salinas","iso":"PR-63","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7H0Q44P9ERJFFPJBFC","tsKey":"pr-san-german","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"San Germán","slug":"pr-san-german","iso":"PR-64","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7Q4W804RJYJGSN9YDS","tsKey":"pr-san-juan","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"San Juan","slug":"pr-san-juan","iso":"PR-65","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7DMJDRY12E121NAPY5","tsKey":"pr-san-lorenzo","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"San Lorenzo","slug":"pr-san-lorenzo","iso":"PR-66","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7H2VNGTNFXZW160HHP","tsKey":"pr-san-sebastian","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"San Sebastián","slug":"pr-san-sebastian","iso":"PR-67","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7QD21G3Y0R6E0CB8RH","tsKey":"pr-santa-isabel","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Santa Isabel","slug":"pr-santa-isabel","iso":"PR-68","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7DCAZN6WSP89JENB8R","tsKey":"pr-toa-alta","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Toa Alta","slug":"pr-toa-alta","iso":"PR-69","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7J713E50Y0QV06MQXV","tsKey":"pr-toa-baja","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Toa Baja","slug":"pr-toa-baja","iso":"PR-70","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7M73DDSZHXFGQ590SV","tsKey":"pr-trujillo-alto","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Trujillo Alto","slug":"pr-trujillo-alto","iso":"PR-71","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7QAE0RFPT8NC27V024","tsKey":"pr-utuado","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Utuado","slug":"pr-utuado","iso":"PR-72","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7JSS7C4C4QRJHCMTJH","tsKey":"pr-vega-alta","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Vega Alta","slug":"pr-vega-alta","iso":"PR-73","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7EJNVQWD2TRZT2SH0S","tsKey":"pr-vega-baja","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Vega Baja","slug":"pr-vega-baja","iso":"PR-74","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7J1ADADNHCE9AWWGTP","tsKey":"pr-vieques","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Vieques","slug":"pr-vieques","iso":"PR-75","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7J3GGEMV7WYXFEP5AS","tsKey":"pr-villalba","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Villalba","slug":"pr-villalba","iso":"PR-76","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7J0062R97R77JPGEH6","tsKey":"pr-yabucoa","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Yabucoa","slug":"pr-yabucoa","iso":"PR-77","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HKF7JBB2EXCZFTX3V5ABR","tsKey":"pr-yauco","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"PR"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":null,"name":"Yauco","slug":"pr-yauco","iso":"PR-78","countryId":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY"},{"id":"gdst_01GW2HHY0735M7CQSXR31HP114","tsKey":"us-alabama","tsNs":"gov-dist","abbrev":"AL","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Alabama","slug":"us-alabama","iso":"US-AL","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFHW2VY1RV17GT1DD4R","tsKey":"us-alabama-autauga-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Autauga","slug":"us-alabama-autauga-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFMAZB6BC28PJM6NQHP","tsKey":"us-alabama-baldwin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Baldwin","slug":"us-alabama-baldwin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFM83H980VZB3WQGZ7N","tsKey":"us-alabama-barbour-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Barbour","slug":"us-alabama-barbour-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFMP68X8PHNAJ06Z24B","tsKey":"us-alabama-bibb-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Bibb","slug":"us-alabama-bibb-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFH6B2PYR6EN4V3VFVX","tsKey":"us-alabama-blount-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Blount","slug":"us-alabama-blount-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFMNS2YAEX2M3FTSFTQ","tsKey":"us-alabama-bullock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Bullock","slug":"us-alabama-bullock-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFNN78AH84F16DKADZC","tsKey":"us-alabama-butler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Butler","slug":"us-alabama-butler-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFMMS3CDABJ3Z80GGJA","tsKey":"us-alabama-calhoun-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Calhoun","slug":"us-alabama-calhoun-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFH1TDS4HXMJ6EZDCCM","tsKey":"us-alabama-chambers-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Chambers","slug":"us-alabama-chambers-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFNKBPA44YQX67P33KX","tsKey":"us-alabama-cherokee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Cherokee","slug":"us-alabama-cherokee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFJ7SJ5EADNYW6RZPZ5","tsKey":"us-alabama-chilton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Chilton","slug":"us-alabama-chilton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFJYD6WZZR4KR4DMXEC","tsKey":"us-alabama-choctaw-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Choctaw","slug":"us-alabama-choctaw-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFJ5G8DJ46NRWD1M1N5","tsKey":"us-alabama-clarke-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Clarke","slug":"us-alabama-clarke-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFMPD5S50W32EPWA0NB","tsKey":"us-alabama-clay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Clay","slug":"us-alabama-clay-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFJCYF3871F5KJNTBT2","tsKey":"us-alabama-cleburne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Cleburne","slug":"us-alabama-cleburne-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFJQY7DJV3ZFRS1TGDR","tsKey":"us-alabama-coffee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Coffee","slug":"us-alabama-coffee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFJEA2NVR1NFA4WSPWA","tsKey":"us-alabama-colbert-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Colbert","slug":"us-alabama-colbert-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFNE610J729EGG04PHF","tsKey":"us-alabama-conecuh-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Conecuh","slug":"us-alabama-conecuh-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFK2KHXFRM30KYH8YHD","tsKey":"us-alabama-coosa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Coosa","slug":"us-alabama-coosa-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFN13H76ZQY7NMABC63","tsKey":"us-alabama-covington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Covington","slug":"us-alabama-covington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFM4ZE5FCX9X2JBR9JN","tsKey":"us-alabama-crenshaw-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Crenshaw","slug":"us-alabama-crenshaw-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFN8Y9AZB47BRZQV9CG","tsKey":"us-alabama-cullman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Cullman","slug":"us-alabama-cullman-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFJE1SCENN0X3AHAPBA","tsKey":"us-alabama-dale-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Dale","slug":"us-alabama-dale-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFKXVG8JM5VMXYE39NS","tsKey":"us-alabama-dallas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Dallas","slug":"us-alabama-dallas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFNQC0N5XC7VKEQDQN3","tsKey":"us-alabama-dekalb-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"DeKalb","slug":"us-alabama-dekalb-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFJR7VEVS5DV83K75AH","tsKey":"us-alabama-elmore-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Elmore","slug":"us-alabama-elmore-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFN9QVQ40FQEGH8MAGX","tsKey":"us-alabama-escambia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Escambia","slug":"us-alabama-escambia-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFKJACYVGERRAYPRA5K","tsKey":"us-alabama-etowah-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Etowah","slug":"us-alabama-etowah-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFMSFQ962GVFYQK6D5X","tsKey":"us-alabama-fayette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Fayette","slug":"us-alabama-fayette-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFKAWKXY5ZTEK5FC7X3","tsKey":"us-alabama-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Franklin","slug":"us-alabama-franklin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFKTBDEJ8N4PHVH2E5K","tsKey":"us-alabama-geneva-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Geneva","slug":"us-alabama-geneva-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFNAD5FSMFC63VGA483","tsKey":"us-alabama-greene-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Greene","slug":"us-alabama-greene-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFJC89DMBVZN2F6PNBA","tsKey":"us-alabama-hale-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Hale","slug":"us-alabama-hale-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFKEPZW2M7X3D5GJKXC","tsKey":"us-alabama-henry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Henry","slug":"us-alabama-henry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFNZG0JSWP60QDMDN5Q","tsKey":"us-alabama-houston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Houston","slug":"us-alabama-houston-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFKFR143JVE727XFDST","tsKey":"us-alabama-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Jackson","slug":"us-alabama-jackson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFMW1VTN2N00HEYSZ8V","tsKey":"us-alabama-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Jefferson","slug":"us-alabama-jefferson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFN3JCDKH4W36Z6JADC","tsKey":"us-alabama-lamar-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Lamar","slug":"us-alabama-lamar-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFNH9VDCN2QBMQMTX2T","tsKey":"us-alabama-lauderdale-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Lauderdale","slug":"us-alabama-lauderdale-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFJ1VB89J9ZZ5FD4DJA","tsKey":"us-alabama-lawrence-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Lawrence","slug":"us-alabama-lawrence-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFKS6ED8GW1NKDQ58YG","tsKey":"us-alabama-lee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Lee","slug":"us-alabama-lee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFJBT1ZZHF6E70WPYA3","tsKey":"us-alabama-limestone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Limestone","slug":"us-alabama-limestone-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFK9JHBEEW3H0FMPM0N","tsKey":"us-alabama-lowndes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Lowndes","slug":"us-alabama-lowndes-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFKV8F2AB3V0ST140AX","tsKey":"us-alabama-macon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Macon","slug":"us-alabama-macon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFKPN7ZZ1R1YZCC5WEV","tsKey":"us-alabama-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Madison","slug":"us-alabama-madison-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFMJYBZXXZC0EY5QM1Y","tsKey":"us-alabama-marengo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Marengo","slug":"us-alabama-marengo-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFKYAPVYEYY7X5Z6D5W","tsKey":"us-alabama-marion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Marion","slug":"us-alabama-marion-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFK9Z45A0PPK7GPBG88","tsKey":"us-alabama-marshall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Marshall","slug":"us-alabama-marshall-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFKVB6D8FGEM0C8J36D","tsKey":"us-alabama-mobile-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Mobile","slug":"us-alabama-mobile-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFJYFE9H592BYS2VPBC","tsKey":"us-alabama-monroe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Monroe","slug":"us-alabama-monroe-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFMN5ADX0PB4737352C","tsKey":"us-alabama-montgomery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Montgomery","slug":"us-alabama-montgomery-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFM7NR25XT4SGK2KH8Z","tsKey":"us-alabama-morgan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Morgan","slug":"us-alabama-morgan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFNGQENXSNP9C7D6R5B","tsKey":"us-alabama-perry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Perry","slug":"us-alabama-perry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFJT43YQFWTBBNATN17","tsKey":"us-alabama-pickens-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Pickens","slug":"us-alabama-pickens-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFNFX1S4N2HTGGF87T7","tsKey":"us-alabama-pike-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Pike","slug":"us-alabama-pike-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFN8ZM442XR7YCTQ3WR","tsKey":"us-alabama-randolph-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Randolph","slug":"us-alabama-randolph-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFNV68RV3ZNXC5MEMFM","tsKey":"us-alabama-russell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Russell","slug":"us-alabama-russell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFMWNXSKQM9Z26SYN2F","tsKey":"us-alabama-shelby-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Shelby","slug":"us-alabama-shelby-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFM321NBW6ZRN25G9G5","tsKey":"us-alabama-st-clair-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"St. Clair","slug":"us-alabama-st-clair-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFMEZPRT7NDM56H20R5","tsKey":"us-alabama-sumter-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Sumter","slug":"us-alabama-sumter-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFJRMXBWFBYKRCFCPR6","tsKey":"us-alabama-talladega-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Talladega","slug":"us-alabama-talladega-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFNQXDCPJC8D08TXEZP","tsKey":"us-alabama-tallapoosa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Tallapoosa","slug":"us-alabama-tallapoosa-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFMD18S5R6FT60WX08P","tsKey":"us-alabama-tuscaloosa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Tuscaloosa","slug":"us-alabama-tuscaloosa-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFNJ390474TVHEPM235","tsKey":"us-alabama-walker-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Walker","slug":"us-alabama-walker-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFMHEESD1R8505A57PV","tsKey":"us-alabama-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Washington","slug":"us-alabama-washington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFM95BPQ79SMN8EDSBA","tsKey":"us-alabama-wilcox-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Wilcox","slug":"us-alabama-wilcox-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHYFNNS1TSNJ3CGD3HN03","tsKey":"us-alabama-winston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHY0735M7CQSXR31HP114","name":"Winston","slug":"us-alabama-winston-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ","tsKey":"us-alaska","tsNs":"gov-dist","abbrev":"AK","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Alaska","slug":"us-alaska","iso":"US-AK","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ01X4HXTD5877QM7WFEZ","tsKey":"us-alaska-aleutians-east-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ","name":"Aleutians East","slug":"us-alaska-aleutians-east-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ01X0G834RM34SEK12V3","tsKey":"us-alaska-aleutians-west-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ","name":"Aleutians West","slug":"us-alaska-aleutians-west-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ01XP7TGRX1JENHYFR4C","tsKey":"us-alaska-anchorage-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ","name":"Anchorage","slug":"us-alaska-anchorage-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ01XC4KEM6DJM87QN5XK","tsKey":"us-alaska-bethel-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ","name":"Bethel","slug":"us-alaska-bethel-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ01X8XM35GJS8GCW2G3A","tsKey":"us-alaska-bristol-bay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ","name":"Bristol Bay","slug":"us-alaska-bristol-bay-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ01XZZYA1A2BWNTENH20","tsKey":"us-alaska-denali-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ","name":"Denali","slug":"us-alaska-denali-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ01XV43BSA8VVK96XSZ5","tsKey":"us-alaska-dillingham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ","name":"Dillingham","slug":"us-alaska-dillingham-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ01XHTSNJ1EQ03CH59X3","tsKey":"us-alaska-fairbanks-north-star-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ","name":"Fairbanks North Star","slug":"us-alaska-fairbanks-north-star-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ01XWCWNC7QAK1849VXY","tsKey":"us-alaska-haines-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ","name":"Haines","slug":"us-alaska-haines-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ01X3E6S7RN91KW4JMJY","tsKey":"us-alaska-hoonah-angoon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ","name":"Hoonah-Angoon","slug":"us-alaska-hoonah-angoon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ01XA7SEJ9K71BN11FPN","tsKey":"us-alaska-juneau-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ","name":"Juneau","slug":"us-alaska-juneau-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ01XYBXR6X7VZS4PSTFA","tsKey":"us-alaska-kenai-peninsula-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ","name":"Kenai Peninsula","slug":"us-alaska-kenai-peninsula-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ01XXQJQV9PAMSZQ87YK","tsKey":"us-alaska-ketchikan-gateway-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ","name":"Ketchikan Gateway","slug":"us-alaska-ketchikan-gateway-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ01XMF97T58VKJESXE85","tsKey":"us-alaska-kodiak-island-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ","name":"Kodiak Island","slug":"us-alaska-kodiak-island-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ01XRKWVBQTGFZQW33VB","tsKey":"us-alaska-kusilvak-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ","name":"Kusilvak","slug":"us-alaska-kusilvak-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ01XD2S7SX5G57MD0451","tsKey":"us-alaska-lake-and-peninsula-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ","name":"Lake and Peninsula","slug":"us-alaska-lake-and-peninsula-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ01X840S4WQ42715Z84M","tsKey":"us-alaska-matanuska-susitna-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ","name":"Matanuska-Susitna","slug":"us-alaska-matanuska-susitna-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ01X09X2A93TDYQHWJEZ","tsKey":"us-alaska-nome-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ","name":"Nome","slug":"us-alaska-nome-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ01X3539WSTRP2658HYS","tsKey":"us-alaska-north-slope-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ","name":"North Slope","slug":"us-alaska-north-slope-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ01XXSRHT5X7W2792R4Q","tsKey":"us-alaska-northwest-arctic-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ","name":"Northwest Arctic","slug":"us-alaska-northwest-arctic-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ01XZ09MCP275ABWTAV6","tsKey":"us-alaska-petersburg-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ","name":"Petersburg","slug":"us-alaska-petersburg-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ01XCF8Y72Z5CKBJ95EH","tsKey":"us-alaska-prince-of-wales-hyder-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ","name":"Prince of Wales-Hyder","slug":"us-alaska-prince-of-wales-hyder-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ01XPS1FHX7DP3HTH6ED","tsKey":"us-alaska-sitka-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ","name":"Sitka","slug":"us-alaska-sitka-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ01XJTPJSP4P5TV5H0GY","tsKey":"us-alaska-skagway-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ","name":"Skagway","slug":"us-alaska-skagway-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ01XW9PD17EMVV5H837D","tsKey":"us-alaska-southeast-fairbanks-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ","name":"Southeast Fairbanks","slug":"us-alaska-southeast-fairbanks-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ01XMDHYPWE1YMS8XE7V","tsKey":"us-alaska-valdez-cordova-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ","name":"Valdez-Cordova","slug":"us-alaska-valdez-cordova-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ01XTMH3J05MR3C268RG","tsKey":"us-alaska-wrangell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ","name":"Wrangell","slug":"us-alaska-wrangell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ01YHV4YAVAF0GPGNDE0","tsKey":"us-alaska-yakutat-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ","name":"Yakutat","slug":"us-alaska-yakutat-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ01XH6KV89WVBAFFZDDM","tsKey":"us-alaska-yukon-koyukuk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ","name":"Yukon-Koyukuk","slug":"us-alaska-yukon-koyukuk-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ0MERT6FW07XV7PZWZWE","tsKey":"us-arizona","tsNs":"gov-dist","abbrev":"AZ","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Arizona","slug":"us-arizona","iso":"US-AZ","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ13RVVVZX6QJPBYKPWJH","tsKey":"us-arizona-apache-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ0MERT6FW07XV7PZWZWE","name":"Apache","slug":"us-arizona-apache-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ13QXQYTYE9PNNQ97KYN","tsKey":"us-arizona-cochise-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ0MERT6FW07XV7PZWZWE","name":"Cochise","slug":"us-arizona-cochise-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ13QFJ8F8VJE4RBEQTTQ","tsKey":"us-arizona-coconino-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ0MERT6FW07XV7PZWZWE","name":"Coconino","slug":"us-arizona-coconino-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ13RE5CV50G0HN7YRJV9","tsKey":"us-arizona-gila-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ0MERT6FW07XV7PZWZWE","name":"Gila","slug":"us-arizona-gila-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ13QQAT9FVR5AD79065X","tsKey":"us-arizona-graham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ0MERT6FW07XV7PZWZWE","name":"Graham","slug":"us-arizona-graham-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ13Q77X3A4KX4G9271G8","tsKey":"us-arizona-greenlee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ0MERT6FW07XV7PZWZWE","name":"Greenlee","slug":"us-arizona-greenlee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ13Q8YR8GJVY03V6K32V","tsKey":"us-arizona-la-paz-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ0MERT6FW07XV7PZWZWE","name":"La Paz","slug":"us-arizona-la-paz-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ13Q2NR256YMY9KJN07Z","tsKey":"us-arizona-maricopa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ0MERT6FW07XV7PZWZWE","name":"Maricopa","slug":"us-arizona-maricopa-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ13RWDS6380T01FESE0B","tsKey":"us-arizona-mohave-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ0MERT6FW07XV7PZWZWE","name":"Mohave","slug":"us-arizona-mohave-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ13Q711KDJKHJ6GSK2S9","tsKey":"us-arizona-navajo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ0MERT6FW07XV7PZWZWE","name":"Navajo","slug":"us-arizona-navajo-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ13R62GYX7P0R9RYNEJE","tsKey":"us-arizona-pima-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ0MERT6FW07XV7PZWZWE","name":"Pima","slug":"us-arizona-pima-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ13QJ63JVVBWDAJ58YD7","tsKey":"us-arizona-pinal-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ0MERT6FW07XV7PZWZWE","name":"Pinal","slug":"us-arizona-pinal-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ13QNQ3S3JVFDJWKZW4B","tsKey":"us-arizona-santa-cruz-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ0MERT6FW07XV7PZWZWE","name":"Santa Cruz","slug":"us-arizona-santa-cruz-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ13RBHQR3T5CCWRA04N2","tsKey":"us-arizona-yavapai-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ0MERT6FW07XV7PZWZWE","name":"Yavapai","slug":"us-arizona-yavapai-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ13RQGYYKMHE20C112P0","tsKey":"us-arizona-yuma-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ0MERT6FW07XV7PZWZWE","name":"Yuma","slug":"us-arizona-yuma-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","tsKey":"us-arkansas","tsNs":"gov-dist","abbrev":"AR","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Arkansas","slug":"us-arkansas","iso":"US-AR","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TBW4TGEG8MF9Q36E1Q","tsKey":"us-arkansas-arkansas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Arkansas","slug":"us-arkansas-arkansas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TD96QKPZTVHHVYVHPC","tsKey":"us-arkansas-ashley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Ashley","slug":"us-arkansas-ashley-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TF49QF4RPESVA24W07","tsKey":"us-arkansas-baxter-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Baxter","slug":"us-arkansas-baxter-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TFWT9X46AEZFRGH6FN","tsKey":"us-arkansas-benton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Benton","slug":"us-arkansas-benton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TB975QAN56580SP2DA","tsKey":"us-arkansas-boone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Boone","slug":"us-arkansas-boone-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TEKPEJ65TBM4YKMN29","tsKey":"us-arkansas-bradley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Bradley","slug":"us-arkansas-bradley-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TEHZZA34YC097VH3GF","tsKey":"us-arkansas-calhoun-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Calhoun","slug":"us-arkansas-calhoun-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TCTRV3BQVT8F9B4NQ0","tsKey":"us-arkansas-carroll-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Carroll","slug":"us-arkansas-carroll-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TC010VF6S5D3TS1JH0","tsKey":"us-arkansas-chicot-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Chicot","slug":"us-arkansas-chicot-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TB30DQJXRTQAHW5A44","tsKey":"us-arkansas-clark-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Clark","slug":"us-arkansas-clark-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TE9JBFG7NVJWF4V3VW","tsKey":"us-arkansas-clay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Clay","slug":"us-arkansas-clay-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TEY4FD936DKDM19NWN","tsKey":"us-arkansas-cleburne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Cleburne","slug":"us-arkansas-cleburne-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TC34KGE929M0C7WM9A","tsKey":"us-arkansas-cleveland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Cleveland","slug":"us-arkansas-cleveland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TCFA60KGY64DDPW3GA","tsKey":"us-arkansas-columbia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Columbia","slug":"us-arkansas-columbia-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TBKGGTWQBETR2S903F","tsKey":"us-arkansas-conway-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Conway","slug":"us-arkansas-conway-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TE61Q9TQAJM4DWFJAS","tsKey":"us-arkansas-craighead-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Craighead","slug":"us-arkansas-craighead-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TCDVQW9NCQV2YTNQRG","tsKey":"us-arkansas-crawford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Crawford","slug":"us-arkansas-crawford-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TFYT0ZKCRTT73D5EWZ","tsKey":"us-arkansas-crittenden-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Crittenden","slug":"us-arkansas-crittenden-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TE9ES6KNM78XYDC740","tsKey":"us-arkansas-cross-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Cross","slug":"us-arkansas-cross-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TE8870J91JFH1DR1HN","tsKey":"us-arkansas-dallas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Dallas","slug":"us-arkansas-dallas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TFZ48XZP93SFAFNBHE","tsKey":"us-arkansas-desha-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Desha","slug":"us-arkansas-desha-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TBYZ4DAMM1V1DYNP19","tsKey":"us-arkansas-drew-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Drew","slug":"us-arkansas-drew-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TCE7W2BZWFBHPX4E3M","tsKey":"us-arkansas-faulkner-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Faulkner","slug":"us-arkansas-faulkner-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TCMSVRP6TGYZG5Q04D","tsKey":"us-arkansas-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Franklin","slug":"us-arkansas-franklin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TF741WB1FFQNBNKWVE","tsKey":"us-arkansas-fulton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Fulton","slug":"us-arkansas-fulton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TBNZKG5EN4BJ5FYK35","tsKey":"us-arkansas-garland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Garland","slug":"us-arkansas-garland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TCJ4YWYXHK3GFJR4ZT","tsKey":"us-arkansas-grant-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Grant","slug":"us-arkansas-grant-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TEKAWYMQY8XKD7FGSW","tsKey":"us-arkansas-greene-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Greene","slug":"us-arkansas-greene-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TFK4HQE0FK3V97K2PC","tsKey":"us-arkansas-hempstead-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Hempstead","slug":"us-arkansas-hempstead-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TC1TYPPCDF87D7HV8X","tsKey":"us-arkansas-hot-spring-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Hot Spring","slug":"us-arkansas-hot-spring-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TBYS6NP5WKPB8T9702","tsKey":"us-arkansas-howard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Howard","slug":"us-arkansas-howard-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TFJV42PKSM0GK6Z9J4","tsKey":"us-arkansas-independence-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Independence","slug":"us-arkansas-independence-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TENZ7TN38198HQY023","tsKey":"us-arkansas-izard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Izard","slug":"us-arkansas-izard-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TCX8NA1D1R120S4HCY","tsKey":"us-arkansas-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Jackson","slug":"us-arkansas-jackson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TFMQMDDMD7W052JBFZ","tsKey":"us-arkansas-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Jefferson","slug":"us-arkansas-jefferson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TBQBY3AFMCEZ1AHM6G","tsKey":"us-arkansas-johnson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Johnson","slug":"us-arkansas-johnson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TD3VMH3A8Q6J1Q7TTC","tsKey":"us-arkansas-lafayette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Lafayette","slug":"us-arkansas-lafayette-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TF6DK09PKNGABQXZA6","tsKey":"us-arkansas-lawrence-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Lawrence","slug":"us-arkansas-lawrence-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TF1P1CJY0QVARDVPBH","tsKey":"us-arkansas-lee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Lee","slug":"us-arkansas-lee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TEVPATS94SHM6SVHDX","tsKey":"us-arkansas-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Lincoln","slug":"us-arkansas-lincoln-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TDN8RNX2BAS0JVGYKC","tsKey":"us-arkansas-little-river-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Little River","slug":"us-arkansas-little-river-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TD5TN8YH012XNBP22N","tsKey":"us-arkansas-logan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Logan","slug":"us-arkansas-logan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TB0XX4Q5SCN0GMS3XN","tsKey":"us-arkansas-lonoke-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Lonoke","slug":"us-arkansas-lonoke-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TD9WN1ZY1YJ1WSWKZ2","tsKey":"us-arkansas-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Madison","slug":"us-arkansas-madison-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TD16S3Y6D1RZR4NJR6","tsKey":"us-arkansas-marion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Marion","slug":"us-arkansas-marion-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TDKWAP0579FH30YAP7","tsKey":"us-arkansas-miller-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Miller","slug":"us-arkansas-miller-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TDCJ5KT2A9BET66FMQ","tsKey":"us-arkansas-mississippi-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Mississippi","slug":"us-arkansas-mississippi-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TEXM0DG7E4KM7C35C2","tsKey":"us-arkansas-monroe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Monroe","slug":"us-arkansas-monroe-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TBGE95286595TX11R6","tsKey":"us-arkansas-montgomery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Montgomery","slug":"us-arkansas-montgomery-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TD5MVQ1DDREKKPG8R0","tsKey":"us-arkansas-nevada-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Nevada","slug":"us-arkansas-nevada-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TBT0MTHBN6RW647JRA","tsKey":"us-arkansas-newton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Newton","slug":"us-arkansas-newton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TDSDDPTQF0PH5NH1PT","tsKey":"us-arkansas-ouachita-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Ouachita","slug":"us-arkansas-ouachita-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TFZEXA80Z006KEQZJK","tsKey":"us-arkansas-perry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Perry","slug":"us-arkansas-perry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TF6TSF820P0DCQJB6S","tsKey":"us-arkansas-phillips-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Phillips","slug":"us-arkansas-phillips-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TEXWCKPF9MEWB0WMYT","tsKey":"us-arkansas-pike-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Pike","slug":"us-arkansas-pike-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TBBB2N92X4QY085VQX","tsKey":"us-arkansas-poinsett-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Poinsett","slug":"us-arkansas-poinsett-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TDJMVZC111GWMS7KGV","tsKey":"us-arkansas-polk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Polk","slug":"us-arkansas-polk-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TD35VEAA6WCXNF7NS1","tsKey":"us-arkansas-pope-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Pope","slug":"us-arkansas-pope-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TEFVY0RYG1R0C737ZC","tsKey":"us-arkansas-prairie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Prairie","slug":"us-arkansas-prairie-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TF55G5G0WQ030YWXYA","tsKey":"us-arkansas-pulaski-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Pulaski","slug":"us-arkansas-pulaski-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TDFW1G3DBFQ2CDRAJ8","tsKey":"us-arkansas-randolph-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Randolph","slug":"us-arkansas-randolph-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TEDZF7SZAT4VVG4FHQ","tsKey":"us-arkansas-saline-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Saline","slug":"us-arkansas-saline-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TF1W2Y40FQSNDG3DC1","tsKey":"us-arkansas-scott-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Scott","slug":"us-arkansas-scott-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TCVXCFDVNAXVVYJQSA","tsKey":"us-arkansas-searcy-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Searcy","slug":"us-arkansas-searcy-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TE3G7GNQTSX34YF5PZ","tsKey":"us-arkansas-sebastian-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Sebastian","slug":"us-arkansas-sebastian-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TDZ7W0B6ST52R61ES4","tsKey":"us-arkansas-sevier-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Sevier","slug":"us-arkansas-sevier-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TE4S796TDSM401YVHF","tsKey":"us-arkansas-sharp-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Sharp","slug":"us-arkansas-sharp-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TCQQ8H7Z5RCHBZ9B2V","tsKey":"us-arkansas-st-francis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"St. Francis","slug":"us-arkansas-st-francis-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TDT4XA5PJ01AFMK276","tsKey":"us-arkansas-stone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Stone","slug":"us-arkansas-stone-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TE6W2XKXGQ3XTE8WRC","tsKey":"us-arkansas-union-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Union","slug":"us-arkansas-union-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TAXHY075PX1K9KP9JN","tsKey":"us-arkansas-van-buren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Van Buren","slug":"us-arkansas-van-buren-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TCXSRM9GY602JCR9F0","tsKey":"us-arkansas-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Washington","slug":"us-arkansas-washington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TBNWEKRA5E0ZKMMTYZ","tsKey":"us-arkansas-white-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"White","slug":"us-arkansas-white-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TCJZ89W02N24CN1KGR","tsKey":"us-arkansas-woodruff-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Woodruff","slug":"us-arkansas-woodruff-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ1TEXZNRSWB4FT0SYKSQ","tsKey":"us-arkansas-yell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","name":"Yell","slug":"us-arkansas-yell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","tsKey":"us-california","tsNs":"gov-dist","abbrev":"CA","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"California","slug":"us-california","iso":"US-CA","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S3NV642EBKYB453WV2","tsKey":"us-california-alameda-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Alameda","slug":"us-california-alameda-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S0FCS7K0AKCRDGXDVS","tsKey":"us-california-alpine-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Alpine","slug":"us-california-alpine-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2RZTR8JSBS9N7NWE7RH","tsKey":"us-california-amador-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Amador","slug":"us-california-amador-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S0BF8VEVE4C2JJ7XDP","tsKey":"us-california-butte-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Butte","slug":"us-california-butte-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S2375BWT5BZRVYFQBQ","tsKey":"us-california-calaveras-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Calaveras","slug":"us-california-calaveras-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S22WBM3SCG9A0W9WWY","tsKey":"us-california-colusa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Colusa","slug":"us-california-colusa-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S2B8RM2W8G4XGXD9YQ","tsKey":"us-california-contra-costa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Contra Costa","slug":"us-california-contra-costa-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S29P9EGP90SDM23B83","tsKey":"us-california-del-norte-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Del Norte","slug":"us-california-del-norte-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S31P315AJ89ZCA0C7T","tsKey":"us-california-el-dorado-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"El Dorado","slug":"us-california-el-dorado-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S3F38PQ9371BZ2711A","tsKey":"us-california-fresno-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Fresno","slug":"us-california-fresno-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2RZTSM5SRNKKP6CMA1W","tsKey":"us-california-glenn-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Glenn","slug":"us-california-glenn-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S31C34DF484QHSBTE1","tsKey":"us-california-humboldt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Humboldt","slug":"us-california-humboldt-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S2Z1BQHXGZ0PPE9FEV","tsKey":"us-california-imperial-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Imperial","slug":"us-california-imperial-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S26VB6FGYS10WH4NBD","tsKey":"us-california-inyo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Inyo","slug":"us-california-inyo-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S2FE9H9HWN63YTRZX5","tsKey":"us-california-kern-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Kern","slug":"us-california-kern-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S2VXZ65220HWFG7P8R","tsKey":"us-california-kings-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Kings","slug":"us-california-kings-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S0NP9P9KRWW2BWNAJ3","tsKey":"us-california-lake-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Lake","slug":"us-california-lake-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S3KSDBFS16JSAPDAZV","tsKey":"us-california-lassen-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Lassen","slug":"us-california-lassen-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S3YA4SH7YRMT2XFM5K","tsKey":"us-california-los-angeles-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Los Angeles","slug":"us-california-los-angeles-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S2WKVS2TC6332PJGBC","tsKey":"us-california-madera-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Madera","slug":"us-california-madera-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S28VBX43G7VV20FJRN","tsKey":"us-california-marin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Marin","slug":"us-california-marin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S0NKDE9ENJ465KQ6WN","tsKey":"us-california-mariposa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Mariposa","slug":"us-california-mariposa-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S00J3086ZYZPPNA1ZB","tsKey":"us-california-mendocino-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Mendocino","slug":"us-california-mendocino-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S2P3CEVK5S3ZEZ6F6Q","tsKey":"us-california-merced-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Merced","slug":"us-california-merced-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S0PZHSY20AR3RYH3X9","tsKey":"us-california-modoc-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Modoc","slug":"us-california-modoc-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S0KG4KF8D0Z2Q82AA8","tsKey":"us-california-mono-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Mono","slug":"us-california-mono-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S274EH19Y4G10BCN79","tsKey":"us-california-monterey-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Monterey","slug":"us-california-monterey-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S0N7EFJR843V3J8S1V","tsKey":"us-california-napa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Napa","slug":"us-california-napa-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S0CY1BH0CRSFX3RS4A","tsKey":"us-california-nevada-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Nevada","slug":"us-california-nevada-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S0H7FBKRZ3Z1X68VY8","tsKey":"us-california-orange-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Orange","slug":"us-california-orange-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S3YDHZ7Y37GGG6ZXPD","tsKey":"us-california-placer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Placer","slug":"us-california-placer-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S2WB9E7AB5ACJHWDMR","tsKey":"us-california-plumas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Plumas","slug":"us-california-plumas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S1RTTPB99TDP8PXS7S","tsKey":"us-california-riverside-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Riverside","slug":"us-california-riverside-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S3PDNBQNM938FD1GR6","tsKey":"us-california-sacramento-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Sacramento","slug":"us-california-sacramento-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S1V8R197ZPXMJDZE8J","tsKey":"us-california-san-benito-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"San Benito","slug":"us-california-san-benito-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S3ZBV5QB5DAXV0ZTQK","tsKey":"us-california-san-bernardino-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"San Bernardino","slug":"us-california-san-bernardino-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S1ZXYM6QXPT72BRW9W","tsKey":"us-california-san-diego-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"San Diego","slug":"us-california-san-diego-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S1061RNRAT6S4RJN1S","tsKey":"us-california-san-francisco-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"San Francisco","slug":"us-california-san-francisco-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S2K53D4DC13M78AC3G","tsKey":"us-california-san-joaquin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"San Joaquin","slug":"us-california-san-joaquin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S344VZ0TN0S3ZZJ690","tsKey":"us-california-san-luis-obispo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"San Luis Obispo","slug":"us-california-san-luis-obispo-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S18EKZY5X34G3PESCJ","tsKey":"us-california-san-mateo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"San Mateo","slug":"us-california-san-mateo-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S1HEEFPD9QYFYFY4RM","tsKey":"us-california-santa-barbara-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Santa Barbara","slug":"us-california-santa-barbara-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S39QVV0JNJPRFJ2JDN","tsKey":"us-california-santa-clara-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Santa Clara","slug":"us-california-santa-clara-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S1B9WCBZXGQDMXQ06H","tsKey":"us-california-santa-cruz-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Santa Cruz","slug":"us-california-santa-cruz-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S0986PGZQTC3P0C2JR","tsKey":"us-california-shasta-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Shasta","slug":"us-california-shasta-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S2X9ZDDTP4Z58RKP44","tsKey":"us-california-sierra-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Sierra","slug":"us-california-sierra-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S39FPMRSGQKPFEV3HJ","tsKey":"us-california-siskiyou-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Siskiyou","slug":"us-california-siskiyou-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S1M29WW2M3VCQ50X3B","tsKey":"us-california-solano-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Solano","slug":"us-california-solano-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S3BR9ACMV83E31ABJK","tsKey":"us-california-sonoma-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Sonoma","slug":"us-california-sonoma-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S0VXQRAH0TJ2J285KE","tsKey":"us-california-stanislaus-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Stanislaus","slug":"us-california-stanislaus-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S13CSJ07S446G4P43H","tsKey":"us-california-sutter-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Sutter","slug":"us-california-sutter-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S1WH5MHREF3QQ5W8E6","tsKey":"us-california-tehama-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Tehama","slug":"us-california-tehama-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S3WJ59X7XTNWRZDR96","tsKey":"us-california-trinity-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Trinity","slug":"us-california-trinity-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S2PDH6KNXE2P2ZHBSQ","tsKey":"us-california-tulare-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Tulare","slug":"us-california-tulare-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S1KF0C7KMTQY3G9QJY","tsKey":"us-california-tuolumne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Tuolumne","slug":"us-california-tuolumne-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S32NBERK4HP2TS8RA4","tsKey":"us-california-ventura-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Ventura","slug":"us-california-ventura-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S1TAEB9SX8DXC90R2J","tsKey":"us-california-yolo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Yolo","slug":"us-california-yolo-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ2S0K40WVRMZ91AEWKKY","tsKey":"us-california-yuba-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","name":"Yuba","slug":"us-california-yuba-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","tsKey":"us-colorado","tsNs":"gov-dist","abbrev":"CO","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Colorado","slug":"us-colorado","iso":"US-CO","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JJSK9C2HHH98442X1W","tsKey":"us-colorado-adams-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Adams","slug":"us-colorado-adams-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JHX7GVQWNJZF15A06K","tsKey":"us-colorado-alamosa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Alamosa","slug":"us-colorado-alamosa-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JMHPQ0QBREX96072SN","tsKey":"us-colorado-arapahoe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Arapahoe","slug":"us-colorado-arapahoe-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JJ1AJ7T302DZANT838","tsKey":"us-colorado-archuleta-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Archuleta","slug":"us-colorado-archuleta-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JJ720W2N4AQAE415WJ","tsKey":"us-colorado-baca-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Baca","slug":"us-colorado-baca-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JMH7N32QH68JA5J5CA","tsKey":"us-colorado-bent-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Bent","slug":"us-colorado-bent-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JHZ4Y3SMD24JF2HFYN","tsKey":"us-colorado-boulder-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Boulder","slug":"us-colorado-boulder-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JHK35PAMTGRAQSAWV2","tsKey":"us-colorado-broomfield-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Broomfield","slug":"us-colorado-broomfield-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JJFWD2V4ZA62EHD51T","tsKey":"us-colorado-chaffee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Chaffee","slug":"us-colorado-chaffee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JJW4ZAGNN0KECXBXJG","tsKey":"us-colorado-cheyenne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Cheyenne","slug":"us-colorado-cheyenne-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JM1KNEKWJRXKMBQYSQ","tsKey":"us-colorado-clear-creek-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Clear Creek","slug":"us-colorado-clear-creek-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JJ9M0M4SN02D9JYWXV","tsKey":"us-colorado-conejos-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Conejos","slug":"us-colorado-conejos-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JKKH6F2NM51BGK4Q0H","tsKey":"us-colorado-costilla-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Costilla","slug":"us-colorado-costilla-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JHE7RMF6QZC5GE5GB7","tsKey":"us-colorado-crowley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Crowley","slug":"us-colorado-crowley-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JM8QP05ZPWQ2ZZ9E60","tsKey":"us-colorado-custer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Custer","slug":"us-colorado-custer-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JKWA0984CKTYKCSBPM","tsKey":"us-colorado-delta-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Delta","slug":"us-colorado-delta-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JHPQBTQ7DTAKMYFQSG","tsKey":"us-colorado-denver-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Denver","slug":"us-colorado-denver-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JNV08WFQNBM1K445FA","tsKey":"us-colorado-dolores-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Dolores","slug":"us-colorado-dolores-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JH5NN7C9DDRR888V5T","tsKey":"us-colorado-douglas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Douglas","slug":"us-colorado-douglas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JKVHXVKP7TFAECNYS2","tsKey":"us-colorado-eagle-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Eagle","slug":"us-colorado-eagle-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JN2MT9TK49E74G2Y9J","tsKey":"us-colorado-elbert-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Elbert","slug":"us-colorado-elbert-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JMSPCY3NG9NDWY9JPB","tsKey":"us-colorado-el-paso-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"El Paso","slug":"us-colorado-el-paso-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JKN1FSEPFE4S6MXQ6E","tsKey":"us-colorado-fremont-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Fremont","slug":"us-colorado-fremont-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JNN67MR6B5NBJE2AT4","tsKey":"us-colorado-garfield-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Garfield","slug":"us-colorado-garfield-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JHY56T90S51W3TWVYV","tsKey":"us-colorado-gilpin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Gilpin","slug":"us-colorado-gilpin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JMD5084JNGQVR0P0YT","tsKey":"us-colorado-grand-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Grand","slug":"us-colorado-grand-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JMMJZTDH6A0W92YATR","tsKey":"us-colorado-gunnison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Gunnison","slug":"us-colorado-gunnison-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JJ1VS9R62N3JVJS9X2","tsKey":"us-colorado-hinsdale-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Hinsdale","slug":"us-colorado-hinsdale-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JM22E0TBHED6VY9QX0","tsKey":"us-colorado-huerfano-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Huerfano","slug":"us-colorado-huerfano-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JJ63Z4034TN2P0QA6A","tsKey":"us-colorado-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Jackson","slug":"us-colorado-jackson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JJTA9W5GRB1V8JXY3R","tsKey":"us-colorado-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Jefferson","slug":"us-colorado-jefferson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JK8222M4V8D05NN2EE","tsKey":"us-colorado-kiowa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Kiowa","slug":"us-colorado-kiowa-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JK21BS35DE5BJEB9FH","tsKey":"us-colorado-kit-carson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Kit Carson","slug":"us-colorado-kit-carson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JMBR6MFE49V5WKV97J","tsKey":"us-colorado-lake-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Lake","slug":"us-colorado-lake-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JNPAEETDC068KBBNN7","tsKey":"us-colorado-la-plata-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"La Plata","slug":"us-colorado-la-plata-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JKYAF7R1A5DGFM8R90","tsKey":"us-colorado-larimer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Larimer","slug":"us-colorado-larimer-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JN89F8ZYJ60725BVMW","tsKey":"us-colorado-las-animas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Las Animas","slug":"us-colorado-las-animas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JJWKGWA8JT6VFEMHKG","tsKey":"us-colorado-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Lincoln","slug":"us-colorado-lincoln-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JK1G1X93QVTTK7DYY3","tsKey":"us-colorado-logan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Logan","slug":"us-colorado-logan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JKTZJT4C9634BVR256","tsKey":"us-colorado-mesa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Mesa","slug":"us-colorado-mesa-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JM6KWJ5V9C3ECZ488Y","tsKey":"us-colorado-mineral-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Mineral","slug":"us-colorado-mineral-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JKZXAQKZZR58AHYQ2W","tsKey":"us-colorado-moffat-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Moffat","slug":"us-colorado-moffat-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JJKNJY5QDR53EZADV4","tsKey":"us-colorado-montezuma-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Montezuma","slug":"us-colorado-montezuma-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JKYX29EYQ88B7EMC26","tsKey":"us-colorado-montrose-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Montrose","slug":"us-colorado-montrose-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JKXDGC7N1R9W62VHYX","tsKey":"us-colorado-morgan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Morgan","slug":"us-colorado-morgan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JMXE8XQH0CG521H4WK","tsKey":"us-colorado-otero-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Otero","slug":"us-colorado-otero-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JKRX6TGAZ9ZHA7QDVB","tsKey":"us-colorado-ouray-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Ouray","slug":"us-colorado-ouray-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JNXQ39AXV55H3C51ES","tsKey":"us-colorado-park-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Park","slug":"us-colorado-park-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JJBM6GBY4T69GA6F3F","tsKey":"us-colorado-phillips-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Phillips","slug":"us-colorado-phillips-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JKTG57YNWYDD1PMNCP","tsKey":"us-colorado-pitkin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Pitkin","slug":"us-colorado-pitkin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JN40WYPZGXMKDE7XYD","tsKey":"us-colorado-prowers-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Prowers","slug":"us-colorado-prowers-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JM9BK5DK142W477QZR","tsKey":"us-colorado-pueblo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Pueblo","slug":"us-colorado-pueblo-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JMBT7FQ4WWTC42Z4BH","tsKey":"us-colorado-rio-blanco-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Rio Blanco","slug":"us-colorado-rio-blanco-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JJC6KN6KB4FCBR4CBZ","tsKey":"us-colorado-rio-grande-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Rio Grande","slug":"us-colorado-rio-grande-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JN3CPMMF8DJEADX25Q","tsKey":"us-colorado-routt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Routt","slug":"us-colorado-routt-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JMNXXG1QRY2ZXVVRYZ","tsKey":"us-colorado-saguache-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Saguache","slug":"us-colorado-saguache-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JJM3MYQ8FV93JWKDM3","tsKey":"us-colorado-san-juan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"San Juan","slug":"us-colorado-san-juan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JN6K5KDM3SRPWHXRZN","tsKey":"us-colorado-san-miguel-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"San Miguel","slug":"us-colorado-san-miguel-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JNY9QRXMWK9K9Y7BXW","tsKey":"us-colorado-sedgwick-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Sedgwick","slug":"us-colorado-sedgwick-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JMXVEKN3SX9W3CD9NY","tsKey":"us-colorado-summit-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Summit","slug":"us-colorado-summit-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JMKG3BA33G8XMGM6KK","tsKey":"us-colorado-teller-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Teller","slug":"us-colorado-teller-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JMCFH3K6SFRDBZEQV3","tsKey":"us-colorado-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Washington","slug":"us-colorado-washington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JJC2VMDAY609SZMXHF","tsKey":"us-colorado-weld-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Weld","slug":"us-colorado-weld-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ3JMGTJ56QJRWYVRBZ1Z","tsKey":"us-colorado-yuma-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","name":"Yuma","slug":"us-colorado-yuma-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ48BS27DYW8W4GNH4P2W","tsKey":"us-connecticut","tsNs":"gov-dist","abbrev":"CT","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Connecticut","slug":"us-connecticut","iso":"US-CT","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ4N02WJ44VR83H1W7E4K","tsKey":"us-connecticut-fairfield-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ48BS27DYW8W4GNH4P2W","name":"Fairfield","slug":"us-connecticut-fairfield-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ4N0QJFH3WHYRCTCM7VJ","tsKey":"us-connecticut-hartford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ48BS27DYW8W4GNH4P2W","name":"Hartford","slug":"us-connecticut-hartford-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ4N04V9R38901XV4EP3E","tsKey":"us-connecticut-litchfield-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ48BS27DYW8W4GNH4P2W","name":"Litchfield","slug":"us-connecticut-litchfield-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ4N0RTVKF21WQJB95QK2","tsKey":"us-connecticut-middlesex-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ48BS27DYW8W4GNH4P2W","name":"Middlesex","slug":"us-connecticut-middlesex-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ4N04KNXJMFH9S9YWVCC","tsKey":"us-connecticut-new-haven-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ48BS27DYW8W4GNH4P2W","name":"New Haven","slug":"us-connecticut-new-haven-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ4N0GFSSVPEA7F8FV4K5","tsKey":"us-connecticut-new-london-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ48BS27DYW8W4GNH4P2W","name":"New London","slug":"us-connecticut-new-london-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ4N08M9PPJ479H17QPBF","tsKey":"us-connecticut-tolland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ48BS27DYW8W4GNH4P2W","name":"Tolland","slug":"us-connecticut-tolland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ4N04HTYDGMT48EEYNYP","tsKey":"us-connecticut-windham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ48BS27DYW8W4GNH4P2W","name":"Windham","slug":"us-connecticut-windham-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ4XTJT4GBEWDBY057B01","tsKey":"us-delaware","tsNs":"gov-dist","abbrev":"DE","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Delaware","slug":"us-delaware","iso":"US-DE","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ57548FSSB9QZDTAW30Y","tsKey":"us-delaware-kent-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ4XTJT4GBEWDBY057B01","name":"Kent","slug":"us-delaware-kent-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ575H9JNQ8YYWD29VB6D","tsKey":"us-delaware-new-castle-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ4XTJT4GBEWDBY057B01","name":"New Castle","slug":"us-delaware-new-castle-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ575QFVN0G5CM5RM4CWQ","tsKey":"us-delaware-sussex-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ4XTJT4GBEWDBY057B01","name":"Sussex","slug":"us-delaware-sussex-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ5A278S2G84AB3N9FCW0","tsKey":"us-district-of-columbia","tsNs":"gov-dist","abbrev":"DC","country":{"cca2":"US"},"govDistType":{"tsKey":"type-district","tsNs":"gov-dist"},"parentId":null,"name":"District of Columbia","slug":"us-district-of-columbia","iso":"US-DC","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ5PRHENWX5ZZZKM0VMET","tsKey":"us-district-of-columbia-district-of-columbia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5A278S2G84AB3N9FCW0","name":"District of Columbia","slug":"us-district-of-columbia-district-of-columbia-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","tsKey":"us-florida","tsNs":"gov-dist","abbrev":"FL","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Florida","slug":"us-florida","iso":"US-FL","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FK8C0CSZYPT3K3V7JN","tsKey":"us-florida-alachua-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Alachua","slug":"us-florida-alachua-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FMK996ZKB5M1S0ZCN9","tsKey":"us-florida-baker-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Baker","slug":"us-florida-baker-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FMMPWH62ZCYTKH7ZHS","tsKey":"us-florida-bay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Bay","slug":"us-florida-bay-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FPEG059V7AFAPG9HFY","tsKey":"us-florida-bradford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Bradford","slug":"us-florida-bradford-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FQT471QSCDM2SPTJP8","tsKey":"us-florida-brevard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Brevard","slug":"us-florida-brevard-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FNFSYYEGHVT3AZCR2W","tsKey":"us-florida-broward-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Broward","slug":"us-florida-broward-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FKG5QF9GZ7RT197ETM","tsKey":"us-florida-calhoun-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Calhoun","slug":"us-florida-calhoun-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FN4WSKXBMVW43PD0YE","tsKey":"us-florida-charlotte-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Charlotte","slug":"us-florida-charlotte-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FN39FEQH2S7PYRKG39","tsKey":"us-florida-citrus-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Citrus","slug":"us-florida-citrus-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FPTRCHPY5RSYD5BBY1","tsKey":"us-florida-clay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Clay","slug":"us-florida-clay-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FQWEG7SPJYKST53NZE","tsKey":"us-florida-collier-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Collier","slug":"us-florida-collier-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FKHEZN54AB7MDR26J7","tsKey":"us-florida-columbia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Columbia","slug":"us-florida-columbia-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FPBRBCY54FAXMK5TZ7","tsKey":"us-florida-desoto-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"DeSoto","slug":"us-florida-desoto-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FN3BFP41J52HCBC22P","tsKey":"us-florida-dixie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Dixie","slug":"us-florida-dixie-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FN87HSZ86WC0BK5CVE","tsKey":"us-florida-duval-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Duval","slug":"us-florida-duval-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FQRGYQMZZYW520QTYA","tsKey":"us-florida-escambia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Escambia","slug":"us-florida-escambia-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FPFFWW4GF0SA3MWM68","tsKey":"us-florida-flagler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Flagler","slug":"us-florida-flagler-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FP1GC5D1M73Y3QERTG","tsKey":"us-florida-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Franklin","slug":"us-florida-franklin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FK4N8T9BN8GZFZ8WRS","tsKey":"us-florida-gadsden-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Gadsden","slug":"us-florida-gadsden-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FNY6NK5034MGX64FWQ","tsKey":"us-florida-gilchrist-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Gilchrist","slug":"us-florida-gilchrist-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FNW1MH5B9DSM45HR7G","tsKey":"us-florida-glades-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Glades","slug":"us-florida-glades-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FNKGXTWWTJPC25M15K","tsKey":"us-florida-gulf-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Gulf","slug":"us-florida-gulf-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FPY20GPFKB6QZ1GGTJ","tsKey":"us-florida-hamilton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Hamilton","slug":"us-florida-hamilton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FNGETPGAJ0VYHF5V85","tsKey":"us-florida-hardee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Hardee","slug":"us-florida-hardee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FNT89EDZV9NRY97GGY","tsKey":"us-florida-hendry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Hendry","slug":"us-florida-hendry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FNH6Q033RNVYTF3K7W","tsKey":"us-florida-hernando-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Hernando","slug":"us-florida-hernando-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FKB52BBM9P744DP3GR","tsKey":"us-florida-highlands-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Highlands","slug":"us-florida-highlands-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FQH5ZBCVWKHJ18SJJJ","tsKey":"us-florida-hillsborough-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Hillsborough","slug":"us-florida-hillsborough-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FKZX1WGB9MA99J4V11","tsKey":"us-florida-holmes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Holmes","slug":"us-florida-holmes-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FNR7DDW3AVXF682SQ9","tsKey":"us-florida-indian-river-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Indian River","slug":"us-florida-indian-river-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FNNJYV30Z0XT9PTGP7","tsKey":"us-florida-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Jackson","slug":"us-florida-jackson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FQEERHMN8TT7PJ8J6P","tsKey":"us-florida-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Jefferson","slug":"us-florida-jefferson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FPT0STMV78SRNFMMFA","tsKey":"us-florida-lafayette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Lafayette","slug":"us-florida-lafayette-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FN5M6HXZE8SP6FGSFK","tsKey":"us-florida-lake-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Lake","slug":"us-florida-lake-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FNM02KKB9GZGA532Y0","tsKey":"us-florida-lee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Lee","slug":"us-florida-lee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FKR8YMSCTJX4HT31F1","tsKey":"us-florida-leon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Leon","slug":"us-florida-leon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FQB30ANNQWV2W367PW","tsKey":"us-florida-levy-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Levy","slug":"us-florida-levy-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FPTJTA3W4B67A8M24D","tsKey":"us-florida-liberty-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Liberty","slug":"us-florida-liberty-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FNAVNHHMZ6ZHCK8EG7","tsKey":"us-florida-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Madison","slug":"us-florida-madison-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FN67JNDPA38HME0R54","tsKey":"us-florida-manatee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Manatee","slug":"us-florida-manatee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FK61ATE9ZJQZB5C1PK","tsKey":"us-florida-marion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Marion","slug":"us-florida-marion-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FPWNKMD2YK7675DXJ8","tsKey":"us-florida-martin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Martin","slug":"us-florida-martin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FPC6D8JRA4SWT0YS6K","tsKey":"us-florida-miami-dade-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Miami-Dade","slug":"us-florida-miami-dade-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FKPS717RC57JHS6PWB","tsKey":"us-florida-monroe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Monroe","slug":"us-florida-monroe-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FMXHY7K8R3KNEEBQRG","tsKey":"us-florida-nassau-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Nassau","slug":"us-florida-nassau-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FM64SNTTYFY2KYB1M0","tsKey":"us-florida-okaloosa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Okaloosa","slug":"us-florida-okaloosa-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FPKXB628T7B49ZWV5F","tsKey":"us-florida-okeechobee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Okeechobee","slug":"us-florida-okeechobee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FKPRA6G9W0MVNH763Y","tsKey":"us-florida-orange-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Orange","slug":"us-florida-orange-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FMXGCV26YQX9EZ20M5","tsKey":"us-florida-osceola-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Osceola","slug":"us-florida-osceola-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FMXR6J2D91ZVXV79XM","tsKey":"us-florida-palm-beach-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Palm Beach","slug":"us-florida-palm-beach-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FMZ0JYX9KTGBERPMDX","tsKey":"us-florida-pasco-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Pasco","slug":"us-florida-pasco-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FP82V3862VK2F50ZV3","tsKey":"us-florida-pinellas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Pinellas","slug":"us-florida-pinellas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FPQ66X2N4B7BBHR29E","tsKey":"us-florida-polk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Polk","slug":"us-florida-polk-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FMN0A4X8R3D22SQGFD","tsKey":"us-florida-putnam-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Putnam","slug":"us-florida-putnam-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FMWNBEVR6RKBBAVV73","tsKey":"us-florida-santa-rosa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Santa Rosa","slug":"us-florida-santa-rosa-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FMGHRTKCZXV0S7V2T2","tsKey":"us-florida-sarasota-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Sarasota","slug":"us-florida-sarasota-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FME4KZSCVY5QHZ7QQJ","tsKey":"us-florida-seminole-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Seminole","slug":"us-florida-seminole-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FMQBSD4Z5N8QAJEV35","tsKey":"us-florida-st-johns-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"St. Johns","slug":"us-florida-st-johns-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FKPVNFYCGTCBFAVX1T","tsKey":"us-florida-st-lucie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"St. Lucie","slug":"us-florida-st-lucie-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FKG3EJSWZ72BK1FZZE","tsKey":"us-florida-sumter-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Sumter","slug":"us-florida-sumter-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FPYZFHRJ7D16GPXH1M","tsKey":"us-florida-suwannee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Suwannee","slug":"us-florida-suwannee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FPJMH1YB190VDFHCHV","tsKey":"us-florida-taylor-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Taylor","slug":"us-florida-taylor-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FK9YNK52JGK86Y5DG6","tsKey":"us-florida-union-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Union","slug":"us-florida-union-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FM48K8M6J39FYDHP0B","tsKey":"us-florida-volusia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Volusia","slug":"us-florida-volusia-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FPZA6H79NE6EAG6JPB","tsKey":"us-florida-wakulla-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Wakulla","slug":"us-florida-wakulla-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FMW86A4NDJ8KV3B9BG","tsKey":"us-florida-walton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Walton","slug":"us-florida-walton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6FPPRE1R3ZT30D328NH","tsKey":"us-florida-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","name":"Washington","slug":"us-florida-washington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","tsKey":"us-georgia","tsNs":"gov-dist","abbrev":"GA","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Georgia","slug":"us-georgia","iso":"US-GA","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C1JNFEKGZ2BK857YFV","tsKey":"us-georgia-appling-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Appling","slug":"us-georgia-appling-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C4MN6RR04Q5W72CXND","tsKey":"us-georgia-atkinson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Atkinson","slug":"us-georgia-atkinson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C4RQCM5EAGT32HY7XM","tsKey":"us-georgia-bacon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Bacon","slug":"us-georgia-bacon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C7S7832NNAG7C0EWK8","tsKey":"us-georgia-baker-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Baker","slug":"us-georgia-baker-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C46RHVARZPP5NSRW6P","tsKey":"us-georgia-baldwin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Baldwin","slug":"us-georgia-baldwin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C71QW0ZSS9JSX6QTRD","tsKey":"us-georgia-banks-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Banks","slug":"us-georgia-banks-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C1KQT9QNV9KKWM70XC","tsKey":"us-georgia-barrow-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Barrow","slug":"us-georgia-barrow-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C432GCRB40VHVJAEQ4","tsKey":"us-georgia-bartow-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Bartow","slug":"us-georgia-bartow-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7CAVC8RG4F6ZZ0SW6NC","tsKey":"us-georgia-ben-hill-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Ben Hill","slug":"us-georgia-ben-hill-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C7B58NNJS88Q4FA67A","tsKey":"us-georgia-berrien-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Berrien","slug":"us-georgia-berrien-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C7QGJ8DVEHYHHRZ21M","tsKey":"us-georgia-bibb-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Bibb","slug":"us-georgia-bibb-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C4ATSCJP0V1RYY8G07","tsKey":"us-georgia-bleckley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Bleckley","slug":"us-georgia-bleckley-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C4BFNM3XBQRCWQ368C","tsKey":"us-georgia-brantley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Brantley","slug":"us-georgia-brantley-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C767JM9A9ACWY0PVB3","tsKey":"us-georgia-brooks-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Brooks","slug":"us-georgia-brooks-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C1K2X6SAGVC8HEEVV2","tsKey":"us-georgia-bryan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Bryan","slug":"us-georgia-bryan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C4D40H5N1VG3DS37EV","tsKey":"us-georgia-bulloch-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Bulloch","slug":"us-georgia-bulloch-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C71D8MX6V7VD3FWX4T","tsKey":"us-georgia-burke-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Burke","slug":"us-georgia-burke-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C7Y3VX0VXM7C2AJV39","tsKey":"us-georgia-butts-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Butts","slug":"us-georgia-butts-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C43S76Y9N0SVDATH8W","tsKey":"us-georgia-calhoun-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Calhoun","slug":"us-georgia-calhoun-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C7TPJD91SM799B4C9H","tsKey":"us-georgia-camden-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Camden","slug":"us-georgia-camden-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C1D6DVSJH0JYBCNTRQ","tsKey":"us-georgia-candler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Candler","slug":"us-georgia-candler-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7CAAQ7ZPS0Z98A7HFNG","tsKey":"us-georgia-carroll-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Carroll","slug":"us-georgia-carroll-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C8PV12V34TCS354FWR","tsKey":"us-georgia-catoosa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Catoosa","slug":"us-georgia-catoosa-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C4EAXH7ZQE8CJBG9VE","tsKey":"us-georgia-charlton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Charlton","slug":"us-georgia-charlton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C7373CX69YZ1HXE8RZ","tsKey":"us-georgia-chatham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Chatham","slug":"us-georgia-chatham-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C54NZV9S21C81D1TPY","tsKey":"us-georgia-chattahoochee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Chattahoochee","slug":"us-georgia-chattahoochee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C1QQEWZD4V0YT3C3K2","tsKey":"us-georgia-chattooga-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Chattooga","slug":"us-georgia-chattooga-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C5N7PZ4QHMNVW1T8AQ","tsKey":"us-georgia-cherokee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Cherokee","slug":"us-georgia-cherokee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C15XKJDGPRPBFMZ9JM","tsKey":"us-georgia-clarke-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Clarke","slug":"us-georgia-clarke-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C7FY3CFH74AT3Z3326","tsKey":"us-georgia-clay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Clay","slug":"us-georgia-clay-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C5W95W6AVV10SQ73D0","tsKey":"us-georgia-clayton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Clayton","slug":"us-georgia-clayton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C823TJKWCH9573MCRD","tsKey":"us-georgia-clinch-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Clinch","slug":"us-georgia-clinch-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C3HHPXY0FFSYX02YVQ","tsKey":"us-georgia-cobb-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Cobb","slug":"us-georgia-cobb-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C3RNJVCQ6QN1AJE1NV","tsKey":"us-georgia-coffee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Coffee","slug":"us-georgia-coffee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C19Y9RTXFDGBFFGDEX","tsKey":"us-georgia-colquitt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Colquitt","slug":"us-georgia-colquitt-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C3EKRQS0HRYT2B5TR9","tsKey":"us-georgia-columbia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Columbia","slug":"us-georgia-columbia-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C8J4CAYFEEG3Y6RF1P","tsKey":"us-georgia-cook-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Cook","slug":"us-georgia-cook-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C3WBTYB0VNB9EB2KB3","tsKey":"us-georgia-coweta-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Coweta","slug":"us-georgia-coweta-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C111WFWYZ80VKXT0Y9","tsKey":"us-georgia-crawford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Crawford","slug":"us-georgia-crawford-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C4A481K5VXT0GDTVA8","tsKey":"us-georgia-crisp-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Crisp","slug":"us-georgia-crisp-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C872NRKMBY70GP6G8H","tsKey":"us-georgia-dade-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Dade","slug":"us-georgia-dade-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C8N0FFV70V9H43Z5FZ","tsKey":"us-georgia-dawson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Dawson","slug":"us-georgia-dawson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C4QX7FJF09MMTNBHY2","tsKey":"us-georgia-decatur-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Decatur","slug":"us-georgia-decatur-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C88WJZ1PTH6M291Y1C","tsKey":"us-georgia-dekalb-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"DeKalb","slug":"us-georgia-dekalb-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C19NPZ8XS5N91E65GG","tsKey":"us-georgia-dodge-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Dodge","slug":"us-georgia-dodge-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C4QTYMJWZ74YZ6G854","tsKey":"us-georgia-dooly-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Dooly","slug":"us-georgia-dooly-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C4DWD5NPT5ZKEGPN42","tsKey":"us-georgia-dougherty-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Dougherty","slug":"us-georgia-dougherty-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C8H7W9K0HYNEN2DW9Z","tsKey":"us-georgia-douglas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Douglas","slug":"us-georgia-douglas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C888CWH6VBXH6KY1VZ","tsKey":"us-georgia-early-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Early","slug":"us-georgia-early-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C4RFS7ENCB1FKCMTSS","tsKey":"us-georgia-echols-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Echols","slug":"us-georgia-echols-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C42AZGZQXFS9ZWX4FQ","tsKey":"us-georgia-effingham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Effingham","slug":"us-georgia-effingham-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C8QMY7BKYYG3KSX72Y","tsKey":"us-georgia-elbert-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Elbert","slug":"us-georgia-elbert-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C1AH6XY05XKV6FRNZ1","tsKey":"us-georgia-emanuel-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Emanuel","slug":"us-georgia-emanuel-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C4AVV9BWZWGRXNHVNS","tsKey":"us-georgia-evans-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Evans","slug":"us-georgia-evans-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C8J79VGK0RRRNZ7D98","tsKey":"us-georgia-fannin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Fannin","slug":"us-georgia-fannin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C1QFT66E590524AHNT","tsKey":"us-georgia-fayette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Fayette","slug":"us-georgia-fayette-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C43NF2PHW66WVJ0D9A","tsKey":"us-georgia-floyd-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Floyd","slug":"us-georgia-floyd-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C88ME5DFYEHHFER6X0","tsKey":"us-georgia-forsyth-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Forsyth","slug":"us-georgia-forsyth-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C42RC2T2GHSBAW889F","tsKey":"us-georgia-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Franklin","slug":"us-georgia-franklin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C84VS5ZRSR95H3H7C0","tsKey":"us-georgia-fulton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Fulton","slug":"us-georgia-fulton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C281Y3X37S14GRJFFW","tsKey":"us-georgia-gilmer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Gilmer","slug":"us-georgia-gilmer-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C2F2T668C5T8Y2AR6M","tsKey":"us-georgia-glascock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Glascock","slug":"us-georgia-glascock-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C89S1TS4STWES5VJ6S","tsKey":"us-georgia-glynn-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Glynn","slug":"us-georgia-glynn-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C2JV5F9C119N5KKTR2","tsKey":"us-georgia-gordon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Gordon","slug":"us-georgia-gordon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C26T2XF56EGHWWY6BR","tsKey":"us-georgia-grady-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Grady","slug":"us-georgia-grady-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C8TQF9XAAFR6M3DAKH","tsKey":"us-georgia-greene-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Greene","slug":"us-georgia-greene-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C9JWDYC9AH7VN9MVD5","tsKey":"us-georgia-gwinnett-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Gwinnett","slug":"us-georgia-gwinnett-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C5R66BTH2GN90E7ND3","tsKey":"us-georgia-habersham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Habersham","slug":"us-georgia-habersham-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C2EMESMPFKARYAVH61","tsKey":"us-georgia-hall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Hall","slug":"us-georgia-hall-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C5YTKVDVZFBTC40P09","tsKey":"us-georgia-hancock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Hancock","slug":"us-georgia-hancock-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C8XDZR6NE6TV9TSH4S","tsKey":"us-georgia-haralson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Haralson","slug":"us-georgia-haralson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C98KSYS84FDKQ0D2PW","tsKey":"us-georgia-harris-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Harris","slug":"us-georgia-harris-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C5V5AHN3HXXBSEXE26","tsKey":"us-georgia-hart-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Hart","slug":"us-georgia-hart-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C3ZQDXQ8SGR5PGPM09","tsKey":"us-georgia-heard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Heard","slug":"us-georgia-heard-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C9MZS88HW7CFX037R1","tsKey":"us-georgia-henry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Henry","slug":"us-georgia-henry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C89BGSVCXJA8ZKZ17Z","tsKey":"us-georgia-houston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Houston","slug":"us-georgia-houston-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C5723GMT99NPDZPSCX","tsKey":"us-georgia-irwin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Irwin","slug":"us-georgia-irwin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C25K7VYK9JCYVD4TDV","tsKey":"us-georgia-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Jackson","slug":"us-georgia-jackson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C5V604ES80R647JJNG","tsKey":"us-georgia-jasper-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Jasper","slug":"us-georgia-jasper-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C9383Y4W8VEJ56DJWQ","tsKey":"us-georgia-jeff-davis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Jeff Davis","slug":"us-georgia-jeff-davis-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C9G8GSWBS7CTF8Q645","tsKey":"us-georgia-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Jefferson","slug":"us-georgia-jefferson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C53D6P6J13V7NQY92Z","tsKey":"us-georgia-jenkins-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Jenkins","slug":"us-georgia-jenkins-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C9VSJ6HV6Q0EJ6Q6YR","tsKey":"us-georgia-johnson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Johnson","slug":"us-georgia-johnson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C24A18BJJTMD16Z3VW","tsKey":"us-georgia-jones-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Jones","slug":"us-georgia-jones-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C5X7VP59BSRT7MYSCS","tsKey":"us-georgia-lamar-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Lamar","slug":"us-georgia-lamar-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C5WRQA9CC0NJDPYMC2","tsKey":"us-georgia-lanier-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Lanier","slug":"us-georgia-lanier-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C29GKQHR2BSK4QDN2Q","tsKey":"us-georgia-laurens-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Laurens","slug":"us-georgia-laurens-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C9KTADME0075VRDDH4","tsKey":"us-georgia-lee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Lee","slug":"us-georgia-lee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C9EY2KGGMPBCFEFH3F","tsKey":"us-georgia-liberty-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Liberty","slug":"us-georgia-liberty-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C5M9FJZ4MBC28MBMZH","tsKey":"us-georgia-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Lincoln","slug":"us-georgia-lincoln-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C9GECJ3YDMP98DSM2Z","tsKey":"us-georgia-long-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Long","slug":"us-georgia-long-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C6Q3WJGZ1PQGPTXCVM","tsKey":"us-georgia-lowndes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Lowndes","slug":"us-georgia-lowndes-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C2R5D72PCSGDCBEHK7","tsKey":"us-georgia-lumpkin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Lumpkin","slug":"us-georgia-lumpkin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C9N0T53E77BJENQ257","tsKey":"us-georgia-macon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Macon","slug":"us-georgia-macon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C6PM50GPRFK85J8V84","tsKey":"us-georgia-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Madison","slug":"us-georgia-madison-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C2ABN4RD7TEKRKSW6T","tsKey":"us-georgia-marion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Marion","slug":"us-georgia-marion-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C6Y3G89PE3FJAGDMQE","tsKey":"us-georgia-mcduffie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"McDuffie","slug":"us-georgia-mcduffie-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C6DTTCHD11YD4W4CPM","tsKey":"us-georgia-mcintosh-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"McIntosh","slug":"us-georgia-mcintosh-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C6M9NB8DWP24RVDFVB","tsKey":"us-georgia-meriwether-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Meriwether","slug":"us-georgia-meriwether-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C222GJTD67DS9XNT7X","tsKey":"us-georgia-miller-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Miller","slug":"us-georgia-miller-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C6066GPRS0PHN75XVD","tsKey":"us-georgia-mitchell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Mitchell","slug":"us-georgia-mitchell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C99AGZME8CEGA09K6W","tsKey":"us-georgia-monroe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Monroe","slug":"us-georgia-monroe-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C62ZGZP22FN0Y9KJD8","tsKey":"us-georgia-montgomery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Montgomery","slug":"us-georgia-montgomery-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C596W12CDV64GBAWYT","tsKey":"us-georgia-morgan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Morgan","slug":"us-georgia-morgan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C62CCQ1ENTR5BCH5JA","tsKey":"us-georgia-murray-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Murray","slug":"us-georgia-murray-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C5P3B9MSXSTVRR2WSN","tsKey":"us-georgia-muscogee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Muscogee","slug":"us-georgia-muscogee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C3FJEF64B0NVFY03RF","tsKey":"us-georgia-newton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Newton","slug":"us-georgia-newton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C9RQXX335S67K5AMJ1","tsKey":"us-georgia-oconee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Oconee","slug":"us-georgia-oconee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C6C11PS7E33F5KEDZZ","tsKey":"us-georgia-oglethorpe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Oglethorpe","slug":"us-georgia-oglethorpe-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C6WX8WVR3T1XEYX73K","tsKey":"us-georgia-paulding-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Paulding","slug":"us-georgia-paulding-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C3Z031DX9KTTYBNB7W","tsKey":"us-georgia-peach-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Peach","slug":"us-georgia-peach-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C9BRF54993DB4W5PHQ","tsKey":"us-georgia-pickens-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Pickens","slug":"us-georgia-pickens-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C6GDAPH2R7TW91MY82","tsKey":"us-georgia-pierce-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Pierce","slug":"us-georgia-pierce-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C6P04YRNFRBT75PK3W","tsKey":"us-georgia-pike-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Pike","slug":"us-georgia-pike-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C3FY42E4HG3ZTTBF2P","tsKey":"us-georgia-polk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Polk","slug":"us-georgia-polk-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C6PQQPS56DGG50N7BE","tsKey":"us-georgia-pulaski-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Pulaski","slug":"us-georgia-pulaski-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C9WV7EGGH9S6J4DC1Y","tsKey":"us-georgia-putnam-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Putnam","slug":"us-georgia-putnam-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C5FJ6EZPPN938V0RH6","tsKey":"us-georgia-quitman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Quitman","slug":"us-georgia-quitman-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C65FA6WC9WEQ9JSMRN","tsKey":"us-georgia-rabun-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Rabun","slug":"us-georgia-rabun-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C3HVNA81168D7K4T45","tsKey":"us-georgia-randolph-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Randolph","slug":"us-georgia-randolph-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7CAHBD8D0M325PJZAZZ","tsKey":"us-georgia-richmond-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Richmond","slug":"us-georgia-richmond-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C67P7FFY63J0VM2XCQ","tsKey":"us-georgia-rockdale-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Rockdale","slug":"us-georgia-rockdale-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C9CY5SH19SK3M9JDCJ","tsKey":"us-georgia-schley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Schley","slug":"us-georgia-schley-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7CATATTRDBY1QZ09DXE","tsKey":"us-georgia-screven-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Screven","slug":"us-georgia-screven-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C30ZJ8GKQPH28C982T","tsKey":"us-georgia-seminole-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Seminole","slug":"us-georgia-seminole-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C6X2NAKQ23XSQTBB6K","tsKey":"us-georgia-spalding-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Spalding","slug":"us-georgia-spalding-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C6XW39R5ESB88ZV7B8","tsKey":"us-georgia-stephens-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Stephens","slug":"us-georgia-stephens-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C95TRMVVCC017V2ZM8","tsKey":"us-georgia-stewart-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Stewart","slug":"us-georgia-stewart-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7CA5K6YJ38ZB6CDH1QA","tsKey":"us-georgia-sumter-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Sumter","slug":"us-georgia-sumter-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7CA8GJ8YHPMQ8PN7999","tsKey":"us-georgia-talbot-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Talbot","slug":"us-georgia-talbot-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C328ZF6WNWT3D77JJS","tsKey":"us-georgia-taliaferro-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Taliaferro","slug":"us-georgia-taliaferro-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C7K676WBCEDSDKQ6XP","tsKey":"us-georgia-tattnall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Tattnall","slug":"us-georgia-tattnall-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C7P7FH0BNK6AFJ7MRZ","tsKey":"us-georgia-taylor-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Taylor","slug":"us-georgia-taylor-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C9B8QZ0S2JG3GC7J85","tsKey":"us-georgia-telfair-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Telfair","slug":"us-georgia-telfair-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7CAA0HJ3HN7FHXYVY04","tsKey":"us-georgia-terrell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Terrell","slug":"us-georgia-terrell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C74QEA7HES8WTASCPP","tsKey":"us-georgia-thomas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Thomas","slug":"us-georgia-thomas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C35Y7QPN3YC3NZ0G2B","tsKey":"us-georgia-tift-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Tift","slug":"us-georgia-tift-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C7HJ6NEXMYM6ZM1D1T","tsKey":"us-georgia-toombs-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Toombs","slug":"us-georgia-toombs-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C7GJJY6Q1NMPYAHP6Z","tsKey":"us-georgia-towns-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Towns","slug":"us-georgia-towns-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C9D2105X3XVAFNB7BB","tsKey":"us-georgia-treutlen-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Treutlen","slug":"us-georgia-treutlen-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C3FNJ78YWXA9SD2RG3","tsKey":"us-georgia-troup-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Troup","slug":"us-georgia-troup-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C9GKH4R2T75J52PF06","tsKey":"us-georgia-turner-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Turner","slug":"us-georgia-turner-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C7ET0EK062NQX016ZR","tsKey":"us-georgia-twiggs-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Twiggs","slug":"us-georgia-twiggs-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7CAKCWKN03X7QDJQMP1","tsKey":"us-georgia-union-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Union","slug":"us-georgia-union-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C3JKEC7Q6KSYF712Z6","tsKey":"us-georgia-upson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Upson","slug":"us-georgia-upson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C7KC3HP6GFAVZ253R8","tsKey":"us-georgia-walker-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Walker","slug":"us-georgia-walker-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C900ZZF0HVQC5ZZ5R1","tsKey":"us-georgia-walton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Walton","slug":"us-georgia-walton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7CA5AN2QP59EQ5T49X6","tsKey":"us-georgia-ware-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Ware","slug":"us-georgia-ware-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C7YKMSYVZ4QRQ1CV28","tsKey":"us-georgia-warren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Warren","slug":"us-georgia-warren-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C31X0220XGWVNZFVYW","tsKey":"us-georgia-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Washington","slug":"us-georgia-washington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7CAX2HD5J6Y1HW1PXZK","tsKey":"us-georgia-wayne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Wayne","slug":"us-georgia-wayne-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C84YYYHQJQNR76Y7NZ","tsKey":"us-georgia-webster-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Webster","slug":"us-georgia-webster-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C2PD5ZA64RDTSKGGCJ","tsKey":"us-georgia-wheeler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Wheeler","slug":"us-georgia-wheeler-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C8KZN1CDJ6JD3JANYN","tsKey":"us-georgia-white-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"White","slug":"us-georgia-white-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C2XTH83K0JEN42NMAM","tsKey":"us-georgia-whitfield-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Whitfield","slug":"us-georgia-whitfield-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C8Z3V0QYXFNS53NEMG","tsKey":"us-georgia-wilcox-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Wilcox","slug":"us-georgia-wilcox-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C5RVKCWBNF4SKKYGAT","tsKey":"us-georgia-wilkes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Wilkes","slug":"us-georgia-wilkes-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C2QKS3KWHV9TS7T9BX","tsKey":"us-georgia-wilkinson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Wilkinson","slug":"us-georgia-wilkinson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7C5WYZ7WWHNKETGY123","tsKey":"us-georgia-worth-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","name":"Worth","slug":"us-georgia-worth-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ7VX37RF69KKXAYE05QN","tsKey":"us-hawaii","tsNs":"gov-dist","abbrev":"HI","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Hawaii","slug":"us-hawaii","iso":"US-HI","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ8810RHV00SX2A5HTSQH","tsKey":"us-hawaii-hawaii-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ7VX37RF69KKXAYE05QN","name":"Hawaii","slug":"us-hawaii-hawaii-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ8825R70DKR2NH8X2D3P","tsKey":"us-hawaii-honolulu-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ7VX37RF69KKXAYE05QN","name":"Honolulu","slug":"us-hawaii-honolulu-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ882FEZVQYN624P89A5A","tsKey":"us-hawaii-kalawao-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ7VX37RF69KKXAYE05QN","name":"Kalawao","slug":"us-hawaii-kalawao-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ8813ZM9RKQRZXQN1SNR","tsKey":"us-hawaii-kauai-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ7VX37RF69KKXAYE05QN","name":"Kauai","slug":"us-hawaii-kauai-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ8813GCD190445K61K12","tsKey":"us-hawaii-maui-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ7VX37RF69KKXAYE05QN","name":"Maui","slug":"us-hawaii-maui-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","tsKey":"us-idaho","tsNs":"gov-dist","abbrev":"ID","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Idaho","slug":"us-idaho","iso":"US-ID","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ9173F8WJ8RMWMZA17NT","tsKey":"us-idaho-ada-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Ada","slug":"us-idaho-ada-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ917DQ9840FXD2HB2B6X","tsKey":"us-idaho-adams-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Adams","slug":"us-idaho-adams-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ918CJM9M1BBRE02CNVR","tsKey":"us-idaho-bannock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Bannock","slug":"us-idaho-bannock-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ919VR0FSGS8H7A6F0HT","tsKey":"us-idaho-bear-lake-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Bear Lake","slug":"us-idaho-bear-lake-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ917X5KVY8E0DD0G54RS","tsKey":"us-idaho-benewah-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Benewah","slug":"us-idaho-benewah-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ9190XMY5DAKCZ8XCDCG","tsKey":"us-idaho-bingham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Bingham","slug":"us-idaho-bingham-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ9195J5PPRA79RV79GTA","tsKey":"us-idaho-blaine-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Blaine","slug":"us-idaho-blaine-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ9160PMPKE3JQTCBA2KH","tsKey":"us-idaho-boise-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Boise","slug":"us-idaho-boise-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ917DAQP5MD4VYJA7X5B","tsKey":"us-idaho-bonner-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Bonner","slug":"us-idaho-bonner-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ9179DQT77EZ4AC47FJV","tsKey":"us-idaho-bonneville-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Bonneville","slug":"us-idaho-bonneville-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ916R94RD16C3DK7GPZ2","tsKey":"us-idaho-boundary-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Boundary","slug":"us-idaho-boundary-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ917Q6X5SPJG3JZX71TA","tsKey":"us-idaho-butte-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Butte","slug":"us-idaho-butte-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ918QXQ59QHRN251B2VJ","tsKey":"us-idaho-camas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Camas","slug":"us-idaho-camas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ918W6RJXTSYDYDZXV3N","tsKey":"us-idaho-canyon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Canyon","slug":"us-idaho-canyon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ9182DZDDKWTJWXXRWT0","tsKey":"us-idaho-caribou-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Caribou","slug":"us-idaho-caribou-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ919GKYR5WTMX8E9X4NX","tsKey":"us-idaho-cassia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Cassia","slug":"us-idaho-cassia-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ918F5R5Q04NZFP4W0J9","tsKey":"us-idaho-clark-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Clark","slug":"us-idaho-clark-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ9191Q8KVJZQ9B8051ZD","tsKey":"us-idaho-clearwater-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Clearwater","slug":"us-idaho-clearwater-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ9197DYZJZD7MRKZ1C85","tsKey":"us-idaho-custer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Custer","slug":"us-idaho-custer-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ918RP0EWAQNNNDAFPE7","tsKey":"us-idaho-elmore-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Elmore","slug":"us-idaho-elmore-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ918SV1GAB0R7JKWSKFB","tsKey":"us-idaho-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Franklin","slug":"us-idaho-franklin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ9188TDRJXD04MGBCNX4","tsKey":"us-idaho-fremont-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Fremont","slug":"us-idaho-fremont-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ916TRFFRKN47WQH3XR9","tsKey":"us-idaho-gem-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Gem","slug":"us-idaho-gem-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ918X4RT1V77FPC8YR7B","tsKey":"us-idaho-gooding-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Gooding","slug":"us-idaho-gooding-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ919WFJ5NVVFE7N17AEY","tsKey":"us-idaho-idaho-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Idaho","slug":"us-idaho-idaho-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ9173S7D19YWK05CEH3B","tsKey":"us-idaho-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Jefferson","slug":"us-idaho-jefferson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ918P1HM4ERX0JZ6ES3K","tsKey":"us-idaho-jerome-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Jerome","slug":"us-idaho-jerome-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ918RVMNA1BTWPR1RH5V","tsKey":"us-idaho-kootenai-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Kootenai","slug":"us-idaho-kootenai-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ9176671TE0M3YP4CPZW","tsKey":"us-idaho-latah-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Latah","slug":"us-idaho-latah-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ91911VMB7MNPYH8B20Z","tsKey":"us-idaho-lemhi-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Lemhi","slug":"us-idaho-lemhi-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ918PRNDZ86XXY6WV2QC","tsKey":"us-idaho-lewis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Lewis","slug":"us-idaho-lewis-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ9183P5DB35CS0WT67CB","tsKey":"us-idaho-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Lincoln","slug":"us-idaho-lincoln-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ9187HG8V4KPM4FS6N5E","tsKey":"us-idaho-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Madison","slug":"us-idaho-madison-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ917D9PHXKR22RPB63WJ","tsKey":"us-idaho-minidoka-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Minidoka","slug":"us-idaho-minidoka-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ9184S1ANX1K8WETD81W","tsKey":"us-idaho-nez-perce-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Nez Perce","slug":"us-idaho-nez-perce-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ917SYQ8D3VM9KZE671K","tsKey":"us-idaho-oneida-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Oneida","slug":"us-idaho-oneida-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ918GNT0K42MSMHWM9DN","tsKey":"us-idaho-owyhee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Owyhee","slug":"us-idaho-owyhee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ918F64EHFZ9AVVYT3WY","tsKey":"us-idaho-payette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Payette","slug":"us-idaho-payette-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ9173DDZ46PEJ6K7MKKF","tsKey":"us-idaho-power-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Power","slug":"us-idaho-power-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ917FGFEAA37D51BNB3F","tsKey":"us-idaho-shoshone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Shoshone","slug":"us-idaho-shoshone-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ917JQVW1J116X00091Y","tsKey":"us-idaho-teton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Teton","slug":"us-idaho-teton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ917284XSVNVEY289RV0","tsKey":"us-idaho-twin-falls-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Twin Falls","slug":"us-idaho-twin-falls-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ918CF1B166PFZ7V489G","tsKey":"us-idaho-valley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Valley","slug":"us-idaho-valley-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ919BJC79Q954GQ06M39","tsKey":"us-idaho-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","name":"Washington","slug":"us-idaho-washington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","tsKey":"us-illinois","tsNs":"gov-dist","abbrev":"IL","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Illinois","slug":"us-illinois","iso":"US-IL","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0B2TVKAHV0KJPFX0XB","tsKey":"us-illinois-adams-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Adams","slug":"us-illinois-adams-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA08RE10W7EK9HDDZES0","tsKey":"us-illinois-alexander-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Alexander","slug":"us-illinois-alexander-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA06J8ZMQEYEHBQV4ZS4","tsKey":"us-illinois-bond-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Bond","slug":"us-illinois-bond-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA08P8D5NA1F4P7WBE3M","tsKey":"us-illinois-boone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Boone","slug":"us-illinois-boone-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0679QE8ZNWRRKARQYR","tsKey":"us-illinois-brown-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Brown","slug":"us-illinois-brown-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA08ZVMBF8MDMSGGC88N","tsKey":"us-illinois-bureau-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Bureau","slug":"us-illinois-bureau-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0CHZNVSRCE1G6C0097","tsKey":"us-illinois-calhoun-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Calhoun","slug":"us-illinois-calhoun-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA08W6KVTCDEYXF0XKVT","tsKey":"us-illinois-carroll-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Carroll","slug":"us-illinois-carroll-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0B7RR49AA5GK60ENMK","tsKey":"us-illinois-cass-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Cass","slug":"us-illinois-cass-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA063XWDASV69B4JB9NY","tsKey":"us-illinois-champaign-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Champaign","slug":"us-illinois-champaign-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0DFDVAH5V6CSV87BXD","tsKey":"us-illinois-christian-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Christian","slug":"us-illinois-christian-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA08H22R3Y44GPCXET89","tsKey":"us-illinois-clark-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Clark","slug":"us-illinois-clark-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0BNPA177E7HM509SSB","tsKey":"us-illinois-clay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Clay","slug":"us-illinois-clay-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0DWWNNC77VXZKV1MZR","tsKey":"us-illinois-clinton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Clinton","slug":"us-illinois-clinton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA06BQ66FH2Y8SX7GXE1","tsKey":"us-illinois-coles-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Coles","slug":"us-illinois-coles-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0DT7VED6AYYK5131BT","tsKey":"us-illinois-cook-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Cook","slug":"us-illinois-cook-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA08QBH1954847J38JT4","tsKey":"us-illinois-crawford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Crawford","slug":"us-illinois-crawford-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA06NWJ6NSK8MTTFB5DK","tsKey":"us-illinois-cumberland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Cumberland","slug":"us-illinois-cumberland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA08RN1RSSYDW5869PE4","tsKey":"us-illinois-dekalb-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"DeKalb","slug":"us-illinois-dekalb-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0BE7FF4F7YKAR9VKSG","tsKey":"us-illinois-dewitt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"DeWitt","slug":"us-illinois-dewitt-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA080YKJK1CBG5X3M6X1","tsKey":"us-illinois-douglas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Douglas","slug":"us-illinois-douglas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA08C5FJGYDWNHD1B9GE","tsKey":"us-illinois-dupage-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"DuPage","slug":"us-illinois-dupage-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0BZQK1QRN7XV70T6KZ","tsKey":"us-illinois-edgar-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Edgar","slug":"us-illinois-edgar-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA080SAZ5QHTRQSPVA0E","tsKey":"us-illinois-edwards-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Edwards","slug":"us-illinois-edwards-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA069EB46K8GG1ERCQHP","tsKey":"us-illinois-effingham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Effingham","slug":"us-illinois-effingham-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA08X3Q1YZA1K5QDH907","tsKey":"us-illinois-fayette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Fayette","slug":"us-illinois-fayette-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA08RK3G14XDEZMYHJ1J","tsKey":"us-illinois-ford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Ford","slug":"us-illinois-ford-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA06M5N6QNTP00W8N7RP","tsKey":"us-illinois-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Franklin","slug":"us-illinois-franklin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA093BG5C0ZBFPFKH6RC","tsKey":"us-illinois-fulton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Fulton","slug":"us-illinois-fulton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0CA3DGG3NMADXQEE17","tsKey":"us-illinois-gallatin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Gallatin","slug":"us-illinois-gallatin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0B184K944W1D0CNYDF","tsKey":"us-illinois-greene-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Greene","slug":"us-illinois-greene-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA09ZDHNH2PPM88BGXC3","tsKey":"us-illinois-grundy-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Grundy","slug":"us-illinois-grundy-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA06X1VS0G1XVF6HTQ5V","tsKey":"us-illinois-hamilton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Hamilton","slug":"us-illinois-hamilton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0C8FVMV8SCQ54QZPR4","tsKey":"us-illinois-hancock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Hancock","slug":"us-illinois-hancock-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0BY6CBTNP5Z8QC0QT2","tsKey":"us-illinois-hardin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Hardin","slug":"us-illinois-hardin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0CGE0H6TQTP02NQ2M0","tsKey":"us-illinois-henderson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Henderson","slug":"us-illinois-henderson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA06J6FTMZ78QA9Q102Z","tsKey":"us-illinois-henry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Henry","slug":"us-illinois-henry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0CGVY424N160YDKBXE","tsKey":"us-illinois-iroquois-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Iroquois","slug":"us-illinois-iroquois-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA06B3JZ70TTHVS3DSX1","tsKey":"us-illinois-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Jackson","slug":"us-illinois-jackson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA073RRWR32GEYT0A50V","tsKey":"us-illinois-jasper-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Jasper","slug":"us-illinois-jasper-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA09189VSYANM68ZNB45","tsKey":"us-illinois-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Jefferson","slug":"us-illinois-jefferson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0CDTCHPWFQCCZQ79D3","tsKey":"us-illinois-jersey-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Jersey","slug":"us-illinois-jersey-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0CBQ99XMGYTJJFXRP9","tsKey":"us-illinois-jo-daviess-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Jo Daviess","slug":"us-illinois-jo-daviess-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0C38BFMB7QY8412J3M","tsKey":"us-illinois-johnson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Johnson","slug":"us-illinois-johnson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA07R4CJF5ST8JT6AG7T","tsKey":"us-illinois-kane-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Kane","slug":"us-illinois-kane-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA09NASYHQBV99MRP80C","tsKey":"us-illinois-kankakee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Kankakee","slug":"us-illinois-kankakee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0942EZYHMMYC4X2865","tsKey":"us-illinois-kendall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Kendall","slug":"us-illinois-kendall-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0C1QSZ1V7J4T4AJS8C","tsKey":"us-illinois-knox-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Knox","slug":"us-illinois-knox-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0CVJXJRSF9MK11DD7N","tsKey":"us-illinois-lake-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Lake","slug":"us-illinois-lake-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA09JWQQTV98CPHWYQGQ","tsKey":"us-illinois-lasalle-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"LaSalle","slug":"us-illinois-lasalle-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0921TEG77198TSCPQY","tsKey":"us-illinois-lawrence-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Lawrence","slug":"us-illinois-lawrence-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA070NA14HDTEFMYHYEJ","tsKey":"us-illinois-lee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Lee","slug":"us-illinois-lee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA09PY05MEG97NFJP1SN","tsKey":"us-illinois-livingston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Livingston","slug":"us-illinois-livingston-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA07SY3CGTV1RX1FAS6A","tsKey":"us-illinois-logan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Logan","slug":"us-illinois-logan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0C3XGT03ZF2P152BJV","tsKey":"us-illinois-macon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Macon","slug":"us-illinois-macon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA090ST5HNYGQ336BA26","tsKey":"us-illinois-macoupin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Macoupin","slug":"us-illinois-macoupin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0C8G6SP2VC60REJVPK","tsKey":"us-illinois-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Madison","slug":"us-illinois-madison-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA07T0RA02J8MPCXJ43N","tsKey":"us-illinois-marion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Marion","slug":"us-illinois-marion-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0CS3Q8QHE6D6PHGNF9","tsKey":"us-illinois-marshall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Marshall","slug":"us-illinois-marshall-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA09ZK2C9F9ZD3TXSRHM","tsKey":"us-illinois-mason-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Mason","slug":"us-illinois-mason-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA09S8NJ2JZESRW8V9EY","tsKey":"us-illinois-massac-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Massac","slug":"us-illinois-massac-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA09AYBDHX3QA8YXX7ZZ","tsKey":"us-illinois-mcdonough-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"McDonough","slug":"us-illinois-mcdonough-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA093HFQEW8BGY4PTAZQ","tsKey":"us-illinois-mchenry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"McHenry","slug":"us-illinois-mchenry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0C4XGYCWPFCMTY20V7","tsKey":"us-illinois-mclean-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"McLean","slug":"us-illinois-mclean-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA078C0DF3S4QP67RWYZ","tsKey":"us-illinois-menard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Menard","slug":"us-illinois-menard-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA093V6XZT29Q7BWF6MG","tsKey":"us-illinois-mercer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Mercer","slug":"us-illinois-mercer-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA09MR04GA9GJWMQ5YR7","tsKey":"us-illinois-monroe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Monroe","slug":"us-illinois-monroe-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0C2RBCW61D0BQJEY5C","tsKey":"us-illinois-montgomery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Montgomery","slug":"us-illinois-montgomery-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA094VW6AHTFSBM42FWS","tsKey":"us-illinois-morgan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Morgan","slug":"us-illinois-morgan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA07CZZ7P1EDSCK0QADC","tsKey":"us-illinois-moultrie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Moultrie","slug":"us-illinois-moultrie-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA098A150DMVGRE7CJG1","tsKey":"us-illinois-ogle-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Ogle","slug":"us-illinois-ogle-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0A5YY4TCMK7NT5YAZX","tsKey":"us-illinois-peoria-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Peoria","slug":"us-illinois-peoria-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA07E8B1X5JAGJ3F0EWV","tsKey":"us-illinois-perry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Perry","slug":"us-illinois-perry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0AF792SQJSGRD37K2E","tsKey":"us-illinois-piatt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Piatt","slug":"us-illinois-piatt-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0D45R08WZQ5WWBBG9N","tsKey":"us-illinois-pike-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Pike","slug":"us-illinois-pike-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0CE1J7MCBQ834X8M7V","tsKey":"us-illinois-pope-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Pope","slug":"us-illinois-pope-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0ADQB0204HZD0BQNQQ","tsKey":"us-illinois-pulaski-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Pulaski","slug":"us-illinois-pulaski-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA07NQ46ZJXMRY68YAQM","tsKey":"us-illinois-putnam-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Putnam","slug":"us-illinois-putnam-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0D5KGJJTS03DX12B4W","tsKey":"us-illinois-randolph-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Randolph","slug":"us-illinois-randolph-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0AAW281CNA8WBMV6Q7","tsKey":"us-illinois-richland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Richland","slug":"us-illinois-richland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0DX5GVCQFQQ7ZXHFQT","tsKey":"us-illinois-rock-island-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Rock Island","slug":"us-illinois-rock-island-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0ABGDNQ10B42ZCZTC2","tsKey":"us-illinois-saline-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Saline","slug":"us-illinois-saline-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0A22S2NBFN5VMWSW4P","tsKey":"us-illinois-sangamon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Sangamon","slug":"us-illinois-sangamon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA076YSCDSN55KD1VXF8","tsKey":"us-illinois-schuyler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Schuyler","slug":"us-illinois-schuyler-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0DA27SNZ2X7FRGTVD5","tsKey":"us-illinois-scott-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Scott","slug":"us-illinois-scott-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0DT5GMK0RXDKQGSBDX","tsKey":"us-illinois-shelby-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Shelby","slug":"us-illinois-shelby-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA07X4H6SDBGQ5M112XJ","tsKey":"us-illinois-stark-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Stark","slug":"us-illinois-stark-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0CEXFC72X19WSEKS6Y","tsKey":"us-illinois-st-clair-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"St. Clair","slug":"us-illinois-st-clair-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0AXEHZ9Q7ZQ6SAK7KY","tsKey":"us-illinois-stephenson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Stephenson","slug":"us-illinois-stephenson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA071BTPKM6SCAZ7KGCX","tsKey":"us-illinois-tazewell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Tazewell","slug":"us-illinois-tazewell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0DBAGC9K13JH6NHRNM","tsKey":"us-illinois-union-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Union","slug":"us-illinois-union-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0BRT3X2PDWK4Z82WTP","tsKey":"us-illinois-vermilion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Vermilion","slug":"us-illinois-vermilion-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0DT3JYQNP2X2K6Q3M5","tsKey":"us-illinois-wabash-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Wabash","slug":"us-illinois-wabash-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0C7GRHEHHBQSYY32CJ","tsKey":"us-illinois-warren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Warren","slug":"us-illinois-warren-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA08859DE42AQ83XVQG0","tsKey":"us-illinois-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Washington","slug":"us-illinois-washington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0BC7A0ED5A1MDDE45H","tsKey":"us-illinois-wayne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Wayne","slug":"us-illinois-wayne-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0DYGRQ0XXCBJZHAEQ6","tsKey":"us-illinois-white-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"White","slug":"us-illinois-white-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0B6SBGW5QPGJW88RCM","tsKey":"us-illinois-whiteside-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Whiteside","slug":"us-illinois-whiteside-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0BHBX11A19XA1HZ6HA","tsKey":"us-illinois-will-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Will","slug":"us-illinois-will-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0C8Y454T759JKBV37J","tsKey":"us-illinois-williamson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Williamson","slug":"us-illinois-williamson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA0DRBQ65SE30GHV7D20","tsKey":"us-illinois-winnebago-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Winnebago","slug":"us-illinois-winnebago-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJA08PP17PAF8MMNBVWN4","tsKey":"us-illinois-woodford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","name":"Woodford","slug":"us-illinois-woodford-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","tsKey":"us-indiana","tsNs":"gov-dist","abbrev":"IN","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Indiana","slug":"us-indiana","iso":"US-IN","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB04K4S9GEXA0EWB03BF","tsKey":"us-indiana-adams-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Adams","slug":"us-indiana-adams-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB04PKSNAJYN3Q8Q861N","tsKey":"us-indiana-allen-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Allen","slug":"us-indiana-allen-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB04D2B3CZ75YEK1674D","tsKey":"us-indiana-bartholomew-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Bartholomew","slug":"us-indiana-bartholomew-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB031KZFRETBF57E1J5Z","tsKey":"us-indiana-benton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Benton","slug":"us-indiana-benton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB01Q139Z2YX2Y5S2RQW","tsKey":"us-indiana-blackford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Blackford","slug":"us-indiana-blackford-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB01E44AP2Y1FN8AQA18","tsKey":"us-indiana-boone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Boone","slug":"us-indiana-boone-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB03HR03HHVZEFWTM09Y","tsKey":"us-indiana-brown-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Brown","slug":"us-indiana-brown-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB03FTFZXXHNKFTA56NE","tsKey":"us-indiana-carroll-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Carroll","slug":"us-indiana-carroll-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB04238389S3HB79VYQB","tsKey":"us-indiana-cass-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Cass","slug":"us-indiana-cass-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB03TQHHV3XQPDZ43KVQ","tsKey":"us-indiana-clark-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Clark","slug":"us-indiana-clark-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB01GJZQWWX0YR2S938B","tsKey":"us-indiana-clay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Clay","slug":"us-indiana-clay-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB0538W6FS02Q8T6JE2V","tsKey":"us-indiana-clinton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Clinton","slug":"us-indiana-clinton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB03PPNN75Z2PPD4GPWN","tsKey":"us-indiana-crawford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Crawford","slug":"us-indiana-crawford-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB05EEVRTAJRGEAAJVRA","tsKey":"us-indiana-daviess-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Daviess","slug":"us-indiana-daviess-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB0690HFF8BVBWZZH6G9","tsKey":"us-indiana-dearborn-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Dearborn","slug":"us-indiana-dearborn-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB03A9SKH2YKTBWKW51F","tsKey":"us-indiana-decatur-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Decatur","slug":"us-indiana-decatur-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB01NCY3DB3PTWBGFQ0P","tsKey":"us-indiana-dekalb-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"DeKalb","slug":"us-indiana-dekalb-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB04SN3ZSN2FPQ5KTB27","tsKey":"us-indiana-delaware-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Delaware","slug":"us-indiana-delaware-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB0647RXBPAAMK84YRDF","tsKey":"us-indiana-dubois-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Dubois","slug":"us-indiana-dubois-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB0605QZ4ZYKKWA0AFPX","tsKey":"us-indiana-elkhart-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Elkhart","slug":"us-indiana-elkhart-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB05T4BKH8PMV8G78FN0","tsKey":"us-indiana-fayette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Fayette","slug":"us-indiana-fayette-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB0564SX7ZYNSQHZ79FG","tsKey":"us-indiana-floyd-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Floyd","slug":"us-indiana-floyd-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB04W8D9M2B460FW930S","tsKey":"us-indiana-fountain-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Fountain","slug":"us-indiana-fountain-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB06C3RSM6G770VDB07R","tsKey":"us-indiana-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Franklin","slug":"us-indiana-franklin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB04SKNAEY0EJ6TPYZZS","tsKey":"us-indiana-fulton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Fulton","slug":"us-indiana-fulton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB00HFTX3PBYEC0XB68M","tsKey":"us-indiana-gibson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Gibson","slug":"us-indiana-gibson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB04MVKAAPVQJNVQMHCN","tsKey":"us-indiana-grant-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Grant","slug":"us-indiana-grant-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB030PSM8TAJG3HFAH2X","tsKey":"us-indiana-greene-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Greene","slug":"us-indiana-greene-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB03KKC6NXWQ62GST21T","tsKey":"us-indiana-hamilton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Hamilton","slug":"us-indiana-hamilton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB00QTDCZDBDHB8R09Z7","tsKey":"us-indiana-hancock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Hancock","slug":"us-indiana-hancock-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB05W8KG7X5S41QZKNMZ","tsKey":"us-indiana-harrison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Harrison","slug":"us-indiana-harrison-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB0480WS24EWTNDG4E39","tsKey":"us-indiana-hendricks-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Hendricks","slug":"us-indiana-hendricks-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB03AERAZ4N63DKV1KNR","tsKey":"us-indiana-henry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Henry","slug":"us-indiana-henry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB03QDF6RJ37C3YW183V","tsKey":"us-indiana-howard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Howard","slug":"us-indiana-howard-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB00JFB52T33PZR1JA2N","tsKey":"us-indiana-huntington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Huntington","slug":"us-indiana-huntington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB03FAEKXNJM9MQPQJH4","tsKey":"us-indiana-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Jackson","slug":"us-indiana-jackson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB05YRJ821D7KT3MJTYA","tsKey":"us-indiana-jasper-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Jasper","slug":"us-indiana-jasper-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB04Z7201JGPHSF93N8T","tsKey":"us-indiana-jay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Jay","slug":"us-indiana-jay-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB03AEW37XEDK474NJ7A","tsKey":"us-indiana-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Jefferson","slug":"us-indiana-jefferson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB00Y0KNN8K5E6P0ZFMD","tsKey":"us-indiana-jennings-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Jennings","slug":"us-indiana-jennings-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB05MBJR2M148YJDM1GT","tsKey":"us-indiana-johnson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Johnson","slug":"us-indiana-johnson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB05KPV2MY80TQN5FKZY","tsKey":"us-indiana-knox-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Knox","slug":"us-indiana-knox-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB00PWRJQ4KHB7508CAW","tsKey":"us-indiana-kosciusko-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Kosciusko","slug":"us-indiana-kosciusko-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB03X6XSQGPY0D3ZCBZJ","tsKey":"us-indiana-lagrange-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"LaGrange","slug":"us-indiana-lagrange-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB05788DRMGGFWZW06H3","tsKey":"us-indiana-lake-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Lake","slug":"us-indiana-lake-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB03HY3VXWAJ86JMN721","tsKey":"us-indiana-laporte-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"LaPorte","slug":"us-indiana-laporte-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB0472H6ZPYVX0X5R8M3","tsKey":"us-indiana-lawrence-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Lawrence","slug":"us-indiana-lawrence-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB01HJC40P2KVYDJBF6E","tsKey":"us-indiana-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Madison","slug":"us-indiana-madison-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB03P75BGA6BS2C5S32B","tsKey":"us-indiana-marion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Marion","slug":"us-indiana-marion-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB04F6KRYWMXHWCWK88X","tsKey":"us-indiana-marshall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Marshall","slug":"us-indiana-marshall-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB03T8C844NW6P0RBX2E","tsKey":"us-indiana-martin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Martin","slug":"us-indiana-martin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB03863T4AFHY5T5SZVP","tsKey":"us-indiana-miami-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Miami","slug":"us-indiana-miami-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB01CBF3G85T4Q9N84PK","tsKey":"us-indiana-monroe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Monroe","slug":"us-indiana-monroe-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB05CF1ETYDRBBGQ5N6P","tsKey":"us-indiana-montgomery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Montgomery","slug":"us-indiana-montgomery-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB03TK7FBGNVMAYHRJC3","tsKey":"us-indiana-morgan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Morgan","slug":"us-indiana-morgan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB05QS2BCPNNAKX3CZ98","tsKey":"us-indiana-newton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Newton","slug":"us-indiana-newton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB048922S7JZ25Q41RM7","tsKey":"us-indiana-noble-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Noble","slug":"us-indiana-noble-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB016HRWJQJ87DBMJP8F","tsKey":"us-indiana-ohio-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Ohio","slug":"us-indiana-ohio-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB02DZDM2Z1WAH3XQ8AY","tsKey":"us-indiana-orange-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Orange","slug":"us-indiana-orange-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB04528XSZXPA5P6Z135","tsKey":"us-indiana-owen-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Owen","slug":"us-indiana-owen-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB02H0QS2ESXTSXR46C0","tsKey":"us-indiana-parke-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Parke","slug":"us-indiana-parke-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB056NRC5V34V7VKHN81","tsKey":"us-indiana-perry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Perry","slug":"us-indiana-perry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB01DQXZ6EX03NQ0479M","tsKey":"us-indiana-pike-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Pike","slug":"us-indiana-pike-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB02Z2TJNFKH4Z0FA2AA","tsKey":"us-indiana-porter-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Porter","slug":"us-indiana-porter-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB05M3QPXNF9SNFT37BT","tsKey":"us-indiana-posey-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Posey","slug":"us-indiana-posey-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB014N5ZSS6GJW7TF0ER","tsKey":"us-indiana-pulaski-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Pulaski","slug":"us-indiana-pulaski-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB04PB388ZRQ2CVK05M1","tsKey":"us-indiana-putnam-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Putnam","slug":"us-indiana-putnam-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB02XN8Y6DEW4QCZ16KX","tsKey":"us-indiana-randolph-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Randolph","slug":"us-indiana-randolph-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB02V7QHBCE7JCWNSVM6","tsKey":"us-indiana-ripley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Ripley","slug":"us-indiana-ripley-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB01TWBR580KGW2BC8YZ","tsKey":"us-indiana-rush-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Rush","slug":"us-indiana-rush-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB05BM2QPK52VJ48SF2K","tsKey":"us-indiana-scott-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Scott","slug":"us-indiana-scott-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB04P263ZB2Q8VQJXQRQ","tsKey":"us-indiana-shelby-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Shelby","slug":"us-indiana-shelby-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB05MXKKWECMMKATQANM","tsKey":"us-indiana-spencer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Spencer","slug":"us-indiana-spencer-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB02WTWKXD416T5B6HDJ","tsKey":"us-indiana-starke-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Starke","slug":"us-indiana-starke-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB023XDDKZDJJBG10938","tsKey":"us-indiana-steuben-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Steuben","slug":"us-indiana-steuben-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB02WR7VNXEVY2RCCH07","tsKey":"us-indiana-st-joseph-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"St. Joseph","slug":"us-indiana-st-joseph-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB01KRNAVW6PHFFDVRQ1","tsKey":"us-indiana-sullivan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Sullivan","slug":"us-indiana-sullivan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB065GRHN0KQQCRWFGKR","tsKey":"us-indiana-switzerland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Switzerland","slug":"us-indiana-switzerland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB04689WDG19JE7GZ9V8","tsKey":"us-indiana-tippecanoe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Tippecanoe","slug":"us-indiana-tippecanoe-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB02ZPS4J2PS72ZKJA0A","tsKey":"us-indiana-tipton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Tipton","slug":"us-indiana-tipton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB02RBG4TW8GPS7HBVXS","tsKey":"us-indiana-union-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Union","slug":"us-indiana-union-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB06E546JPR4HF1TAZMJ","tsKey":"us-indiana-vanderburgh-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Vanderburgh","slug":"us-indiana-vanderburgh-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB04NX56K5B0TVSBVFWF","tsKey":"us-indiana-vermillion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Vermillion","slug":"us-indiana-vermillion-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB020N0XG1NCDX51V0KZ","tsKey":"us-indiana-vigo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Vigo","slug":"us-indiana-vigo-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB02P1KE2TMXFQ64HJM6","tsKey":"us-indiana-wabash-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Wabash","slug":"us-indiana-wabash-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB05YV3BJNYNG8RVPQ3Q","tsKey":"us-indiana-warren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Warren","slug":"us-indiana-warren-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB01J6NY81AN30H0CPWC","tsKey":"us-indiana-warrick-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Warrick","slug":"us-indiana-warrick-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB02NESM87X4SGPZDTN8","tsKey":"us-indiana-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Washington","slug":"us-indiana-washington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB05SEHEM0DJ5B4FB79R","tsKey":"us-indiana-wayne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Wayne","slug":"us-indiana-wayne-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB01MW95VFFF5W6G4B9G","tsKey":"us-indiana-wells-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Wells","slug":"us-indiana-wells-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB02QK81ST1HEN65G4YB","tsKey":"us-indiana-white-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"White","slug":"us-indiana-white-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJB0109XM51PJRQBMQX5A","tsKey":"us-indiana-whitley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","name":"Whitley","slug":"us-indiana-whitley-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","tsKey":"us-iowa","tsNs":"gov-dist","abbrev":"IA","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Iowa","slug":"us-iowa","iso":"US-IA","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXW1BXXBPE94T3SEXHG","tsKey":"us-iowa-adair-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Adair","slug":"us-iowa-adair-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCY0KVE2AAD4N92TCRWJ","tsKey":"us-iowa-adams-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Adams","slug":"us-iowa-adams-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCY0FC4B3RZH2V7V6ZTV","tsKey":"us-iowa-allamakee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Allamakee","slug":"us-iowa-allamakee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXYQ16YYE2SNFP44RFQ","tsKey":"us-iowa-appanoose-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Appanoose","slug":"us-iowa-appanoose-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXV6AG6WTDBM6YBH6SB","tsKey":"us-iowa-audubon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Audubon","slug":"us-iowa-audubon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXYN24VCQTPFQZFFWTC","tsKey":"us-iowa-benton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Benton","slug":"us-iowa-benton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCY0E1486QWR4FPGVBCA","tsKey":"us-iowa-black-hawk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Black Hawk","slug":"us-iowa-black-hawk-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXYB9J3C1KV2V2EP4ND","tsKey":"us-iowa-boone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Boone","slug":"us-iowa-boone-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXVEWKFYKKAH4QENBS6","tsKey":"us-iowa-bremer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Bremer","slug":"us-iowa-bremer-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXZZ11PAEQJZG96J2C4","tsKey":"us-iowa-buchanan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Buchanan","slug":"us-iowa-buchanan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXVAWC4261TPQVV4QJR","tsKey":"us-iowa-buena-vista-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Buena Vista","slug":"us-iowa-buena-vista-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXZFYDAJKGH7T1NAY2C","tsKey":"us-iowa-butler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Butler","slug":"us-iowa-butler-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCY0XNB89YGR91RN41AD","tsKey":"us-iowa-calhoun-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Calhoun","slug":"us-iowa-calhoun-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXZSKR9VSFZT28H5KCG","tsKey":"us-iowa-carroll-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Carroll","slug":"us-iowa-carroll-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCY1R0THXTRM52Q57KNR","tsKey":"us-iowa-cass-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Cass","slug":"us-iowa-cass-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXVHZQR49PB8QBJXXW7","tsKey":"us-iowa-cedar-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Cedar","slug":"us-iowa-cedar-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXZ10X9BXG2QCEG4Y6G","tsKey":"us-iowa-cerro-gordo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Cerro Gordo","slug":"us-iowa-cerro-gordo-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCY00QNCK3BJSDDHFD2T","tsKey":"us-iowa-cherokee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Cherokee","slug":"us-iowa-cherokee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCY12SZGTY0WTE6ZJWF9","tsKey":"us-iowa-chickasaw-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Chickasaw","slug":"us-iowa-chickasaw-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXVN5A80DZA42WJQC8R","tsKey":"us-iowa-clarke-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Clarke","slug":"us-iowa-clarke-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXZRRS117HMJ8VT3KQQ","tsKey":"us-iowa-clay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Clay","slug":"us-iowa-clay-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXZJ135DBAZ779E1T72","tsKey":"us-iowa-clayton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Clayton","slug":"us-iowa-clayton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXVW14B3E2XQZA040NQ","tsKey":"us-iowa-clinton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Clinton","slug":"us-iowa-clinton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXVZEW1VFT6G0XVMDJW","tsKey":"us-iowa-crawford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Crawford","slug":"us-iowa-crawford-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXZV00YFFWPS8TE3Y8M","tsKey":"us-iowa-dallas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Dallas","slug":"us-iowa-dallas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCY0G3W7D8CTH8A7FP4P","tsKey":"us-iowa-davis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Davis","slug":"us-iowa-davis-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXW9MXZH5A084DED76T","tsKey":"us-iowa-decatur-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Decatur","slug":"us-iowa-decatur-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXVGBMKXTAKV160SD40","tsKey":"us-iowa-delaware-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Delaware","slug":"us-iowa-delaware-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXZWVHDM1Q5EHMKABMC","tsKey":"us-iowa-des-moines-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Des Moines","slug":"us-iowa-des-moines-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXYJK3X4X4J9PW7XC8Z","tsKey":"us-iowa-dickinson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Dickinson","slug":"us-iowa-dickinson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXXFM5J8J96ZYCT3212","tsKey":"us-iowa-dubuque-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Dubuque","slug":"us-iowa-dubuque-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXWRSZ70REH43202ZP4","tsKey":"us-iowa-emmet-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Emmet","slug":"us-iowa-emmet-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCY0NY6CZS5MV2K29MZX","tsKey":"us-iowa-fayette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Fayette","slug":"us-iowa-fayette-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXW4NF3K71K4R3KESB2","tsKey":"us-iowa-floyd-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Floyd","slug":"us-iowa-floyd-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXXBDJ6H6SD67A4GFFN","tsKey":"us-iowa-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Franklin","slug":"us-iowa-franklin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCY03BBM4NS3V2C53DC2","tsKey":"us-iowa-fremont-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Fremont","slug":"us-iowa-fremont-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXZY7Z2QCAX2F1F7AKX","tsKey":"us-iowa-greene-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Greene","slug":"us-iowa-greene-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXXS9ZT0WX3HKHDCNPW","tsKey":"us-iowa-grundy-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Grundy","slug":"us-iowa-grundy-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXXPCHRTRH9M2G98WEM","tsKey":"us-iowa-guthrie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Guthrie","slug":"us-iowa-guthrie-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXWCA9SS48GSSHTCEA1","tsKey":"us-iowa-hamilton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Hamilton","slug":"us-iowa-hamilton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXZZJVHFQCP0623GPN1","tsKey":"us-iowa-hancock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Hancock","slug":"us-iowa-hancock-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCY012JW692BR1WS2T10","tsKey":"us-iowa-hardin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Hardin","slug":"us-iowa-hardin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCY0PCXJ4D2GYDN0SFQN","tsKey":"us-iowa-harrison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Harrison","slug":"us-iowa-harrison-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXWHH4BRMBZKR525SM1","tsKey":"us-iowa-henry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Henry","slug":"us-iowa-henry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXXMCT4WD7GYFWP9ZJZ","tsKey":"us-iowa-howard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Howard","slug":"us-iowa-howard-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXZQ62P42TKCWQMEYB7","tsKey":"us-iowa-humboldt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Humboldt","slug":"us-iowa-humboldt-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXXTAVXZWQ9211J1BZP","tsKey":"us-iowa-ida-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Ida","slug":"us-iowa-ida-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXW3TFN1XJHG7257S2Q","tsKey":"us-iowa-iowa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Iowa","slug":"us-iowa-iowa-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCY06GWPDDCFZGVC5JHS","tsKey":"us-iowa-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Jackson","slug":"us-iowa-jackson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXZ614NA1WBTD8PKQ8K","tsKey":"us-iowa-jasper-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Jasper","slug":"us-iowa-jasper-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXXRABY8C7G64MK57DK","tsKey":"us-iowa-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Jefferson","slug":"us-iowa-jefferson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXX44JZ616JFTQYAAZG","tsKey":"us-iowa-johnson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Johnson","slug":"us-iowa-johnson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXW7JJZ7CFW0FTX39KG","tsKey":"us-iowa-jones-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Jones","slug":"us-iowa-jones-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXX976S7VZJ5JNSX3XY","tsKey":"us-iowa-keokuk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Keokuk","slug":"us-iowa-keokuk-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCY0TXKEWE3QNXVYH6PK","tsKey":"us-iowa-kossuth-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Kossuth","slug":"us-iowa-kossuth-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXXB25KMEMKS82BKDPX","tsKey":"us-iowa-lee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Lee","slug":"us-iowa-lee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXWW2VSEMQ5GXKK47EK","tsKey":"us-iowa-linn-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Linn","slug":"us-iowa-linn-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCY0B71D1QMSS0S4XQ76","tsKey":"us-iowa-louisa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Louisa","slug":"us-iowa-louisa-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCY1S5E381Y86FG55B46","tsKey":"us-iowa-lucas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Lucas","slug":"us-iowa-lucas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCY1M7XW3TX9VCH8DD7H","tsKey":"us-iowa-lyon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Lyon","slug":"us-iowa-lyon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXWPSQZBVB8F909VK2B","tsKey":"us-iowa-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Madison","slug":"us-iowa-madison-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCY1CQ1PHGN8NMPBS639","tsKey":"us-iowa-mahaska-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Mahaska","slug":"us-iowa-mahaska-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXW9FK5JJAN9PMQKH8N","tsKey":"us-iowa-marion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Marion","slug":"us-iowa-marion-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXXC71APH3KSZTRN399","tsKey":"us-iowa-marshall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Marshall","slug":"us-iowa-marshall-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXX8NEJ5HPFMH8BAZQ7","tsKey":"us-iowa-mills-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Mills","slug":"us-iowa-mills-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCY09B45KXC7G1RFFYCS","tsKey":"us-iowa-mitchell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Mitchell","slug":"us-iowa-mitchell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCY1V3HJXG2VY335TXPC","tsKey":"us-iowa-monona-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Monona","slug":"us-iowa-monona-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXXJSFYCMD54WM4HMXF","tsKey":"us-iowa-monroe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Monroe","slug":"us-iowa-monroe-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXWARX4DAWJ4AVECV44","tsKey":"us-iowa-montgomery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Montgomery","slug":"us-iowa-montgomery-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXXEDPTMSA2D3KYXZPB","tsKey":"us-iowa-muscatine-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Muscatine","slug":"us-iowa-muscatine-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXW2ZGTGWPXRBTWN56K","tsKey":"us-iowa-obrien-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"O'Brien","slug":"us-iowa-obrien-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCY14XPKF77SW9EKCRKJ","tsKey":"us-iowa-osceola-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Osceola","slug":"us-iowa-osceola-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXXXD5VWPZGEBXTS8T7","tsKey":"us-iowa-page-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Page","slug":"us-iowa-page-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCY0ZKTHYDN8CFYYJBE6","tsKey":"us-iowa-palo-alto-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Palo Alto","slug":"us-iowa-palo-alto-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXYRSF86XXRQZHGVCW0","tsKey":"us-iowa-plymouth-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Plymouth","slug":"us-iowa-plymouth-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXWWVGDNCZGGR88H800","tsKey":"us-iowa-pocahontas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Pocahontas","slug":"us-iowa-pocahontas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXX2NBRDSN14PMXHV71","tsKey":"us-iowa-polk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Polk","slug":"us-iowa-polk-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXX4YFMQX0P4M47FDTN","tsKey":"us-iowa-pottawattamie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Pottawattamie","slug":"us-iowa-pottawattamie-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCY0237RZM9ET78C36EN","tsKey":"us-iowa-poweshiek-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Poweshiek","slug":"us-iowa-poweshiek-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXXPFGTW055SJ04ASBP","tsKey":"us-iowa-ringgold-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Ringgold","slug":"us-iowa-ringgold-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXWR0C7B62WYSXTJS8N","tsKey":"us-iowa-sac-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Sac","slug":"us-iowa-sac-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXXM3KBW6J5N9J1846X","tsKey":"us-iowa-scott-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Scott","slug":"us-iowa-scott-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCY0BEXYC5X3QY79TJBJ","tsKey":"us-iowa-shelby-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Shelby","slug":"us-iowa-shelby-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCY198CWMZQQ25QCR7J7","tsKey":"us-iowa-sioux-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Sioux","slug":"us-iowa-sioux-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXW46444266Z1T5A1GE","tsKey":"us-iowa-story-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Story","slug":"us-iowa-story-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXYZWS8XS5Q91PJBK25","tsKey":"us-iowa-tama-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Tama","slug":"us-iowa-tama-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCY1F60FFG72YYZ82JZD","tsKey":"us-iowa-taylor-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Taylor","slug":"us-iowa-taylor-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXWNZ3909ETRZKTMJWQ","tsKey":"us-iowa-union-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Union","slug":"us-iowa-union-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXY5VZSQ1RH4MNPW39N","tsKey":"us-iowa-van-buren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Van Buren","slug":"us-iowa-van-buren-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCY0P2KPVMVAYPY8J3JY","tsKey":"us-iowa-wapello-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Wapello","slug":"us-iowa-wapello-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXWG3HPVNHAMP9F3MT3","tsKey":"us-iowa-warren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Warren","slug":"us-iowa-warren-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXYF6PPDRGVW4V3E4FG","tsKey":"us-iowa-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Washington","slug":"us-iowa-washington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCY18DA3HAK8C7CQPAKC","tsKey":"us-iowa-wayne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Wayne","slug":"us-iowa-wayne-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCY0T911XBEHZTQQT8T7","tsKey":"us-iowa-webster-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Webster","slug":"us-iowa-webster-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXYSY87HDNZWK323C3C","tsKey":"us-iowa-winnebago-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Winnebago","slug":"us-iowa-winnebago-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCY1TMQ2YWG800WZV8HK","tsKey":"us-iowa-winneshiek-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Winneshiek","slug":"us-iowa-winneshiek-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXYS5N15Q4CZ7HQGCQA","tsKey":"us-iowa-woodbury-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Woodbury","slug":"us-iowa-woodbury-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCXWA91KARBS76Q4CCM0","tsKey":"us-iowa-worth-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Worth","slug":"us-iowa-worth-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJCY0HJN2TN6Z8WK14342","tsKey":"us-iowa-wright-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","name":"Wright","slug":"us-iowa-wright-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","tsKey":"us-kansas","tsNs":"gov-dist","abbrev":"KS","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Kansas","slug":"us-kansas","iso":"US-KS","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7BZV3D802KM5WZ2JD2","tsKey":"us-kansas-allen-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Allen","slug":"us-kansas-allen-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE78BXFFZ3T64761PH4H","tsKey":"us-kansas-anderson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Anderson","slug":"us-kansas-anderson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7770DSR76E91M8MGJY","tsKey":"us-kansas-atchison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Atchison","slug":"us-kansas-atchison-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7BA5E5GP8S6ZQ0QPRB","tsKey":"us-kansas-barber-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Barber","slug":"us-kansas-barber-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE78C89T9BDRHXW3P3F9","tsKey":"us-kansas-barton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Barton","slug":"us-kansas-barton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7BPKHASKAVE5G0N2HT","tsKey":"us-kansas-bourbon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Bourbon","slug":"us-kansas-bourbon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE79GAFYT77DANSFQ6PD","tsKey":"us-kansas-brown-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Brown","slug":"us-kansas-brown-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE77K45ZM342EB4P80P1","tsKey":"us-kansas-butler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Butler","slug":"us-kansas-butler-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7894ED7VD9CNVH66ZC","tsKey":"us-kansas-chase-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Chase","slug":"us-kansas-chase-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE78DY8YKMWQK3A1RBV8","tsKey":"us-kansas-chautauqua-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Chautauqua","slug":"us-kansas-chautauqua-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7BEBZ02A0KK9VE0D44","tsKey":"us-kansas-cherokee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Cherokee","slug":"us-kansas-cherokee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE79YYA9DWPJTN7THEPQ","tsKey":"us-kansas-cheyenne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Cheyenne","slug":"us-kansas-cheyenne-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE79NHHDJD5G1EJD5YBH","tsKey":"us-kansas-clark-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Clark","slug":"us-kansas-clark-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE75XYAF5DY6HHTX6742","tsKey":"us-kansas-clay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Clay","slug":"us-kansas-clay-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE75E1SJ196X5BSGJ5DH","tsKey":"us-kansas-cloud-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Cloud","slug":"us-kansas-cloud-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7AH66S874KW73K7N9X","tsKey":"us-kansas-coffey-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Coffey","slug":"us-kansas-coffey-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7A7K4F1V9A4RJ8XM33","tsKey":"us-kansas-comanche-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Comanche","slug":"us-kansas-comanche-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE79KCRJCKASQCDWMV5K","tsKey":"us-kansas-cowley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Cowley","slug":"us-kansas-cowley-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7BSBSK9HTMFBRH4252","tsKey":"us-kansas-crawford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Crawford","slug":"us-kansas-crawford-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7582991TD8XSKCXVJ4","tsKey":"us-kansas-decatur-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Decatur","slug":"us-kansas-decatur-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE797CEX32YC00PAV8ST","tsKey":"us-kansas-dickinson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Dickinson","slug":"us-kansas-dickinson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7C7ASZAJTQMX8177NK","tsKey":"us-kansas-doniphan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Doniphan","slug":"us-kansas-doniphan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7AF64MSWATDQVTF42J","tsKey":"us-kansas-douglas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Douglas","slug":"us-kansas-douglas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE79ER7B63VVNS69BXMJ","tsKey":"us-kansas-edwards-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Edwards","slug":"us-kansas-edwards-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE763NX91EQ6AC5KAD0E","tsKey":"us-kansas-elk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Elk","slug":"us-kansas-elk-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE79QBXH37R26BKZCDYA","tsKey":"us-kansas-ellis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Ellis","slug":"us-kansas-ellis-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE79P9JPEVPRYH0HHE08","tsKey":"us-kansas-ellsworth-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Ellsworth","slug":"us-kansas-ellsworth-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7AXAKCVQ2R1F0371EV","tsKey":"us-kansas-finney-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Finney","slug":"us-kansas-finney-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE79F70B9M33YQRQ1JK8","tsKey":"us-kansas-ford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Ford","slug":"us-kansas-ford-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7788T419WK4NC400BJ","tsKey":"us-kansas-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Franklin","slug":"us-kansas-franklin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7CKSNTVXKP6GD5JTFT","tsKey":"us-kansas-geary-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Geary","slug":"us-kansas-geary-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE790KYFJ1CJKC3G27K6","tsKey":"us-kansas-gove-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Gove","slug":"us-kansas-gove-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE76M57TPVTAZ8QJW9WP","tsKey":"us-kansas-graham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Graham","slug":"us-kansas-graham-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7CJDYSC1J79SHGTS9K","tsKey":"us-kansas-grant-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Grant","slug":"us-kansas-grant-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7AJFDY0B4VWFEJCQ2J","tsKey":"us-kansas-gray-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Gray","slug":"us-kansas-gray-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7CVEBHPH3B9M321AV0","tsKey":"us-kansas-greeley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Greeley","slug":"us-kansas-greeley-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE79HT5SH0N39NK4XJDR","tsKey":"us-kansas-greenwood-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Greenwood","slug":"us-kansas-greenwood-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE76WNZ95Q0DN6QWQKDR","tsKey":"us-kansas-hamilton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Hamilton","slug":"us-kansas-hamilton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE796C7QNG7ATWY0ESAN","tsKey":"us-kansas-harper-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Harper","slug":"us-kansas-harper-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE79BB34PATM8QZG16CQ","tsKey":"us-kansas-harvey-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Harvey","slug":"us-kansas-harvey-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7AEG459TSAYT88S2EQ","tsKey":"us-kansas-haskell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Haskell","slug":"us-kansas-haskell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7CQ5QPCVN1AAN2NFTQ","tsKey":"us-kansas-hodgeman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Hodgeman","slug":"us-kansas-hodgeman-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE76TX613BPJ1K45R79N","tsKey":"us-kansas-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Jackson","slug":"us-kansas-jackson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE794PP5EBDDZN5SYQZY","tsKey":"us-kansas-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Jefferson","slug":"us-kansas-jefferson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7CX9PZHC87ZXE8QD8Z","tsKey":"us-kansas-jewell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Jewell","slug":"us-kansas-jewell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE77SQGC46BBSM9RY0KW","tsKey":"us-kansas-johnson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Johnson","slug":"us-kansas-johnson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7A35NR3CE779VP8TZX","tsKey":"us-kansas-kearny-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Kearny","slug":"us-kansas-kearny-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE762KGP48PYDH1CTY1K","tsKey":"us-kansas-kingman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Kingman","slug":"us-kansas-kingman-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE77RMDZB438QWR3BHA2","tsKey":"us-kansas-kiowa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Kiowa","slug":"us-kansas-kiowa-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE77D2FPP6X2GG1RFN9A","tsKey":"us-kansas-labette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Labette","slug":"us-kansas-labette-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7AVEC87HFDCR9RQTXG","tsKey":"us-kansas-lane-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Lane","slug":"us-kansas-lane-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE77VMTQB3ZH9CAAVT6F","tsKey":"us-kansas-leavenworth-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Leavenworth","slug":"us-kansas-leavenworth-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE76C61DEJX698VCT73N","tsKey":"us-kansas-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Lincoln","slug":"us-kansas-lincoln-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7BQ0SZRFB9QP4851H6","tsKey":"us-kansas-linn-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Linn","slug":"us-kansas-linn-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE77JR9Y63SPX9F9XAER","tsKey":"us-kansas-logan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Logan","slug":"us-kansas-logan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7AB685S6YYCNDDQ5K3","tsKey":"us-kansas-lyon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Lyon","slug":"us-kansas-lyon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE760KQCW5SZXTZ9EPNK","tsKey":"us-kansas-marion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Marion","slug":"us-kansas-marion-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7BH58SGSR8F8JJ7ZAM","tsKey":"us-kansas-marshall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Marshall","slug":"us-kansas-marshall-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE77DT2TQBYG96G8ZM0R","tsKey":"us-kansas-mcpherson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"McPherson","slug":"us-kansas-mcpherson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7711RGCM0FH5WTTRFD","tsKey":"us-kansas-meade-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Meade","slug":"us-kansas-meade-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7BDHZ2TSEZ1V1NK9SX","tsKey":"us-kansas-miami-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Miami","slug":"us-kansas-miami-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7AY9G2FSGWQ4CT377M","tsKey":"us-kansas-mitchell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Mitchell","slug":"us-kansas-mitchell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE78WWZJPEMRZ8G81DZG","tsKey":"us-kansas-montgomery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Montgomery","slug":"us-kansas-montgomery-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE76D80YYME39BCY1BB7","tsKey":"us-kansas-morris-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Morris","slug":"us-kansas-morris-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7BS6BZGHCB7682SDDZ","tsKey":"us-kansas-morton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Morton","slug":"us-kansas-morton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE78ETN4X3WVY01FSJVF","tsKey":"us-kansas-nemaha-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Nemaha","slug":"us-kansas-nemaha-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7ASS77KR26ZM60RMF0","tsKey":"us-kansas-neosho-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Neosho","slug":"us-kansas-neosho-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE76JWWMZH5XWQEVRJ8S","tsKey":"us-kansas-ness-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Ness","slug":"us-kansas-ness-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7BTA161R0HC1DA0CPG","tsKey":"us-kansas-norton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Norton","slug":"us-kansas-norton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7AFSSBAGYMQ9XDWZS6","tsKey":"us-kansas-osage-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Osage","slug":"us-kansas-osage-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE789KBM53C2TC4HNGK4","tsKey":"us-kansas-osborne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Osborne","slug":"us-kansas-osborne-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE78EKCGKY4KQ88TSNB2","tsKey":"us-kansas-ottawa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Ottawa","slug":"us-kansas-ottawa-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE76C6VWJWJS3CQPA507","tsKey":"us-kansas-pawnee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Pawnee","slug":"us-kansas-pawnee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7BERRREC4EQQ9ZJZZD","tsKey":"us-kansas-phillips-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Phillips","slug":"us-kansas-phillips-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7BYAWFKG7XANKPHNRF","tsKey":"us-kansas-pottawatomie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Pottawatomie","slug":"us-kansas-pottawatomie-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7AAXTG5JAQ9JZ7MG5W","tsKey":"us-kansas-pratt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Pratt","slug":"us-kansas-pratt-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7BX2D6Z7G6D2DZRDC7","tsKey":"us-kansas-rawlins-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Rawlins","slug":"us-kansas-rawlins-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE769VWFAG0NHNSRPFCD","tsKey":"us-kansas-reno-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Reno","slug":"us-kansas-reno-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE78T5B5551TK34B711E","tsKey":"us-kansas-republic-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Republic","slug":"us-kansas-republic-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7AT05HJW0ZJ26G3CP2","tsKey":"us-kansas-rice-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Rice","slug":"us-kansas-rice-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7B6EX0V9BQN8462GHF","tsKey":"us-kansas-riley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Riley","slug":"us-kansas-riley-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE76NHZ63HBKTNR2J4KE","tsKey":"us-kansas-rooks-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Rooks","slug":"us-kansas-rooks-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE78D58ZCPW5TZ9BT8JM","tsKey":"us-kansas-rush-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Rush","slug":"us-kansas-rush-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7827C052X03SM0T4SY","tsKey":"us-kansas-russell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Russell","slug":"us-kansas-russell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7ADWX2428F28ES69SX","tsKey":"us-kansas-saline-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Saline","slug":"us-kansas-saline-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE78X2PN5WJYVA8ZJ91Q","tsKey":"us-kansas-scott-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Scott","slug":"us-kansas-scott-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE76ST6VM91T0CAPMYYW","tsKey":"us-kansas-sedgwick-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Sedgwick","slug":"us-kansas-sedgwick-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7BZKP886FPJW1RP3P8","tsKey":"us-kansas-seward-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Seward","slug":"us-kansas-seward-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE78396T8BCFBY2YZBR8","tsKey":"us-kansas-shawnee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Shawnee","slug":"us-kansas-shawnee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7A5QJ3WTW2HE68W6PX","tsKey":"us-kansas-sheridan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Sheridan","slug":"us-kansas-sheridan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE78RXF0CW876PWKXJ5M","tsKey":"us-kansas-sherman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Sherman","slug":"us-kansas-sherman-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE78BBF0F8YJKXY5V0NS","tsKey":"us-kansas-smith-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Smith","slug":"us-kansas-smith-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE77RY9PTV8AX8Q9RKRW","tsKey":"us-kansas-stafford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Stafford","slug":"us-kansas-stafford-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE78X8NTA8ZXPS6C2D0K","tsKey":"us-kansas-stanton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Stanton","slug":"us-kansas-stanton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE785H8RWYMY7JN8EKEC","tsKey":"us-kansas-stevens-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Stevens","slug":"us-kansas-stevens-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7ATWK4D0TQ3JYW3T2V","tsKey":"us-kansas-sumner-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Sumner","slug":"us-kansas-sumner-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7B6GYEKRFQTN06Y0YC","tsKey":"us-kansas-thomas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Thomas","slug":"us-kansas-thomas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7773SVFEM9VCJACDSC","tsKey":"us-kansas-trego-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Trego","slug":"us-kansas-trego-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE79CQFZAHSZHB642DW0","tsKey":"us-kansas-wabaunsee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Wabaunsee","slug":"us-kansas-wabaunsee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7B458HPYV4ZBDX0B7N","tsKey":"us-kansas-wallace-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Wallace","slug":"us-kansas-wallace-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7B7AQ36NF5T82NW7VF","tsKey":"us-kansas-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Washington","slug":"us-kansas-washington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE779GJ1B0F2Z7RKAYF0","tsKey":"us-kansas-wichita-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Wichita","slug":"us-kansas-wichita-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7731G6PNT42V4WQ6SJ","tsKey":"us-kansas-wilson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Wilson","slug":"us-kansas-wilson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE79EZVGKKZBZT55XKB7","tsKey":"us-kansas-woodson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Woodson","slug":"us-kansas-woodson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJE7AH10XV1G0K5KRVWKY","tsKey":"us-kansas-wyandotte-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","name":"Wyandotte","slug":"us-kansas-wyandotte-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","tsKey":"us-kentucky","tsNs":"gov-dist","abbrev":"KY","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Kentucky","slug":"us-kentucky","iso":"US-KY","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK1B6GTSJ42CWKHRMBS","tsKey":"us-kentucky-adair-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Adair","slug":"us-kentucky-adair-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJY2PR0V6J19Z9AD8BK","tsKey":"us-kentucky-allen-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Allen","slug":"us-kentucky-allen-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK1Y4K8M1K56D8PMQ1G","tsKey":"us-kentucky-anderson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Anderson","slug":"us-kentucky-anderson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK17DCCZR6E6QQHS3N1","tsKey":"us-kentucky-ballard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Ballard","slug":"us-kentucky-ballard-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJYV48QNGP6B0DH8VF6","tsKey":"us-kentucky-barren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Barren","slug":"us-kentucky-barren-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK0W6MDW6H1Z7PFZPAK","tsKey":"us-kentucky-bath-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Bath","slug":"us-kentucky-bath-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK08PCK0MGCFPMQJBDE","tsKey":"us-kentucky-bell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Bell","slug":"us-kentucky-bell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK0CNF69SCERQTARTDG","tsKey":"us-kentucky-boone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Boone","slug":"us-kentucky-boone-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJY9T2W619341Q9WXDZ","tsKey":"us-kentucky-bourbon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Bourbon","slug":"us-kentucky-bourbon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK10MDPVV3TXYY2FKVH","tsKey":"us-kentucky-boyd-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Boyd","slug":"us-kentucky-boyd-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK343MHJJ6VB9X77J81","tsKey":"us-kentucky-boyle-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Boyle","slug":"us-kentucky-boyle-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK3693AGQKD1CJK7Q1C","tsKey":"us-kentucky-bracken-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Bracken","slug":"us-kentucky-bracken-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJYX3G5MXZJRNPZG2BT","tsKey":"us-kentucky-breathitt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Breathitt","slug":"us-kentucky-breathitt-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK0K41J36KSCME2QMVJ","tsKey":"us-kentucky-breckinridge-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Breckinridge","slug":"us-kentucky-breckinridge-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK0N1D1X3MX3HE6JWX2","tsKey":"us-kentucky-bullitt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Bullitt","slug":"us-kentucky-bullitt-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJY1E4N2DY2GXY9EFY4","tsKey":"us-kentucky-butler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Butler","slug":"us-kentucky-butler-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK3EXHMPGE3RJ720P2Y","tsKey":"us-kentucky-caldwell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Caldwell","slug":"us-kentucky-caldwell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK0Q2PTNMKJ6KCXENE4","tsKey":"us-kentucky-calloway-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Calloway","slug":"us-kentucky-calloway-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK1Z6TFR5GY29TVHYMC","tsKey":"us-kentucky-campbell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Campbell","slug":"us-kentucky-campbell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK0NH1GGAF809V64XY2","tsKey":"us-kentucky-carlisle-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Carlisle","slug":"us-kentucky-carlisle-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK0K8NP9JWCHZPE80TX","tsKey":"us-kentucky-carroll-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Carroll","slug":"us-kentucky-carroll-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJYQ1MKWAFFXH7X8E34","tsKey":"us-kentucky-carter-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Carter","slug":"us-kentucky-carter-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK1HVY1R0K30N015118","tsKey":"us-kentucky-casey-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Casey","slug":"us-kentucky-casey-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK35RG4H8721W9WVC0Y","tsKey":"us-kentucky-christian-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Christian","slug":"us-kentucky-christian-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK1ZMEJRNBSQFFPCXV9","tsKey":"us-kentucky-clark-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Clark","slug":"us-kentucky-clark-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK3N7TJRQ831DPSD8FF","tsKey":"us-kentucky-clay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Clay","slug":"us-kentucky-clay-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJYM1MK8461KY87G0QM","tsKey":"us-kentucky-clinton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Clinton","slug":"us-kentucky-clinton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK3BKJD3ADX398GSW7C","tsKey":"us-kentucky-crittenden-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Crittenden","slug":"us-kentucky-crittenden-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK1HHS311QRQV0972N4","tsKey":"us-kentucky-cumberland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Cumberland","slug":"us-kentucky-cumberland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK3X096KBMR5KT2Z30H","tsKey":"us-kentucky-daviess-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Daviess","slug":"us-kentucky-daviess-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK1NHQY2P4SPZ13R352","tsKey":"us-kentucky-edmonson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Edmonson","slug":"us-kentucky-edmonson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJY21WWQR954WKGMPEB","tsKey":"us-kentucky-elliott-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Elliott","slug":"us-kentucky-elliott-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK1F1ZZ74PRXC3XETGN","tsKey":"us-kentucky-estill-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Estill","slug":"us-kentucky-estill-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK1JYPKJPRB37XTCAN3","tsKey":"us-kentucky-fayette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Fayette","slug":"us-kentucky-fayette-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK1396P6FPCY22FY25H","tsKey":"us-kentucky-fleming-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Fleming","slug":"us-kentucky-fleming-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK196SDNV7QPZDTHM6H","tsKey":"us-kentucky-floyd-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Floyd","slug":"us-kentucky-floyd-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK3S1MJ69VNK93GR4HP","tsKey":"us-kentucky-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Franklin","slug":"us-kentucky-franklin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK37HYJ99383BR467AJ","tsKey":"us-kentucky-fulton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Fulton","slug":"us-kentucky-fulton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJY6ZSF1TX9VKHD2BRG","tsKey":"us-kentucky-gallatin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Gallatin","slug":"us-kentucky-gallatin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK1YN79YKYRFE7A78EY","tsKey":"us-kentucky-garrard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Garrard","slug":"us-kentucky-garrard-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK1JTTP3F9Y1DCAYGKM","tsKey":"us-kentucky-grant-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Grant","slug":"us-kentucky-grant-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK17V47AEN0QMF4EPA4","tsKey":"us-kentucky-graves-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Graves","slug":"us-kentucky-graves-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK1EV1VCKSKGE0CAND9","tsKey":"us-kentucky-grayson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Grayson","slug":"us-kentucky-grayson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJYT44GR2SA2JPZJGQM","tsKey":"us-kentucky-green-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Green","slug":"us-kentucky-green-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK3J6RFPMTBCVNQE762","tsKey":"us-kentucky-greenup-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Greenup","slug":"us-kentucky-greenup-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK19FQJ9DD9FKB4Z0E4","tsKey":"us-kentucky-hancock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Hancock","slug":"us-kentucky-hancock-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK2JDXW8XGC014VV34N","tsKey":"us-kentucky-hardin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Hardin","slug":"us-kentucky-hardin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK3K32PBWJT53V333PV","tsKey":"us-kentucky-harlan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Harlan","slug":"us-kentucky-harlan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK1HBY2F76S509GJGZZ","tsKey":"us-kentucky-harrison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Harrison","slug":"us-kentucky-harrison-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJY3QTJZJB79FKJPTEW","tsKey":"us-kentucky-hart-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Hart","slug":"us-kentucky-hart-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK1E1Y4052CM3F8NN5K","tsKey":"us-kentucky-henderson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Henderson","slug":"us-kentucky-henderson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJY7BNQQ1WV8VC4Q3YG","tsKey":"us-kentucky-henry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Henry","slug":"us-kentucky-henry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK3J97CQD44B7JY0SXS","tsKey":"us-kentucky-hickman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Hickman","slug":"us-kentucky-hickman-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK1CRPZSPA80FCCDBG2","tsKey":"us-kentucky-hopkins-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Hopkins","slug":"us-kentucky-hopkins-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK2PY4RGY2F460JZSYM","tsKey":"us-kentucky-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Jackson","slug":"us-kentucky-jackson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJZHV38NZZ0RFKN359T","tsKey":"us-kentucky-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Jefferson","slug":"us-kentucky-jefferson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJZ946S827BPVWMAZ32","tsKey":"us-kentucky-jessamine-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Jessamine","slug":"us-kentucky-jessamine-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJZ8126QGGRDTPGMTAB","tsKey":"us-kentucky-johnson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Johnson","slug":"us-kentucky-johnson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK3XS79SZ9A0XC462S4","tsKey":"us-kentucky-kenton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Kenton","slug":"us-kentucky-kenton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK2W9AGJ0AD778RESD8","tsKey":"us-kentucky-knott-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Knott","slug":"us-kentucky-knott-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJZCWQ9HKVEXYNB8FTJ","tsKey":"us-kentucky-knox-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Knox","slug":"us-kentucky-knox-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJZPT7RNQMXM7H8HKR8","tsKey":"us-kentucky-larue-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"LaRue","slug":"us-kentucky-larue-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK2DVWDG37HYNXNP1KT","tsKey":"us-kentucky-laurel-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Laurel","slug":"us-kentucky-laurel-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK2PVPJSDEHHPVYXDYQ","tsKey":"us-kentucky-lawrence-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Lawrence","slug":"us-kentucky-lawrence-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJZP10PCD10EGK9GN3Y","tsKey":"us-kentucky-lee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Lee","slug":"us-kentucky-lee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK2WD294P3BHHF151ZF","tsKey":"us-kentucky-leslie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Leslie","slug":"us-kentucky-leslie-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK29N4JY909826X6DTY","tsKey":"us-kentucky-letcher-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Letcher","slug":"us-kentucky-letcher-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJZB0R67RK9BYTMVGNQ","tsKey":"us-kentucky-lewis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Lewis","slug":"us-kentucky-lewis-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJZ0RESEXZ3EY9XGE3S","tsKey":"us-kentucky-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Lincoln","slug":"us-kentucky-lincoln-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJZSMW5Q79PWYJ6AJWE","tsKey":"us-kentucky-livingston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Livingston","slug":"us-kentucky-livingston-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK2K6X9SH9FJZDKJ1NW","tsKey":"us-kentucky-logan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Logan","slug":"us-kentucky-logan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJZPM4M7JP9AHM309JX","tsKey":"us-kentucky-lyon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Lyon","slug":"us-kentucky-lyon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJZJ66WWQNXKDQF5JHY","tsKey":"us-kentucky-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Madison","slug":"us-kentucky-madison-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJZKVBNMHEK885NYMWV","tsKey":"us-kentucky-magoffin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Magoffin","slug":"us-kentucky-magoffin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK2V3AK7BQMQ3TKKJDY","tsKey":"us-kentucky-marion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Marion","slug":"us-kentucky-marion-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJZBQCZ7HP55R3NXNXA","tsKey":"us-kentucky-marshall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Marshall","slug":"us-kentucky-marshall-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJZ5A17G84ZDX7TAXF2","tsKey":"us-kentucky-martin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Martin","slug":"us-kentucky-martin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK36JFHG951K6PCMXGY","tsKey":"us-kentucky-mason-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Mason","slug":"us-kentucky-mason-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJZM75WWH5ANF33TCFZ","tsKey":"us-kentucky-mccracken-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"McCracken","slug":"us-kentucky-mccracken-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK2GGT0C6HD8WG0XCC2","tsKey":"us-kentucky-mccreary-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"McCreary","slug":"us-kentucky-mccreary-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK24BX4HVZDSZM2SKCT","tsKey":"us-kentucky-mclean-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"McLean","slug":"us-kentucky-mclean-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK2YSDGTWAAJV2N5D5Q","tsKey":"us-kentucky-meade-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Meade","slug":"us-kentucky-meade-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK2MHQ22ZNRAAPQWSVZ","tsKey":"us-kentucky-menifee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Menifee","slug":"us-kentucky-menifee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJZE07G44H407TVNHTH","tsKey":"us-kentucky-mercer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Mercer","slug":"us-kentucky-mercer-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJZYD2HNKSPGTD03ND4","tsKey":"us-kentucky-metcalfe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Metcalfe","slug":"us-kentucky-metcalfe-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJZKZPCSB443NJ39345","tsKey":"us-kentucky-monroe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Monroe","slug":"us-kentucky-monroe-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJZP135A9P1S0XBA48H","tsKey":"us-kentucky-montgomery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Montgomery","slug":"us-kentucky-montgomery-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJZJRH219VSYVE5BDRX","tsKey":"us-kentucky-morgan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Morgan","slug":"us-kentucky-morgan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK2H3SYDCHQDFQ5FAGM","tsKey":"us-kentucky-muhlenberg-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Muhlenberg","slug":"us-kentucky-muhlenberg-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK0Q8VV8HTNJSRAZPP7","tsKey":"us-kentucky-nelson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Nelson","slug":"us-kentucky-nelson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK2BFV93VXGZP9BEQ62","tsKey":"us-kentucky-nicholas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Nicholas","slug":"us-kentucky-nicholas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJX2NJTWVP97319VDMR","tsKey":"us-kentucky-ohio-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Ohio","slug":"us-kentucky-ohio-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK2KX7631585X4XS6H9","tsKey":"us-kentucky-oldham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Oldham","slug":"us-kentucky-oldham-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJXZP035N608CJVV1T0","tsKey":"us-kentucky-owen-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Owen","slug":"us-kentucky-owen-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJY8686NVZJD0DK207G","tsKey":"us-kentucky-owsley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Owsley","slug":"us-kentucky-owsley-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK0ATAHFWA2Z65N5RGM","tsKey":"us-kentucky-pendleton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Pendleton","slug":"us-kentucky-pendleton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK0W6RZ3YPRCJD6SMCG","tsKey":"us-kentucky-perry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Perry","slug":"us-kentucky-perry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK3BJYRN5H51ZWMG0NW","tsKey":"us-kentucky-pike-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Pike","slug":"us-kentucky-pike-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK2G45NZMEWKWQ4G5S5","tsKey":"us-kentucky-powell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Powell","slug":"us-kentucky-powell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJYZHNRDH44TTZVNFAA","tsKey":"us-kentucky-pulaski-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Pulaski","slug":"us-kentucky-pulaski-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK0BDC1T41XJ06AZZ39","tsKey":"us-kentucky-robertson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Robertson","slug":"us-kentucky-robertson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK2G82AA2VK7REEJ38C","tsKey":"us-kentucky-rockcastle-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Rockcastle","slug":"us-kentucky-rockcastle-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK03XK3KB7AZAH2B0EV","tsKey":"us-kentucky-rowan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Rowan","slug":"us-kentucky-rowan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK0PF24G6A66EPZP8K5","tsKey":"us-kentucky-russell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Russell","slug":"us-kentucky-russell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJYTRAM5JGPJBMFDT05","tsKey":"us-kentucky-scott-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Scott","slug":"us-kentucky-scott-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK3ENNDVEDCC5PYYBW1","tsKey":"us-kentucky-shelby-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Shelby","slug":"us-kentucky-shelby-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK368PD7Y3N95H5AAWA","tsKey":"us-kentucky-simpson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Simpson","slug":"us-kentucky-simpson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK2KW6068YA0Y1J6ZKF","tsKey":"us-kentucky-spencer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Spencer","slug":"us-kentucky-spencer-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK00CJFPWVJDABKFD4X","tsKey":"us-kentucky-taylor-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Taylor","slug":"us-kentucky-taylor-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJY5YMKA9S26J59E1QK","tsKey":"us-kentucky-todd-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Todd","slug":"us-kentucky-todd-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK04YVVMXVS0XS1N5F6","tsKey":"us-kentucky-trigg-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Trigg","slug":"us-kentucky-trigg-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK3FXX8G3KW66YCK7NJ","tsKey":"us-kentucky-trimble-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Trimble","slug":"us-kentucky-trimble-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK33RW2WRJP3CFRJYGG","tsKey":"us-kentucky-union-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Union","slug":"us-kentucky-union-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK2CXA3ECCSCKHHK0MP","tsKey":"us-kentucky-warren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Warren","slug":"us-kentucky-warren-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFJYGEQ8MVV13539YFQ4","tsKey":"us-kentucky-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Washington","slug":"us-kentucky-washington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK03H5VXE9JHRMBK2J8","tsKey":"us-kentucky-wayne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Wayne","slug":"us-kentucky-wayne-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK0M6F370XJXWM68RR8","tsKey":"us-kentucky-webster-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Webster","slug":"us-kentucky-webster-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK2BVDNNE44JN6F6HCX","tsKey":"us-kentucky-whitley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Whitley","slug":"us-kentucky-whitley-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK0M8SFAVGEGQKYYDPK","tsKey":"us-kentucky-wolfe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Wolfe","slug":"us-kentucky-wolfe-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJFK08M7YTNB63AMK6GSV","tsKey":"us-kentucky-woodford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","name":"Woodford","slug":"us-kentucky-woodford-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","tsKey":"us-louisiana","tsNs":"gov-dist","abbrev":"LA","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Louisiana","slug":"us-louisiana","iso":"US-LA","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHEFCRJ8FM4FD5AXFHH","tsKey":"us-louisiana-acadia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Acadia","slug":"us-louisiana-acadia-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHHJZNZ8NF0EYR0VAC7","tsKey":"us-louisiana-allen-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Allen","slug":"us-louisiana-allen-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHF32Z46NYYG3G0SQ39","tsKey":"us-louisiana-ascension-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Ascension","slug":"us-louisiana-ascension-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHG24QYDP72KZAXA2WJ","tsKey":"us-louisiana-assumption-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Assumption","slug":"us-louisiana-assumption-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHH2CPC1ZYSANHSS8PH","tsKey":"us-louisiana-avoyelles-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Avoyelles","slug":"us-louisiana-avoyelles-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHG7QZCYCPYZ8WZBQEM","tsKey":"us-louisiana-beauregard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Beauregard","slug":"us-louisiana-beauregard-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHEM08NBKTFBNHNGX03","tsKey":"us-louisiana-bienville-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Bienville","slug":"us-louisiana-bienville-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHGV8YPRB8YN4T2F627","tsKey":"us-louisiana-bossier-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Bossier","slug":"us-louisiana-bossier-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHGAHAYZS9PQGY13VDJ","tsKey":"us-louisiana-caddo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Caddo","slug":"us-louisiana-caddo-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHHHC6T62QHCA9J4RVG","tsKey":"us-louisiana-calcasieu-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Calcasieu","slug":"us-louisiana-calcasieu-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHGXMVKV947YABHNJHJ","tsKey":"us-louisiana-caldwell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Caldwell","slug":"us-louisiana-caldwell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHGM9MTS3KETR05Y9SN","tsKey":"us-louisiana-cameron-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Cameron","slug":"us-louisiana-cameron-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHGTYJ34JBW179DP1YS","tsKey":"us-louisiana-catahoula-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Catahoula","slug":"us-louisiana-catahoula-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHHPDHSHDPKCB1EW82R","tsKey":"us-louisiana-claiborne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Claiborne","slug":"us-louisiana-claiborne-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHHM2TPBBK6S1JJKRPA","tsKey":"us-louisiana-concordia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Concordia","slug":"us-louisiana-concordia-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHGYD74339CP83XHKTG","tsKey":"us-louisiana-desoto-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"DeSoto","slug":"us-louisiana-desoto-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHEBCSAE50ECMA02ADS","tsKey":"us-louisiana-east-baton-rouge-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"East Baton Rouge","slug":"us-louisiana-east-baton-rouge-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHGE01YZBFFHAAQZN15","tsKey":"us-louisiana-east-carroll-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"East Carroll","slug":"us-louisiana-east-carroll-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHHDHN7MEAYTYGDWPYW","tsKey":"us-louisiana-east-feliciana-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"East Feliciana","slug":"us-louisiana-east-feliciana-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHHNV79795P2XXMZTFS","tsKey":"us-louisiana-evangeline-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Evangeline","slug":"us-louisiana-evangeline-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHG7WMY3RYK1EKZFA26","tsKey":"us-louisiana-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Franklin","slug":"us-louisiana-franklin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHGT5N44AQ9BTM57W0G","tsKey":"us-louisiana-grant-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Grant","slug":"us-louisiana-grant-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHHCEAXJ3K3418SFZFJ","tsKey":"us-louisiana-iberia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Iberia","slug":"us-louisiana-iberia-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHGAEZ7D038KS72BF6Z","tsKey":"us-louisiana-iberville-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Iberville","slug":"us-louisiana-iberville-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHGDQY8AVKQV605N2CA","tsKey":"us-louisiana-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Jackson","slug":"us-louisiana-jackson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHGMGFFTPTM4Q5JVCWQ","tsKey":"us-louisiana-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Jefferson","slug":"us-louisiana-jefferson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHEADWVGEJE0MZGQMXK","tsKey":"us-louisiana-jefferson-davis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Jefferson Davis","slug":"us-louisiana-jefferson-davis-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHGJS9NMNPV3CXC3G5G","tsKey":"us-louisiana-lafayette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Lafayette","slug":"us-louisiana-lafayette-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHFBTJHPHVXA8XXM7JJ","tsKey":"us-louisiana-lafourche-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Lafourche","slug":"us-louisiana-lafourche-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHG56QD814NRPXYCKT8","tsKey":"us-louisiana-la-salle-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"La Salle","slug":"us-louisiana-la-salle-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHFF85X0TZ3EZBZZF7C","tsKey":"us-louisiana-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Lincoln","slug":"us-louisiana-lincoln-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHFQZJPJ53JD4M74XMA","tsKey":"us-louisiana-livingston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Livingston","slug":"us-louisiana-livingston-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHH0QZFPSZ4ZNK4271Z","tsKey":"us-louisiana-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Madison","slug":"us-louisiana-madison-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHGB596J1QKCPJBQV50","tsKey":"us-louisiana-morehouse-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Morehouse","slug":"us-louisiana-morehouse-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHFH742RY4P1NE6K5MT","tsKey":"us-louisiana-natchitoches-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Natchitoches","slug":"us-louisiana-natchitoches-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHHQSZG43Z1BXRAA5PM","tsKey":"us-louisiana-orleans-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Orleans","slug":"us-louisiana-orleans-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHE54HM4SFVNH8SP2HX","tsKey":"us-louisiana-ouachita-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Ouachita","slug":"us-louisiana-ouachita-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHFSYPBXF20NB5MQJYG","tsKey":"us-louisiana-plaquemines-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Plaquemines","slug":"us-louisiana-plaquemines-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHFNH1R89V0GDDX2TQ0","tsKey":"us-louisiana-pointe-coupee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Pointe Coupee","slug":"us-louisiana-pointe-coupee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHFA5RQB8A001SCKM49","tsKey":"us-louisiana-rapides-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Rapides","slug":"us-louisiana-rapides-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHFZRH6VFAJQQPNR0V5","tsKey":"us-louisiana-red-river-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Red River","slug":"us-louisiana-red-river-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHGYQEY67V23TSFDRGS","tsKey":"us-louisiana-richland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Richland","slug":"us-louisiana-richland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHFGWV69YQG91N694GW","tsKey":"us-louisiana-sabine-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Sabine","slug":"us-louisiana-sabine-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHHAAN988PQ5AF4QZ64","tsKey":"us-louisiana-st-bernard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"St. Bernard","slug":"us-louisiana-st-bernard-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHFPWVRHEMQQ1RFWRQZ","tsKey":"us-louisiana-st-charles-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"St. Charles","slug":"us-louisiana-st-charles-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHFPPZ1NMA7HPDS1B3F","tsKey":"us-louisiana-st-helena-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"St. Helena","slug":"us-louisiana-st-helena-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHF04CE7BK62DGM0AAD","tsKey":"us-louisiana-st-james-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"St. James","slug":"us-louisiana-st-james-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHGDVDG1K8TNQ6NG0XT","tsKey":"us-louisiana-st-john-the-baptist-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"St. John the Baptist","slug":"us-louisiana-st-john-the-baptist-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHFXS23A6FG43V2BX9K","tsKey":"us-louisiana-st-landry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"St. Landry","slug":"us-louisiana-st-landry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHFVGCB687JG20JF55Z","tsKey":"us-louisiana-st-martin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"St. Martin","slug":"us-louisiana-st-martin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHHPZ6JZRYH6YS14EC3","tsKey":"us-louisiana-st-mary-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"St. Mary","slug":"us-louisiana-st-mary-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHFWRC52B74N3N5CCEM","tsKey":"us-louisiana-st-tammany-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"St. Tammany","slug":"us-louisiana-st-tammany-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHFZ8SP1P780VTBMRDJ","tsKey":"us-louisiana-tangipahoa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Tangipahoa","slug":"us-louisiana-tangipahoa-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHHXGN1HYFNQWMG548Q","tsKey":"us-louisiana-tensas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Tensas","slug":"us-louisiana-tensas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHHF6SNESVJ3NGADAHR","tsKey":"us-louisiana-terrebonne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Terrebonne","slug":"us-louisiana-terrebonne-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHGBVF6X2CTQ775B407","tsKey":"us-louisiana-union-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Union","slug":"us-louisiana-union-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHF0C9PFWQ1KYWYY6FP","tsKey":"us-louisiana-vermilion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Vermilion","slug":"us-louisiana-vermilion-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHFKJHC46652NQ0FEAB","tsKey":"us-louisiana-vernon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Vernon","slug":"us-louisiana-vernon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHG0CDW43DG0KH1WQ20","tsKey":"us-louisiana-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Washington","slug":"us-louisiana-washington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHG78ZB3R9YA8M4PK0K","tsKey":"us-louisiana-webster-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Webster","slug":"us-louisiana-webster-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHFVPG4PW5RX5FJ2M77","tsKey":"us-louisiana-west-baton-rouge-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"West Baton Rouge","slug":"us-louisiana-west-baton-rouge-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHHXZ36H1Q8WD5R5H77","tsKey":"us-louisiana-west-carroll-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"West Carroll","slug":"us-louisiana-west-carroll-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHGTV3GP1X4GC2YW6HX","tsKey":"us-louisiana-west-feliciana-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"West Feliciana","slug":"us-louisiana-west-feliciana-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJGHF5VXHGY25DTE6D636","tsKey":"us-louisiana-winn-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","name":"Winn","slug":"us-louisiana-winn-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJH13NCXACKZGG242PM97","tsKey":"us-maine","tsNs":"gov-dist","abbrev":"ME","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Maine","slug":"us-maine","iso":"US-ME","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJHGWRS5RGQ41BPGKZFRB","tsKey":"us-maine-androscoggin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJH13NCXACKZGG242PM97","name":"Androscoggin","slug":"us-maine-androscoggin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJHGWNT2Q7EAHHN9MGR9R","tsKey":"us-maine-aroostook-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJH13NCXACKZGG242PM97","name":"Aroostook","slug":"us-maine-aroostook-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJHGWB2R1BXMD9RJJ6Q9W","tsKey":"us-maine-cumberland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJH13NCXACKZGG242PM97","name":"Cumberland","slug":"us-maine-cumberland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJHGVFQGJH989MZ7EV34H","tsKey":"us-maine-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJH13NCXACKZGG242PM97","name":"Franklin","slug":"us-maine-franklin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJHGVVV8S8ZYTS04E15QH","tsKey":"us-maine-hancock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJH13NCXACKZGG242PM97","name":"Hancock","slug":"us-maine-hancock-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJHGWP4W6TZFEEMM4X9ND","tsKey":"us-maine-kennebec-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJH13NCXACKZGG242PM97","name":"Kennebec","slug":"us-maine-kennebec-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJHGWPQJRM5QGWPW07X54","tsKey":"us-maine-knox-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJH13NCXACKZGG242PM97","name":"Knox","slug":"us-maine-knox-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJHGVKES3WSMKTTZF3TEZ","tsKey":"us-maine-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJH13NCXACKZGG242PM97","name":"Lincoln","slug":"us-maine-lincoln-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJHGW5Z3G797Y14A75QK1","tsKey":"us-maine-oxford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJH13NCXACKZGG242PM97","name":"Oxford","slug":"us-maine-oxford-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJHGW473VKHYP38XS1Z31","tsKey":"us-maine-penobscot-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJH13NCXACKZGG242PM97","name":"Penobscot","slug":"us-maine-penobscot-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJHGWWRT6REE2XNPW1PFH","tsKey":"us-maine-piscataquis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJH13NCXACKZGG242PM97","name":"Piscataquis","slug":"us-maine-piscataquis-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJHGWXSXZZ2KCS2SFE8KA","tsKey":"us-maine-sagadahoc-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJH13NCXACKZGG242PM97","name":"Sagadahoc","slug":"us-maine-sagadahoc-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJHGWKR2E7QC3SH9Q6CKS","tsKey":"us-maine-somerset-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJH13NCXACKZGG242PM97","name":"Somerset","slug":"us-maine-somerset-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJHGWRVYMRP6AZ5P5RNQ1","tsKey":"us-maine-waldo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJH13NCXACKZGG242PM97","name":"Waldo","slug":"us-maine-waldo-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJHGV1FSW2XDFF3NFK30D","tsKey":"us-maine-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJH13NCXACKZGG242PM97","name":"Washington","slug":"us-maine-washington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJHGW1PRQSDXEP6X2NMBB","tsKey":"us-maine-york-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJH13NCXACKZGG242PM97","name":"York","slug":"us-maine-york-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJHQBKA67H0WWG35J4PV7","tsKey":"us-maryland","tsNs":"gov-dist","abbrev":"MD","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Maryland","slug":"us-maryland","iso":"US-MD","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJJ70C5MT3PR1V0VXEKYW","tsKey":"us-maryland-allegany-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7","name":"Allegany","slug":"us-maryland-allegany-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJJ70HPJ8S1QW1E9ENBGB","tsKey":"us-maryland-anne-arundel-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7","name":"Anne Arundel","slug":"us-maryland-anne-arundel-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJJ729PHNZG9E80TE28WV","tsKey":"us-maryland-baltimore-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7","name":"Baltimore","slug":"us-maryland-baltimore-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJJ71QEM85CBNTTF8WGNG","tsKey":"us-maryland-baltimore-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7","name":"Baltimore","slug":"us-maryland-baltimore-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJJ7062JPVVD870XBJMRD","tsKey":"us-maryland-calvert-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7","name":"Calvert","slug":"us-maryland-calvert-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJJ71RVQEY7PY5JN1X4XE","tsKey":"us-maryland-caroline-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7","name":"Caroline","slug":"us-maryland-caroline-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJJ71S0QRJNFCZ18F0RH2","tsKey":"us-maryland-carroll-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7","name":"Carroll","slug":"us-maryland-carroll-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJJ71YC1GBSCWT95QSSHY","tsKey":"us-maryland-cecil-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7","name":"Cecil","slug":"us-maryland-cecil-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJJ700GSB9D3ECG1HGJNB","tsKey":"us-maryland-charles-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7","name":"Charles","slug":"us-maryland-charles-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJJ70E6N0NJWDHFHN1TBQ","tsKey":"us-maryland-dorchester-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7","name":"Dorchester","slug":"us-maryland-dorchester-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJJ71Q23Z55E9CA04TRX8","tsKey":"us-maryland-frederick-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7","name":"Frederick","slug":"us-maryland-frederick-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJJ71XP031ZH3XJ0EXYSC","tsKey":"us-maryland-garrett-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7","name":"Garrett","slug":"us-maryland-garrett-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJJ7216EJQ2JE05PJEZY6","tsKey":"us-maryland-harford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7","name":"Harford","slug":"us-maryland-harford-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJJ71F9KHQPTS7YMJSQYM","tsKey":"us-maryland-howard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7","name":"Howard","slug":"us-maryland-howard-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJJ70SXBPAN6EGST1EG2F","tsKey":"us-maryland-kent-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7","name":"Kent","slug":"us-maryland-kent-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJJ71EXA7CNZGHA7QAQSD","tsKey":"us-maryland-montgomery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7","name":"Montgomery","slug":"us-maryland-montgomery-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJJ71GA3D9DQ0VAFDAPMQ","tsKey":"us-maryland-prince-georges-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7","name":"Prince George's","slug":"us-maryland-prince-georges-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJJ706PD2JJHRS9CZW1KN","tsKey":"us-maryland-queen-annes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7","name":"Queen Anne's","slug":"us-maryland-queen-annes-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJJ70J3XTFPAYNGN5R35T","tsKey":"us-maryland-somerset-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7","name":"Somerset","slug":"us-maryland-somerset-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJJ70BK8MTMN2B1QE12J5","tsKey":"us-maryland-st-marys-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7","name":"St. Mary's","slug":"us-maryland-st-marys-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJJ71D4GGWDVG01E3814S","tsKey":"us-maryland-talbot-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7","name":"Talbot","slug":"us-maryland-talbot-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJJ71QBE7KQVG5PNZCT4F","tsKey":"us-maryland-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7","name":"Washington","slug":"us-maryland-washington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJJ710SCBG70MCCD71068","tsKey":"us-maryland-wicomico-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7","name":"Wicomico","slug":"us-maryland-wicomico-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJJ71H2WZFS5JWAYPN655","tsKey":"us-maryland-worcester-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJHQBKA67H0WWG35J4PV7","name":"Worcester","slug":"us-maryland-worcester-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJJGA979WFBS7S7ECK0JK","tsKey":"us-massachusetts","tsNs":"gov-dist","abbrev":"MA","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Massachusetts","slug":"us-massachusetts","iso":"US-MA","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJK0F23DDDZT1XEN7QYY0","tsKey":"us-massachusetts-barnstable-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJJGA979WFBS7S7ECK0JK","name":"Barnstable","slug":"us-massachusetts-barnstable-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJK0GMZHTY5N6YDRWAJX6","tsKey":"us-massachusetts-berkshire-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJJGA979WFBS7S7ECK0JK","name":"Berkshire","slug":"us-massachusetts-berkshire-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJK0GJ4P2RHZ1FZ7D7A8M","tsKey":"us-massachusetts-bristol-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJJGA979WFBS7S7ECK0JK","name":"Bristol","slug":"us-massachusetts-bristol-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJK0FNR6FSH09KT1C5S5Q","tsKey":"us-massachusetts-dukes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJJGA979WFBS7S7ECK0JK","name":"Dukes","slug":"us-massachusetts-dukes-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJK0GHQH44HQ6NFNA4XE1","tsKey":"us-massachusetts-essex-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJJGA979WFBS7S7ECK0JK","name":"Essex","slug":"us-massachusetts-essex-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJK0F3PF8Q5APBPP2Z7Z0","tsKey":"us-massachusetts-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJJGA979WFBS7S7ECK0JK","name":"Franklin","slug":"us-massachusetts-franklin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJK0F7YTPCG8YK7VWDQW2","tsKey":"us-massachusetts-hampden-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJJGA979WFBS7S7ECK0JK","name":"Hampden","slug":"us-massachusetts-hampden-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJK0FKBFPSHE1TV2G0FQQ","tsKey":"us-massachusetts-hampshire-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJJGA979WFBS7S7ECK0JK","name":"Hampshire","slug":"us-massachusetts-hampshire-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJK0FQAD98JBQH0XNSZ27","tsKey":"us-massachusetts-middlesex-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJJGA979WFBS7S7ECK0JK","name":"Middlesex","slug":"us-massachusetts-middlesex-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJK0G321MGS037KJ1B876","tsKey":"us-massachusetts-nantucket-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJJGA979WFBS7S7ECK0JK","name":"Nantucket","slug":"us-massachusetts-nantucket-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJK0FSQPAQV9F6VGWR6MD","tsKey":"us-massachusetts-norfolk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJJGA979WFBS7S7ECK0JK","name":"Norfolk","slug":"us-massachusetts-norfolk-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJK0FAGFX8AEDBNMAS06D","tsKey":"us-massachusetts-plymouth-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJJGA979WFBS7S7ECK0JK","name":"Plymouth","slug":"us-massachusetts-plymouth-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJK0GJPP4ZEG8G4G9VXKV","tsKey":"us-massachusetts-suffolk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJJGA979WFBS7S7ECK0JK","name":"Suffolk","slug":"us-massachusetts-suffolk-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJK0G9AK3W7P2ATBQKRYT","tsKey":"us-massachusetts-worcester-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJJGA979WFBS7S7ECK0JK","name":"Worcester","slug":"us-massachusetts-worcester-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJK994XZPC3KNCPVST015","tsKey":"us-michigan","tsNs":"gov-dist","abbrev":"MI","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Michigan","slug":"us-michigan","iso":"US-MI","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW13CJ66V0H0ERJW4KR","tsKey":"us-michigan-alcona-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Alcona","slug":"us-michigan-alcona-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVYF7Z0A84DGNR5QSRN","tsKey":"us-michigan-alger-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Alger","slug":"us-michigan-alger-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVZXR46EYD5MKMDTK01","tsKey":"us-michigan-allegan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Allegan","slug":"us-michigan-allegan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVZ6YXJT7Z1STTT9NYG","tsKey":"us-michigan-alpena-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Alpena","slug":"us-michigan-alpena-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVX3HMVG3H0EB6WF8M1","tsKey":"us-michigan-antrim-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Antrim","slug":"us-michigan-antrim-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW1JDEBE66HZ27JP06F","tsKey":"us-michigan-arenac-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Arenac","slug":"us-michigan-arenac-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW1X63C4NGHJTYQNFMB","tsKey":"us-michigan-baraga-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Baraga","slug":"us-michigan-baraga-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVX8Y90MDW9RBSMEX44","tsKey":"us-michigan-barry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Barry","slug":"us-michigan-barry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVZ2H9B610XACCTPK2R","tsKey":"us-michigan-bay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Bay","slug":"us-michigan-bay-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVZER8HVG73404YEK5D","tsKey":"us-michigan-benzie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Benzie","slug":"us-michigan-benzie-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVZ8A5ABM8132CAR5QZ","tsKey":"us-michigan-berrien-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Berrien","slug":"us-michigan-berrien-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVXYG2SVDX6P852R88W","tsKey":"us-michigan-branch-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Branch","slug":"us-michigan-branch-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW0CRXX3APEC3VXYNVK","tsKey":"us-michigan-calhoun-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Calhoun","slug":"us-michigan-calhoun-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVZF89B6ZDWXDZA5MVK","tsKey":"us-michigan-cass-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Cass","slug":"us-michigan-cass-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW1P47BB8X64WKV222Q","tsKey":"us-michigan-charlevoix-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Charlevoix","slug":"us-michigan-charlevoix-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVZQNXVQ4BVJB5H8ZJM","tsKey":"us-michigan-cheboygan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Cheboygan","slug":"us-michigan-cheboygan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVZ1PHV5W8PHFMN5XRE","tsKey":"us-michigan-chippewa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Chippewa","slug":"us-michigan-chippewa-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVX5XA3553MDGZVWY9G","tsKey":"us-michigan-clare-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Clare","slug":"us-michigan-clare-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVXMF232GTP7T3DJ0Z1","tsKey":"us-michigan-clinton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Clinton","slug":"us-michigan-clinton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW103NKXMS1MGQAGM14","tsKey":"us-michigan-crawford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Crawford","slug":"us-michigan-crawford-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVZ4P7MG4EEGXPYYJ1V","tsKey":"us-michigan-delta-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Delta","slug":"us-michigan-delta-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVZ8D6WXF439SHNX89S","tsKey":"us-michigan-dickinson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Dickinson","slug":"us-michigan-dickinson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVXBSKS814EDVKFQRHQ","tsKey":"us-michigan-eaton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Eaton","slug":"us-michigan-eaton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVZZ561H6C2H7ES0NGY","tsKey":"us-michigan-emmet-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Emmet","slug":"us-michigan-emmet-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW15HMVHN9FA8M98942","tsKey":"us-michigan-genesee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Genesee","slug":"us-michigan-genesee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVZAW6PDRFQ7YQNGE3W","tsKey":"us-michigan-gladwin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Gladwin","slug":"us-michigan-gladwin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW24FW1F8PQ25WM7B1V","tsKey":"us-michigan-gogebic-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Gogebic","slug":"us-michigan-gogebic-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW20JW2W4M6M5V0VXE1","tsKey":"us-michigan-grand-traverse-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Grand Traverse","slug":"us-michigan-grand-traverse-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVX88AYC4BMASJ4MJG9","tsKey":"us-michigan-gratiot-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Gratiot","slug":"us-michigan-gratiot-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW1RJ93S0R24KG4XZA9","tsKey":"us-michigan-hillsdale-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Hillsdale","slug":"us-michigan-hillsdale-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVXBM7FACMPT07SKRKT","tsKey":"us-michigan-houghton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Houghton","slug":"us-michigan-houghton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW10N99NEZSAKWJ2TG8","tsKey":"us-michigan-huron-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Huron","slug":"us-michigan-huron-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVZXT0CG296X7PWGE1H","tsKey":"us-michigan-ingham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Ingham","slug":"us-michigan-ingham-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW2NY7A903S4AWX8169","tsKey":"us-michigan-ionia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Ionia","slug":"us-michigan-ionia-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVZJCAKQSHY3VMVWA7D","tsKey":"us-michigan-iosco-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Iosco","slug":"us-michigan-iosco-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW06CAX40G50FWC0RSC","tsKey":"us-michigan-iron-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Iron","slug":"us-michigan-iron-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVX3VAC1330E97N16RZ","tsKey":"us-michigan-isabella-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Isabella","slug":"us-michigan-isabella-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVZ46XGDC2758XFSVQ5","tsKey":"us-michigan-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Jackson","slug":"us-michigan-jackson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVXQCPRKHNPMQSHK2NZ","tsKey":"us-michigan-kalamazoo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Kalamazoo","slug":"us-michigan-kalamazoo-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVZSP0ZRA04EJ3AMK6Z","tsKey":"us-michigan-kalkaska-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Kalkaska","slug":"us-michigan-kalkaska-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW09N1A7ZQ1SJ3SGNA7","tsKey":"us-michigan-kent-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Kent","slug":"us-michigan-kent-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVX3KS6WJWFPFXQ6SKD","tsKey":"us-michigan-keweenaw-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Keweenaw","slug":"us-michigan-keweenaw-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVX1Z8MGXKG16K0AVRA","tsKey":"us-michigan-lake-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Lake","slug":"us-michigan-lake-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW0WQDC86B04RBXXRCF","tsKey":"us-michigan-lapeer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Lapeer","slug":"us-michigan-lapeer-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW14Y23F70H3VV0EF2G","tsKey":"us-michigan-leelanau-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Leelanau","slug":"us-michigan-leelanau-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVY6QJN6TEQHDP96Z6S","tsKey":"us-michigan-lenawee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Lenawee","slug":"us-michigan-lenawee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW00XJ5CECXCSBPY1J5","tsKey":"us-michigan-livingston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Livingston","slug":"us-michigan-livingston-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW0GG3ZZ4GQH9QDJGKS","tsKey":"us-michigan-luce-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Luce","slug":"us-michigan-luce-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVY11VEZRMWGBF0ZH59","tsKey":"us-michigan-mackinac-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Mackinac","slug":"us-michigan-mackinac-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW0B0CZBFXSVWYS2CVB","tsKey":"us-michigan-macomb-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Macomb","slug":"us-michigan-macomb-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW0VV9TQG8YA5JA34D1","tsKey":"us-michigan-manistee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Manistee","slug":"us-michigan-manistee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVYE46KGSSAZNEW760S","tsKey":"us-michigan-marquette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Marquette","slug":"us-michigan-marquette-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW1PQSKE3P947MWE1EH","tsKey":"us-michigan-mason-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Mason","slug":"us-michigan-mason-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVYQ59TW5AEN302ZDY4","tsKey":"us-michigan-mecosta-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Mecosta","slug":"us-michigan-mecosta-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW1Q9J881C9EFD7X6KF","tsKey":"us-michigan-menominee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Menominee","slug":"us-michigan-menominee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVYQST0MS164ASTR8NS","tsKey":"us-michigan-midland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Midland","slug":"us-michigan-midland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW1DQ9TM3WAYQ24PCWF","tsKey":"us-michigan-missaukee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Missaukee","slug":"us-michigan-missaukee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW0H9GEJ03ZJAK02RB5","tsKey":"us-michigan-monroe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Monroe","slug":"us-michigan-monroe-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVY921V94TQ2PWQQFFH","tsKey":"us-michigan-montcalm-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Montcalm","slug":"us-michigan-montcalm-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW18XWF071C6RDJ729A","tsKey":"us-michigan-montmorency-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Montmorency","slug":"us-michigan-montmorency-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW1S3HV7RW17A374DF8","tsKey":"us-michigan-muskegon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Muskegon","slug":"us-michigan-muskegon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVYT1SAW3S1AW7Y1P3N","tsKey":"us-michigan-newaygo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Newaygo","slug":"us-michigan-newaygo-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW037T6MBASHHN8RJ98","tsKey":"us-michigan-oakland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Oakland","slug":"us-michigan-oakland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW22MRHF2TST9DPT33K","tsKey":"us-michigan-oceana-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Oceana","slug":"us-michigan-oceana-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW1H8H5C8HFTMCE9HSQ","tsKey":"us-michigan-ogemaw-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Ogemaw","slug":"us-michigan-ogemaw-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW0A9YDJKPTKNCC7288","tsKey":"us-michigan-ontonagon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Ontonagon","slug":"us-michigan-ontonagon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVYN6CM4B94DWT0T78E","tsKey":"us-michigan-osceola-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Osceola","slug":"us-michigan-osceola-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW0JAK8T8SVHDD4C43R","tsKey":"us-michigan-oscoda-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Oscoda","slug":"us-michigan-oscoda-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW1C5H9KPGS0857C0RB","tsKey":"us-michigan-otsego-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Otsego","slug":"us-michigan-otsego-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW201NQ91K3A1N7DFV0","tsKey":"us-michigan-ottawa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Ottawa","slug":"us-michigan-ottawa-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW21A3QF9W34EJ8M1G2","tsKey":"us-michigan-presque-isle-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Presque Isle","slug":"us-michigan-presque-isle-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVYERBJ0MYBVYHFGMDB","tsKey":"us-michigan-roscommon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Roscommon","slug":"us-michigan-roscommon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW0Z02NDA3D1FVSEYAY","tsKey":"us-michigan-saginaw-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Saginaw","slug":"us-michigan-saginaw-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW20C95Y2D6E65JK81E","tsKey":"us-michigan-sanilac-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Sanilac","slug":"us-michigan-sanilac-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW2N3599S0DC8NSDMYY","tsKey":"us-michigan-schoolcraft-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Schoolcraft","slug":"us-michigan-schoolcraft-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVYP0GJDB7CHCEJZGN6","tsKey":"us-michigan-shiawassee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Shiawassee","slug":"us-michigan-shiawassee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW0HSYY48EHZJGFW9DM","tsKey":"us-michigan-st-clair-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"St. Clair","slug":"us-michigan-st-clair-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW1PAH2EPRKY6R7HFQQ","tsKey":"us-michigan-st-joseph-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"St. Joseph","slug":"us-michigan-st-joseph-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW0W6PQBBT9K9VDE2G9","tsKey":"us-michigan-tuscola-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Tuscola","slug":"us-michigan-tuscola-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW0VQB7R08YSBBN84Q9","tsKey":"us-michigan-van-buren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Van Buren","slug":"us-michigan-van-buren-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVYSG0DSEG4Y4DP6JBG","tsKey":"us-michigan-washtenaw-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Washtenaw","slug":"us-michigan-washtenaw-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKW0PHRTPF1H10EET4H9","tsKey":"us-michigan-wayne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Wayne","slug":"us-michigan-wayne-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJKVYEY49Q2S2NBRS0ZH1","tsKey":"us-michigan-wexford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJK994XZPC3KNCPVST015","name":"Wexford","slug":"us-michigan-wexford-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","tsKey":"us-minnesota","tsNs":"gov-dist","abbrev":"MN","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Minnesota","slug":"us-minnesota","iso":"US-MN","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPPM22186VAJ15NG7C8","tsKey":"us-minnesota-aitkin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Aitkin","slug":"us-minnesota-aitkin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPPTEY93MVSMZPAP44H","tsKey":"us-minnesota-anoka-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Anoka","slug":"us-minnesota-anoka-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPQYSXRF5TVBZXBYKFK","tsKey":"us-minnesota-becker-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Becker","slug":"us-minnesota-becker-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPQ7A3ZPXDG9WNVP6KR","tsKey":"us-minnesota-beltrami-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Beltrami","slug":"us-minnesota-beltrami-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPN2KDQD3JE2K59EAFA","tsKey":"us-minnesota-benton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Benton","slug":"us-minnesota-benton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPP7QJYF144TT15M233","tsKey":"us-minnesota-big-stone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Big Stone","slug":"us-minnesota-big-stone-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPQ5HEDESSNBTZF537F","tsKey":"us-minnesota-blue-earth-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Blue Earth","slug":"us-minnesota-blue-earth-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPRZE93PW1V3VAQCPX9","tsKey":"us-minnesota-brown-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Brown","slug":"us-minnesota-brown-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPP2YWSRAN8VAKXFYQ8","tsKey":"us-minnesota-carlton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Carlton","slug":"us-minnesota-carlton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPN03D66S25R75JBV49","tsKey":"us-minnesota-carver-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Carver","slug":"us-minnesota-carver-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPR5WZB3KVCSE0JFJ0D","tsKey":"us-minnesota-cass-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Cass","slug":"us-minnesota-cass-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPQ4K7Z62YB5H0PC08P","tsKey":"us-minnesota-chippewa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Chippewa","slug":"us-minnesota-chippewa-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPPTN37PHM0ZDZ5MZPC","tsKey":"us-minnesota-chisago-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Chisago","slug":"us-minnesota-chisago-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPRG22VWH98WEKVADTP","tsKey":"us-minnesota-clay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Clay","slug":"us-minnesota-clay-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPN4S48MNFA4F30ZEZ4","tsKey":"us-minnesota-clearwater-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Clearwater","slug":"us-minnesota-clearwater-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPRMVDWS4KV17CKNQH9","tsKey":"us-minnesota-cook-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Cook","slug":"us-minnesota-cook-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPQPXN5KBEG3NCCQR6A","tsKey":"us-minnesota-cottonwood-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Cottonwood","slug":"us-minnesota-cottonwood-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPPRNV737Y7QKY9P01V","tsKey":"us-minnesota-crow-wing-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Crow Wing","slug":"us-minnesota-crow-wing-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPPBVRFCKZN9H8P3NNF","tsKey":"us-minnesota-dakota-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Dakota","slug":"us-minnesota-dakota-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPNMM5TCJHWQ86XRA87","tsKey":"us-minnesota-dodge-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Dodge","slug":"us-minnesota-dodge-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPPTEDR55T9P66VGAPE","tsKey":"us-minnesota-douglas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Douglas","slug":"us-minnesota-douglas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPPMHJGYE1J1P23233W","tsKey":"us-minnesota-faribault-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Faribault","slug":"us-minnesota-faribault-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPPGH2CXY71BNFJBWF4","tsKey":"us-minnesota-fillmore-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Fillmore","slug":"us-minnesota-fillmore-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPQG5JFVB3CNKV08QSB","tsKey":"us-minnesota-freeborn-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Freeborn","slug":"us-minnesota-freeborn-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPRKFY3F8D8NH9SD56T","tsKey":"us-minnesota-goodhue-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Goodhue","slug":"us-minnesota-goodhue-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPNPH8DHF8912YDY1TP","tsKey":"us-minnesota-grant-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Grant","slug":"us-minnesota-grant-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPP595YT82MEWF79B4W","tsKey":"us-minnesota-hennepin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Hennepin","slug":"us-minnesota-hennepin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPREBFABDK4JC9TR0M2","tsKey":"us-minnesota-houston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Houston","slug":"us-minnesota-houston-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPNDNJ9YFADBB1BAJKB","tsKey":"us-minnesota-hubbard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Hubbard","slug":"us-minnesota-hubbard-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPP85K0GVGFV29BV9ZE","tsKey":"us-minnesota-isanti-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Isanti","slug":"us-minnesota-isanti-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPQCK6TYFW5D4Z82945","tsKey":"us-minnesota-itasca-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Itasca","slug":"us-minnesota-itasca-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPPAEWERR86696ZYT0E","tsKey":"us-minnesota-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Jackson","slug":"us-minnesota-jackson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPQB6HFW0P7J0Y8KABK","tsKey":"us-minnesota-kanabec-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Kanabec","slug":"us-minnesota-kanabec-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPNGNMWC46ADRBCE27C","tsKey":"us-minnesota-kandiyohi-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Kandiyohi","slug":"us-minnesota-kandiyohi-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPQCCQ71VK4PYVTRHD5","tsKey":"us-minnesota-kittson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Kittson","slug":"us-minnesota-kittson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPQ2X29W09HRAGZANWQ","tsKey":"us-minnesota-koochiching-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Koochiching","slug":"us-minnesota-koochiching-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPMFD36PB76T2MFMJDB","tsKey":"us-minnesota-lac-qui-parle-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Lac qui Parle","slug":"us-minnesota-lac-qui-parle-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPQVYPGY10CZ7A69MHK","tsKey":"us-minnesota-lake-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Lake","slug":"us-minnesota-lake-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPPETTYVF9DCHA5HA87","tsKey":"us-minnesota-lake-of-the-woods-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Lake of the Woods","slug":"us-minnesota-lake-of-the-woods-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPQPKH3C254K42N7XF9","tsKey":"us-minnesota-le-sueur-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Le Sueur","slug":"us-minnesota-le-sueur-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPNA5R97RDH5SX58M5K","tsKey":"us-minnesota-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Lincoln","slug":"us-minnesota-lincoln-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPNJ0N8WQD9A4AS9Q3B","tsKey":"us-minnesota-lyon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Lyon","slug":"us-minnesota-lyon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPQ547KBZQJ10CJGYXK","tsKey":"us-minnesota-mahnomen-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Mahnomen","slug":"us-minnesota-mahnomen-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPN58049WPJTW05X2MW","tsKey":"us-minnesota-marshall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Marshall","slug":"us-minnesota-marshall-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPN6GPNF2QVV1Y5AVMH","tsKey":"us-minnesota-martin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Martin","slug":"us-minnesota-martin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPNJ2H01SAPRVFJ3XXP","tsKey":"us-minnesota-mcleod-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"McLeod","slug":"us-minnesota-mcleod-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPNWWHJ7PD437G2HW6C","tsKey":"us-minnesota-meeker-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Meeker","slug":"us-minnesota-meeker-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPNVJDPHYGE503JDRFT","tsKey":"us-minnesota-mille-lacs-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Mille Lacs","slug":"us-minnesota-mille-lacs-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPN47JQ3SR08RV0F019","tsKey":"us-minnesota-morrison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Morrison","slug":"us-minnesota-morrison-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPNZMANVFAGM1C03QNF","tsKey":"us-minnesota-mower-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Mower","slug":"us-minnesota-mower-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPQW4B9QTFDAEVP3R37","tsKey":"us-minnesota-murray-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Murray","slug":"us-minnesota-murray-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPNSYGASX3NJVDEEP2E","tsKey":"us-minnesota-nicollet-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Nicollet","slug":"us-minnesota-nicollet-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPNX81FYWZWDKC7076G","tsKey":"us-minnesota-nobles-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Nobles","slug":"us-minnesota-nobles-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPQTV1Q2W15V7V5FH47","tsKey":"us-minnesota-norman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Norman","slug":"us-minnesota-norman-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPNG3KS0V8KXPKH2QCR","tsKey":"us-minnesota-olmsted-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Olmsted","slug":"us-minnesota-olmsted-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPNCGCFK0SK5YYK783G","tsKey":"us-minnesota-otter-tail-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Otter Tail","slug":"us-minnesota-otter-tail-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPN4DBVGDDVYNRMBVMY","tsKey":"us-minnesota-pennington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Pennington","slug":"us-minnesota-pennington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPPXA7K4XF48MSM34P2","tsKey":"us-minnesota-pine-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Pine","slug":"us-minnesota-pine-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPPV7RXRVGT29J3Q2P3","tsKey":"us-minnesota-pipestone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Pipestone","slug":"us-minnesota-pipestone-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPPMTXN59WBPPGWT20S","tsKey":"us-minnesota-polk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Polk","slug":"us-minnesota-polk-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPNTTB1N8VFMHFBW5N6","tsKey":"us-minnesota-pope-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Pope","slug":"us-minnesota-pope-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPQX13RTS0JYKAF1R4Z","tsKey":"us-minnesota-ramsey-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Ramsey","slug":"us-minnesota-ramsey-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPQD2FMZT1M0PM4PCVH","tsKey":"us-minnesota-red-lake-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Red Lake","slug":"us-minnesota-red-lake-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPNXQSYRZPWD68AWR7Y","tsKey":"us-minnesota-redwood-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Redwood","slug":"us-minnesota-redwood-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPP7AFVTRPX5060NDDE","tsKey":"us-minnesota-renville-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Renville","slug":"us-minnesota-renville-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPQYP2H4STFS0QFZX3R","tsKey":"us-minnesota-rice-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Rice","slug":"us-minnesota-rice-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPPE1XQNA26FF22W1XV","tsKey":"us-minnesota-rock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Rock","slug":"us-minnesota-rock-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPQJC8XQE2V4P1XMS4P","tsKey":"us-minnesota-roseau-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Roseau","slug":"us-minnesota-roseau-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPR19YNQAH6Q90MAJJ5","tsKey":"us-minnesota-scott-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Scott","slug":"us-minnesota-scott-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPPMYGQ99FGJ85W0GV4","tsKey":"us-minnesota-sherburne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Sherburne","slug":"us-minnesota-sherburne-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPQXM2Q5TZY4GH176TM","tsKey":"us-minnesota-sibley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Sibley","slug":"us-minnesota-sibley-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPPB11772KNY4MBSA7J","tsKey":"us-minnesota-stearns-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Stearns","slug":"us-minnesota-stearns-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPNPJ7F1HRBEYXXX12M","tsKey":"us-minnesota-steele-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Steele","slug":"us-minnesota-steele-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPPE85QW1K22PQYHEMD","tsKey":"us-minnesota-stevens-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Stevens","slug":"us-minnesota-stevens-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPP9QBRP11SPV5G85Z4","tsKey":"us-minnesota-st-louis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"St. Louis","slug":"us-minnesota-st-louis-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPQKQ0AK8ZM0F1Z2RAE","tsKey":"us-minnesota-swift-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Swift","slug":"us-minnesota-swift-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPN974Q1SKTYHGQ04AN","tsKey":"us-minnesota-todd-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Todd","slug":"us-minnesota-todd-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPQWAAT25D71ZNGDY9A","tsKey":"us-minnesota-traverse-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Traverse","slug":"us-minnesota-traverse-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPPZ5KM1MMQWFYXY6PX","tsKey":"us-minnesota-wabasha-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Wabasha","slug":"us-minnesota-wabasha-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPQG1CNPJYNH1Q9JW4S","tsKey":"us-minnesota-wadena-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Wadena","slug":"us-minnesota-wadena-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPNATZM89B5NJZVZN8M","tsKey":"us-minnesota-waseca-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Waseca","slug":"us-minnesota-waseca-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPP10X9NQQ8Z8KPSXBK","tsKey":"us-minnesota-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Washington","slug":"us-minnesota-washington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPQKBMJ8W8PN5KBXFX4","tsKey":"us-minnesota-watonwan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Watonwan","slug":"us-minnesota-watonwan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPQ2191QBCW1Z7P9XE8","tsKey":"us-minnesota-wilkin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Wilkin","slug":"us-minnesota-wilkin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPQ6HDAZRRYTM2ARAMZ","tsKey":"us-minnesota-winona-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Winona","slug":"us-minnesota-winona-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPPM2WZQ1KNW5D5T7DE","tsKey":"us-minnesota-wright-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Wright","slug":"us-minnesota-wright-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMPQXR3Q609QN1Z3W1CC","tsKey":"us-minnesota-yellow-medicine-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","name":"Yellow Medicine","slug":"us-minnesota-yellow-medicine-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","tsKey":"us-mississippi","tsNs":"gov-dist","abbrev":"MS","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Mississippi","slug":"us-mississippi","iso":"US-MS","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD3Z91GQB9K26F4S05H","tsKey":"us-mississippi-adams-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Adams","slug":"us-mississippi-adams-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPCZ495Y7GN082G3BPN9","tsKey":"us-mississippi-alcorn-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Alcorn","slug":"us-mississippi-alcorn-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD01AXA1RH75J5TP6AV","tsKey":"us-mississippi-amite-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Amite","slug":"us-mississippi-amite-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD2QQ9DWA8QBEM6VA5Z","tsKey":"us-mississippi-attala-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Attala","slug":"us-mississippi-attala-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD0T3P1WQ0ZMB6DEWSS","tsKey":"us-mississippi-benton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Benton","slug":"us-mississippi-benton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD0EQTYX0PRHY7KBB00","tsKey":"us-mississippi-bolivar-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Bolivar","slug":"us-mississippi-bolivar-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPCZNX3MS3R0RV5F5ZNR","tsKey":"us-mississippi-calhoun-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Calhoun","slug":"us-mississippi-calhoun-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD0M2GCMZJX5HK2HH60","tsKey":"us-mississippi-carroll-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Carroll","slug":"us-mississippi-carroll-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPCZJRZR6XWS2DPCEHXS","tsKey":"us-mississippi-chickasaw-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Chickasaw","slug":"us-mississippi-chickasaw-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD35J0JBKCMHGYHAFV9","tsKey":"us-mississippi-choctaw-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Choctaw","slug":"us-mississippi-choctaw-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD01S6ESM5X4WMZ3Y6T","tsKey":"us-mississippi-claiborne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Claiborne","slug":"us-mississippi-claiborne-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD21AHCQR0SBCZZSKWS","tsKey":"us-mississippi-clarke-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Clarke","slug":"us-mississippi-clarke-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD3V8VEMWWT8W1YCVD7","tsKey":"us-mississippi-clay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Clay","slug":"us-mississippi-clay-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD3D4ZF6R8B0QKTP27G","tsKey":"us-mississippi-coahoma-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Coahoma","slug":"us-mississippi-coahoma-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPCZB12MRB0Z79K60H89","tsKey":"us-mississippi-copiah-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Copiah","slug":"us-mississippi-copiah-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD09BXK5XVP2WXETK19","tsKey":"us-mississippi-covington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Covington","slug":"us-mississippi-covington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD4T14X3P9DJNB0PX35","tsKey":"us-mississippi-desoto-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"DeSoto","slug":"us-mississippi-desoto-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD2TS9QJG17C0WSDC86","tsKey":"us-mississippi-forrest-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Forrest","slug":"us-mississippi-forrest-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPCZBZYTA1BS8XJ8JP1F","tsKey":"us-mississippi-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Franklin","slug":"us-mississippi-franklin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD0VVQFD187PAJHBD35","tsKey":"us-mississippi-george-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"George","slug":"us-mississippi-george-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD1DYXJEVRQ0YC0GJGX","tsKey":"us-mississippi-greene-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Greene","slug":"us-mississippi-greene-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD2YDN03YS4BHFDD0GA","tsKey":"us-mississippi-grenada-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Grenada","slug":"us-mississippi-grenada-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD1THT91MFC5FNVTSW4","tsKey":"us-mississippi-hancock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Hancock","slug":"us-mississippi-hancock-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD32GG1R755TV4QD2A4","tsKey":"us-mississippi-harrison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Harrison","slug":"us-mississippi-harrison-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPCZWGMM2E9N1QQXSNC3","tsKey":"us-mississippi-hinds-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Hinds","slug":"us-mississippi-hinds-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD11PWCQCRFYHC3VBXP","tsKey":"us-mississippi-holmes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Holmes","slug":"us-mississippi-holmes-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD1DBDRCRD6DEK5AZ2J","tsKey":"us-mississippi-humphreys-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Humphreys","slug":"us-mississippi-humphreys-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD311XMSG5TWB6S7HTG","tsKey":"us-mississippi-issaquena-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Issaquena","slug":"us-mississippi-issaquena-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD2DWGD47EVX7S2ZE5P","tsKey":"us-mississippi-itawamba-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Itawamba","slug":"us-mississippi-itawamba-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD1SZNZSFW5KJ53EYRJ","tsKey":"us-mississippi-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Jackson","slug":"us-mississippi-jackson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPCZBJY9HXF8KT9SYMFT","tsKey":"us-mississippi-jasper-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Jasper","slug":"us-mississippi-jasper-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD3NVNER2XT69VQV6HE","tsKey":"us-mississippi-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Jefferson","slug":"us-mississippi-jefferson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPCZ1M9CCPNFPE46SA7Q","tsKey":"us-mississippi-jefferson-davis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Jefferson Davis","slug":"us-mississippi-jefferson-davis-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD1418S5R2T55QC2C0P","tsKey":"us-mississippi-jones-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Jones","slug":"us-mississippi-jones-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD29QHAW095KM2JHZH6","tsKey":"us-mississippi-kemper-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Kemper","slug":"us-mississippi-kemper-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD34GE68BM5XM2MAZFX","tsKey":"us-mississippi-lafayette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Lafayette","slug":"us-mississippi-lafayette-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD14XMDRQB526H8WBZ8","tsKey":"us-mississippi-lamar-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Lamar","slug":"us-mississippi-lamar-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPCZ40F891HA4JAYDP85","tsKey":"us-mississippi-lauderdale-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Lauderdale","slug":"us-mississippi-lauderdale-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD2MCKMVD01QP8WZQSV","tsKey":"us-mississippi-lawrence-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Lawrence","slug":"us-mississippi-lawrence-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPCZS2VTS4CP1GYN4F6Z","tsKey":"us-mississippi-leake-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Leake","slug":"us-mississippi-leake-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD2GCRGV83V0QH9XWEK","tsKey":"us-mississippi-lee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Lee","slug":"us-mississippi-lee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPCZBNE0XMCF00G3THZ2","tsKey":"us-mississippi-leflore-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Leflore","slug":"us-mississippi-leflore-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD27AB5HFJ9H9QXNF2K","tsKey":"us-mississippi-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Lincoln","slug":"us-mississippi-lincoln-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD2G0D3ZEE1SKP1R0T0","tsKey":"us-mississippi-lowndes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Lowndes","slug":"us-mississippi-lowndes-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD4YSDKK1WE5K9XAXM0","tsKey":"us-mississippi-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Madison","slug":"us-mississippi-madison-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD1VR2T0M5C5QVKWX3Y","tsKey":"us-mississippi-marion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Marion","slug":"us-mississippi-marion-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD480XCH71WBCDMEP6C","tsKey":"us-mississippi-marshall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Marshall","slug":"us-mississippi-marshall-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPCZN8YB3YCQJXN599TM","tsKey":"us-mississippi-monroe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Monroe","slug":"us-mississippi-monroe-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD11PGNZBJZS2D0GMBJ","tsKey":"us-mississippi-montgomery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Montgomery","slug":"us-mississippi-montgomery-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD0HT0ERY4JS2J4FK26","tsKey":"us-mississippi-neshoba-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Neshoba","slug":"us-mississippi-neshoba-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD13WDV0DP7WZSESS4G","tsKey":"us-mississippi-newton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Newton","slug":"us-mississippi-newton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD0WBWMQ0XGYTP90DVS","tsKey":"us-mississippi-noxubee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Noxubee","slug":"us-mississippi-noxubee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD3C9CXMH8HS1HY6A2X","tsKey":"us-mississippi-oktibbeha-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Oktibbeha","slug":"us-mississippi-oktibbeha-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD2ARGVWARB4MX7EC0J","tsKey":"us-mississippi-panola-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Panola","slug":"us-mississippi-panola-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD1GVJM6ARTVTS0KHR1","tsKey":"us-mississippi-pearl-river-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Pearl River","slug":"us-mississippi-pearl-river-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD3Q75AHFMCHBKD0Y0F","tsKey":"us-mississippi-perry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Perry","slug":"us-mississippi-perry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD3QP0C3Y8XKJC1SE9P","tsKey":"us-mississippi-pike-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Pike","slug":"us-mississippi-pike-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD0J407E6SM0PSB9NV9","tsKey":"us-mississippi-pontotoc-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Pontotoc","slug":"us-mississippi-pontotoc-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD0NDSVGDFFKB3HQR4J","tsKey":"us-mississippi-prentiss-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Prentiss","slug":"us-mississippi-prentiss-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD1M3FVNC5R49XV72WM","tsKey":"us-mississippi-quitman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Quitman","slug":"us-mississippi-quitman-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD191BEYY947HSKRZVC","tsKey":"us-mississippi-rankin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Rankin","slug":"us-mississippi-rankin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD28FW7TQ66GCBTT5X5","tsKey":"us-mississippi-scott-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Scott","slug":"us-mississippi-scott-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD3J16XYF3TRCYEZRKZ","tsKey":"us-mississippi-sharkey-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Sharkey","slug":"us-mississippi-sharkey-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD0SK2V0K3WVDSGJZQ6","tsKey":"us-mississippi-simpson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Simpson","slug":"us-mississippi-simpson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD1CW565SZ2VEW7Q4DA","tsKey":"us-mississippi-smith-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Smith","slug":"us-mississippi-smith-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD38671S5008EM2VA94","tsKey":"us-mississippi-stone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Stone","slug":"us-mississippi-stone-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD3Q0SVS1BQEGY7GWX2","tsKey":"us-mississippi-sunflower-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Sunflower","slug":"us-mississippi-sunflower-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD4FK287G8FD28P8HDM","tsKey":"us-mississippi-tallahatchie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Tallahatchie","slug":"us-mississippi-tallahatchie-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD1123YMS35WPA1W26M","tsKey":"us-mississippi-tate-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Tate","slug":"us-mississippi-tate-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD04NWD0G7YYMS4C43P","tsKey":"us-mississippi-tippah-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Tippah","slug":"us-mississippi-tippah-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD1105EGKQQDABKNX4Q","tsKey":"us-mississippi-tishomingo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Tishomingo","slug":"us-mississippi-tishomingo-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD22GMRW31RPX690C1Q","tsKey":"us-mississippi-tunica-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Tunica","slug":"us-mississippi-tunica-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD37AJKMKZM8Y0YJQ7P","tsKey":"us-mississippi-union-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Union","slug":"us-mississippi-union-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD3N1RFP1N3G5FTN6JE","tsKey":"us-mississippi-walthall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Walthall","slug":"us-mississippi-walthall-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD4V1TEK5EAH759Q3SY","tsKey":"us-mississippi-warren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Warren","slug":"us-mississippi-warren-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD0VFJ3880DMQRGXT0Z","tsKey":"us-mississippi-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Washington","slug":"us-mississippi-washington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD2JE1H2JTYHQ8EPW2E","tsKey":"us-mississippi-wayne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Wayne","slug":"us-mississippi-wayne-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD237V2GYYXEVA4V1TX","tsKey":"us-mississippi-webster-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Webster","slug":"us-mississippi-webster-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD22ZSKVN7KA6RNJETK","tsKey":"us-mississippi-wilkinson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Wilkinson","slug":"us-mississippi-wilkinson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD31WYTCMGTW1989MQJ","tsKey":"us-mississippi-winston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Winston","slug":"us-mississippi-winston-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD494TBFQ5EJ9CMMGSW","tsKey":"us-mississippi-yalobusha-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Yalobusha","slug":"us-mississippi-yalobusha-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPD2PBZ5TTCD69MDJ7S3","tsKey":"us-mississippi-yazoo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","name":"Yazoo","slug":"us-mississippi-yazoo-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","tsKey":"us-missouri","tsNs":"gov-dist","abbrev":"MO","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Missouri","slug":"us-missouri","iso":"US-MO","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJQK2KJ21K7FK3X41N6","tsKey":"us-missouri-adair-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Adair","slug":"us-missouri-adair-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJV8SGF95NJW7KRAW6T","tsKey":"us-missouri-andrew-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Andrew","slug":"us-missouri-andrew-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJVYSG60X5TNG0499KD","tsKey":"us-missouri-atchison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Atchison","slug":"us-missouri-atchison-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJQ4B1FC9QGTFDRPH0X","tsKey":"us-missouri-audrain-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Audrain","slug":"us-missouri-audrain-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJQYV7B1PQ71GZACZH3","tsKey":"us-missouri-barry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Barry","slug":"us-missouri-barry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJVMBAYG5GM19802FQB","tsKey":"us-missouri-barton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Barton","slug":"us-missouri-barton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJWRHH3NWY3QPJ1NV8N","tsKey":"us-missouri-bates-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Bates","slug":"us-missouri-bates-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJVCPGMT4AY4V27D9EZ","tsKey":"us-missouri-benton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Benton","slug":"us-missouri-benton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJQ7C9N34J38N78GA6W","tsKey":"us-missouri-bollinger-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Bollinger","slug":"us-missouri-bollinger-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJVP1STQREK9193XJ5K","tsKey":"us-missouri-boone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Boone","slug":"us-missouri-boone-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJQYBXE25H5YCH56WZC","tsKey":"us-missouri-buchanan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Buchanan","slug":"us-missouri-buchanan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJQ733GKGXZ94X58X0Z","tsKey":"us-missouri-butler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Butler","slug":"us-missouri-butler-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJVTXZ07DQ6F7ZA967D","tsKey":"us-missouri-caldwell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Caldwell","slug":"us-missouri-caldwell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJVE22S8FZ2N09S819P","tsKey":"us-missouri-callaway-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Callaway","slug":"us-missouri-callaway-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJRAD09JCWSBDGJ3JTP","tsKey":"us-missouri-camden-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Camden","slug":"us-missouri-camden-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJVT0ZJ8VEXEERJHM4Q","tsKey":"us-missouri-cape-girardeau-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Cape Girardeau","slug":"us-missouri-cape-girardeau-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJQ1XFQMDC6S601TK0M","tsKey":"us-missouri-carroll-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Carroll","slug":"us-missouri-carroll-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJRRS7XG644X99ES5KB","tsKey":"us-missouri-carter-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Carter","slug":"us-missouri-carter-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJV34E6DX84AV1WECZN","tsKey":"us-missouri-cass-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Cass","slug":"us-missouri-cass-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJVGXZG821RHMBVQFTZ","tsKey":"us-missouri-cedar-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Cedar","slug":"us-missouri-cedar-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJRW3RWGWG4T39N1DE1","tsKey":"us-missouri-chariton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Chariton","slug":"us-missouri-chariton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJQN4CVRD1Z2FRS2ES8","tsKey":"us-missouri-christian-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Christian","slug":"us-missouri-christian-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJRN6M3F723RDNDPEK3","tsKey":"us-missouri-clark-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Clark","slug":"us-missouri-clark-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJRKHTXDRQFTE4Z1WZV","tsKey":"us-missouri-clay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Clay","slug":"us-missouri-clay-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJVD19T7A88EYBKT8QE","tsKey":"us-missouri-clinton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Clinton","slug":"us-missouri-clinton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJRSXGGS7GZQ1YG7P8T","tsKey":"us-missouri-cole-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Cole","slug":"us-missouri-cole-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJQ3YRN2CXX056D1PNZ","tsKey":"us-missouri-cooper-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Cooper","slug":"us-missouri-cooper-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJRQ70Z8Q7AA3FVQBSR","tsKey":"us-missouri-crawford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Crawford","slug":"us-missouri-crawford-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJRMCKHW84S07TBGWCW","tsKey":"us-missouri-dade-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Dade","slug":"us-missouri-dade-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJVAW1NCA3VN6QWMZ4F","tsKey":"us-missouri-dallas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Dallas","slug":"us-missouri-dallas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJRD0QE6SPE6R31Q3C6","tsKey":"us-missouri-daviess-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Daviess","slug":"us-missouri-daviess-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJW9BV0M90XRE8J6DDS","tsKey":"us-missouri-dekalb-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"DeKalb","slug":"us-missouri-dekalb-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJQVQV1TPGQPV393S8K","tsKey":"us-missouri-dent-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Dent","slug":"us-missouri-dent-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJRBQPZJ0JXCV1WHHJV","tsKey":"us-missouri-douglas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Douglas","slug":"us-missouri-douglas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJWE5PV77B1HTXMEM20","tsKey":"us-missouri-dunklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Dunklin","slug":"us-missouri-dunklin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJVDGG5XNBAVTSH3QC4","tsKey":"us-missouri-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Franklin","slug":"us-missouri-franklin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJR40CQC2PM50W32ZFN","tsKey":"us-missouri-gasconade-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Gasconade","slug":"us-missouri-gasconade-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJQYBRSS2KCM1Y36Y1G","tsKey":"us-missouri-gentry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Gentry","slug":"us-missouri-gentry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJRMYA2M4S06KEE49V0","tsKey":"us-missouri-greene-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Greene","slug":"us-missouri-greene-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJREJ01N40NM32NE9JZ","tsKey":"us-missouri-grundy-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Grundy","slug":"us-missouri-grundy-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJWM0X6VFFK1C6QGWVF","tsKey":"us-missouri-harrison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Harrison","slug":"us-missouri-harrison-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJV2ZTS20DXMZD88B1T","tsKey":"us-missouri-henry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Henry","slug":"us-missouri-henry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJQMGX78S93RJMWRE7D","tsKey":"us-missouri-hickory-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Hickory","slug":"us-missouri-hickory-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJRK0D1774FWEBPCXXT","tsKey":"us-missouri-holt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Holt","slug":"us-missouri-holt-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJW9NEXM2JDA18P4HV8","tsKey":"us-missouri-howard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Howard","slug":"us-missouri-howard-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJWRV1RKB5TYGRRVJ5M","tsKey":"us-missouri-howell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Howell","slug":"us-missouri-howell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJVA5VN8XK4083DZ60T","tsKey":"us-missouri-iron-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Iron","slug":"us-missouri-iron-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJTJX24P4ECQB1BE2WR","tsKey":"us-missouri-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Jackson","slug":"us-missouri-jackson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJPD7MVXK5DA37VT1K7","tsKey":"us-missouri-jasper-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Jasper","slug":"us-missouri-jasper-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJTKE1GB3Q0RRCK2PYM","tsKey":"us-missouri-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Jefferson","slug":"us-missouri-jefferson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJVW7VDRM1PMJH1QJ3K","tsKey":"us-missouri-johnson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Johnson","slug":"us-missouri-johnson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJPDKQACQ0NKRSWMT8V","tsKey":"us-missouri-knox-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Knox","slug":"us-missouri-knox-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJR4V2T7YM68PV6F676","tsKey":"us-missouri-laclede-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Laclede","slug":"us-missouri-laclede-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJVN0V62P4HR0K6KTH1","tsKey":"us-missouri-lafayette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Lafayette","slug":"us-missouri-lafayette-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJPS168MFAE0WBNTJN2","tsKey":"us-missouri-lawrence-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Lawrence","slug":"us-missouri-lawrence-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJSKQBQT1QEMSCEQKXM","tsKey":"us-missouri-lewis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Lewis","slug":"us-missouri-lewis-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJWGC2P5CQG4106WXA8","tsKey":"us-missouri-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Lincoln","slug":"us-missouri-lincoln-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJTFG2PT2VNWM6CEG6D","tsKey":"us-missouri-linn-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Linn","slug":"us-missouri-linn-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJPMX020ARMD0QDGZ5X","tsKey":"us-missouri-livingston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Livingston","slug":"us-missouri-livingston-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJTNJZJCWA59AJV83FW","tsKey":"us-missouri-macon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Macon","slug":"us-missouri-macon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJW28SZN5XRG0NMT44W","tsKey":"us-missouri-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Madison","slug":"us-missouri-madison-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJSPPZ5YP9SG4E93DKS","tsKey":"us-missouri-maries-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Maries","slug":"us-missouri-maries-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJW2DS1NRWMAVY7RXED","tsKey":"us-missouri-marion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Marion","slug":"us-missouri-marion-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJSRG4EA7P8R88XN8CK","tsKey":"us-missouri-mcdonald-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"McDonald","slug":"us-missouri-mcdonald-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJSBM9F2N835010BQE1","tsKey":"us-missouri-mercer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Mercer","slug":"us-missouri-mercer-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJP2D1MR7625G8343TF","tsKey":"us-missouri-miller-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Miller","slug":"us-missouri-miller-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJWTZQ3Q2E3BZC36J1R","tsKey":"us-missouri-mississippi-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Mississippi","slug":"us-missouri-mississippi-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJTSF226AQ5G2PPQZKY","tsKey":"us-missouri-moniteau-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Moniteau","slug":"us-missouri-moniteau-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJPSKNMYQA8HM5M1MDJ","tsKey":"us-missouri-monroe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Monroe","slug":"us-missouri-monroe-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJST7H12SY0SZ8MSP7H","tsKey":"us-missouri-montgomery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Montgomery","slug":"us-missouri-montgomery-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJSGM3J09MJTJQGPMRD","tsKey":"us-missouri-morgan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Morgan","slug":"us-missouri-morgan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJWVYBA3GBYE7NGVJWK","tsKey":"us-missouri-new-madrid-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"New Madrid","slug":"us-missouri-new-madrid-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJTNBSN192CG1S9X9BR","tsKey":"us-missouri-newton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Newton","slug":"us-missouri-newton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJS263QTX77MVCEZFS8","tsKey":"us-missouri-nodaway-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Nodaway","slug":"us-missouri-nodaway-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJWV0ZS5YZBTZZQPG9K","tsKey":"us-missouri-oregon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Oregon","slug":"us-missouri-oregon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJPF9XHBK0ZVZJMANJ2","tsKey":"us-missouri-osage-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Osage","slug":"us-missouri-osage-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJSZW7NSPX58Y84DM7P","tsKey":"us-missouri-ozark-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Ozark","slug":"us-missouri-ozark-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJWDED06SR768GAQDQV","tsKey":"us-missouri-pemiscot-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Pemiscot","slug":"us-missouri-pemiscot-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJS1HDHP3599DNJJ6J4","tsKey":"us-missouri-perry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Perry","slug":"us-missouri-perry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJPJ5YNZV3YE5SRA7M4","tsKey":"us-missouri-pettis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Pettis","slug":"us-missouri-pettis-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJSGW0GQE37525Y4EWD","tsKey":"us-missouri-phelps-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Phelps","slug":"us-missouri-phelps-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJT6NFXR2ZRREZKEE2B","tsKey":"us-missouri-pike-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Pike","slug":"us-missouri-pike-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJW9EGJYEPY3JB8005W","tsKey":"us-missouri-platte-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Platte","slug":"us-missouri-platte-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJSF2YE8GRE98FA5Y5Z","tsKey":"us-missouri-polk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Polk","slug":"us-missouri-polk-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJP1871S39EAPHWJMD0","tsKey":"us-missouri-pulaski-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Pulaski","slug":"us-missouri-pulaski-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJSXZGR90B349XQ3EFV","tsKey":"us-missouri-putnam-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Putnam","slug":"us-missouri-putnam-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJTZC96XW0D3ZT5SPX0","tsKey":"us-missouri-ralls-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Ralls","slug":"us-missouri-ralls-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJSBNXJTFF8RTQNWJ75","tsKey":"us-missouri-randolph-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Randolph","slug":"us-missouri-randolph-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJS0SHERB09WPDWY59X","tsKey":"us-missouri-ray-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Ray","slug":"us-missouri-ray-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJPYYJYQD3D44FMA9CM","tsKey":"us-missouri-reynolds-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Reynolds","slug":"us-missouri-reynolds-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJS6HN0SPTJGPQ0M61M","tsKey":"us-missouri-ripley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Ripley","slug":"us-missouri-ripley-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJPZS8V6N5WCRMGBMEN","tsKey":"us-missouri-saline-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Saline","slug":"us-missouri-saline-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJS36XPAGE4HXZC27ND","tsKey":"us-missouri-schuyler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Schuyler","slug":"us-missouri-schuyler-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJWB4DJCMBBFBRT9S2X","tsKey":"us-missouri-scotland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Scotland","slug":"us-missouri-scotland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJTGZK9W1S6XCYK26D8","tsKey":"us-missouri-scott-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Scott","slug":"us-missouri-scott-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJTNXD6E21VGN66Y5T0","tsKey":"us-missouri-shannon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Shannon","slug":"us-missouri-shannon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJPXSM23PH2QSQTT6PV","tsKey":"us-missouri-shelby-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Shelby","slug":"us-missouri-shelby-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJW7KD7K1191QD0RG3Y","tsKey":"us-missouri-st-charles-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"St. Charles","slug":"us-missouri-st-charles-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJTV6ZWNBT9FRZY9QZB","tsKey":"us-missouri-st-clair-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"St. Clair","slug":"us-missouri-st-clair-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJSN4NQYP50SXH10Q7J","tsKey":"us-missouri-ste-genevieve-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Ste. Genevieve","slug":"us-missouri-ste-genevieve-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJS5GJVG62DR425PGYA","tsKey":"us-missouri-st-francois-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"St. Francois","slug":"us-missouri-st-francois-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJT9QQ5K85C7SKN2ARE","tsKey":"us-missouri-st-louis-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"St. Louis","slug":"us-missouri-st-louis-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJW5H3EF6YV06RBQ5Q4","tsKey":"us-missouri-st-louis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"St. Louis","slug":"us-missouri-st-louis-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJTNKMQ4VD84MFDD9GC","tsKey":"us-missouri-stoddard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Stoddard","slug":"us-missouri-stoddard-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJW40NFRERA4ASBM1EW","tsKey":"us-missouri-stone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Stone","slug":"us-missouri-stone-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJPE4K1E04S3M1S0DFW","tsKey":"us-missouri-sullivan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Sullivan","slug":"us-missouri-sullivan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJTM5JZ03V1DRX6ZFT5","tsKey":"us-missouri-taney-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Taney","slug":"us-missouri-taney-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJTZ8HRM2PHX3DTJYV6","tsKey":"us-missouri-texas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Texas","slug":"us-missouri-texas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJWTG0MJW3D5CT8MTYC","tsKey":"us-missouri-vernon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Vernon","slug":"us-missouri-vernon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJT0JZ4XHHZ125ZZG6H","tsKey":"us-missouri-warren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Warren","slug":"us-missouri-warren-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJQC3RWG783XPM80BRK","tsKey":"us-missouri-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Washington","slug":"us-missouri-washington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJVWHCC5VZA919KMGR8","tsKey":"us-missouri-wayne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Wayne","slug":"us-missouri-wayne-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJTJPV4ZD4R9621Y62V","tsKey":"us-missouri-webster-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Webster","slug":"us-missouri-webster-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJWB59Z6GT70PQ9XFK0","tsKey":"us-missouri-worth-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Worth","slug":"us-missouri-worth-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQJQM16XDQHWZVC67TYA","tsKey":"us-missouri-wright-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","name":"Wright","slug":"us-missouri-wright-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJQZ5J517QW02C84M80WD","tsKey":"us-montana","tsNs":"gov-dist","abbrev":"MT","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Montana","slug":"us-montana","iso":"US-MT","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBMES7DX944F9GZJ5EY","tsKey":"us-montana-beaverhead-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Beaverhead","slug":"us-montana-beaverhead-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBJNFDMFD0NQZWFFMZK","tsKey":"us-montana-big-horn-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Big Horn","slug":"us-montana-big-horn-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBJGM7PW2757ZBMF3B1","tsKey":"us-montana-blaine-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Blaine","slug":"us-montana-blaine-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBKKVFBVXZPS5K9F969","tsKey":"us-montana-broadwater-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Broadwater","slug":"us-montana-broadwater-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBJN46FKXCP7CHK7CCT","tsKey":"us-montana-carbon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Carbon","slug":"us-montana-carbon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBMPW89TCXABWVDDTGB","tsKey":"us-montana-carter-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Carter","slug":"us-montana-carter-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBGEVTRE44MZQ13MQJW","tsKey":"us-montana-cascade-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Cascade","slug":"us-montana-cascade-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBJSGE86VXB93PE47XN","tsKey":"us-montana-chouteau-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Chouteau","slug":"us-montana-chouteau-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBMBXM1396BZ4SDTVMM","tsKey":"us-montana-custer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Custer","slug":"us-montana-custer-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBJ9EXZE2R1RJ5M3RG8","tsKey":"us-montana-daniels-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Daniels","slug":"us-montana-daniels-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBKRQSAMPSR3GF6WT5Z","tsKey":"us-montana-dawson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Dawson","slug":"us-montana-dawson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBJWWWYCXEZ4PDD541N","tsKey":"us-montana-deer-lodge-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Deer Lodge","slug":"us-montana-deer-lodge-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBMP0CFQQPX12YABAE7","tsKey":"us-montana-fallon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Fallon","slug":"us-montana-fallon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBMHKC7NXHQPE5J49B2","tsKey":"us-montana-fergus-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Fergus","slug":"us-montana-fergus-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBKPD6AFABAT79RAWQ4","tsKey":"us-montana-flathead-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Flathead","slug":"us-montana-flathead-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBKYQNE8VKS8BB4WW1D","tsKey":"us-montana-gallatin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Gallatin","slug":"us-montana-gallatin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBMCTCM6XXRPMQQEFTQ","tsKey":"us-montana-garfield-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Garfield","slug":"us-montana-garfield-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBKRDTRFRVFNZYADZ80","tsKey":"us-montana-glacier-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Glacier","slug":"us-montana-glacier-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBHTR8N0GJ7SANQWGE9","tsKey":"us-montana-golden-valley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Golden Valley","slug":"us-montana-golden-valley-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBMFPPQF18509127X7X","tsKey":"us-montana-granite-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Granite","slug":"us-montana-granite-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBKXS0EGEPSKME1HR00","tsKey":"us-montana-hill-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Hill","slug":"us-montana-hill-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBHMZN4VXY44A882DRR","tsKey":"us-montana-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Jefferson","slug":"us-montana-jefferson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBMBAS58VY1NZ7XTM43","tsKey":"us-montana-judith-basin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Judith Basin","slug":"us-montana-judith-basin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBKZNS9Y8X21BDZY7Q7","tsKey":"us-montana-lake-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Lake","slug":"us-montana-lake-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBKT3BCWGTSCTG3ADC4","tsKey":"us-montana-lewis-and-clark-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Lewis and Clark","slug":"us-montana-lewis-and-clark-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBHTSFMAK4AXXXSJ32S","tsKey":"us-montana-liberty-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Liberty","slug":"us-montana-liberty-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBKZQ4XG9X0YG9TF9AF","tsKey":"us-montana-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Lincoln","slug":"us-montana-lincoln-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBHKBBXE59CG4E25137","tsKey":"us-montana-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Madison","slug":"us-montana-madison-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBHS6N4GYD5RW5C7RVM","tsKey":"us-montana-mccone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"McCone","slug":"us-montana-mccone-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBHEAZ7DVGHQ8JMDB4N","tsKey":"us-montana-meagher-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Meagher","slug":"us-montana-meagher-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBMX8V954FHX7JXZYZF","tsKey":"us-montana-mineral-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Mineral","slug":"us-montana-mineral-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBHD2VG549Z56JE9520","tsKey":"us-montana-missoula-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Missoula","slug":"us-montana-missoula-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBHH2FQ0FM8X3KFJSXH","tsKey":"us-montana-musselshell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Musselshell","slug":"us-montana-musselshell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBKX8GB32256REY5Q59","tsKey":"us-montana-park-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Park","slug":"us-montana-park-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBH5JHM5C7CV0DYWMZX","tsKey":"us-montana-petroleum-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Petroleum","slug":"us-montana-petroleum-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBH7T84A5WG8HB7PHNG","tsKey":"us-montana-phillips-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Phillips","slug":"us-montana-phillips-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBKBTM63RP1831TSMQ5","tsKey":"us-montana-pondera-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Pondera","slug":"us-montana-pondera-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBKBNVRA0NMGJR3ARME","tsKey":"us-montana-powder-river-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Powder River","slug":"us-montana-powder-river-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBJPKY1GPVZ54S6EDTK","tsKey":"us-montana-powell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Powell","slug":"us-montana-powell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBKJXHMGGY4NTDWM30F","tsKey":"us-montana-prairie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Prairie","slug":"us-montana-prairie-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBKNVBK3JT2XMZEDBBT","tsKey":"us-montana-ravalli-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Ravalli","slug":"us-montana-ravalli-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBJ16RAM0XGVZHD2N9Z","tsKey":"us-montana-richland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Richland","slug":"us-montana-richland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBK4S8XV1CV7RX0C3N2","tsKey":"us-montana-roosevelt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Roosevelt","slug":"us-montana-roosevelt-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBJTRZ010SRVG3PH123","tsKey":"us-montana-rosebud-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Rosebud","slug":"us-montana-rosebud-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBKPAGDY29G13YFP167","tsKey":"us-montana-sanders-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Sanders","slug":"us-montana-sanders-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBJ19T3BVB0P4WXR728","tsKey":"us-montana-sheridan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Sheridan","slug":"us-montana-sheridan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBHE9VD9ZH5B5FK3FNQ","tsKey":"us-montana-silver-bow-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Silver Bow","slug":"us-montana-silver-bow-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBM2N5KJD3B4XMEA3ZJ","tsKey":"us-montana-stillwater-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Stillwater","slug":"us-montana-stillwater-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBJ17PC6Q3M85RFMAES","tsKey":"us-montana-sweet-grass-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Sweet Grass","slug":"us-montana-sweet-grass-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBHFX1H6PAVSAWW4SXP","tsKey":"us-montana-teton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Teton","slug":"us-montana-teton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBJF5QZC957ZFRDCZVK","tsKey":"us-montana-toole-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Toole","slug":"us-montana-toole-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBME3568WYW0BCS0S4E","tsKey":"us-montana-treasure-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Treasure","slug":"us-montana-treasure-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBMPAS6HYJBF93A0CBA","tsKey":"us-montana-valley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Valley","slug":"us-montana-valley-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBHXBC13PHJZ4E4V304","tsKey":"us-montana-wheatland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Wheatland","slug":"us-montana-wheatland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBJT0XGCAD802D4VAD9","tsKey":"us-montana-wibaux-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Wibaux","slug":"us-montana-wibaux-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRBMRHM9KT0R6MC9VZS7","tsKey":"us-montana-yellowstone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJQZ5J517QW02C84M80WD","name":"Yellowstone","slug":"us-montana-yellowstone-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","tsKey":"us-nebraska","tsNs":"gov-dist","abbrev":"NE","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Nebraska","slug":"us-nebraska","iso":"US-NE","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8FJ7BBQR02SN0VGTV9","tsKey":"us-nebraska-adams-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Adams","slug":"us-nebraska-adams-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8BWRF2JE8NFT69B3Z3","tsKey":"us-nebraska-antelope-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Antelope","slug":"us-nebraska-antelope-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8FFJ352CSZQQ1SPMVA","tsKey":"us-nebraska-arthur-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Arthur","slug":"us-nebraska-arthur-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8DN3XC47QBE7TX66MC","tsKey":"us-nebraska-banner-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Banner","slug":"us-nebraska-banner-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8B2046XE5T92EAZB1Y","tsKey":"us-nebraska-blaine-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Blaine","slug":"us-nebraska-blaine-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8DBSRZTF26Y5N8KX7A","tsKey":"us-nebraska-boone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Boone","slug":"us-nebraska-boone-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8DXP6VE9MWNM4N57EM","tsKey":"us-nebraska-box-butte-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Box Butte","slug":"us-nebraska-box-butte-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8GSKMVS78KFXMNE7GQ","tsKey":"us-nebraska-boyd-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Boyd","slug":"us-nebraska-boyd-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8FZFBB1ZZ462JG9WV0","tsKey":"us-nebraska-brown-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Brown","slug":"us-nebraska-brown-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8DQYTTCA630GR7FFNP","tsKey":"us-nebraska-buffalo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Buffalo","slug":"us-nebraska-buffalo-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8GG064MM2EYJ93GQQT","tsKey":"us-nebraska-burt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Burt","slug":"us-nebraska-burt-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8B8Z5ZD38FV9CK77N5","tsKey":"us-nebraska-butler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Butler","slug":"us-nebraska-butler-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8D17XDH3YCA5WGHN2F","tsKey":"us-nebraska-cass-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Cass","slug":"us-nebraska-cass-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8F72NKPR8MPZ3EN540","tsKey":"us-nebraska-cedar-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Cedar","slug":"us-nebraska-cedar-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8DYKFCZED7H3KFDCTC","tsKey":"us-nebraska-chase-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Chase","slug":"us-nebraska-chase-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8GND19J0F52SYVE78K","tsKey":"us-nebraska-cherry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Cherry","slug":"us-nebraska-cherry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8DB7WDZ9X7YRNHEFBR","tsKey":"us-nebraska-cheyenne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Cheyenne","slug":"us-nebraska-cheyenne-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8B8H25ZG4EVQF2S6NE","tsKey":"us-nebraska-clay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Clay","slug":"us-nebraska-clay-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8CRX21SDDECT0FG2CX","tsKey":"us-nebraska-colfax-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Colfax","slug":"us-nebraska-colfax-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8DASKXZS44N21QFADR","tsKey":"us-nebraska-cuming-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Cuming","slug":"us-nebraska-cuming-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8FBZRTSV5Y1N5MAE93","tsKey":"us-nebraska-custer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Custer","slug":"us-nebraska-custer-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8GG4TTVJNFNED2RJRC","tsKey":"us-nebraska-dakota-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Dakota","slug":"us-nebraska-dakota-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8D1447K4M3CVC29NCG","tsKey":"us-nebraska-dawes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Dawes","slug":"us-nebraska-dawes-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8CHC86JPMX7164Y0E5","tsKey":"us-nebraska-dawson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Dawson","slug":"us-nebraska-dawson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8GSQCJ4C4NHKQE6GZ0","tsKey":"us-nebraska-deuel-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Deuel","slug":"us-nebraska-deuel-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8D1RB6AGKD7MKRG9SM","tsKey":"us-nebraska-dixon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Dixon","slug":"us-nebraska-dixon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8CZZTT9ZSA8VF6EG4T","tsKey":"us-nebraska-dodge-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Dodge","slug":"us-nebraska-dodge-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8GVXGQ769881PERD6E","tsKey":"us-nebraska-douglas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Douglas","slug":"us-nebraska-douglas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8DNNV5W74RSYRJZPC3","tsKey":"us-nebraska-dundy-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Dundy","slug":"us-nebraska-dundy-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8FZ10BYSCFYVN8YVK2","tsKey":"us-nebraska-fillmore-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Fillmore","slug":"us-nebraska-fillmore-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8G5JDXHNZBZSB4R49E","tsKey":"us-nebraska-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Franklin","slug":"us-nebraska-franklin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8CDNMXC85R0Z0Z0MYG","tsKey":"us-nebraska-frontier-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Frontier","slug":"us-nebraska-frontier-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8G6PEM9WNJV40KANKB","tsKey":"us-nebraska-furnas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Furnas","slug":"us-nebraska-furnas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8GH1YHCF9339G30S92","tsKey":"us-nebraska-gage-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Gage","slug":"us-nebraska-gage-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8FTGR523ZXHS8446S7","tsKey":"us-nebraska-garden-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Garden","slug":"us-nebraska-garden-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8DK0R27R0WB2S0P6YQ","tsKey":"us-nebraska-garfield-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Garfield","slug":"us-nebraska-garfield-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8CMHV5TX3NPETH362E","tsKey":"us-nebraska-gosper-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Gosper","slug":"us-nebraska-gosper-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8DZECAFK5MWZ0DNE4N","tsKey":"us-nebraska-grant-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Grant","slug":"us-nebraska-grant-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8F3DCDS9DWBVXQ6D2B","tsKey":"us-nebraska-greeley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Greeley","slug":"us-nebraska-greeley-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8EEEBQ9PX99642NTMH","tsKey":"us-nebraska-hall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Hall","slug":"us-nebraska-hall-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8EGJZKA6RAY16VP19A","tsKey":"us-nebraska-hamilton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Hamilton","slug":"us-nebraska-hamilton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8E2WPF5G9S3WYCTSSA","tsKey":"us-nebraska-harlan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Harlan","slug":"us-nebraska-harlan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8CPSK9J83K07D1XFXM","tsKey":"us-nebraska-hayes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Hayes","slug":"us-nebraska-hayes-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8E2APKN8K10TW8PE6P","tsKey":"us-nebraska-hitchcock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Hitchcock","slug":"us-nebraska-hitchcock-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8FTNMAG2MV6CKCBNHE","tsKey":"us-nebraska-holt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Holt","slug":"us-nebraska-holt-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8GV4BT3XE6RABAFFTM","tsKey":"us-nebraska-hooker-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Hooker","slug":"us-nebraska-hooker-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8CWS2RZSX0P651HT0C","tsKey":"us-nebraska-howard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Howard","slug":"us-nebraska-howard-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8GJ7J89PR63AFEN534","tsKey":"us-nebraska-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Jefferson","slug":"us-nebraska-jefferson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8CEWHXDVVDAZMCNWF5","tsKey":"us-nebraska-johnson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Johnson","slug":"us-nebraska-johnson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8E8R9SSZV4B9GR5DP6","tsKey":"us-nebraska-kearney-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Kearney","slug":"us-nebraska-kearney-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8E7909VZCRBYZ2C3PH","tsKey":"us-nebraska-keith-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Keith","slug":"us-nebraska-keith-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8GSJWPQN9NAKFF64EM","tsKey":"us-nebraska-keya-paha-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Keya Paha","slug":"us-nebraska-keya-paha-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8EA38QYT34XHYVP56Q","tsKey":"us-nebraska-kimball-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Kimball","slug":"us-nebraska-kimball-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8FC3H8W31726VPSF2X","tsKey":"us-nebraska-knox-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Knox","slug":"us-nebraska-knox-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8E6FGN9PB9HBA7YF13","tsKey":"us-nebraska-lancaster-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Lancaster","slug":"us-nebraska-lancaster-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8GX63EMMDZV1TZS9JV","tsKey":"us-nebraska-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Lincoln","slug":"us-nebraska-lincoln-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8GGRV1ZVP84Y6T49DY","tsKey":"us-nebraska-logan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Logan","slug":"us-nebraska-logan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8E792F9SWXTTYS9MSJ","tsKey":"us-nebraska-loup-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Loup","slug":"us-nebraska-loup-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8EKBHJ880MMCH44RCA","tsKey":"us-nebraska-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Madison","slug":"us-nebraska-madison-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8C0H19P4N872BAW0MV","tsKey":"us-nebraska-mcpherson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"McPherson","slug":"us-nebraska-mcpherson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8BKT6C1J2WDJXJFEXB","tsKey":"us-nebraska-merrick-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Merrick","slug":"us-nebraska-merrick-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8EB998V6Q1QYM8NMT7","tsKey":"us-nebraska-morrill-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Morrill","slug":"us-nebraska-morrill-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8BKPKMCYMFBHEACJV0","tsKey":"us-nebraska-nance-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Nance","slug":"us-nebraska-nance-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8ET7CGH2N8Q1805DKM","tsKey":"us-nebraska-nemaha-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Nemaha","slug":"us-nebraska-nemaha-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8EN7CHSHMMYGSZ9TVB","tsKey":"us-nebraska-nuckolls-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Nuckolls","slug":"us-nebraska-nuckolls-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8GWV0MX9MMCJ106T9Q","tsKey":"us-nebraska-otoe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Otoe","slug":"us-nebraska-otoe-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8E7Q7PYPTHH82PZHSY","tsKey":"us-nebraska-pawnee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Pawnee","slug":"us-nebraska-pawnee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8BZKYXJAJHMAARH713","tsKey":"us-nebraska-perkins-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Perkins","slug":"us-nebraska-perkins-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8BJAY6D7ZJ0TN0X4KF","tsKey":"us-nebraska-phelps-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Phelps","slug":"us-nebraska-phelps-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8FV0PJZPFWHQ28G2CS","tsKey":"us-nebraska-pierce-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Pierce","slug":"us-nebraska-pierce-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8EQ06RWSHZ1J70QDXQ","tsKey":"us-nebraska-platte-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Platte","slug":"us-nebraska-platte-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8EVDYNEGSZDFAWPPWE","tsKey":"us-nebraska-polk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Polk","slug":"us-nebraska-polk-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8FX2V797BJSJAB3A38","tsKey":"us-nebraska-red-willow-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Red Willow","slug":"us-nebraska-red-willow-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8B0WFMFMH1AH4R5VVC","tsKey":"us-nebraska-richardson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Richardson","slug":"us-nebraska-richardson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8C3QEVYAF939JAJEQ7","tsKey":"us-nebraska-rock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Rock","slug":"us-nebraska-rock-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8CPRT3KWTR3WE0KX8A","tsKey":"us-nebraska-saline-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Saline","slug":"us-nebraska-saline-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8EV3HHBTE9R9PZ1R5P","tsKey":"us-nebraska-sarpy-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Sarpy","slug":"us-nebraska-sarpy-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8CH763Z3FV6T7EP4HN","tsKey":"us-nebraska-saunders-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Saunders","slug":"us-nebraska-saunders-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8FYTTX48RGJZ2RV1ZJ","tsKey":"us-nebraska-scotts-bluff-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Scotts Bluff","slug":"us-nebraska-scotts-bluff-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8BCE6T66QR91CSAGP8","tsKey":"us-nebraska-seward-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Seward","slug":"us-nebraska-seward-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8C1H3CAKM3WNX2KPCH","tsKey":"us-nebraska-sheridan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Sheridan","slug":"us-nebraska-sheridan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8BKB0W0N6G8JGMREXS","tsKey":"us-nebraska-sherman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Sherman","slug":"us-nebraska-sherman-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8FEXBVRCSQXSNY812K","tsKey":"us-nebraska-sioux-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Sioux","slug":"us-nebraska-sioux-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8F5M78SQ53X6QMQ640","tsKey":"us-nebraska-stanton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Stanton","slug":"us-nebraska-stanton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8CP5XE7MTC7PZEWD3C","tsKey":"us-nebraska-thayer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Thayer","slug":"us-nebraska-thayer-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8BHYB4YP61CVEAB4HP","tsKey":"us-nebraska-thomas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Thomas","slug":"us-nebraska-thomas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8D369V5TSRSBCFC9H4","tsKey":"us-nebraska-thurston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Thurston","slug":"us-nebraska-thurston-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8GRGRZXX3ZB7976KEW","tsKey":"us-nebraska-valley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Valley","slug":"us-nebraska-valley-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8GTF9Y86DKYEXS76A5","tsKey":"us-nebraska-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Washington","slug":"us-nebraska-washington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8FRVZEDEWN2CZ91GSA","tsKey":"us-nebraska-wayne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Wayne","slug":"us-nebraska-wayne-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8DDBQEWJ62BVKM5JP8","tsKey":"us-nebraska-webster-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Webster","slug":"us-nebraska-webster-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8BN2K0R5Q339SS16ZA","tsKey":"us-nebraska-wheeler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"Wheeler","slug":"us-nebraska-wheeler-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJS8F2PBH2Q3A9XDAJPVK","tsKey":"us-nebraska-york-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","name":"York","slug":"us-nebraska-york-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJSQZ19Y230FJHNKHSW89","tsKey":"us-nevada","tsNs":"gov-dist","abbrev":"NV","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Nevada","slug":"us-nevada","iso":"US-NV","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJTDCZSFQ1C1WBZB04PNR","tsKey":"us-nevada-carson-city-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJSQZ19Y230FJHNKHSW89","name":"Carson City","slug":"us-nevada-carson-city-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJTDCW9CVJ3A8PR9THVFA","tsKey":"us-nevada-churchill-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJSQZ19Y230FJHNKHSW89","name":"Churchill","slug":"us-nevada-churchill-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJTDC3K732ADR34G57FY9","tsKey":"us-nevada-clark-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJSQZ19Y230FJHNKHSW89","name":"Clark","slug":"us-nevada-clark-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJTDB29QR2N1D5261X7KF","tsKey":"us-nevada-douglas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJSQZ19Y230FJHNKHSW89","name":"Douglas","slug":"us-nevada-douglas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJTDBT3S50XWXJ9WD1ZAA","tsKey":"us-nevada-elko-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJSQZ19Y230FJHNKHSW89","name":"Elko","slug":"us-nevada-elko-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJTDBB23BSYG3PQPTT7G5","tsKey":"us-nevada-esmeralda-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJSQZ19Y230FJHNKHSW89","name":"Esmeralda","slug":"us-nevada-esmeralda-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJTDCR8YQSWMXZR110027","tsKey":"us-nevada-eureka-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJSQZ19Y230FJHNKHSW89","name":"Eureka","slug":"us-nevada-eureka-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJTDCPA59ER378VCCDJ30","tsKey":"us-nevada-humboldt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJSQZ19Y230FJHNKHSW89","name":"Humboldt","slug":"us-nevada-humboldt-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJTDCJKN58E8SJDFGKR5M","tsKey":"us-nevada-lander-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJSQZ19Y230FJHNKHSW89","name":"Lander","slug":"us-nevada-lander-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJTDCA4XW42AZAT6JZY60","tsKey":"us-nevada-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJSQZ19Y230FJHNKHSW89","name":"Lincoln","slug":"us-nevada-lincoln-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJTDCX54JAAWWNANSRX6T","tsKey":"us-nevada-lyon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJSQZ19Y230FJHNKHSW89","name":"Lyon","slug":"us-nevada-lyon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJTDBXJGR912V5HK6SFKV","tsKey":"us-nevada-mineral-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJSQZ19Y230FJHNKHSW89","name":"Mineral","slug":"us-nevada-mineral-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJTDCQKDFNYAZFYBJ3CBK","tsKey":"us-nevada-nye-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJSQZ19Y230FJHNKHSW89","name":"Nye","slug":"us-nevada-nye-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJTDCTHJA8S0VRCWKYG50","tsKey":"us-nevada-pershing-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJSQZ19Y230FJHNKHSW89","name":"Pershing","slug":"us-nevada-pershing-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJTDCWEE15E0AX1F16R5X","tsKey":"us-nevada-storey-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJSQZ19Y230FJHNKHSW89","name":"Storey","slug":"us-nevada-storey-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJTDCD6N3B35397K5AF6E","tsKey":"us-nevada-washoe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJSQZ19Y230FJHNKHSW89","name":"Washoe","slug":"us-nevada-washoe-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJTDB4PRRNZC99518258D","tsKey":"us-nevada-white-pine-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJSQZ19Y230FJHNKHSW89","name":"White Pine","slug":"us-nevada-white-pine-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJTSK0AMAVYF9QD9GXBAR","tsKey":"us-new-hampshire","tsNs":"gov-dist","abbrev":"NH","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"New Hampshire","slug":"us-new-hampshire","iso":"US-NH","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJV6SJBHT6WAKKX0DJNKM","tsKey":"us-new-hampshire-belknap-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJTSK0AMAVYF9QD9GXBAR","name":"Belknap","slug":"us-new-hampshire-belknap-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJV6RN2DJFBYA51PCG54P","tsKey":"us-new-hampshire-carroll-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJTSK0AMAVYF9QD9GXBAR","name":"Carroll","slug":"us-new-hampshire-carroll-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJV6SD70WMGF3DC5G32PH","tsKey":"us-new-hampshire-cheshire-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJTSK0AMAVYF9QD9GXBAR","name":"Cheshire","slug":"us-new-hampshire-cheshire-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJV6SWRQMJ0H36AAEPTM1","tsKey":"us-new-hampshire-coos-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJTSK0AMAVYF9QD9GXBAR","name":"Coös","slug":"us-new-hampshire-coos-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJV6SHA14KTRRVV1RWN4F","tsKey":"us-new-hampshire-grafton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJTSK0AMAVYF9QD9GXBAR","name":"Grafton","slug":"us-new-hampshire-grafton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJV6SMJSYYYGH76E9ABYA","tsKey":"us-new-hampshire-hillsborough-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJTSK0AMAVYF9QD9GXBAR","name":"Hillsborough","slug":"us-new-hampshire-hillsborough-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJV6SFHVNX9WGMJ1XT6T9","tsKey":"us-new-hampshire-merrimack-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJTSK0AMAVYF9QD9GXBAR","name":"Merrimack","slug":"us-new-hampshire-merrimack-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJV6SH4SM8ST5JVAJ9F6B","tsKey":"us-new-hampshire-rockingham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJTSK0AMAVYF9QD9GXBAR","name":"Rockingham","slug":"us-new-hampshire-rockingham-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJV6SBMKWPBB0R1TA7XEG","tsKey":"us-new-hampshire-strafford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJTSK0AMAVYF9QD9GXBAR","name":"Strafford","slug":"us-new-hampshire-strafford-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJV6SKH45337NJT8VKXX0","tsKey":"us-new-hampshire-sullivan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJTSK0AMAVYF9QD9GXBAR","name":"Sullivan","slug":"us-new-hampshire-sullivan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6","tsKey":"us-new-jersey","tsNs":"gov-dist","abbrev":"NJ","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"New Jersey","slug":"us-new-jersey","iso":"US-NJ","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJVRYTB7WHD57CCCKCCWV","tsKey":"us-new-jersey-atlantic-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6","name":"Atlantic","slug":"us-new-jersey-atlantic-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJVRXNY5TTK2S6CRSAM4Q","tsKey":"us-new-jersey-bergen-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6","name":"Bergen","slug":"us-new-jersey-bergen-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJVRYMA2JG78WW1RDPKAB","tsKey":"us-new-jersey-burlington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6","name":"Burlington","slug":"us-new-jersey-burlington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJVRX7JYXYRP9M854JH38","tsKey":"us-new-jersey-camden-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6","name":"Camden","slug":"us-new-jersey-camden-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJVRX53RBQHSVDDQBRJ09","tsKey":"us-new-jersey-cape-may-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6","name":"Cape May","slug":"us-new-jersey-cape-may-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJVRYD6H5R1P6G4V9Z30T","tsKey":"us-new-jersey-cumberland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6","name":"Cumberland","slug":"us-new-jersey-cumberland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJVRXZ4DRHEJV18C97WVQ","tsKey":"us-new-jersey-essex-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6","name":"Essex","slug":"us-new-jersey-essex-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJVRXBE5EW3V1GA90RKWP","tsKey":"us-new-jersey-gloucester-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6","name":"Gloucester","slug":"us-new-jersey-gloucester-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJVRXBX55CRCKVEW8Y1C4","tsKey":"us-new-jersey-hudson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6","name":"Hudson","slug":"us-new-jersey-hudson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJVRXFJKV1172H8WD61QY","tsKey":"us-new-jersey-hunterdon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6","name":"Hunterdon","slug":"us-new-jersey-hunterdon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJVRXWKX7PSY69ZJ0251S","tsKey":"us-new-jersey-mercer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6","name":"Mercer","slug":"us-new-jersey-mercer-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJVRY9J0HY0XBME8K521Q","tsKey":"us-new-jersey-middlesex-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6","name":"Middlesex","slug":"us-new-jersey-middlesex-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJVRYYT1Z93BW682FWV3V","tsKey":"us-new-jersey-monmouth-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6","name":"Monmouth","slug":"us-new-jersey-monmouth-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJVRYNHRGMNQFFYPGHDRT","tsKey":"us-new-jersey-morris-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6","name":"Morris","slug":"us-new-jersey-morris-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJVRX6SD2TYF4MAXN2YVS","tsKey":"us-new-jersey-ocean-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6","name":"Ocean","slug":"us-new-jersey-ocean-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJVRX12VEAD153BGSVNG3","tsKey":"us-new-jersey-passaic-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6","name":"Passaic","slug":"us-new-jersey-passaic-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJVRY3234JG0YQTHVMAT4","tsKey":"us-new-jersey-salem-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6","name":"Salem","slug":"us-new-jersey-salem-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJVRYFY6Z326D7WCT6YZP","tsKey":"us-new-jersey-somerset-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6","name":"Somerset","slug":"us-new-jersey-somerset-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJVRYH1FSW31NSBF9FB4P","tsKey":"us-new-jersey-sussex-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6","name":"Sussex","slug":"us-new-jersey-sussex-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJVRYF4M9Z5R21S88YZRM","tsKey":"us-new-jersey-union-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6","name":"Union","slug":"us-new-jersey-union-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJVRYRQPEHRYGDSG5614N","tsKey":"us-new-jersey-warren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6","name":"Warren","slug":"us-new-jersey-warren-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY","tsKey":"us-new-mexico","tsNs":"gov-dist","abbrev":"NM","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"New Mexico","slug":"us-new-mexico","iso":"US-NM","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJX2SFF538DAKAG9EWBSJ","tsKey":"us-new-mexico-bernalillo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY","name":"Bernalillo","slug":"us-new-mexico-bernalillo-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJX2VMKC1D3241GD5N371","tsKey":"us-new-mexico-catron-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY","name":"Catron","slug":"us-new-mexico-catron-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJX2V2E1H4BC16X8E16MT","tsKey":"us-new-mexico-chaves-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY","name":"Chaves","slug":"us-new-mexico-chaves-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJX2SXX8EDJGTAMQVN67A","tsKey":"us-new-mexico-cibola-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY","name":"Cibola","slug":"us-new-mexico-cibola-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJX2S3N15E6JKQVDG20QF","tsKey":"us-new-mexico-colfax-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY","name":"Colfax","slug":"us-new-mexico-colfax-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJX2VRW8MM7KVZQFB95H8","tsKey":"us-new-mexico-curry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY","name":"Curry","slug":"us-new-mexico-curry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJX2V1KHWD2QAQQ10RKP3","tsKey":"us-new-mexico-de-baca-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY","name":"De Baca","slug":"us-new-mexico-de-baca-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJX2TN8CZZP7TA9046YEP","tsKey":"us-new-mexico-dona-ana-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY","name":"Doña Ana","slug":"us-new-mexico-dona-ana-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJX2SBXSPH7VXXTTMNAFM","tsKey":"us-new-mexico-eddy-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY","name":"Eddy","slug":"us-new-mexico-eddy-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJX2TW8MGAE87HMQ44JW3","tsKey":"us-new-mexico-grant-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY","name":"Grant","slug":"us-new-mexico-grant-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJX2TZ0C3SQBWVVN6KA04","tsKey":"us-new-mexico-guadalupe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY","name":"Guadalupe","slug":"us-new-mexico-guadalupe-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJX2TW151ARYGNE1CA70Z","tsKey":"us-new-mexico-harding-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY","name":"Harding","slug":"us-new-mexico-harding-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJX2VNE1D7Y3VXA041JZZ","tsKey":"us-new-mexico-hidalgo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY","name":"Hidalgo","slug":"us-new-mexico-hidalgo-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJX2TYV4SMS5VAY783BGX","tsKey":"us-new-mexico-lea-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY","name":"Lea","slug":"us-new-mexico-lea-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJX2SXYBPV1JT56PZ9WDA","tsKey":"us-new-mexico-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY","name":"Lincoln","slug":"us-new-mexico-lincoln-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJX2SPKCXNKHKPVHCASYB","tsKey":"us-new-mexico-los-alamos-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY","name":"Los Alamos","slug":"us-new-mexico-los-alamos-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJX2VH01NWX2VN8ENMC2A","tsKey":"us-new-mexico-luna-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY","name":"Luna","slug":"us-new-mexico-luna-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJX2V6PT6ZDRF61EAX6S9","tsKey":"us-new-mexico-mckinley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY","name":"McKinley","slug":"us-new-mexico-mckinley-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJX2TDBV4VD6A463JXGR3","tsKey":"us-new-mexico-mora-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY","name":"Mora","slug":"us-new-mexico-mora-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJX2V6C2V82WY4PBG68K7","tsKey":"us-new-mexico-otero-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY","name":"Otero","slug":"us-new-mexico-otero-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJX2TWD0NHRA2G0K6JJM8","tsKey":"us-new-mexico-quay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY","name":"Quay","slug":"us-new-mexico-quay-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJX2T0DB1FSJ1ED9DB0SY","tsKey":"us-new-mexico-rio-arriba-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY","name":"Rio Arriba","slug":"us-new-mexico-rio-arriba-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJX2TXNMGSWC4RTPEB8EJ","tsKey":"us-new-mexico-roosevelt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY","name":"Roosevelt","slug":"us-new-mexico-roosevelt-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJX2TV3058GBBBF9QDH0S","tsKey":"us-new-mexico-sandoval-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY","name":"Sandoval","slug":"us-new-mexico-sandoval-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJX2SXGCTAPSRBQX5SXFD","tsKey":"us-new-mexico-san-juan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY","name":"San Juan","slug":"us-new-mexico-san-juan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJX2V3ABHJM7N1FV70HGY","tsKey":"us-new-mexico-san-miguel-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY","name":"San Miguel","slug":"us-new-mexico-san-miguel-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJX2TTCR3F1J1HQBK3A66","tsKey":"us-new-mexico-santa-fe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY","name":"Santa Fe","slug":"us-new-mexico-santa-fe-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJX2VNXYQR9G4QTT9TQNM","tsKey":"us-new-mexico-sierra-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY","name":"Sierra","slug":"us-new-mexico-sierra-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJX2S8TVW592CZ9Z8FKD4","tsKey":"us-new-mexico-socorro-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY","name":"Socorro","slug":"us-new-mexico-socorro-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJX2V2CZPW44YCE05JCCB","tsKey":"us-new-mexico-taos-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY","name":"Taos","slug":"us-new-mexico-taos-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJX2T1XVMS3SSFH6F9YC6","tsKey":"us-new-mexico-torrance-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY","name":"Torrance","slug":"us-new-mexico-torrance-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJX2VX09E72AXRKERSSE2","tsKey":"us-new-mexico-union-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY","name":"Union","slug":"us-new-mexico-union-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJX2T1SAF7MS5X62CQPZH","tsKey":"us-new-mexico-valencia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY","name":"Valencia","slug":"us-new-mexico-valencia-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","tsKey":"us-new-york","tsNs":"gov-dist","abbrev":"NY","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"New York","slug":"us-new-york","iso":"US-NY","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTP34DS5JYTVKP38TY3","tsKey":"us-new-york-albany-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Albany","slug":"us-new-york-albany-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTK3CF1HS75VYHB66EP","tsKey":"us-new-york-allegany-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Allegany","slug":"us-new-york-allegany-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTPQZYD4ERJH8AM5D48","tsKey":"us-new-york-bronx-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Bronx","slug":"us-new-york-bronx-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTMXZFKTCSEXS55MZRT","tsKey":"us-new-york-broome-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Broome","slug":"us-new-york-broome-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTQ06BSGBPRETYFXWJ4","tsKey":"us-new-york-cattaraugus-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Cattaraugus","slug":"us-new-york-cattaraugus-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTMXG7HVT6S83BKV6D5","tsKey":"us-new-york-cayuga-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Cayuga","slug":"us-new-york-cayuga-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTMX1QXP49MZ3GPEXGE","tsKey":"us-new-york-chautauqua-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Chautauqua","slug":"us-new-york-chautauqua-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTQ20FHJQSAPDZRFDN2","tsKey":"us-new-york-chemung-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Chemung","slug":"us-new-york-chemung-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTPYC4YVEPKYJYHV967","tsKey":"us-new-york-chenango-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Chenango","slug":"us-new-york-chenango-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTMXBZXHPHFHKEJHTSP","tsKey":"us-new-york-clinton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Clinton","slug":"us-new-york-clinton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTK58N83XKP5ABZFT5E","tsKey":"us-new-york-columbia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Columbia","slug":"us-new-york-columbia-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTQ4GV4EATNYV5NX0A8","tsKey":"us-new-york-cortland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Cortland","slug":"us-new-york-cortland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTQ20XM6EABJHE6BW7V","tsKey":"us-new-york-delaware-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Delaware","slug":"us-new-york-delaware-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTMB93RRW7EYRETMY9G","tsKey":"us-new-york-dutchess-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Dutchess","slug":"us-new-york-dutchess-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTQMVYAN60W19TM29QH","tsKey":"us-new-york-erie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Erie","slug":"us-new-york-erie-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTPCF6GGHB4M1FDN4MN","tsKey":"us-new-york-essex-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Essex","slug":"us-new-york-essex-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTNSE3S4RSP4Q3R74ZK","tsKey":"us-new-york-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Franklin","slug":"us-new-york-franklin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTNA5SMMMJVVJ2E90M9","tsKey":"us-new-york-fulton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Fulton","slug":"us-new-york-fulton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTMCMASSP055XZY6BPD","tsKey":"us-new-york-genesee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Genesee","slug":"us-new-york-genesee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTNCS765ECSE92J7N4B","tsKey":"us-new-york-greene-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Greene","slug":"us-new-york-greene-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTN4X0HRRJRWPDSTNXT","tsKey":"us-new-york-hamilton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Hamilton","slug":"us-new-york-hamilton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTMZYV1P19JH77XVR5V","tsKey":"us-new-york-herkimer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Herkimer","slug":"us-new-york-herkimer-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTNJPH6H0KSFQ0JNJYD","tsKey":"us-new-york-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Jefferson","slug":"us-new-york-jefferson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTQW8F7BJ3YZHFWZV9S","tsKey":"us-new-york-kings-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Kings","slug":"us-new-york-kings-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTPVC3TMCNZNXQX5ZPB","tsKey":"us-new-york-lewis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Lewis","slug":"us-new-york-lewis-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTNXTB29VZW3V8E025N","tsKey":"us-new-york-livingston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Livingston","slug":"us-new-york-livingston-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTQ5HY7Y85T4SRFR358","tsKey":"us-new-york-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Madison","slug":"us-new-york-madison-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTNBR3Q7JFHEC8R96PY","tsKey":"us-new-york-monroe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Monroe","slug":"us-new-york-monroe-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTMJSYTR7PW4ZCSZQ8S","tsKey":"us-new-york-montgomery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Montgomery","slug":"us-new-york-montgomery-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTNR5PQXWNADG3H8W64","tsKey":"us-new-york-nassau-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Nassau","slug":"us-new-york-nassau-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTQAVJ2A5N9EEGNDG2J","tsKey":"us-new-york-new-york-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"New York","slug":"us-new-york-new-york-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTNZYFVBCR6J3E77GF1","tsKey":"us-new-york-niagara-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Niagara","slug":"us-new-york-niagara-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTP143ZY1M10A8TTYXM","tsKey":"us-new-york-oneida-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Oneida","slug":"us-new-york-oneida-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTQEVJMWNK1NJPQ53Q8","tsKey":"us-new-york-onondaga-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Onondaga","slug":"us-new-york-onondaga-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTM17QW1603KMAZ27XS","tsKey":"us-new-york-ontario-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Ontario","slug":"us-new-york-ontario-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTNZQBEX6654NFVW67B","tsKey":"us-new-york-orange-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Orange","slug":"us-new-york-orange-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTN6CK455AVKRF7A2Q7","tsKey":"us-new-york-orleans-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Orleans","slug":"us-new-york-orleans-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTN2NRYMZSR377YNHYS","tsKey":"us-new-york-oswego-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Oswego","slug":"us-new-york-oswego-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTPJ5SWFSY696YHS1YC","tsKey":"us-new-york-otsego-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Otsego","slug":"us-new-york-otsego-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTQSATT6JKVN1Y0D4W6","tsKey":"us-new-york-putnam-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Putnam","slug":"us-new-york-putnam-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTN5EK731V87N3AA1J8","tsKey":"us-new-york-queens-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Queens","slug":"us-new-york-queens-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTMKR9FZFRGAAJ4GAXQ","tsKey":"us-new-york-rensselaer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Rensselaer","slug":"us-new-york-rensselaer-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTQFSSXJ074CFFG6WE5","tsKey":"us-new-york-richmond-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Richmond","slug":"us-new-york-richmond-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTN4SRXST97GQVPTP5G","tsKey":"us-new-york-rockland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Rockland","slug":"us-new-york-rockland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTP1SVH7WX67M31GGB6","tsKey":"us-new-york-saratoga-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Saratoga","slug":"us-new-york-saratoga-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTPV40SDNBP83R77M8E","tsKey":"us-new-york-schenectady-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Schenectady","slug":"us-new-york-schenectady-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTMRJYX42FTDJB81TKJ","tsKey":"us-new-york-schoharie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Schoharie","slug":"us-new-york-schoharie-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTQK6CSGEQMCRHTTE4P","tsKey":"us-new-york-schuyler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Schuyler","slug":"us-new-york-schuyler-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTPDT9CMYS8FC3HKC31","tsKey":"us-new-york-seneca-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Seneca","slug":"us-new-york-seneca-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTPPNVWZKA259RGPEP3","tsKey":"us-new-york-steuben-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Steuben","slug":"us-new-york-steuben-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTPNRQ917053N9PBJEY","tsKey":"us-new-york-st-lawrence-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"St. Lawrence","slug":"us-new-york-st-lawrence-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTPK5W9SQQEH9AV4BEN","tsKey":"us-new-york-suffolk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Suffolk","slug":"us-new-york-suffolk-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTQNRRGMDM4TSX3S1XA","tsKey":"us-new-york-sullivan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Sullivan","slug":"us-new-york-sullivan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTPBGAY1SQBB77B5A91","tsKey":"us-new-york-tioga-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Tioga","slug":"us-new-york-tioga-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTM8KQ6Q0XHPGA8RHQK","tsKey":"us-new-york-tompkins-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Tompkins","slug":"us-new-york-tompkins-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTQM6QAT9VMBPEV6G38","tsKey":"us-new-york-ulster-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Ulster","slug":"us-new-york-ulster-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTP5X654NEJ42AMQCWS","tsKey":"us-new-york-warren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Warren","slug":"us-new-york-warren-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTQJWN8EQE4X9AXRPDF","tsKey":"us-new-york-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Washington","slug":"us-new-york-washington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTPYK7N7T1CCDP5P5K5","tsKey":"us-new-york-wayne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Wayne","slug":"us-new-york-wayne-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTQT4SZZ4H63A2AW5D5","tsKey":"us-new-york-westchester-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Westchester","slug":"us-new-york-westchester-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTM05F649RTGH0T6MC4","tsKey":"us-new-york-wyoming-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Wyoming","slug":"us-new-york-wyoming-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJXTM4YH8M3VVF6GQ4KJ0","tsKey":"us-new-york-yates-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","name":"Yates","slug":"us-new-york-yates-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","tsKey":"us-north-carolina","tsNs":"gov-dist","abbrev":"NC","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"North Carolina","slug":"us-north-carolina","iso":"US-NC","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWWGG4KBXHRZ20W0GGK","tsKey":"us-north-carolina-alamance-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Alamance","slug":"us-north-carolina-alamance-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWYTR9CFJ5RJD6V34XA","tsKey":"us-north-carolina-alexander-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Alexander","slug":"us-north-carolina-alexander-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWW9EC1AHBG0W65SDK7","tsKey":"us-north-carolina-alleghany-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Alleghany","slug":"us-north-carolina-alleghany-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWY554HX33T79JTTT8Z","tsKey":"us-north-carolina-anson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Anson","slug":"us-north-carolina-anson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWZD2GAR59K5DW78E87","tsKey":"us-north-carolina-ashe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Ashe","slug":"us-north-carolina-ashe-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWXRHWRR4NMEXH3PTF7","tsKey":"us-north-carolina-avery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Avery","slug":"us-north-carolina-avery-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWX82GTQSK81FFSPXXW","tsKey":"us-north-carolina-beaufort-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Beaufort","slug":"us-north-carolina-beaufort-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWZBPAFXJSZNQ1YMSM8","tsKey":"us-north-carolina-bertie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Bertie","slug":"us-north-carolina-bertie-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWWNBKRR42MNTDKCJ2H","tsKey":"us-north-carolina-bladen-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Bladen","slug":"us-north-carolina-bladen-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWXJD4B5D9KP6C6WX03","tsKey":"us-north-carolina-brunswick-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Brunswick","slug":"us-north-carolina-brunswick-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWWTK6R12RP8Z1XYQQR","tsKey":"us-north-carolina-buncombe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Buncombe","slug":"us-north-carolina-buncombe-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWZVKXEWSKFVVWQ3QVS","tsKey":"us-north-carolina-burke-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Burke","slug":"us-north-carolina-burke-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWXWK97QRRD3P1Z1386","tsKey":"us-north-carolina-cabarrus-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Cabarrus","slug":"us-north-carolina-cabarrus-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWWNKYSPNY2MG989EKM","tsKey":"us-north-carolina-caldwell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Caldwell","slug":"us-north-carolina-caldwell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWZHRW8J3AMYSB4H7V7","tsKey":"us-north-carolina-camden-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Camden","slug":"us-north-carolina-camden-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWZTZRH5MW4P026JF2Z","tsKey":"us-north-carolina-carteret-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Carteret","slug":"us-north-carolina-carteret-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWZ9FSMDBE5EVK2404H","tsKey":"us-north-carolina-caswell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Caswell","slug":"us-north-carolina-caswell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWX436ZRQBG6R82YX2T","tsKey":"us-north-carolina-catawba-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Catawba","slug":"us-north-carolina-catawba-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWX4RGC53TH13C590D4","tsKey":"us-north-carolina-chatham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Chatham","slug":"us-north-carolina-chatham-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWX6TCH83CDH2KRNK06","tsKey":"us-north-carolina-cherokee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Cherokee","slug":"us-north-carolina-cherokee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWXG6YKY7ND6QAKDQQ3","tsKey":"us-north-carolina-chowan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Chowan","slug":"us-north-carolina-chowan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYX0YNHB4PGDDYYXA4SW","tsKey":"us-north-carolina-clay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Clay","slug":"us-north-carolina-clay-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWZC2R8DMY885ZQW1W0","tsKey":"us-north-carolina-cleveland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Cleveland","slug":"us-north-carolina-cleveland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWXVDVR7S7W2F5R2XES","tsKey":"us-north-carolina-columbus-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Columbus","slug":"us-north-carolina-columbus-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYX0Z1SA7ZTK4RRVJFAE","tsKey":"us-north-carolina-craven-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Craven","slug":"us-north-carolina-craven-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYX0614PSXCEXAZ750KE","tsKey":"us-north-carolina-cumberland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Cumberland","slug":"us-north-carolina-cumberland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWZTD7NGRW2D7WF9N7X","tsKey":"us-north-carolina-currituck-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Currituck","slug":"us-north-carolina-currituck-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWW3820KT9FGY712FPR","tsKey":"us-north-carolina-dare-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Dare","slug":"us-north-carolina-dare-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWW0ZRP9Z9QNF78X0W1","tsKey":"us-north-carolina-davidson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Davidson","slug":"us-north-carolina-davidson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWX1HCTP526AX5MKD19","tsKey":"us-north-carolina-davie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Davie","slug":"us-north-carolina-davie-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWXGD137YR230QP1FCY","tsKey":"us-north-carolina-duplin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Duplin","slug":"us-north-carolina-duplin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWZW90EZZZ1YVK8MCMG","tsKey":"us-north-carolina-durham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Durham","slug":"us-north-carolina-durham-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWXV99HZJRHB9RFYD7H","tsKey":"us-north-carolina-edgecombe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Edgecombe","slug":"us-north-carolina-edgecombe-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWWJBYBG773454FPMGF","tsKey":"us-north-carolina-forsyth-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Forsyth","slug":"us-north-carolina-forsyth-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWXCNEKBY62ESFJ7PWW","tsKey":"us-north-carolina-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Franklin","slug":"us-north-carolina-franklin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWX106N0RKXXETCMV0G","tsKey":"us-north-carolina-gaston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Gaston","slug":"us-north-carolina-gaston-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWZ84E0VMZEYT1FMH05","tsKey":"us-north-carolina-gates-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Gates","slug":"us-north-carolina-gates-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWXRGJVTFNQ288M99NY","tsKey":"us-north-carolina-graham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Graham","slug":"us-north-carolina-graham-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWX3TBQCR7E4PDKRAXJ","tsKey":"us-north-carolina-granville-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Granville","slug":"us-north-carolina-granville-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWZJHA5RWHW8NYHTCXC","tsKey":"us-north-carolina-greene-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Greene","slug":"us-north-carolina-greene-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWW6M9S7WKJ115G39SA","tsKey":"us-north-carolina-guilford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Guilford","slug":"us-north-carolina-guilford-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWXES0EKXAYVX4VG4Z8","tsKey":"us-north-carolina-halifax-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Halifax","slug":"us-north-carolina-halifax-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWZ48DM0FYE3MHNWHM5","tsKey":"us-north-carolina-harnett-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Harnett","slug":"us-north-carolina-harnett-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWYRJ86FXQTNSDYSXA7","tsKey":"us-north-carolina-haywood-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Haywood","slug":"us-north-carolina-haywood-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWZCD4PKF3349CZXFJQ","tsKey":"us-north-carolina-henderson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Henderson","slug":"us-north-carolina-henderson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWW4Q0NEKJTTVZCP1AZ","tsKey":"us-north-carolina-hertford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Hertford","slug":"us-north-carolina-hertford-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYX0HV2A946FGKFNPEDW","tsKey":"us-north-carolina-hoke-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Hoke","slug":"us-north-carolina-hoke-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWY17W1S8EC1HRRG110","tsKey":"us-north-carolina-hyde-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Hyde","slug":"us-north-carolina-hyde-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWZ18CQJ8QQS4WA4S1J","tsKey":"us-north-carolina-iredell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Iredell","slug":"us-north-carolina-iredell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWYEHJWEED9F4MEZ95F","tsKey":"us-north-carolina-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Jackson","slug":"us-north-carolina-jackson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYX0GQQKP9VQ3M6PYZGH","tsKey":"us-north-carolina-johnston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Johnston","slug":"us-north-carolina-johnston-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWWTKNH3VPEEZV9FPF2","tsKey":"us-north-carolina-jones-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Jones","slug":"us-north-carolina-jones-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWYNSYNBX85550Y7JYE","tsKey":"us-north-carolina-lee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Lee","slug":"us-north-carolina-lee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYX04TNJS2N5JRHJBJ35","tsKey":"us-north-carolina-lenoir-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Lenoir","slug":"us-north-carolina-lenoir-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWZ0039N42WV1MAQ21V","tsKey":"us-north-carolina-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Lincoln","slug":"us-north-carolina-lincoln-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYX0DPH6WTXCA9Z02FTX","tsKey":"us-north-carolina-macon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Macon","slug":"us-north-carolina-macon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWYW8ES0T6GFFCK3K1H","tsKey":"us-north-carolina-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Madison","slug":"us-north-carolina-madison-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWW4E0JES1NFM5A9CGG","tsKey":"us-north-carolina-martin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Martin","slug":"us-north-carolina-martin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWY8N1CW807Q93RVCV9","tsKey":"us-north-carolina-mcdowell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"McDowell","slug":"us-north-carolina-mcdowell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYX00DZ6HG3QW6GWKYN6","tsKey":"us-north-carolina-mecklenburg-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Mecklenburg","slug":"us-north-carolina-mecklenburg-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWYZ3SX98BHHMG3Z170","tsKey":"us-north-carolina-mitchell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Mitchell","slug":"us-north-carolina-mitchell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWZ8Q8DZTR0CNYCTKPG","tsKey":"us-north-carolina-montgomery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Montgomery","slug":"us-north-carolina-montgomery-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYX06WPNRA0W1YKQBJBY","tsKey":"us-north-carolina-moore-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Moore","slug":"us-north-carolina-moore-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWWVJZE0WQ5QEX5Q5GK","tsKey":"us-north-carolina-nash-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Nash","slug":"us-north-carolina-nash-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWY3VEZBCAWKMJFE7RN","tsKey":"us-north-carolina-new-hanover-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"New Hanover","slug":"us-north-carolina-new-hanover-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYX05QHQMNV6MBHZ4MG5","tsKey":"us-north-carolina-northampton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Northampton","slug":"us-north-carolina-northampton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWZZVPY70G4P4AT5BN5","tsKey":"us-north-carolina-onslow-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Onslow","slug":"us-north-carolina-onslow-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWYRG6T96AJP4QCMABX","tsKey":"us-north-carolina-orange-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Orange","slug":"us-north-carolina-orange-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYX0T6SQZT8K0D6XEEE8","tsKey":"us-north-carolina-pamlico-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Pamlico","slug":"us-north-carolina-pamlico-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWYK7533KK5BQB235Y8","tsKey":"us-north-carolina-pasquotank-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Pasquotank","slug":"us-north-carolina-pasquotank-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWWPDXJ77414ZRET2KA","tsKey":"us-north-carolina-pender-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Pender","slug":"us-north-carolina-pender-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWYK9H5GTXQPNBME6MY","tsKey":"us-north-carolina-perquimans-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Perquimans","slug":"us-north-carolina-perquimans-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWZD0RRGEJESDSB4CE9","tsKey":"us-north-carolina-person-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Person","slug":"us-north-carolina-person-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWY5RGFQESFXJQDE04J","tsKey":"us-north-carolina-pitt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Pitt","slug":"us-north-carolina-pitt-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYX0YV1E9HHRA9RA4EP1","tsKey":"us-north-carolina-polk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Polk","slug":"us-north-carolina-polk-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWWQEF68YEZG710JJZ8","tsKey":"us-north-carolina-randolph-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Randolph","slug":"us-north-carolina-randolph-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWYWFHQ9FXJZ4MW3PHZ","tsKey":"us-north-carolina-richmond-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Richmond","slug":"us-north-carolina-richmond-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYX0962J6PVAWPQ99JQ2","tsKey":"us-north-carolina-robeson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Robeson","slug":"us-north-carolina-robeson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWZDAZWJ7HK4N6V6TH1","tsKey":"us-north-carolina-rockingham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Rockingham","slug":"us-north-carolina-rockingham-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWYKC6BEY2HXG4QRFGD","tsKey":"us-north-carolina-rowan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Rowan","slug":"us-north-carolina-rowan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYX0PY3D8242EQTX19CP","tsKey":"us-north-carolina-rutherford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Rutherford","slug":"us-north-carolina-rutherford-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWYP2S0Q3SB4M1Q9CMK","tsKey":"us-north-carolina-sampson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Sampson","slug":"us-north-carolina-sampson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWWHZX23DC0EMDN19YK","tsKey":"us-north-carolina-scotland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Scotland","slug":"us-north-carolina-scotland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWWAAGHPBYQSE26F8GF","tsKey":"us-north-carolina-stanly-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Stanly","slug":"us-north-carolina-stanly-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWYA7AVVNBVV5YXACBK","tsKey":"us-north-carolina-stokes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Stokes","slug":"us-north-carolina-stokes-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYX0HFMQT57GMWJKQKMM","tsKey":"us-north-carolina-surry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Surry","slug":"us-north-carolina-surry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWZYZYV8P4K0Z29RJQ4","tsKey":"us-north-carolina-swain-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Swain","slug":"us-north-carolina-swain-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWYZEDEA8EBCE1H2NHW","tsKey":"us-north-carolina-transylvania-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Transylvania","slug":"us-north-carolina-transylvania-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYX0Q8JH2WMBKE6ZCA54","tsKey":"us-north-carolina-tyrrell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Tyrrell","slug":"us-north-carolina-tyrrell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWZCABZ5YBEMQ6Y6M8P","tsKey":"us-north-carolina-union-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Union","slug":"us-north-carolina-union-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWWRW37J7M45VZN3P24","tsKey":"us-north-carolina-vance-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Vance","slug":"us-north-carolina-vance-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWYBYSS4NFZE6C8R5NK","tsKey":"us-north-carolina-wake-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Wake","slug":"us-north-carolina-wake-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYX0C8G8NWPAV928A7Y6","tsKey":"us-north-carolina-warren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Warren","slug":"us-north-carolina-warren-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWYVW8ZBFMT7MEP3EP0","tsKey":"us-north-carolina-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Washington","slug":"us-north-carolina-washington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYX0ER50MJFMY973Y8DH","tsKey":"us-north-carolina-watauga-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Watauga","slug":"us-north-carolina-watauga-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWW5YC2V2FARFTXH7HV","tsKey":"us-north-carolina-wayne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Wayne","slug":"us-north-carolina-wayne-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWXXZD5N0NVAXF0MPKT","tsKey":"us-north-carolina-wilkes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Wilkes","slug":"us-north-carolina-wilkes-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWXQPMKSKNF4MEE7KBW","tsKey":"us-north-carolina-wilson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Wilson","slug":"us-north-carolina-wilson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWWCNGW8WQSA9XXVKXV","tsKey":"us-north-carolina-yadkin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Yadkin","slug":"us-north-carolina-yadkin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJYWXWBN2G06Y0GRWCB24","tsKey":"us-north-carolina-yancey-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","name":"Yancey","slug":"us-north-carolina-yancey-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","tsKey":"us-north-dakota","tsNs":"gov-dist","abbrev":"ND","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"North Dakota","slug":"us-north-dakota","iso":"US-ND","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05NZ2KDN94YXV5RRFA7","tsKey":"us-north-dakota-adams-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Adams","slug":"us-north-dakota-adams-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05M2P5H417KEY55GQ90","tsKey":"us-north-dakota-barnes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Barnes","slug":"us-north-dakota-barnes-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05KY6Z8C6AM14K9KEQS","tsKey":"us-north-dakota-benson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Benson","slug":"us-north-dakota-benson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05JVHVTSJSWKZWSKK3E","tsKey":"us-north-dakota-billings-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Billings","slug":"us-north-dakota-billings-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05KF00HTS6FY654FQ5S","tsKey":"us-north-dakota-bottineau-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Bottineau","slug":"us-north-dakota-bottineau-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05NFY0FX9J6HQCFHPJ6","tsKey":"us-north-dakota-bowman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Bowman","slug":"us-north-dakota-bowman-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05MCZGVD0RWKAQSFBQ8","tsKey":"us-north-dakota-burke-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Burke","slug":"us-north-dakota-burke-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05NV4EZYCSMTDANECR7","tsKey":"us-north-dakota-burleigh-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Burleigh","slug":"us-north-dakota-burleigh-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05K9JF3FEKAQDDBRRKW","tsKey":"us-north-dakota-cass-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Cass","slug":"us-north-dakota-cass-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05JE05TVDAGFWY45XGA","tsKey":"us-north-dakota-cavalier-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Cavalier","slug":"us-north-dakota-cavalier-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05N7RPTGW84758RJNJN","tsKey":"us-north-dakota-dickey-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Dickey","slug":"us-north-dakota-dickey-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05NC65PFV9J2NX18H5M","tsKey":"us-north-dakota-divide-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Divide","slug":"us-north-dakota-divide-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05MZP5R08P1HRE08D0C","tsKey":"us-north-dakota-dunn-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Dunn","slug":"us-north-dakota-dunn-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05K3YTA4T2QCYRFC1ZB","tsKey":"us-north-dakota-eddy-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Eddy","slug":"us-north-dakota-eddy-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05KP8XTG6YZWHV23SB9","tsKey":"us-north-dakota-emmons-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Emmons","slug":"us-north-dakota-emmons-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05J1RWW2R08YNPXET9C","tsKey":"us-north-dakota-foster-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Foster","slug":"us-north-dakota-foster-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05NXWVY1ASAJSF6N57F","tsKey":"us-north-dakota-golden-valley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Golden Valley","slug":"us-north-dakota-golden-valley-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05J0F8QAS1NDKN91PQZ","tsKey":"us-north-dakota-grand-forks-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Grand Forks","slug":"us-north-dakota-grand-forks-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05KKA74GHY0WW9C91CQ","tsKey":"us-north-dakota-grant-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Grant","slug":"us-north-dakota-grant-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05KT8R4P4T8M6WF1V1Z","tsKey":"us-north-dakota-griggs-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Griggs","slug":"us-north-dakota-griggs-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05M2MM8919JSEQW479N","tsKey":"us-north-dakota-hettinger-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Hettinger","slug":"us-north-dakota-hettinger-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05KTYZ9T7A9P34X060V","tsKey":"us-north-dakota-kidder-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Kidder","slug":"us-north-dakota-kidder-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05J96ZTFD9JTTBTMTQR","tsKey":"us-north-dakota-lamoure-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"LaMoure","slug":"us-north-dakota-lamoure-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05KE7GCHGG2D8PFVDWN","tsKey":"us-north-dakota-logan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Logan","slug":"us-north-dakota-logan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05NWT1CXPHRVTG0EEKZ","tsKey":"us-north-dakota-mchenry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"McHenry","slug":"us-north-dakota-mchenry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05NRDBDRJ8TCZHCVZJP","tsKey":"us-north-dakota-mcintosh-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"McIntosh","slug":"us-north-dakota-mcintosh-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05KY298ZN5BNQDMM8C0","tsKey":"us-north-dakota-mckenzie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"McKenzie","slug":"us-north-dakota-mckenzie-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05MV1ZZPTV0DD5VMFYG","tsKey":"us-north-dakota-mclean-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"McLean","slug":"us-north-dakota-mclean-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05N3GW9D1A6YH2WTB28","tsKey":"us-north-dakota-mercer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Mercer","slug":"us-north-dakota-mercer-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05KK1MWTZPCF9XAGQX0","tsKey":"us-north-dakota-morton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Morton","slug":"us-north-dakota-morton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05JXXT8D8YHX9NAG0PP","tsKey":"us-north-dakota-mountrail-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Mountrail","slug":"us-north-dakota-mountrail-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05KETJFN51BG63H6M38","tsKey":"us-north-dakota-nelson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Nelson","slug":"us-north-dakota-nelson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05M4J4KPH1G4RR3DE85","tsKey":"us-north-dakota-oliver-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Oliver","slug":"us-north-dakota-oliver-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05MFBY13W5AET46JR4J","tsKey":"us-north-dakota-pembina-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Pembina","slug":"us-north-dakota-pembina-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05MDJSB7MFWJ5GFGB71","tsKey":"us-north-dakota-pierce-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Pierce","slug":"us-north-dakota-pierce-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05M9HN4MZ80KNKVDMTE","tsKey":"us-north-dakota-ramsey-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Ramsey","slug":"us-north-dakota-ramsey-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05J02AF5K8PW3C6PBXV","tsKey":"us-north-dakota-ransom-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Ransom","slug":"us-north-dakota-ransom-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05MNKSQGXW73N06TTJD","tsKey":"us-north-dakota-renville-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Renville","slug":"us-north-dakota-renville-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05NT4R3FACBS0E2TY31","tsKey":"us-north-dakota-richland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Richland","slug":"us-north-dakota-richland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05JECMRMH5YQ579PQ71","tsKey":"us-north-dakota-rolette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Rolette","slug":"us-north-dakota-rolette-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05MD9BSH82G56M2VT65","tsKey":"us-north-dakota-sargent-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Sargent","slug":"us-north-dakota-sargent-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05NN6QAPJG2QTAEK1AH","tsKey":"us-north-dakota-sheridan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Sheridan","slug":"us-north-dakota-sheridan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05NF64PVPHERKHEXJ4Y","tsKey":"us-north-dakota-sioux-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Sioux","slug":"us-north-dakota-sioux-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05NFR0DJGSP2SAG4W75","tsKey":"us-north-dakota-slope-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Slope","slug":"us-north-dakota-slope-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05MEXGXWMHTH0J6G4GC","tsKey":"us-north-dakota-stark-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Stark","slug":"us-north-dakota-stark-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05KRQRAQQXATKXYC4XE","tsKey":"us-north-dakota-steele-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Steele","slug":"us-north-dakota-steele-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05MYW20JAYC1S6MB6BC","tsKey":"us-north-dakota-stutsman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Stutsman","slug":"us-north-dakota-stutsman-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05NV57Z34HZ21KAMYW9","tsKey":"us-north-dakota-towner-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Towner","slug":"us-north-dakota-towner-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05M454SG0D3JRNB7Q4T","tsKey":"us-north-dakota-traill-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Traill","slug":"us-north-dakota-traill-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05NTBN9M70BBVW9QJGW","tsKey":"us-north-dakota-walsh-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Walsh","slug":"us-north-dakota-walsh-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05MA0H0RMMFKH29BTV8","tsKey":"us-north-dakota-ward-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Ward","slug":"us-north-dakota-ward-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05KN85J5163HG2FRD5S","tsKey":"us-north-dakota-wells-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Wells","slug":"us-north-dakota-wells-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK05NJVNB02121FQNQTYV","tsKey":"us-north-dakota-williams-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","name":"Williams","slug":"us-north-dakota-williams-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","tsKey":"us-ohio","tsNs":"gov-dist","abbrev":"OH","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Ohio","slug":"us-ohio","iso":"US-OH","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14ZH045GFMXHPWE1NHJ","tsKey":"us-ohio-adams-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Adams","slug":"us-ohio-adams-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14YR8PH8DWVW08HJ2HK","tsKey":"us-ohio-allen-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Allen","slug":"us-ohio-allen-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14ZNXTDM0PTK9Y302RZ","tsKey":"us-ohio-ashland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Ashland","slug":"us-ohio-ashland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK152GPEGWBK059WD9TWA","tsKey":"us-ohio-ashtabula-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Ashtabula","slug":"us-ohio-ashtabula-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK150QP0V510FCCF0GQR6","tsKey":"us-ohio-athens-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Athens","slug":"us-ohio-athens-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14ZC3MMPKKXCR05TYJP","tsKey":"us-ohio-auglaize-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Auglaize","slug":"us-ohio-auglaize-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14Z3674EV8EF400GQW4","tsKey":"us-ohio-belmont-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Belmont","slug":"us-ohio-belmont-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14YNS1DHV5SVXYG1591","tsKey":"us-ohio-brown-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Brown","slug":"us-ohio-brown-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14Z0RJMDGT5Q15ZHASX","tsKey":"us-ohio-butler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Butler","slug":"us-ohio-butler-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK1506ANKWC9HDD46KP99","tsKey":"us-ohio-carroll-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Carroll","slug":"us-ohio-carroll-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK151T6PTYM3G9ZW87BZ8","tsKey":"us-ohio-champaign-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Champaign","slug":"us-ohio-champaign-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK150D1Q6JYHWM7H9BEYT","tsKey":"us-ohio-clark-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Clark","slug":"us-ohio-clark-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK1506K2YQHZJZ64PJA7Q","tsKey":"us-ohio-clermont-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Clermont","slug":"us-ohio-clermont-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14YM8RRWVTBDA5KA5VF","tsKey":"us-ohio-clinton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Clinton","slug":"us-ohio-clinton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK15051RYHC4FHJ1F6VSJ","tsKey":"us-ohio-columbiana-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Columbiana","slug":"us-ohio-columbiana-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK151APPM06YZT28EYZQ8","tsKey":"us-ohio-coshocton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Coshocton","slug":"us-ohio-coshocton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK15038W8ZBHN587V97QV","tsKey":"us-ohio-crawford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Crawford","slug":"us-ohio-crawford-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK152XDM8AG7ZRF5RAD6B","tsKey":"us-ohio-cuyahoga-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Cuyahoga","slug":"us-ohio-cuyahoga-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK150HYB559QNY96828E8","tsKey":"us-ohio-darke-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Darke","slug":"us-ohio-darke-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14YVMEHSRCEGQ5KHV8Y","tsKey":"us-ohio-defiance-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Defiance","slug":"us-ohio-defiance-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK150NGN3R9J31E6GJSR6","tsKey":"us-ohio-delaware-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Delaware","slug":"us-ohio-delaware-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK150M4BYPHDKDDTDZMJK","tsKey":"us-ohio-erie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Erie","slug":"us-ohio-erie-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK15117HJQG6YAG87AGWH","tsKey":"us-ohio-fairfield-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Fairfield","slug":"us-ohio-fairfield-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14YXPKYKRA8KNFWHMQR","tsKey":"us-ohio-fayette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Fayette","slug":"us-ohio-fayette-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK150N36HW12FJDC5NPYE","tsKey":"us-ohio-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Franklin","slug":"us-ohio-franklin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK152NCXDTYQVP97W5013","tsKey":"us-ohio-fulton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Fulton","slug":"us-ohio-fulton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK1520AD6KV6T0VQ95QPZ","tsKey":"us-ohio-gallia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Gallia","slug":"us-ohio-gallia-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14XKJFBYKA7AZECBK7K","tsKey":"us-ohio-geauga-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Geauga","slug":"us-ohio-geauga-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK152VGD0YKJCFNNG9HY1","tsKey":"us-ohio-greene-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Greene","slug":"us-ohio-greene-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK151EXR1MGTTQCWE35ZQ","tsKey":"us-ohio-guernsey-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Guernsey","slug":"us-ohio-guernsey-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK150VJEW3F577J7MM59G","tsKey":"us-ohio-hamilton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Hamilton","slug":"us-ohio-hamilton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14X0NPQXQ852D4CF522","tsKey":"us-ohio-hancock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Hancock","slug":"us-ohio-hancock-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14XSXRZX1GA0VXBF6W0","tsKey":"us-ohio-hardin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Hardin","slug":"us-ohio-hardin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK152E4CHFYNCR0E5RBRF","tsKey":"us-ohio-harrison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Harrison","slug":"us-ohio-harrison-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK151WP8BFAETP5JT512X","tsKey":"us-ohio-henry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Henry","slug":"us-ohio-henry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK150743Y7318RM9NVZFB","tsKey":"us-ohio-highland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Highland","slug":"us-ohio-highland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK152Q3PTMKTST7PY2QMY","tsKey":"us-ohio-hocking-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Hocking","slug":"us-ohio-hocking-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14X8S8YMAMGC4ATF71H","tsKey":"us-ohio-holmes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Holmes","slug":"us-ohio-holmes-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK150B4DSKQNAX8C8HH7N","tsKey":"us-ohio-huron-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Huron","slug":"us-ohio-huron-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK15293G2JH8HA0N5P7HA","tsKey":"us-ohio-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Jackson","slug":"us-ohio-jackson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK150CAPJ8YJV58QSZWM4","tsKey":"us-ohio-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Jefferson","slug":"us-ohio-jefferson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK1516P99HNBKP561W5PA","tsKey":"us-ohio-knox-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Knox","slug":"us-ohio-knox-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK151RM6FYA08Q3BVCJ2W","tsKey":"us-ohio-lake-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Lake","slug":"us-ohio-lake-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK150QF4Y3EE35BYA6JQV","tsKey":"us-ohio-lawrence-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Lawrence","slug":"us-ohio-lawrence-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14XQ0SEZ0MF0B2SFXBR","tsKey":"us-ohio-licking-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Licking","slug":"us-ohio-licking-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK151D8F5JJRT3DDRRWEX","tsKey":"us-ohio-logan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Logan","slug":"us-ohio-logan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK1503FEJ5BJH2ZTT757E","tsKey":"us-ohio-lorain-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Lorain","slug":"us-ohio-lorain-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK1516VEZWSY5SCQTZBQX","tsKey":"us-ohio-lucas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Lucas","slug":"us-ohio-lucas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14XXW7ZBG1RRP0QRKG3","tsKey":"us-ohio-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Madison","slug":"us-ohio-madison-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK150K5BYZTRWG531C9XK","tsKey":"us-ohio-mahoning-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Mahoning","slug":"us-ohio-mahoning-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK1501TJF1EHXGA5D8Y6A","tsKey":"us-ohio-marion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Marion","slug":"us-ohio-marion-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK151RPY4R3AY27H7FTS7","tsKey":"us-ohio-medina-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Medina","slug":"us-ohio-medina-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14YR3NR91QTT5J660XC","tsKey":"us-ohio-meigs-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Meigs","slug":"us-ohio-meigs-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14YC0H11R99SCCPE8KX","tsKey":"us-ohio-mercer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Mercer","slug":"us-ohio-mercer-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14X27WRR0DRX5QN7307","tsKey":"us-ohio-miami-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Miami","slug":"us-ohio-miami-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK151QG689HHZE76VAE86","tsKey":"us-ohio-monroe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Monroe","slug":"us-ohio-monroe-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK1519V0WM5N4P0Y9JNG4","tsKey":"us-ohio-montgomery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Montgomery","slug":"us-ohio-montgomery-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK151E1TWQY63WBRAPSK7","tsKey":"us-ohio-morgan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Morgan","slug":"us-ohio-morgan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14Y1YWCDAPK5KE5KA6B","tsKey":"us-ohio-morrow-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Morrow","slug":"us-ohio-morrow-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14YHTXQP78PTFMRWV7Y","tsKey":"us-ohio-muskingum-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Muskingum","slug":"us-ohio-muskingum-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14XGQBV9S9B3M3VE9WB","tsKey":"us-ohio-noble-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Noble","slug":"us-ohio-noble-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK1523R7W9HPSXTN9DEHC","tsKey":"us-ohio-ottawa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Ottawa","slug":"us-ohio-ottawa-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14YZG5GV1WPPE1MZ43T","tsKey":"us-ohio-paulding-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Paulding","slug":"us-ohio-paulding-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK151NK71Y9QG50M4WX7E","tsKey":"us-ohio-perry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Perry","slug":"us-ohio-perry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14YXMJQW3RDK1H3WJ5Q","tsKey":"us-ohio-pickaway-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Pickaway","slug":"us-ohio-pickaway-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14XQD1Z9S2G1R0J84WX","tsKey":"us-ohio-pike-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Pike","slug":"us-ohio-pike-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14YST2GS2CSHDDM7VSG","tsKey":"us-ohio-portage-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Portage","slug":"us-ohio-portage-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14ZY9EE6S2ZSDX22CJG","tsKey":"us-ohio-preble-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Preble","slug":"us-ohio-preble-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK151E9FMGRXPVAMJPQW9","tsKey":"us-ohio-putnam-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Putnam","slug":"us-ohio-putnam-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14Z7ZQ6YN8R18SGFQ58","tsKey":"us-ohio-richland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Richland","slug":"us-ohio-richland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14Z3VGYB6CKHW9FF3FR","tsKey":"us-ohio-ross-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Ross","slug":"us-ohio-ross-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14X1FRWYC64X5MZ64EH","tsKey":"us-ohio-sandusky-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Sandusky","slug":"us-ohio-sandusky-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK152RSFWA3GSAHAMNR9T","tsKey":"us-ohio-scioto-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Scioto","slug":"us-ohio-scioto-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14XJHTE9T8KB9XR0P77","tsKey":"us-ohio-seneca-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Seneca","slug":"us-ohio-seneca-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14ZC0NRFP3HDM12323F","tsKey":"us-ohio-shelby-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Shelby","slug":"us-ohio-shelby-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14Z6P7V92FSP9WXS7FV","tsKey":"us-ohio-stark-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Stark","slug":"us-ohio-stark-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK151CXPK24WM3ATRHJB8","tsKey":"us-ohio-summit-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Summit","slug":"us-ohio-summit-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK152SG7QEYRCTKPJHN9D","tsKey":"us-ohio-trumbull-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Trumbull","slug":"us-ohio-trumbull-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14ZY89XCWEAWPB0EK1F","tsKey":"us-ohio-tuscarawas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Tuscarawas","slug":"us-ohio-tuscarawas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14X8YE8BHPYQ9AM5EM4","tsKey":"us-ohio-union-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Union","slug":"us-ohio-union-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14ZJV3K0ADJP6VVM4YC","tsKey":"us-ohio-van-wert-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Van Wert","slug":"us-ohio-van-wert-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK152A73CZTV8G25WQ863","tsKey":"us-ohio-vinton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Vinton","slug":"us-ohio-vinton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK151D5350355E7S1HCPM","tsKey":"us-ohio-warren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Warren","slug":"us-ohio-warren-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14ZP3F2C1RDMGW83Q55","tsKey":"us-ohio-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Washington","slug":"us-ohio-washington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14YAY1WF7NT1CTFT3S1","tsKey":"us-ohio-wayne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Wayne","slug":"us-ohio-wayne-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14Z996R5VDDZ8SMEV54","tsKey":"us-ohio-williams-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Williams","slug":"us-ohio-williams-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14YQC9CV3DN3SYN7WPF","tsKey":"us-ohio-wood-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Wood","slug":"us-ohio-wood-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK14ZHKGBZQ62S4Q3QMNN","tsKey":"us-ohio-wyandot-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","name":"Wyandot","slug":"us-ohio-wyandot-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK1MBAAXAR655YEESJRB1","tsKey":"us-oklahoma","tsNs":"gov-dist","abbrev":"OK","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Oklahoma","slug":"us-oklahoma","iso":"US-OK","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DY7EQAPYARTVNA05M3","tsKey":"us-oklahoma-adair-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Adair","slug":"us-oklahoma-adair-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DTGA2BCJNKRX1V45T3","tsKey":"us-oklahoma-alfalfa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Alfalfa","slug":"us-oklahoma-alfalfa-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DXKHY6HYNA775BFDVV","tsKey":"us-oklahoma-atoka-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Atoka","slug":"us-oklahoma-atoka-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DY5M972KANSEXCTAKQ","tsKey":"us-oklahoma-beaver-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Beaver","slug":"us-oklahoma-beaver-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DS85Z94FH0H7Q14DCW","tsKey":"us-oklahoma-beckham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Beckham","slug":"us-oklahoma-beckham-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DTV4XD15G87YM6KGGC","tsKey":"us-oklahoma-blaine-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Blaine","slug":"us-oklahoma-blaine-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DTAHC2A3ZKY1TRRCP7","tsKey":"us-oklahoma-bryan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Bryan","slug":"us-oklahoma-bryan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DXCG2XG2V49F7M76BP","tsKey":"us-oklahoma-caddo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Caddo","slug":"us-oklahoma-caddo-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DT2TFMAN0JWXRTZ9MA","tsKey":"us-oklahoma-canadian-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Canadian","slug":"us-oklahoma-canadian-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DSEFQQDY8HVP24CXDA","tsKey":"us-oklahoma-carter-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Carter","slug":"us-oklahoma-carter-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DYXPSHPTD69P181AM5","tsKey":"us-oklahoma-cherokee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Cherokee","slug":"us-oklahoma-cherokee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DY0QZE8MEXZ08205MW","tsKey":"us-oklahoma-choctaw-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Choctaw","slug":"us-oklahoma-choctaw-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DVMXZ1DV1WK2R8N6FR","tsKey":"us-oklahoma-cimarron-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Cimarron","slug":"us-oklahoma-cimarron-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DXSQF9ZK31DJWSB2NP","tsKey":"us-oklahoma-cleveland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Cleveland","slug":"us-oklahoma-cleveland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DVJ2QRXQ4RCX0EF6F4","tsKey":"us-oklahoma-coal-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Coal","slug":"us-oklahoma-coal-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DSS24XFEWEA7T7AR0N","tsKey":"us-oklahoma-comanche-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Comanche","slug":"us-oklahoma-comanche-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DYKSFN70R3F5AP05JA","tsKey":"us-oklahoma-cotton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Cotton","slug":"us-oklahoma-cotton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DV24DCDERPGS4NX6B3","tsKey":"us-oklahoma-craig-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Craig","slug":"us-oklahoma-craig-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DWTQQE5NVC8GEBGF5D","tsKey":"us-oklahoma-creek-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Creek","slug":"us-oklahoma-creek-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DVZW9B96TZM3J50JCK","tsKey":"us-oklahoma-custer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Custer","slug":"us-oklahoma-custer-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DYJVRZTC7Y7R5HY668","tsKey":"us-oklahoma-delaware-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Delaware","slug":"us-oklahoma-delaware-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DSAYSH09Z6ZGCJ3SCN","tsKey":"us-oklahoma-dewey-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Dewey","slug":"us-oklahoma-dewey-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DVVVPFF9G5G7G59KF2","tsKey":"us-oklahoma-ellis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Ellis","slug":"us-oklahoma-ellis-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DWZZ81C87KYPNCF87Z","tsKey":"us-oklahoma-garfield-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Garfield","slug":"us-oklahoma-garfield-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DV217FG5QQTKFPF5MH","tsKey":"us-oklahoma-garvin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Garvin","slug":"us-oklahoma-garvin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DYFS6QGYJQ1H1VEGN1","tsKey":"us-oklahoma-grady-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Grady","slug":"us-oklahoma-grady-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DSZRAKCEH1X47KMGX4","tsKey":"us-oklahoma-grant-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Grant","slug":"us-oklahoma-grant-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DVC9GDACZ12AJ7X9X4","tsKey":"us-oklahoma-greer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Greer","slug":"us-oklahoma-greer-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DWJBM3WGRY9S6B945F","tsKey":"us-oklahoma-harmon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Harmon","slug":"us-oklahoma-harmon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DSWG4VTNX7NVMJW8A8","tsKey":"us-oklahoma-harper-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Harper","slug":"us-oklahoma-harper-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DWEVX78ZBV5TMKF0XN","tsKey":"us-oklahoma-haskell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Haskell","slug":"us-oklahoma-haskell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DSH6YVSGN8J8M3TQ8P","tsKey":"us-oklahoma-hughes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Hughes","slug":"us-oklahoma-hughes-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DVVMJTJMHN62VXMESG","tsKey":"us-oklahoma-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Jackson","slug":"us-oklahoma-jackson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DXNNPS2WP0DBGB2JGX","tsKey":"us-oklahoma-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Jefferson","slug":"us-oklahoma-jefferson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DWDX2QQXA3JRYV52N3","tsKey":"us-oklahoma-johnston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Johnston","slug":"us-oklahoma-johnston-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DVCCB8NTDNVK0DWQ7Q","tsKey":"us-oklahoma-kay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Kay","slug":"us-oklahoma-kay-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DTTH26NZW5QSGQWAX0","tsKey":"us-oklahoma-kingfisher-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Kingfisher","slug":"us-oklahoma-kingfisher-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DW8MP6Q3XZY2CN6YE3","tsKey":"us-oklahoma-kiowa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Kiowa","slug":"us-oklahoma-kiowa-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DXZG34J3R3D5ATZ4A1","tsKey":"us-oklahoma-latimer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Latimer","slug":"us-oklahoma-latimer-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DX86W6Y6HZ8ZDRAXJV","tsKey":"us-oklahoma-leflore-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"LeFlore","slug":"us-oklahoma-leflore-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DTAN4WVE2A7J8SBSNF","tsKey":"us-oklahoma-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Lincoln","slug":"us-oklahoma-lincoln-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DVS07MWRT0CCF845GW","tsKey":"us-oklahoma-logan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Logan","slug":"us-oklahoma-logan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DVAPH39K8QBHA4MP25","tsKey":"us-oklahoma-love-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Love","slug":"us-oklahoma-love-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DWJ1Z1FC86WS6FP27B","tsKey":"us-oklahoma-major-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Major","slug":"us-oklahoma-major-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DXVZ9PM3W3XFKBCWQW","tsKey":"us-oklahoma-marshall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Marshall","slug":"us-oklahoma-marshall-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DTQ0EWHHXSGFDP4MC4","tsKey":"us-oklahoma-mayes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Mayes","slug":"us-oklahoma-mayes-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DT77NG88MBHDV7C76A","tsKey":"us-oklahoma-mcclain-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"McClain","slug":"us-oklahoma-mcclain-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DXJSWQYJH0BH6S21C0","tsKey":"us-oklahoma-mccurtain-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"McCurtain","slug":"us-oklahoma-mccurtain-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DVHYPYNXS9RFDNEN17","tsKey":"us-oklahoma-mcintosh-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"McIntosh","slug":"us-oklahoma-mcintosh-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DVRCQW6ET22ECVKBPB","tsKey":"us-oklahoma-murray-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Murray","slug":"us-oklahoma-murray-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DVR92ENRW75QDD3H1B","tsKey":"us-oklahoma-muskogee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Muskogee","slug":"us-oklahoma-muskogee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DXM29J1DJFKDXDKC7S","tsKey":"us-oklahoma-noble-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Noble","slug":"us-oklahoma-noble-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DXWP6PTE1ADKMREA85","tsKey":"us-oklahoma-nowata-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Nowata","slug":"us-oklahoma-nowata-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DWWW2A35XBCFZ22J9E","tsKey":"us-oklahoma-okfuskee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Okfuskee","slug":"us-oklahoma-okfuskee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DTVMPKTV0M245SG0D0","tsKey":"us-oklahoma-oklahoma-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Oklahoma","slug":"us-oklahoma-oklahoma-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DWSEYESXMR4PHGABD3","tsKey":"us-oklahoma-okmulgee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Okmulgee","slug":"us-oklahoma-okmulgee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DXQKGXYP3W3Z1362A4","tsKey":"us-oklahoma-osage-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Osage","slug":"us-oklahoma-osage-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DXJTRPATMQBPTKDHY8","tsKey":"us-oklahoma-ottawa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Ottawa","slug":"us-oklahoma-ottawa-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DWK5NJNZ0XYYB197JF","tsKey":"us-oklahoma-pawnee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Pawnee","slug":"us-oklahoma-pawnee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DWMNQ5XRT81Z1NWPZ1","tsKey":"us-oklahoma-payne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Payne","slug":"us-oklahoma-payne-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DXX5QAPFJD8FF60RDN","tsKey":"us-oklahoma-pittsburg-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Pittsburg","slug":"us-oklahoma-pittsburg-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DTX144CGF3KJPTBD39","tsKey":"us-oklahoma-pontotoc-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Pontotoc","slug":"us-oklahoma-pontotoc-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DWNHTS4TXX33CY934W","tsKey":"us-oklahoma-pottawatomie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Pottawatomie","slug":"us-oklahoma-pottawatomie-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DTXC3QX20A6TME04X8","tsKey":"us-oklahoma-pushmataha-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Pushmataha","slug":"us-oklahoma-pushmataha-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DYJYVQ21GC3S8PBRSJ","tsKey":"us-oklahoma-roger-mills-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Roger Mills","slug":"us-oklahoma-roger-mills-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DWZ6K6GNF4ZQGX9X21","tsKey":"us-oklahoma-rogers-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Rogers","slug":"us-oklahoma-rogers-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DXTPDNHJVM4BP03M5J","tsKey":"us-oklahoma-seminole-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Seminole","slug":"us-oklahoma-seminole-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DWXG3F5PCXQNN1TB9N","tsKey":"us-oklahoma-sequoyah-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Sequoyah","slug":"us-oklahoma-sequoyah-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DW2TDHA9FTPTTS7WME","tsKey":"us-oklahoma-stephens-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Stephens","slug":"us-oklahoma-stephens-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DXMQPR55YZK0TWPP6R","tsKey":"us-oklahoma-texas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Texas","slug":"us-oklahoma-texas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DXKX5DRPQAK4H2V76G","tsKey":"us-oklahoma-tillman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Tillman","slug":"us-oklahoma-tillman-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DW11PQBMGN8K2NY37Y","tsKey":"us-oklahoma-tulsa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Tulsa","slug":"us-oklahoma-tulsa-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DW7FHFGJZ3ZRCFVMS2","tsKey":"us-oklahoma-wagoner-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Wagoner","slug":"us-oklahoma-wagoner-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DT9F7P481P7CYWPC9K","tsKey":"us-oklahoma-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Washington","slug":"us-oklahoma-washington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DWH6Y47VYAJ7E5FZC9","tsKey":"us-oklahoma-washita-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Washita","slug":"us-oklahoma-washita-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DXYH3J0SDW67E43XE5","tsKey":"us-oklahoma-woods-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Woods","slug":"us-oklahoma-woods-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2DT3RJ5R040YHJFWY67","tsKey":"us-oklahoma-woodward-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK1MBAAXAR655YEESJRB1","name":"Woodward","slug":"us-oklahoma-woodward-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","tsKey":"us-oregon","tsNs":"gov-dist","abbrev":"OR","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Oregon","slug":"us-oregon","iso":"US-OR","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK36GC87NKTM45ENNYY8N","tsKey":"us-oregon-baker-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","name":"Baker","slug":"us-oregon-baker-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK36FV666VFGZJZG9AJK1","tsKey":"us-oregon-benton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","name":"Benton","slug":"us-oregon-benton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK36FG250ZPETC5G5SE86","tsKey":"us-oregon-clackamas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","name":"Clackamas","slug":"us-oregon-clackamas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK36H0A9MHWX9Q9KK3JED","tsKey":"us-oregon-clatsop-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","name":"Clatsop","slug":"us-oregon-clatsop-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK36G6BRY7X3DKH62AVXS","tsKey":"us-oregon-columbia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","name":"Columbia","slug":"us-oregon-columbia-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK36F4HBEBCPW4BXA87JM","tsKey":"us-oregon-coos-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","name":"Coos","slug":"us-oregon-coos-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK36FASQKMFQXFN8S7998","tsKey":"us-oregon-crook-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","name":"Crook","slug":"us-oregon-crook-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK36HH8EEK8S6Y17XZZKC","tsKey":"us-oregon-curry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","name":"Curry","slug":"us-oregon-curry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK36F4J6X9C53S6CTSVHE","tsKey":"us-oregon-deschutes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","name":"Deschutes","slug":"us-oregon-deschutes-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK36HFK9F6SEAYDYKY8DQ","tsKey":"us-oregon-douglas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","name":"Douglas","slug":"us-oregon-douglas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK36FY4P73MTQ9RDT6728","tsKey":"us-oregon-gilliam-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","name":"Gilliam","slug":"us-oregon-gilliam-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK36G94WQRF7BKRFREDD0","tsKey":"us-oregon-grant-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","name":"Grant","slug":"us-oregon-grant-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK36H5EX83Z7P3EFEGDYA","tsKey":"us-oregon-harney-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","name":"Harney","slug":"us-oregon-harney-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK36F4DTXKN3EKPFJXC1M","tsKey":"us-oregon-hood-river-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","name":"Hood River","slug":"us-oregon-hood-river-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK36FJDDRBJ4YKY81HSBZ","tsKey":"us-oregon-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","name":"Jackson","slug":"us-oregon-jackson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK36FA3P76V5N5VYRQTPK","tsKey":"us-oregon-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","name":"Jefferson","slug":"us-oregon-jefferson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK36G6BTRSAKJN3035XGC","tsKey":"us-oregon-josephine-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","name":"Josephine","slug":"us-oregon-josephine-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK36G1MX7K66F7HYEVKPQ","tsKey":"us-oregon-klamath-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","name":"Klamath","slug":"us-oregon-klamath-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK36F9DK8BJVTSYAVBF5Y","tsKey":"us-oregon-lake-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","name":"Lake","slug":"us-oregon-lake-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK36GJS50NQFW64B6NEQ4","tsKey":"us-oregon-lane-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","name":"Lane","slug":"us-oregon-lane-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK36H4DDG2QJ27QFEFN3W","tsKey":"us-oregon-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","name":"Lincoln","slug":"us-oregon-lincoln-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK36GD31RMDRN0E8C6HGA","tsKey":"us-oregon-linn-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","name":"Linn","slug":"us-oregon-linn-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK36HX4BR968WREYH4VEP","tsKey":"us-oregon-malheur-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","name":"Malheur","slug":"us-oregon-malheur-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK36G7YSQR3A9KDRCYTFK","tsKey":"us-oregon-marion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","name":"Marion","slug":"us-oregon-marion-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK36G9CSP1163XJPMW24K","tsKey":"us-oregon-morrow-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","name":"Morrow","slug":"us-oregon-morrow-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK36GDDMRBKX6EKQFYZSD","tsKey":"us-oregon-multnomah-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","name":"Multnomah","slug":"us-oregon-multnomah-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK36FTVKVBPDXS8FC2523","tsKey":"us-oregon-polk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","name":"Polk","slug":"us-oregon-polk-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK36HQFCHJT97HVDKTKFY","tsKey":"us-oregon-sherman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","name":"Sherman","slug":"us-oregon-sherman-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK36HS7RY56P8A5MEJX46","tsKey":"us-oregon-tillamook-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","name":"Tillamook","slug":"us-oregon-tillamook-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK36GKMTTGYE72KDC9K90","tsKey":"us-oregon-umatilla-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","name":"Umatilla","slug":"us-oregon-umatilla-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK36G5WGYYEY8A50SB3GB","tsKey":"us-oregon-union-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","name":"Union","slug":"us-oregon-union-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK36HCV438SJVXV09HD3K","tsKey":"us-oregon-wallowa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","name":"Wallowa","slug":"us-oregon-wallowa-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK36GYP6S0BDCWSCYPHDA","tsKey":"us-oregon-wasco-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","name":"Wasco","slug":"us-oregon-wasco-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK36H3V9C53S61EJ40FSA","tsKey":"us-oregon-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","name":"Washington","slug":"us-oregon-washington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK36FSQJ82JVSRSFZ5EKZ","tsKey":"us-oregon-wheeler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","name":"Wheeler","slug":"us-oregon-wheeler-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK36GEDFD2KDE5VSS9N4S","tsKey":"us-oregon-yamhill-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","name":"Yamhill","slug":"us-oregon-yamhill-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","tsKey":"us-pennsylvania","tsNs":"gov-dist","abbrev":"PA","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Pennsylvania","slug":"us-pennsylvania","iso":"US-PA","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X2GD6CV4A9WB591241","tsKey":"us-pennsylvania-adams-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Adams","slug":"us-pennsylvania-adams-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3WZB92PD7S1XX2RR3KE","tsKey":"us-pennsylvania-allegheny-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Allegheny","slug":"us-pennsylvania-allegheny-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3WZS5J8RA3FHB9PMCD9","tsKey":"us-pennsylvania-armstrong-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Armstrong","slug":"us-pennsylvania-armstrong-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3WZWYA8FQM93HYC1N7S","tsKey":"us-pennsylvania-beaver-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Beaver","slug":"us-pennsylvania-beaver-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X2E2F36QGY5DW4TKVR","tsKey":"us-pennsylvania-bedford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Bedford","slug":"us-pennsylvania-bedford-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X1GTTZN6RB92H7JAD8","tsKey":"us-pennsylvania-berks-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Berks","slug":"us-pennsylvania-berks-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3WYW95SQCBDQH6EDQWN","tsKey":"us-pennsylvania-blair-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Blair","slug":"us-pennsylvania-blair-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3WYZ6MY0VH1D0H16CBY","tsKey":"us-pennsylvania-bradford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Bradford","slug":"us-pennsylvania-bradford-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3WZDVHDT78KTZ3839N5","tsKey":"us-pennsylvania-bucks-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Bucks","slug":"us-pennsylvania-bucks-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X1FJ1RHPYVMWBPNNQV","tsKey":"us-pennsylvania-butler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Butler","slug":"us-pennsylvania-butler-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3WYT93T8HZ80TPFBM02","tsKey":"us-pennsylvania-cambria-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Cambria","slug":"us-pennsylvania-cambria-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3WZ1VJWHQ5NX1RR0HY9","tsKey":"us-pennsylvania-cameron-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Cameron","slug":"us-pennsylvania-cameron-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X168HZKQ13PT7V1EW3","tsKey":"us-pennsylvania-carbon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Carbon","slug":"us-pennsylvania-carbon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3WZF15207K3XCAPXTEK","tsKey":"us-pennsylvania-centre-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Centre","slug":"us-pennsylvania-centre-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X0WHDWZH0TKH2RRHZG","tsKey":"us-pennsylvania-chester-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Chester","slug":"us-pennsylvania-chester-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3WY5C8QXV5PNN4Y0CYT","tsKey":"us-pennsylvania-clarion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Clarion","slug":"us-pennsylvania-clarion-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X0SBJ9XS32PMZ5WSZB","tsKey":"us-pennsylvania-clearfield-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Clearfield","slug":"us-pennsylvania-clearfield-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X2KYJXGKJ7KZQXVQMB","tsKey":"us-pennsylvania-clinton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Clinton","slug":"us-pennsylvania-clinton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X1E56Y8YPXSXCR3P7Q","tsKey":"us-pennsylvania-columbia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Columbia","slug":"us-pennsylvania-columbia-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X0QF6Z0FVJ2F6KMV88","tsKey":"us-pennsylvania-crawford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Crawford","slug":"us-pennsylvania-crawford-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X2686354YYVZ5GV2EJ","tsKey":"us-pennsylvania-cumberland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Cumberland","slug":"us-pennsylvania-cumberland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X200WKWEDQFZCTCFK0","tsKey":"us-pennsylvania-dauphin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Dauphin","slug":"us-pennsylvania-dauphin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X06HQN1S7ATXV39KED","tsKey":"us-pennsylvania-delaware-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Delaware","slug":"us-pennsylvania-delaware-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3WZK40A70D1MF7AXM6F","tsKey":"us-pennsylvania-elk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Elk","slug":"us-pennsylvania-elk-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X083X99DAQ264GG96B","tsKey":"us-pennsylvania-erie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Erie","slug":"us-pennsylvania-erie-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X05PJ50EXBVT4SPAJ7","tsKey":"us-pennsylvania-fayette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Fayette","slug":"us-pennsylvania-fayette-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X1J6FHE11S2NP0PE3E","tsKey":"us-pennsylvania-forest-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Forest","slug":"us-pennsylvania-forest-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X0CTMENG3HZA3K1KXH","tsKey":"us-pennsylvania-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Franklin","slug":"us-pennsylvania-franklin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X1WPG3Q6PPG194BBBE","tsKey":"us-pennsylvania-fulton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Fulton","slug":"us-pennsylvania-fulton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X2TGS5Y1N0DGDBYYZM","tsKey":"us-pennsylvania-greene-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Greene","slug":"us-pennsylvania-greene-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X058DQQ01XZSQ0A6SB","tsKey":"us-pennsylvania-huntingdon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Huntingdon","slug":"us-pennsylvania-huntingdon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3WZAB5XJDQ4WHXB696D","tsKey":"us-pennsylvania-indiana-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Indiana","slug":"us-pennsylvania-indiana-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X2MMR84JZT0V6MPZXH","tsKey":"us-pennsylvania-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Jefferson","slug":"us-pennsylvania-jefferson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X0QG0C9T5H74SHRJW7","tsKey":"us-pennsylvania-juniata-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Juniata","slug":"us-pennsylvania-juniata-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3WZYRE98PD5C1SJJM7J","tsKey":"us-pennsylvania-lackawanna-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Lackawanna","slug":"us-pennsylvania-lackawanna-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X2BKPNKHYT5ZN27VXA","tsKey":"us-pennsylvania-lancaster-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Lancaster","slug":"us-pennsylvania-lancaster-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X0MEDZQPMXWQ0QK8ZM","tsKey":"us-pennsylvania-lawrence-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Lawrence","slug":"us-pennsylvania-lawrence-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X1ES6RN3T2WW5T1XKT","tsKey":"us-pennsylvania-lebanon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Lebanon","slug":"us-pennsylvania-lebanon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X24223KPRA7B8JP19A","tsKey":"us-pennsylvania-lehigh-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Lehigh","slug":"us-pennsylvania-lehigh-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X0W3F0DQ4HCCSBZZJS","tsKey":"us-pennsylvania-luzerne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Luzerne","slug":"us-pennsylvania-luzerne-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X18DR7XK060YA0A9KV","tsKey":"us-pennsylvania-lycoming-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Lycoming","slug":"us-pennsylvania-lycoming-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X2YCK7E72N93HG89DE","tsKey":"us-pennsylvania-mckean-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"McKean","slug":"us-pennsylvania-mckean-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X0RV353TY6Y8EMKNDM","tsKey":"us-pennsylvania-mercer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Mercer","slug":"us-pennsylvania-mercer-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3WZSFGY4DR96TBARCFJ","tsKey":"us-pennsylvania-mifflin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Mifflin","slug":"us-pennsylvania-mifflin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X05MPWZX2SG97RBXEE","tsKey":"us-pennsylvania-monroe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Monroe","slug":"us-pennsylvania-monroe-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X2AWJSA4M3ZJCZZSVT","tsKey":"us-pennsylvania-montgomery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Montgomery","slug":"us-pennsylvania-montgomery-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3WZV4GAM56KXCWSHVTR","tsKey":"us-pennsylvania-montour-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Montour","slug":"us-pennsylvania-montour-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X0HHP52GRMNT6GRJQT","tsKey":"us-pennsylvania-northampton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Northampton","slug":"us-pennsylvania-northampton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X2GEN9XK9FCEH859Z1","tsKey":"us-pennsylvania-northumberland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Northumberland","slug":"us-pennsylvania-northumberland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X10EMXM15576ZASJ43","tsKey":"us-pennsylvania-perry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Perry","slug":"us-pennsylvania-perry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X0RGVH6AQZ7N6SFYY3","tsKey":"us-pennsylvania-philadelphia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Philadelphia","slug":"us-pennsylvania-philadelphia-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X2VAYEQ3M9TJJXJQ52","tsKey":"us-pennsylvania-pike-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Pike","slug":"us-pennsylvania-pike-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3WZ7GD67KWC5PQRFMQA","tsKey":"us-pennsylvania-potter-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Potter","slug":"us-pennsylvania-potter-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X2E5X1SM0Q7MN9EZ4K","tsKey":"us-pennsylvania-schuylkill-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Schuylkill","slug":"us-pennsylvania-schuylkill-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X1VFW0NZ7663WDECYP","tsKey":"us-pennsylvania-snyder-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Snyder","slug":"us-pennsylvania-snyder-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X1KTWA9QCQ1CKM5RXF","tsKey":"us-pennsylvania-somerset-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Somerset","slug":"us-pennsylvania-somerset-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3WZAJBC8QHZFVH7VVWC","tsKey":"us-pennsylvania-sullivan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Sullivan","slug":"us-pennsylvania-sullivan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X12KBPFFZKYSEP0AJ2","tsKey":"us-pennsylvania-susquehanna-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Susquehanna","slug":"us-pennsylvania-susquehanna-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X16MA2VX4M9G4RM4MD","tsKey":"us-pennsylvania-tioga-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Tioga","slug":"us-pennsylvania-tioga-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X10CGXRQE3QJ29Z8ZM","tsKey":"us-pennsylvania-union-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Union","slug":"us-pennsylvania-union-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X1WY3P8GK5VAKHYKT6","tsKey":"us-pennsylvania-venango-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Venango","slug":"us-pennsylvania-venango-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3WZF4Z1RFSF65TQ9PMY","tsKey":"us-pennsylvania-warren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Warren","slug":"us-pennsylvania-warren-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X1J3DTQF97FD8EFXBW","tsKey":"us-pennsylvania-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Washington","slug":"us-pennsylvania-washington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X23R0ESH12198NWRNM","tsKey":"us-pennsylvania-wayne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Wayne","slug":"us-pennsylvania-wayne-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X2YXAE9YENYTDBK143","tsKey":"us-pennsylvania-westmoreland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Westmoreland","slug":"us-pennsylvania-westmoreland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X20E606PEAH4CMH2F2","tsKey":"us-pennsylvania-wyoming-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"Wyoming","slug":"us-pennsylvania-wyoming-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK3X1MTFFYT8YT4YXZ7GK","tsKey":"us-pennsylvania-york-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","name":"York","slug":"us-pennsylvania-york-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK49A5XQ8ZDFKQSF098SJ","tsKey":"us-rhode-island","tsNs":"gov-dist","abbrev":"RI","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Rhode Island","slug":"us-rhode-island","iso":"US-RI","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK4RFZKENE7F8966EKBE6","tsKey":"us-rhode-island-bristol-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK49A5XQ8ZDFKQSF098SJ","name":"Bristol","slug":"us-rhode-island-bristol-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK4RFNXTG4QFGJ6RQ33F1","tsKey":"us-rhode-island-kent-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK49A5XQ8ZDFKQSF098SJ","name":"Kent","slug":"us-rhode-island-kent-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK4RFED0DYV8H0KXFZQG2","tsKey":"us-rhode-island-newport-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK49A5XQ8ZDFKQSF098SJ","name":"Newport","slug":"us-rhode-island-newport-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK4RFYMFERMT6SA3WWFKE","tsKey":"us-rhode-island-providence-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK49A5XQ8ZDFKQSF098SJ","name":"Providence","slug":"us-rhode-island-providence-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK4RFRV6D5G7MT9MXTRZH","tsKey":"us-rhode-island-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK49A5XQ8ZDFKQSF098SJ","name":"Washington","slug":"us-rhode-island-washington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","tsKey":"us-south-carolina","tsNs":"gov-dist","abbrev":"SC","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"South Carolina","slug":"us-south-carolina","iso":"US-SC","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EY6Q64YM8PCZPAH0CB","tsKey":"us-south-carolina-abbeville-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Abbeville","slug":"us-south-carolina-abbeville-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EYB16JHTA84JCXW1TH","tsKey":"us-south-carolina-aiken-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Aiken","slug":"us-south-carolina-aiken-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EW7RG806XKQZ2YBFMA","tsKey":"us-south-carolina-allendale-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Allendale","slug":"us-south-carolina-allendale-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EYP2G2VQ18H8T3QKZC","tsKey":"us-south-carolina-anderson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Anderson","slug":"us-south-carolina-anderson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EX60MBBRFC8F9FBQK0","tsKey":"us-south-carolina-bamberg-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Bamberg","slug":"us-south-carolina-bamberg-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EZ1PQAEBSB471NQB6M","tsKey":"us-south-carolina-barnwell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Barnwell","slug":"us-south-carolina-barnwell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EZ35VPWVAF1X9NNGAK","tsKey":"us-south-carolina-beaufort-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Beaufort","slug":"us-south-carolina-beaufort-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EZ89NPWPZGKYVFTY7V","tsKey":"us-south-carolina-berkeley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Berkeley","slug":"us-south-carolina-berkeley-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EY6NBG30JJS22931W2","tsKey":"us-south-carolina-calhoun-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Calhoun","slug":"us-south-carolina-calhoun-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EZT8C2AKNJV4JC0MHT","tsKey":"us-south-carolina-charleston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Charleston","slug":"us-south-carolina-charleston-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EY8XM8JEPYMJQTP644","tsKey":"us-south-carolina-cherokee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Cherokee","slug":"us-south-carolina-cherokee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EYN7YTMR2N80KNHGS4","tsKey":"us-south-carolina-chester-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Chester","slug":"us-south-carolina-chester-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EYPK4ZMP8RQPW22JRA","tsKey":"us-south-carolina-chesterfield-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Chesterfield","slug":"us-south-carolina-chesterfield-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EXVG0HCD1J13NY7YF2","tsKey":"us-south-carolina-clarendon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Clarendon","slug":"us-south-carolina-clarendon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EYP1CQFC74N5PMZNCJ","tsKey":"us-south-carolina-colleton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Colleton","slug":"us-south-carolina-colleton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EX7RV93EMEKQNCKHSJ","tsKey":"us-south-carolina-darlington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Darlington","slug":"us-south-carolina-darlington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EY08GXYP083SWP4Q2D","tsKey":"us-south-carolina-dillon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Dillon","slug":"us-south-carolina-dillon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EXA2B4DFKVF1JGMWCE","tsKey":"us-south-carolina-dorchester-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Dorchester","slug":"us-south-carolina-dorchester-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EXK8C33X6NRSBT1V7Y","tsKey":"us-south-carolina-edgefield-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Edgefield","slug":"us-south-carolina-edgefield-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EXWY8HHVJ5XT9PBT2N","tsKey":"us-south-carolina-fairfield-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Fairfield","slug":"us-south-carolina-fairfield-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EY32YE1H7T92BDMS4S","tsKey":"us-south-carolina-florence-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Florence","slug":"us-south-carolina-florence-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EYHZASETH25XKTPMFR","tsKey":"us-south-carolina-georgetown-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Georgetown","slug":"us-south-carolina-georgetown-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EYYWBY5NH6GTYA4Q5W","tsKey":"us-south-carolina-greenville-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Greenville","slug":"us-south-carolina-greenville-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EYHHN1X991R5M3X02X","tsKey":"us-south-carolina-greenwood-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Greenwood","slug":"us-south-carolina-greenwood-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EXCJDE16BJTX0Z8F0V","tsKey":"us-south-carolina-hampton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Hampton","slug":"us-south-carolina-hampton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EYQZYK9WDY7V4TDTW1","tsKey":"us-south-carolina-horry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Horry","slug":"us-south-carolina-horry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EXSW6061PX9EWCTQZ0","tsKey":"us-south-carolina-jasper-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Jasper","slug":"us-south-carolina-jasper-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EXYVYFJKTKXEC5XVVG","tsKey":"us-south-carolina-kershaw-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Kershaw","slug":"us-south-carolina-kershaw-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EZ1SCA29XDHP6TCYS0","tsKey":"us-south-carolina-lancaster-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Lancaster","slug":"us-south-carolina-lancaster-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EYBTD8DMZ0PMCXFDC1","tsKey":"us-south-carolina-laurens-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Laurens","slug":"us-south-carolina-laurens-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EXEDCSZD210N9PXS8S","tsKey":"us-south-carolina-lee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Lee","slug":"us-south-carolina-lee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EZ597NYB3VKYY9ZGQJ","tsKey":"us-south-carolina-lexington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Lexington","slug":"us-south-carolina-lexington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EZA7FN4B1FYV66SN16","tsKey":"us-south-carolina-marion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Marion","slug":"us-south-carolina-marion-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EYDGJKJG4PNAZ40PQS","tsKey":"us-south-carolina-marlboro-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Marlboro","slug":"us-south-carolina-marlboro-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EXFPJC8P7B2WTWS3SV","tsKey":"us-south-carolina-mccormick-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"McCormick","slug":"us-south-carolina-mccormick-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EXQXE1GTRKZM48Q2W1","tsKey":"us-south-carolina-newberry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Newberry","slug":"us-south-carolina-newberry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EXN4DC0VXYFSR9453G","tsKey":"us-south-carolina-oconee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Oconee","slug":"us-south-carolina-oconee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EXK2CVDMS26ER8FFX1","tsKey":"us-south-carolina-orangeburg-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Orangeburg","slug":"us-south-carolina-orangeburg-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EZYTCH3AFNCX59AYGH","tsKey":"us-south-carolina-pickens-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Pickens","slug":"us-south-carolina-pickens-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EXMR9495G0KGFMBHEW","tsKey":"us-south-carolina-richland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Richland","slug":"us-south-carolina-richland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EXC4STC4PR5VFG62G8","tsKey":"us-south-carolina-saluda-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Saluda","slug":"us-south-carolina-saluda-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EXX8TEZGWQC08X1VS0","tsKey":"us-south-carolina-spartanburg-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Spartanburg","slug":"us-south-carolina-spartanburg-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EXXVCN5D0NKA0VSNYF","tsKey":"us-south-carolina-sumter-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Sumter","slug":"us-south-carolina-sumter-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EYP3D0ZGX5ACWS0E0E","tsKey":"us-south-carolina-union-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Union","slug":"us-south-carolina-union-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EY33X9C93SGCT3MH82","tsKey":"us-south-carolina-williamsburg-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"Williamsburg","slug":"us-south-carolina-williamsburg-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5EZYKCRSWJZPHYS5HNB","tsKey":"us-south-carolina-york-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","name":"York","slug":"us-south-carolina-york-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","tsKey":"us-south-dakota","tsNs":"gov-dist","abbrev":"SD","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"South Dakota","slug":"us-south-dakota","iso":"US-SD","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67GXNSXR3FHZY24KW4Y","tsKey":"us-south-dakota-aurora-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Aurora","slug":"us-south-dakota-aurora-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67H8W1XNCQFARSYFDBS","tsKey":"us-south-dakota-beadle-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Beadle","slug":"us-south-dakota-beadle-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67GPCCBXGX71AH5G265","tsKey":"us-south-dakota-bennett-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Bennett","slug":"us-south-dakota-bennett-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67K3P6NCCQQ6K8K8NM1","tsKey":"us-south-dakota-bon-homme-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Bon Homme","slug":"us-south-dakota-bon-homme-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67HH85DMJXYF1VXA9NE","tsKey":"us-south-dakota-brookings-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Brookings","slug":"us-south-dakota-brookings-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67KQ9B3Y19C521DSQZ4","tsKey":"us-south-dakota-brown-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Brown","slug":"us-south-dakota-brown-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67JTFZTZQZQG8JR72JJ","tsKey":"us-south-dakota-brule-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Brule","slug":"us-south-dakota-brule-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67GC80TWVZXS471TRQK","tsKey":"us-south-dakota-buffalo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Buffalo","slug":"us-south-dakota-buffalo-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67HZEF7Y2FYRNKMXDKP","tsKey":"us-south-dakota-butte-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Butte","slug":"us-south-dakota-butte-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67KPS8ZDJZ241SJRAKW","tsKey":"us-south-dakota-campbell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Campbell","slug":"us-south-dakota-campbell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67HJK3CT40X7X98903P","tsKey":"us-south-dakota-charles-mix-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Charles Mix","slug":"us-south-dakota-charles-mix-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67JH5DG40RDWN1Z76KR","tsKey":"us-south-dakota-clark-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Clark","slug":"us-south-dakota-clark-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67KFRATB98HWBS7T367","tsKey":"us-south-dakota-clay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Clay","slug":"us-south-dakota-clay-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67GDD2SDVSNV1ZNDS6P","tsKey":"us-south-dakota-codington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Codington","slug":"us-south-dakota-codington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67KWMMYN2VMD294C1FD","tsKey":"us-south-dakota-corson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Corson","slug":"us-south-dakota-corson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67HNDTY6JSCYSM3Y90V","tsKey":"us-south-dakota-custer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Custer","slug":"us-south-dakota-custer-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67GDJ1ZB4CR6T3G0KR1","tsKey":"us-south-dakota-davison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Davison","slug":"us-south-dakota-davison-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67JQZYKV4WB88JEAF8Y","tsKey":"us-south-dakota-day-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Day","slug":"us-south-dakota-day-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67H11ZA2WZ6NGD2K0CQ","tsKey":"us-south-dakota-deuel-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Deuel","slug":"us-south-dakota-deuel-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67H55YYNRTB5YXMNPXB","tsKey":"us-south-dakota-dewey-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Dewey","slug":"us-south-dakota-dewey-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67GN623MCKHVYWTQGAR","tsKey":"us-south-dakota-douglas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Douglas","slug":"us-south-dakota-douglas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67HQCR3J4EWKCV8A64R","tsKey":"us-south-dakota-edmunds-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Edmunds","slug":"us-south-dakota-edmunds-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67K1735SXSGNTCAY59R","tsKey":"us-south-dakota-fall-river-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Fall River","slug":"us-south-dakota-fall-river-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67JECA877DEW9NMKWD5","tsKey":"us-south-dakota-faulk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Faulk","slug":"us-south-dakota-faulk-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67H9DKQ4RXBHRAWT86C","tsKey":"us-south-dakota-grant-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Grant","slug":"us-south-dakota-grant-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67KGK03329W0S2TDMRM","tsKey":"us-south-dakota-gregory-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Gregory","slug":"us-south-dakota-gregory-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67GTTHKQR955RYMRJ4R","tsKey":"us-south-dakota-haakon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Haakon","slug":"us-south-dakota-haakon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67J31DT7RWB95J1GJMX","tsKey":"us-south-dakota-hamlin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Hamlin","slug":"us-south-dakota-hamlin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67HXDMSXQGE58RRCSBT","tsKey":"us-south-dakota-hand-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Hand","slug":"us-south-dakota-hand-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67GY6H7E0211MXE3ZWD","tsKey":"us-south-dakota-hanson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Hanson","slug":"us-south-dakota-hanson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67HKC1TMCEPR1GKCX01","tsKey":"us-south-dakota-harding-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Harding","slug":"us-south-dakota-harding-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67H25YRXEA8W4FYWWNH","tsKey":"us-south-dakota-hughes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Hughes","slug":"us-south-dakota-hughes-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67JN8RGV8JAMJCVV9RT","tsKey":"us-south-dakota-hutchinson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Hutchinson","slug":"us-south-dakota-hutchinson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67HVE7VFF95SF2D5YSN","tsKey":"us-south-dakota-hyde-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Hyde","slug":"us-south-dakota-hyde-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67KSVH0PRDRHJZSYFW7","tsKey":"us-south-dakota-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Jackson","slug":"us-south-dakota-jackson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67KFET4EFGJV00RSKGB","tsKey":"us-south-dakota-jerauld-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Jerauld","slug":"us-south-dakota-jerauld-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67H248Y297WJW9RR00V","tsKey":"us-south-dakota-jones-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Jones","slug":"us-south-dakota-jones-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67J6YRDC71SQMPYTH44","tsKey":"us-south-dakota-kingsbury-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Kingsbury","slug":"us-south-dakota-kingsbury-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67HJYWVDCQAZF8XAE93","tsKey":"us-south-dakota-lake-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Lake","slug":"us-south-dakota-lake-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67KG884HNG43WM85AE3","tsKey":"us-south-dakota-lawrence-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Lawrence","slug":"us-south-dakota-lawrence-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67K066RYHWW0YCWNQD9","tsKey":"us-south-dakota-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Lincoln","slug":"us-south-dakota-lincoln-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67H6KFAK56QMDET06JC","tsKey":"us-south-dakota-lyman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Lyman","slug":"us-south-dakota-lyman-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67J7YWP9F4BBX7AJBN4","tsKey":"us-south-dakota-marshall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Marshall","slug":"us-south-dakota-marshall-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67GNF79815FP2NXHMHH","tsKey":"us-south-dakota-mccook-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"McCook","slug":"us-south-dakota-mccook-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67KNY3QC4652YYCARVC","tsKey":"us-south-dakota-mcpherson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"McPherson","slug":"us-south-dakota-mcpherson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67H19K9VFV1CRQWMT48","tsKey":"us-south-dakota-meade-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Meade","slug":"us-south-dakota-meade-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67GY3AW7G0PE5EJ9P0W","tsKey":"us-south-dakota-mellette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Mellette","slug":"us-south-dakota-mellette-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67JGKN02H973WD886WD","tsKey":"us-south-dakota-miner-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Miner","slug":"us-south-dakota-miner-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67KBVEK9MD5J598N87H","tsKey":"us-south-dakota-minnehaha-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Minnehaha","slug":"us-south-dakota-minnehaha-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67J30MRTG1V411X04CG","tsKey":"us-south-dakota-moody-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Moody","slug":"us-south-dakota-moody-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67J9DK0JXBK4VK4C4EM","tsKey":"us-south-dakota-oglala-lakota-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Oglala Lakota","slug":"us-south-dakota-oglala-lakota-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67GFC51SCGXA8K0FXWT","tsKey":"us-south-dakota-pennington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Pennington","slug":"us-south-dakota-pennington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67K27B29V4DEHZTDR8K","tsKey":"us-south-dakota-perkins-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Perkins","slug":"us-south-dakota-perkins-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67JBZ1AWDTE5CGG114C","tsKey":"us-south-dakota-potter-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Potter","slug":"us-south-dakota-potter-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67KD5P7JHW633MRVG65","tsKey":"us-south-dakota-roberts-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Roberts","slug":"us-south-dakota-roberts-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67GEP6C25CJTCBJRM5F","tsKey":"us-south-dakota-sanborn-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Sanborn","slug":"us-south-dakota-sanborn-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67JN5ZCCWCQV234CG83","tsKey":"us-south-dakota-spink-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Spink","slug":"us-south-dakota-spink-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67J75V3D67GB68TRENZ","tsKey":"us-south-dakota-stanley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Stanley","slug":"us-south-dakota-stanley-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67JAYBSHSDWHWVS1A17","tsKey":"us-south-dakota-sully-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Sully","slug":"us-south-dakota-sully-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67JQJSJMHFK1KRA6ENK","tsKey":"us-south-dakota-todd-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Todd","slug":"us-south-dakota-todd-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67KARDZVPME5PSKE91G","tsKey":"us-south-dakota-tripp-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Tripp","slug":"us-south-dakota-tripp-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67G1MDK6BQM3WS66V78","tsKey":"us-south-dakota-turner-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Turner","slug":"us-south-dakota-turner-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67JW88K9777SBN89J07","tsKey":"us-south-dakota-union-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Union","slug":"us-south-dakota-union-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67KG9JT31RJGMV8FKJ5","tsKey":"us-south-dakota-walworth-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Walworth","slug":"us-south-dakota-walworth-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67KFPPKMQEP2GV1HTTB","tsKey":"us-south-dakota-yankton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Yankton","slug":"us-south-dakota-yankton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK67H4CZAEXPHG3F8CPW7","tsKey":"us-south-dakota-ziebach-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","name":"Ziebach","slug":"us-south-dakota-ziebach-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","tsKey":"us-tennessee","tsNs":"gov-dist","abbrev":"TN","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Tennessee","slug":"us-tennessee","iso":"US-TN","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK773EZ32DNSAQ16BTB7A","tsKey":"us-tennessee-anderson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Anderson","slug":"us-tennessee-anderson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK774H15Q26KAJSS4NZVD","tsKey":"us-tennessee-bedford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Bedford","slug":"us-tennessee-bedford-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK771VW3M641RVY84ERQ0","tsKey":"us-tennessee-benton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Benton","slug":"us-tennessee-benton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK771CHHE5FBZ0Z2EFPWT","tsKey":"us-tennessee-bledsoe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Bledsoe","slug":"us-tennessee-bledsoe-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK774S271GAN22RZ1H1V3","tsKey":"us-tennessee-blount-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Blount","slug":"us-tennessee-blount-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK772HAV3Y3R2N21NG1H9","tsKey":"us-tennessee-bradley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Bradley","slug":"us-tennessee-bradley-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK7713YT3GFS99V7YFKCT","tsKey":"us-tennessee-campbell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Campbell","slug":"us-tennessee-campbell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK776MFPEQ2W881VSPG4E","tsKey":"us-tennessee-cannon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Cannon","slug":"us-tennessee-cannon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK772NGMVF6S89WJWJ4Q5","tsKey":"us-tennessee-carroll-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Carroll","slug":"us-tennessee-carroll-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK774ZFRXTZQGGAR6PSDZ","tsKey":"us-tennessee-carter-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Carter","slug":"us-tennessee-carter-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK77263SKY2EJVVW3FGX4","tsKey":"us-tennessee-cheatham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Cheatham","slug":"us-tennessee-cheatham-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK775BTTDSHC1YEKPY16Y","tsKey":"us-tennessee-chester-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Chester","slug":"us-tennessee-chester-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK772PMSA3FJXZY3W69NG","tsKey":"us-tennessee-claiborne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Claiborne","slug":"us-tennessee-claiborne-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK771NC7B75E8AC48SB2A","tsKey":"us-tennessee-clay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Clay","slug":"us-tennessee-clay-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK775MKJAT7T7FF2MA5JK","tsKey":"us-tennessee-cocke-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Cocke","slug":"us-tennessee-cocke-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK771QS1S2HX4JB81CQNS","tsKey":"us-tennessee-coffee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Coffee","slug":"us-tennessee-coffee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK772WWHSZHZ8P84E2W1W","tsKey":"us-tennessee-crockett-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Crockett","slug":"us-tennessee-crockett-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK772PK205A67ATDAT7SM","tsKey":"us-tennessee-cumberland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Cumberland","slug":"us-tennessee-cumberland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK774JQD3ZDVN5APH40QZ","tsKey":"us-tennessee-davidson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Davidson","slug":"us-tennessee-davidson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK775HQT62C50D28N74PS","tsKey":"us-tennessee-decatur-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Decatur","slug":"us-tennessee-decatur-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK772K91EXWSJ61GJ7D55","tsKey":"us-tennessee-dekalb-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"DeKalb","slug":"us-tennessee-dekalb-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK775R6QDR0P9PMGZ4BN6","tsKey":"us-tennessee-dickson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Dickson","slug":"us-tennessee-dickson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK7719JW503AWGGK4SQ9B","tsKey":"us-tennessee-dyer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Dyer","slug":"us-tennessee-dyer-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK7722DEKPE80EGXZPSC4","tsKey":"us-tennessee-fayette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Fayette","slug":"us-tennessee-fayette-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK772QZGE5224ZFV8J7JT","tsKey":"us-tennessee-fentress-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Fentress","slug":"us-tennessee-fentress-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK774MA0PAJ5CVD5G47MX","tsKey":"us-tennessee-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Franklin","slug":"us-tennessee-franklin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK775N2B6WC2SMYRQTA87","tsKey":"us-tennessee-gibson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Gibson","slug":"us-tennessee-gibson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK775DYDWQVANKHXDEJQC","tsKey":"us-tennessee-giles-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Giles","slug":"us-tennessee-giles-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK7715D21D8XBAK4WY6QT","tsKey":"us-tennessee-grainger-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Grainger","slug":"us-tennessee-grainger-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK7726AE54MGK8YMY5END","tsKey":"us-tennessee-greene-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Greene","slug":"us-tennessee-greene-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK77273A2Y4WKVC1ZX1RW","tsKey":"us-tennessee-grundy-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Grundy","slug":"us-tennessee-grundy-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK7742RW1TGX8MR7KKDAJ","tsKey":"us-tennessee-hamblen-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Hamblen","slug":"us-tennessee-hamblen-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK773GB901TKXT8TT8A3N","tsKey":"us-tennessee-hamilton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Hamilton","slug":"us-tennessee-hamilton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK7737V5Q47RNH89HK220","tsKey":"us-tennessee-hancock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Hancock","slug":"us-tennessee-hancock-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK771WBJZNYWBT4VZPQEQ","tsKey":"us-tennessee-hardeman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Hardeman","slug":"us-tennessee-hardeman-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK773KDZ17REN23GJMV7P","tsKey":"us-tennessee-hardin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Hardin","slug":"us-tennessee-hardin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK775A87A1P86BX4F6270","tsKey":"us-tennessee-hawkins-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Hawkins","slug":"us-tennessee-hawkins-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK774TN193TVXJX8JMWJH","tsKey":"us-tennessee-haywood-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Haywood","slug":"us-tennessee-haywood-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK773JNRZF1TWPSCSJ8W2","tsKey":"us-tennessee-henderson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Henderson","slug":"us-tennessee-henderson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK7759A21C23RSZPXK7Q2","tsKey":"us-tennessee-henry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Henry","slug":"us-tennessee-henry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK771P9NYDZD1BV82ARJX","tsKey":"us-tennessee-hickman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Hickman","slug":"us-tennessee-hickman-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK7730TWGE8SZXVSEJY1N","tsKey":"us-tennessee-houston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Houston","slug":"us-tennessee-houston-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK7747H27TGDJWBS6WECZ","tsKey":"us-tennessee-humphreys-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Humphreys","slug":"us-tennessee-humphreys-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK773YY57SCY0MR18K8SB","tsKey":"us-tennessee-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Jackson","slug":"us-tennessee-jackson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK7756NEC12SDCRG4Q65M","tsKey":"us-tennessee-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Jefferson","slug":"us-tennessee-jefferson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK775PMF4S74M238N5PZT","tsKey":"us-tennessee-johnson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Johnson","slug":"us-tennessee-johnson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK7710G9A2RDKHKYXHY5R","tsKey":"us-tennessee-knox-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Knox","slug":"us-tennessee-knox-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK7730FKC8MEE6VYQZ2GA","tsKey":"us-tennessee-lake-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Lake","slug":"us-tennessee-lake-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK776X7X7KAXNABPP7H1B","tsKey":"us-tennessee-lauderdale-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Lauderdale","slug":"us-tennessee-lauderdale-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK774HVMK5T0KA1KMCKPZ","tsKey":"us-tennessee-lawrence-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Lawrence","slug":"us-tennessee-lawrence-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK773T9NHFEK0SFBFTM1S","tsKey":"us-tennessee-lewis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Lewis","slug":"us-tennessee-lewis-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK776XEZE5RB5G26H0EJE","tsKey":"us-tennessee-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Lincoln","slug":"us-tennessee-lincoln-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK77158X1F8978QEB36B2","tsKey":"us-tennessee-loudon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Loudon","slug":"us-tennessee-loudon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK773666AG87F3Q1J9584","tsKey":"us-tennessee-macon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Macon","slug":"us-tennessee-macon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK774JGZX35KHSSECW2XH","tsKey":"us-tennessee-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Madison","slug":"us-tennessee-madison-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK776AX08M5N81RR0XX06","tsKey":"us-tennessee-marion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Marion","slug":"us-tennessee-marion-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK771595X5CPCY21SHFRW","tsKey":"us-tennessee-marshall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Marshall","slug":"us-tennessee-marshall-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK773H0JWFK0FN4693KK9","tsKey":"us-tennessee-maury-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Maury","slug":"us-tennessee-maury-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK773KBHA2W2AKR5WHV00","tsKey":"us-tennessee-mcminn-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"McMinn","slug":"us-tennessee-mcminn-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK773DR9A9KK7A2GRHB1N","tsKey":"us-tennessee-mcnairy-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"McNairy","slug":"us-tennessee-mcnairy-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK7768H2XSWV1NEENG6SQ","tsKey":"us-tennessee-meigs-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Meigs","slug":"us-tennessee-meigs-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK776KKJHRB6NRDYTYTJ6","tsKey":"us-tennessee-monroe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Monroe","slug":"us-tennessee-monroe-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK773EJKNG3KE9PR9AJ1Y","tsKey":"us-tennessee-montgomery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Montgomery","slug":"us-tennessee-montgomery-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK775YD66AD58RJ4JD8SH","tsKey":"us-tennessee-moore-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Moore","slug":"us-tennessee-moore-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK7724T0ZVN1GVFQSD6S3","tsKey":"us-tennessee-morgan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Morgan","slug":"us-tennessee-morgan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK7769GZC122H1A03J4N7","tsKey":"us-tennessee-obion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Obion","slug":"us-tennessee-obion-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK775RMEG5JPS9MKNZAXR","tsKey":"us-tennessee-overton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Overton","slug":"us-tennessee-overton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK773PARN4F481XT0A1GW","tsKey":"us-tennessee-perry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Perry","slug":"us-tennessee-perry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK7739F5VQV85YNCMVSDY","tsKey":"us-tennessee-pickett-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Pickett","slug":"us-tennessee-pickett-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK772KQ6F5TFAHVFFS513","tsKey":"us-tennessee-polk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Polk","slug":"us-tennessee-polk-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK773DXRH3Y8A83S8SQB9","tsKey":"us-tennessee-putnam-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Putnam","slug":"us-tennessee-putnam-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK774DHWHCVZ69JMV24VM","tsKey":"us-tennessee-rhea-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Rhea","slug":"us-tennessee-rhea-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK7755K3TF704T55V6TZZ","tsKey":"us-tennessee-roane-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Roane","slug":"us-tennessee-roane-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK774J99A6QQ2ZPHAM90J","tsKey":"us-tennessee-robertson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Robertson","slug":"us-tennessee-robertson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK774J91RED3Q498YAHCV","tsKey":"us-tennessee-rutherford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Rutherford","slug":"us-tennessee-rutherford-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK772P1H2FFZDVYFDFWBY","tsKey":"us-tennessee-scott-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Scott","slug":"us-tennessee-scott-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK7765NVBZ05PFEDNGK9G","tsKey":"us-tennessee-sequatchie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Sequatchie","slug":"us-tennessee-sequatchie-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK77441ZSWNNEHMB5H2E6","tsKey":"us-tennessee-sevier-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Sevier","slug":"us-tennessee-sevier-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK77635XKC5RQ1BKGG75E","tsKey":"us-tennessee-shelby-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Shelby","slug":"us-tennessee-shelby-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK775AH3NC648AGP5PWJA","tsKey":"us-tennessee-smith-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Smith","slug":"us-tennessee-smith-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK77495HGMQ79GBT81SY6","tsKey":"us-tennessee-stewart-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Stewart","slug":"us-tennessee-stewart-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK776DTQ7SXBPTSB0AWND","tsKey":"us-tennessee-sullivan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Sullivan","slug":"us-tennessee-sullivan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK775HAM3Q647RS9T1C7A","tsKey":"us-tennessee-sumner-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Sumner","slug":"us-tennessee-sumner-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK774SZBVARTENW9KDX4Q","tsKey":"us-tennessee-tipton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Tipton","slug":"us-tennessee-tipton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK776AG5TEFHV7SS4F0AK","tsKey":"us-tennessee-trousdale-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Trousdale","slug":"us-tennessee-trousdale-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK7761XKZQA21H787JT2Z","tsKey":"us-tennessee-unicoi-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Unicoi","slug":"us-tennessee-unicoi-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK772AAFA6C6VH786MTGP","tsKey":"us-tennessee-union-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Union","slug":"us-tennessee-union-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK774CZ7QP5PSR8D1VHG2","tsKey":"us-tennessee-van-buren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Van Buren","slug":"us-tennessee-van-buren-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK774N851RQ6V5WT8WMW6","tsKey":"us-tennessee-warren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Warren","slug":"us-tennessee-warren-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK772GG41GNFY4QK85F35","tsKey":"us-tennessee-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Washington","slug":"us-tennessee-washington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK776S9EEPDFXEGD3WAHG","tsKey":"us-tennessee-wayne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Wayne","slug":"us-tennessee-wayne-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK775CCZVT1MMT1C9EPB4","tsKey":"us-tennessee-weakley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Weakley","slug":"us-tennessee-weakley-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK7729PZAW0Y0J74GNSDM","tsKey":"us-tennessee-white-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"White","slug":"us-tennessee-white-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK7750HXCBEX9YG1PY5H8","tsKey":"us-tennessee-williamson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Williamson","slug":"us-tennessee-williamson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK772NZHG6EB10PS1ZP04","tsKey":"us-tennessee-wilson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","name":"Wilson","slug":"us-tennessee-wilson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","tsKey":"us-texas","tsNs":"gov-dist","abbrev":"TX","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Texas","slug":"us-texas","iso":"US-TX","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK865KM0WKPQFYNSGXXG8","tsKey":"us-texas-anderson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Anderson","slug":"us-texas-anderson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK867DVCNCX81ZZ41H0QA","tsKey":"us-texas-andrews-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Andrews","slug":"us-texas-andrews-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86BVGA042YC6JJR6SY0","tsKey":"us-texas-angelina-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Angelina","slug":"us-texas-angelina-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86CS4JE17WGE19T7H05","tsKey":"us-texas-aransas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Aransas","slug":"us-texas-aransas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK860N5VH6T5EWQN8JNGJ","tsKey":"us-texas-archer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Archer","slug":"us-texas-archer-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK860XP5S3NX14535446X","tsKey":"us-texas-armstrong-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Armstrong","slug":"us-texas-armstrong-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8654AS34NVME9EPGE0W","tsKey":"us-texas-atascosa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Atascosa","slug":"us-texas-atascosa-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK865VJTCZFGSB97XDBE8","tsKey":"us-texas-austin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Austin","slug":"us-texas-austin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK865M78VGFHRAWDNDPAJ","tsKey":"us-texas-bailey-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Bailey","slug":"us-texas-bailey-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK867D87AK3CD25FB4WQE","tsKey":"us-texas-bandera-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Bandera","slug":"us-texas-bandera-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK860S1FQBPDNECFYKHGZ","tsKey":"us-texas-bastrop-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Bastrop","slug":"us-texas-bastrop-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK865PNVBM27SJHTJ2JQF","tsKey":"us-texas-baylor-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Baylor","slug":"us-texas-baylor-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8657SMPDNW8A1868G0C","tsKey":"us-texas-bee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Bee","slug":"us-texas-bee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8671NT52J3J4BZ8ZCNP","tsKey":"us-texas-bell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Bell","slug":"us-texas-bell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8655ENYRSP0DY69161K","tsKey":"us-texas-bexar-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Bexar","slug":"us-texas-bexar-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK860EK9QBMZ2Z7R8B4FN","tsKey":"us-texas-blanco-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Blanco","slug":"us-texas-blanco-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK865ERYJW6FJ3ERFJRER","tsKey":"us-texas-borden-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Borden","slug":"us-texas-borden-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK865BWBAEE6HY3JYBT75","tsKey":"us-texas-bosque-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Bosque","slug":"us-texas-bosque-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86CBYHYVPW1SFAWK8G7","tsKey":"us-texas-bowie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Bowie","slug":"us-texas-bowie-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8656BXZTXNTNJHQ1Z5R","tsKey":"us-texas-brazoria-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Brazoria","slug":"us-texas-brazoria-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86740YG45T5YJK9XFMD","tsKey":"us-texas-brazos-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Brazos","slug":"us-texas-brazos-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86C5SNN97YTMRF7FWXM","tsKey":"us-texas-brewster-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Brewster","slug":"us-texas-brewster-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK862EAJ2M1V4PPWE8E0C","tsKey":"us-texas-briscoe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Briscoe","slug":"us-texas-briscoe-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK860YCDN3N1CDNGVPDF5","tsKey":"us-texas-brooks-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Brooks","slug":"us-texas-brooks-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8621FM0CMYSDQ4FVRKX","tsKey":"us-texas-brown-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Brown","slug":"us-texas-brown-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86CH74KQANXHPDET380","tsKey":"us-texas-burleson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Burleson","slug":"us-texas-burleson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK860N82Q54JC8E2FZXHA","tsKey":"us-texas-burnet-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Burnet","slug":"us-texas-burnet-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8625FD701KD48B94E9T","tsKey":"us-texas-caldwell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Caldwell","slug":"us-texas-caldwell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86CG5PGZ07X2MYAGRVG","tsKey":"us-texas-calhoun-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Calhoun","slug":"us-texas-calhoun-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK867NDTNV6K8NT7C5ZHQ","tsKey":"us-texas-callahan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Callahan","slug":"us-texas-callahan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK862V3Z5MD201YG5T07V","tsKey":"us-texas-cameron-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Cameron","slug":"us-texas-cameron-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK860DXMAM2J34QBT27N1","tsKey":"us-texas-camp-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Camp","slug":"us-texas-camp-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK863ZE25XXRQ2SGSK2KN","tsKey":"us-texas-carson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Carson","slug":"us-texas-carson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86365JDFNX34J6TZSWZ","tsKey":"us-texas-cass-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Cass","slug":"us-texas-cass-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK860NR2JCNMXFCC1N9B3","tsKey":"us-texas-castro-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Castro","slug":"us-texas-castro-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86C2YH9GJ2CJSDB8T36","tsKey":"us-texas-chambers-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Chambers","slug":"us-texas-chambers-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8639MTTG69P15XNNZ4G","tsKey":"us-texas-cherokee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Cherokee","slug":"us-texas-cherokee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK867736AQJDV201AZRZ7","tsKey":"us-texas-childress-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Childress","slug":"us-texas-childress-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK863MW725PQW4TEBER0C","tsKey":"us-texas-clay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Clay","slug":"us-texas-clay-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK860T88HD3DX65EWV83P","tsKey":"us-texas-cochran-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Cochran","slug":"us-texas-cochran-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK863E69GABGE5BRZRZJK","tsKey":"us-texas-coke-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Coke","slug":"us-texas-coke-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK867MEKX9EWS3X2F7DM2","tsKey":"us-texas-coleman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Coleman","slug":"us-texas-coleman-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK863KAS8FJN4YCFN0QDH","tsKey":"us-texas-collin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Collin","slug":"us-texas-collin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK863AEHK5D48M38T0J9Z","tsKey":"us-texas-collingsworth-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Collingsworth","slug":"us-texas-collingsworth-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK867SB4J437F9YB80C8E","tsKey":"us-texas-colorado-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Colorado","slug":"us-texas-colorado-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8636TPD96Y9AA0N6M3Y","tsKey":"us-texas-comal-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Comal","slug":"us-texas-comal-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86CXWK7VDBTBDDBTT9C","tsKey":"us-texas-comanche-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Comanche","slug":"us-texas-comanche-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK860EXBRYT43QVAN83A2","tsKey":"us-texas-concho-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Concho","slug":"us-texas-concho-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86CDJZ0ZQQY45HGK1VR","tsKey":"us-texas-cooke-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Cooke","slug":"us-texas-cooke-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8602WCQ2YB4MV3M2KAT","tsKey":"us-texas-coryell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Coryell","slug":"us-texas-coryell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8691VXWYY6EHM0S8ZKW","tsKey":"us-texas-cottle-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Cottle","slug":"us-texas-cottle-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8600X4VMJ6VWPDYNVQX","tsKey":"us-texas-crane-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Crane","slug":"us-texas-crane-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK869RJPVSBKGB3Y01QQ6","tsKey":"us-texas-crockett-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Crockett","slug":"us-texas-crockett-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK867X23DPPXCNP5EXXKR","tsKey":"us-texas-crosby-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Crosby","slug":"us-texas-crosby-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86983QRKVABDGD07NRK","tsKey":"us-texas-culberson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Culberson","slug":"us-texas-culberson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK869DKJ7HE4MMKHRNB20","tsKey":"us-texas-dallam-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Dallam","slug":"us-texas-dallam-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8696WAJDX9GMRRZGEAJ","tsKey":"us-texas-dallas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Dallas","slug":"us-texas-dallas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK860MNPR668GZY19M43V","tsKey":"us-texas-dawson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Dawson","slug":"us-texas-dawson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86CWA4KF28XSXZH59N1","tsKey":"us-texas-deaf-smith-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Deaf Smith","slug":"us-texas-deaf-smith-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK867ARSWXQ5N8ZP8PB18","tsKey":"us-texas-delta-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Delta","slug":"us-texas-delta-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK869GCP8Y4S7MTRHP506","tsKey":"us-texas-denton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Denton","slug":"us-texas-denton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK861175X4GF2E79G8VNV","tsKey":"us-texas-dewitt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"DeWitt","slug":"us-texas-dewitt-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8695QR93VBES8SJT6XH","tsKey":"us-texas-dickens-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Dickens","slug":"us-texas-dickens-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK861667CQ5K72WGDN94W","tsKey":"us-texas-dimmit-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Dimmit","slug":"us-texas-dimmit-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86DW3JSPNTRXF8QYPBK","tsKey":"us-texas-donley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Donley","slug":"us-texas-donley-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8687B4ZK3ZR1TR7VGGM","tsKey":"us-texas-duval-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Duval","slug":"us-texas-duval-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK869GM8R6RYG4JJC0TBK","tsKey":"us-texas-eastland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Eastland","slug":"us-texas-eastland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86C3GQS4CX3ZPE3WKEN","tsKey":"us-texas-ector-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Ector","slug":"us-texas-ector-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK861901MZ7AY6Y2TVYS4","tsKey":"us-texas-edwards-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Edwards","slug":"us-texas-edwards-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8690FVSZRGWC4RY2J0B","tsKey":"us-texas-ellis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Ellis","slug":"us-texas-ellis-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86CZ480KDJ62VF27MH0","tsKey":"us-texas-el-paso-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"El Paso","slug":"us-texas-el-paso-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK868KSFZ9E1ZRT11GZ4T","tsKey":"us-texas-erath-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Erath","slug":"us-texas-erath-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86971CEEQ348ZRM9V3S","tsKey":"us-texas-falls-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Falls","slug":"us-texas-falls-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8691PJQE0FVAX0C48N6","tsKey":"us-texas-fannin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Fannin","slug":"us-texas-fannin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86159KX3NS21BJN8P1Q","tsKey":"us-texas-fayette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Fayette","slug":"us-texas-fayette-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8698WQ4F3PHPX98VMYJ","tsKey":"us-texas-fisher-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Fisher","slug":"us-texas-fisher-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8684VDMKTSEJMMAN9BK","tsKey":"us-texas-floyd-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Floyd","slug":"us-texas-floyd-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86CJA4S42HQX88SVW0N","tsKey":"us-texas-foard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Foard","slug":"us-texas-foard-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK869E0W9TQGSMFHHEW8C","tsKey":"us-texas-fort-bend-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Fort Bend","slug":"us-texas-fort-bend-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK861R63S1EXDBKV7VT1Y","tsKey":"us-texas-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Franklin","slug":"us-texas-franklin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86D17D9JGNJQZ6A7RXV","tsKey":"us-texas-freestone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Freestone","slug":"us-texas-freestone-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK868V4GPPK9R5F3XNWMT","tsKey":"us-texas-frio-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Frio","slug":"us-texas-frio-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86D252EE9XPF3D12D4R","tsKey":"us-texas-gaines-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Gaines","slug":"us-texas-gaines-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86DS3836JV8Z1PJKN0F","tsKey":"us-texas-galveston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Galveston","slug":"us-texas-galveston-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK861H9SHAGT8WCYNTYY3","tsKey":"us-texas-garza-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Garza","slug":"us-texas-garza-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK868FX6V4Q43DQK5S5ZN","tsKey":"us-texas-gillespie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Gillespie","slug":"us-texas-gillespie-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8687RSWMYAHH07B26TF","tsKey":"us-texas-glasscock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Glasscock","slug":"us-texas-glasscock-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK868BXQMES01761B7TP9","tsKey":"us-texas-goliad-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Goliad","slug":"us-texas-goliad-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86190VD5Y8XDAX8RH2F","tsKey":"us-texas-gonzales-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Gonzales","slug":"us-texas-gonzales-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK861RVJ0BKJPTZRK4F0T","tsKey":"us-texas-gray-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Gray","slug":"us-texas-gray-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86A5YWVMD2Z4FVMYAHG","tsKey":"us-texas-grayson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Grayson","slug":"us-texas-grayson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK868N46C8KZ8DNSN5XDZ","tsKey":"us-texas-gregg-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Gregg","slug":"us-texas-gregg-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK861MSDV2K5E3M40NPTA","tsKey":"us-texas-grimes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Grimes","slug":"us-texas-grimes-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK868T9FHE9CXZN1ETGST","tsKey":"us-texas-guadalupe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Guadalupe","slug":"us-texas-guadalupe-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86AQ68SX90T4VZRGR80","tsKey":"us-texas-hale-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Hale","slug":"us-texas-hale-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK861600EK0WC65DRNDG7","tsKey":"us-texas-hall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Hall","slug":"us-texas-hall-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86A3108V5TPYARK1AX7","tsKey":"us-texas-hamilton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Hamilton","slug":"us-texas-hamilton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK861G6R66DQG02XV540A","tsKey":"us-texas-hansford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Hansford","slug":"us-texas-hansford-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86AA5T6NWT3QNCXFFR8","tsKey":"us-texas-hardeman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Hardeman","slug":"us-texas-hardeman-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86AKXX3DQ1WTWMSJQMK","tsKey":"us-texas-hardin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Hardin","slug":"us-texas-hardin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86AR40C01VR6K43ADR6","tsKey":"us-texas-harris-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Harris","slug":"us-texas-harris-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86AXB1BDPDQS673T4SJ","tsKey":"us-texas-harrison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Harrison","slug":"us-texas-harrison-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK868YTCP5SNG2JAC5NMW","tsKey":"us-texas-hartley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Hartley","slug":"us-texas-hartley-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86DHRAMCEK06PXHMTVX","tsKey":"us-texas-haskell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Haskell","slug":"us-texas-haskell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8681EXYJSPQ0PSC0PNR","tsKey":"us-texas-hays-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Hays","slug":"us-texas-hays-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86A61BFPTG6Z62Q5VXZ","tsKey":"us-texas-hemphill-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Hemphill","slug":"us-texas-hemphill-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86A9RGPDNF1VV57VJJX","tsKey":"us-texas-henderson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Henderson","slug":"us-texas-henderson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86A31WVWDFTCW1XX7VE","tsKey":"us-texas-hidalgo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Hidalgo","slug":"us-texas-hidalgo-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK861K68J7D0X1V168C1Y","tsKey":"us-texas-hill-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Hill","slug":"us-texas-hill-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK868XWBZZ5CP1ZWNB47V","tsKey":"us-texas-hockley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Hockley","slug":"us-texas-hockley-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86D0QQBFR3R6MMV95AF","tsKey":"us-texas-hood-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Hood","slug":"us-texas-hood-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86ANZTEC4G04BN5D6HG","tsKey":"us-texas-hopkins-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Hopkins","slug":"us-texas-hopkins-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86DXCZ9GRVPH6GXWTD1","tsKey":"us-texas-houston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Houston","slug":"us-texas-houston-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK861MQDSQ1F28CRM9Q6B","tsKey":"us-texas-howard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Howard","slug":"us-texas-howard-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86D8H7Z18A3MSWN5YHV","tsKey":"us-texas-hudspeth-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Hudspeth","slug":"us-texas-hudspeth-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK868P73W7P0ZKN6P1Z49","tsKey":"us-texas-hunt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Hunt","slug":"us-texas-hunt-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK861PN307GW4RBZ3WJV4","tsKey":"us-texas-hutchinson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Hutchinson","slug":"us-texas-hutchinson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86A7PJ694QW392HP2T3","tsKey":"us-texas-irion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Irion","slug":"us-texas-irion-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86A134SHRMV91BWZ5XD","tsKey":"us-texas-jack-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Jack","slug":"us-texas-jack-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86A7ESPX6QR6ZMNNBBB","tsKey":"us-texas-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Jackson","slug":"us-texas-jackson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8680M7WZVTM360JW374","tsKey":"us-texas-jasper-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Jasper","slug":"us-texas-jasper-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86ANFH15YNK7JBHJDGX","tsKey":"us-texas-jeff-davis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Jeff Davis","slug":"us-texas-jeff-davis-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86DESAQ6043E0A8XC0P","tsKey":"us-texas-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Jefferson","slug":"us-texas-jefferson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK861NNSBEJQRZAAVE99T","tsKey":"us-texas-jim-hogg-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Jim Hogg","slug":"us-texas-jim-hogg-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86B2BBHVYTXW819GZBM","tsKey":"us-texas-jim-wells-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Jim Wells","slug":"us-texas-jim-wells-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK861B7WJYEF8YTBVR36Q","tsKey":"us-texas-johnson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Johnson","slug":"us-texas-johnson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86BK3TRMK8PFG5WWK9F","tsKey":"us-texas-jones-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Jones","slug":"us-texas-jones-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK868QWDX846QTSD9WXYW","tsKey":"us-texas-karnes-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Karnes","slug":"us-texas-karnes-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86D29ZQ71G9D82CD4PB","tsKey":"us-texas-kaufman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Kaufman","slug":"us-texas-kaufman-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86BF95QT2AGFTD0P6A5","tsKey":"us-texas-kendall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Kendall","slug":"us-texas-kendall-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86CRSP9BR6XWTBS8P95","tsKey":"us-texas-kenedy-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Kenedy","slug":"us-texas-kenedy-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK862QZSMRZVD30TCPKMF","tsKey":"us-texas-kent-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Kent","slug":"us-texas-kent-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK862XF3SCPAA4TKPWJHK","tsKey":"us-texas-kerr-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Kerr","slug":"us-texas-kerr-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK865QR07CHB6C41PS4SD","tsKey":"us-texas-kimble-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Kimble","slug":"us-texas-kimble-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK868CF1V51FVK1AV7JF6","tsKey":"us-texas-king-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"King","slug":"us-texas-king-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK865N95H64FCFWK3AWE8","tsKey":"us-texas-kinney-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Kinney","slug":"us-texas-kinney-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86CSXQB1SER0DWSSA9Q","tsKey":"us-texas-kleberg-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Kleberg","slug":"us-texas-kleberg-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8626D4FD9VXH63ZCZKY","tsKey":"us-texas-knox-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Knox","slug":"us-texas-knox-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK865G070KG3NFZFC5S7W","tsKey":"us-texas-lamar-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Lamar","slug":"us-texas-lamar-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK868Y51WPCE9AR6ZF2GX","tsKey":"us-texas-lamb-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Lamb","slug":"us-texas-lamb-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK865J32WBGDAJ6KNVHNC","tsKey":"us-texas-lampasas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Lampasas","slug":"us-texas-lampasas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK862BNW53YG9RRA0ETD7","tsKey":"us-texas-la-salle-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"La Salle","slug":"us-texas-la-salle-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8651YFR6CX8SB8ZS7ZE","tsKey":"us-texas-lavaca-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Lavaca","slug":"us-texas-lavaca-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK866JBGYSGCR5REAQVXT","tsKey":"us-texas-lee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Lee","slug":"us-texas-lee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK868FHNR6PK8C60MRGFF","tsKey":"us-texas-leon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Leon","slug":"us-texas-leon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8669GNYY03ZPFWP8ZDP","tsKey":"us-texas-liberty-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Liberty","slug":"us-texas-liberty-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK866DV5AB3YAZYRTJADR","tsKey":"us-texas-limestone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Limestone","slug":"us-texas-limestone-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK866F8RVDF21Z2PXADMW","tsKey":"us-texas-lipscomb-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Lipscomb","slug":"us-texas-lipscomb-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8622SQ4NJJ8PD8MJJTR","tsKey":"us-texas-live-oak-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Live Oak","slug":"us-texas-live-oak-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK869PJVPD4W47HMA44K4","tsKey":"us-texas-llano-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Llano","slug":"us-texas-llano-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK866JFW2YHJF8W6WYTZY","tsKey":"us-texas-loving-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Loving","slug":"us-texas-loving-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK862K3VP4YWBT6P26Q1E","tsKey":"us-texas-lubbock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Lubbock","slug":"us-texas-lubbock-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8662QSTM9V0T785AX3Z","tsKey":"us-texas-lynn-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Lynn","slug":"us-texas-lynn-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8694DZNHW4ECPCRCDKT","tsKey":"us-texas-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Madison","slug":"us-texas-madison-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86CPJZTVAQ4GCM8D7ZV","tsKey":"us-texas-marion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Marion","slug":"us-texas-marion-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8662CRSDVRZNZT0ENK1","tsKey":"us-texas-martin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Martin","slug":"us-texas-martin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8620T40PZWH4HSMQVGQ","tsKey":"us-texas-mason-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Mason","slug":"us-texas-mason-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86CG71XH4QAVK33HX7Q","tsKey":"us-texas-matagorda-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Matagorda","slug":"us-texas-matagorda-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK866GS2VP5ZEQN32NZ7W","tsKey":"us-texas-maverick-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Maverick","slug":"us-texas-maverick-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK866CCBRZYM2EGX10VKT","tsKey":"us-texas-mcculloch-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"McCulloch","slug":"us-texas-mcculloch-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK862V0E9751TPD6S42WJ","tsKey":"us-texas-mclennan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"McLennan","slug":"us-texas-mclennan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86C2DK18268A5VXW1S9","tsKey":"us-texas-mcmullen-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"McMullen","slug":"us-texas-mcmullen-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK869RQRZBN8PKMPRB0A5","tsKey":"us-texas-medina-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Medina","slug":"us-texas-medina-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK866WN9Y2EM9G56AH33Q","tsKey":"us-texas-menard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Menard","slug":"us-texas-menard-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86239SS8G1NZ1H0PTDP","tsKey":"us-texas-midland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Midland","slug":"us-texas-midland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8669GA1T94EE0FMC3DT","tsKey":"us-texas-milam-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Milam","slug":"us-texas-milam-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK866AJWG1T21WA55RKF2","tsKey":"us-texas-mills-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Mills","slug":"us-texas-mills-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK869YAM7VGAH4N1VVEY9","tsKey":"us-texas-mitchell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Mitchell","slug":"us-texas-mitchell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86CSKJCJ5X33NR26Y2D","tsKey":"us-texas-montague-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Montague","slug":"us-texas-montague-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK862F1GCDK42W7H2SQ1V","tsKey":"us-texas-montgomery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Montgomery","slug":"us-texas-montgomery-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK866TGV150SZD4S970MG","tsKey":"us-texas-moore-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Moore","slug":"us-texas-moore-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK869JBRS3ZGASTQ13893","tsKey":"us-texas-morris-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Morris","slug":"us-texas-morris-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86AQ3YQVY3T799MDKKV","tsKey":"us-texas-motley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Motley","slug":"us-texas-motley-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86ANGEF83RCT44NH7SB","tsKey":"us-texas-nacogdoches-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Nacogdoches","slug":"us-texas-nacogdoches-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK862ED6RQ35MD2J3VXPE","tsKey":"us-texas-navarro-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Navarro","slug":"us-texas-navarro-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86A027DWX3Z8QGA24B5","tsKey":"us-texas-newton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Newton","slug":"us-texas-newton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK862WRANMKYNK49T05JH","tsKey":"us-texas-nolan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Nolan","slug":"us-texas-nolan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK866PA6RYAGN055AG0W6","tsKey":"us-texas-nueces-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Nueces","slug":"us-texas-nueces-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK85YY2M6XVGH9W541NKV","tsKey":"us-texas-ochiltree-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Ochiltree","slug":"us-texas-ochiltree-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK85YQ2EF0N8HFPPEDMX0","tsKey":"us-texas-oldham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Oldham","slug":"us-texas-oldham-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8630471R2N9MDF1282K","tsKey":"us-texas-orange-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Orange","slug":"us-texas-orange-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK866PX2WXV8NE24YEZ1P","tsKey":"us-texas-palo-pinto-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Palo Pinto","slug":"us-texas-palo-pinto-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86D9WWBQD38NF0TQM1Z","tsKey":"us-texas-panola-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Panola","slug":"us-texas-panola-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK85Y2CB9CX9A76NQR9VD","tsKey":"us-texas-parker-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Parker","slug":"us-texas-parker-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK863R6NN53YDP9N0SZHY","tsKey":"us-texas-parmer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Parmer","slug":"us-texas-parmer-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86B8VCT6EXFXE1TX50P","tsKey":"us-texas-pecos-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Pecos","slug":"us-texas-pecos-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK866VYMDN3D18TPWY4KX","tsKey":"us-texas-polk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Polk","slug":"us-texas-polk-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86DGSVBWE046P8V0551","tsKey":"us-texas-potter-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Potter","slug":"us-texas-potter-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86BCSPP9SJ933TVHGND","tsKey":"us-texas-presidio-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Presidio","slug":"us-texas-presidio-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK85YM8TAFBWCWYZ94Z3K","tsKey":"us-texas-rains-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Rains","slug":"us-texas-rains-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK85Y70TKKPBNH0XHCPAK","tsKey":"us-texas-randall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Randall","slug":"us-texas-randall-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK863ZZWNTG6C71J4NGS4","tsKey":"us-texas-reagan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Reagan","slug":"us-texas-reagan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK863FBJ64Z2S46WDAB1A","tsKey":"us-texas-real-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Real","slug":"us-texas-real-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK863HCMWC7CC76QH5X5Z","tsKey":"us-texas-red-river-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Red River","slug":"us-texas-red-river-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK866TMVNVMJP8H5MG0EV","tsKey":"us-texas-reeves-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Reeves","slug":"us-texas-reeves-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86BH17EMKTYJP8SPF4G","tsKey":"us-texas-refugio-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Refugio","slug":"us-texas-refugio-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK85YXV25G35HC8181R9Z","tsKey":"us-texas-roberts-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Roberts","slug":"us-texas-roberts-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8631C1816HKJ1666TY3","tsKey":"us-texas-robertson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Robertson","slug":"us-texas-robertson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK85ZQQD3668RBRF2G8TS","tsKey":"us-texas-rockwall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Rockwall","slug":"us-texas-rockwall-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8637TW5Y4QD18V26YN0","tsKey":"us-texas-runnels-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Runnels","slug":"us-texas-runnels-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86BM94GYR8FJWNDCBKY","tsKey":"us-texas-rusk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Rusk","slug":"us-texas-rusk-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK863E2W7PF8F0BBM8150","tsKey":"us-texas-sabine-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Sabine","slug":"us-texas-sabine-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK866FHHCVW31GWXHRPT6","tsKey":"us-texas-san-augustine-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"San Augustine","slug":"us-texas-san-augustine-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86B0HXQ7P5CZE9VRN9N","tsKey":"us-texas-san-jacinto-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"San Jacinto","slug":"us-texas-san-jacinto-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86BFHPQBERDZCNHHF1A","tsKey":"us-texas-san-patricio-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"San Patricio","slug":"us-texas-san-patricio-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK85ZQRZ926NF3VA4SC7G","tsKey":"us-texas-san-saba-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"San Saba","slug":"us-texas-san-saba-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK867BWWGDDW65BG18B61","tsKey":"us-texas-schleicher-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Schleicher","slug":"us-texas-schleicher-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK864CC9PEFH34C44G07X","tsKey":"us-texas-scurry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Scurry","slug":"us-texas-scurry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK864N4MZ7P397K5RFCDW","tsKey":"us-texas-shackelford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Shackelford","slug":"us-texas-shackelford-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86417AFYCMPK57F7AMC","tsKey":"us-texas-shelby-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Shelby","slug":"us-texas-shelby-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8679VJ66PMQ6NPWERCC","tsKey":"us-texas-sherman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Sherman","slug":"us-texas-sherman-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8640PVAZ7H6YN9EHGXF","tsKey":"us-texas-smith-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Smith","slug":"us-texas-smith-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK85Z5XWBWAE65V48EQ7N","tsKey":"us-texas-somervell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Somervell","slug":"us-texas-somervell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK864W3QD7YHAFGK1AVNR","tsKey":"us-texas-starr-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Starr","slug":"us-texas-starr-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK85Z91GV719TYMDN3P89","tsKey":"us-texas-stephens-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Stephens","slug":"us-texas-stephens-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8641GRZ3KKN8J9RV5M7","tsKey":"us-texas-sterling-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Sterling","slug":"us-texas-sterling-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK85ZAVACCP4TAGM0GXF2","tsKey":"us-texas-stonewall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Stonewall","slug":"us-texas-stonewall-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK864WX7H6X7RZNB25MZ1","tsKey":"us-texas-sutton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Sutton","slug":"us-texas-sutton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK864W823PJ26SWT469AJ","tsKey":"us-texas-swisher-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Swisher","slug":"us-texas-swisher-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK867XNRSZHPV7SB0Z0V1","tsKey":"us-texas-tarrant-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Tarrant","slug":"us-texas-tarrant-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK864E13DRWBG7R9RHRF1","tsKey":"us-texas-taylor-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Taylor","slug":"us-texas-taylor-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86BSVYMAY0MCZVXVGAP","tsKey":"us-texas-terrell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Terrell","slug":"us-texas-terrell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK85ZJB3A5J8MP392V38Q","tsKey":"us-texas-terry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Terry","slug":"us-texas-terry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK864F3VMC1BP9FXSGSRA","tsKey":"us-texas-throckmorton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Throckmorton","slug":"us-texas-throckmorton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK85Z9Y9KMJHJ4BP7QVAK","tsKey":"us-texas-titus-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Titus","slug":"us-texas-titus-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK864S55GKNY9EBR0GYDV","tsKey":"us-texas-tom-green-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Tom Green","slug":"us-texas-tom-green-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK864V115DGT5QA57A9VC","tsKey":"us-texas-travis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Travis","slug":"us-texas-travis-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8679F2504D509PS6Q4Z","tsKey":"us-texas-trinity-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Trinity","slug":"us-texas-trinity-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK864X2YKB1ZQ5XCC4NEK","tsKey":"us-texas-tyler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Tyler","slug":"us-texas-tyler-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK85ZPSPM92XEE5JHZZTV","tsKey":"us-texas-upshur-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Upshur","slug":"us-texas-upshur-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86BS1NFYQ4DR6HAS3BW","tsKey":"us-texas-upton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Upton","slug":"us-texas-upton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK85Z4H56VKVM2SF0ZAXK","tsKey":"us-texas-uvalde-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Uvalde","slug":"us-texas-uvalde-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86BF9CJXGZC9H7EXXNN","tsKey":"us-texas-val-verde-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Val Verde","slug":"us-texas-val-verde-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK864960JGT5WNZ043QF0","tsKey":"us-texas-van-zandt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Van Zandt","slug":"us-texas-van-zandt-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK864W7PE5VG26A9ZQGYT","tsKey":"us-texas-victoria-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Victoria","slug":"us-texas-victoria-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK867F1XBG5EYD9KQ9YKK","tsKey":"us-texas-walker-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Walker","slug":"us-texas-walker-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86B0TY1EJPYFZW3TYTZ","tsKey":"us-texas-waller-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Waller","slug":"us-texas-waller-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK85ZA2Q0EK6S1BV4J9R6","tsKey":"us-texas-ward-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Ward","slug":"us-texas-ward-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK864PB51HAF32NEPP1VX","tsKey":"us-texas-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Washington","slug":"us-texas-washington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86B2SG2SNWZ266MG5YJ","tsKey":"us-texas-webb-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Webb","slug":"us-texas-webb-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK867TV872KE92T8Y57N2","tsKey":"us-texas-wharton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Wharton","slug":"us-texas-wharton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK864XPW2BJ9Y7PVBS9WV","tsKey":"us-texas-wheeler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Wheeler","slug":"us-texas-wheeler-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK865PGY2FMADP18FRCX4","tsKey":"us-texas-wichita-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Wichita","slug":"us-texas-wichita-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86B1E08GD0RQKXGRTW4","tsKey":"us-texas-wilbarger-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Wilbarger","slug":"us-texas-wilbarger-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK865A2Z3SVBSY62QH8JR","tsKey":"us-texas-willacy-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Willacy","slug":"us-texas-willacy-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK85ZGZ3Y187XDHC8V641","tsKey":"us-texas-williamson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Williamson","slug":"us-texas-williamson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK867EN5XWS9DKHX6TFK6","tsKey":"us-texas-wilson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Wilson","slug":"us-texas-wilson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86BT68QGFRV4FR39MDM","tsKey":"us-texas-winkler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Winkler","slug":"us-texas-winkler-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK85ZGZPXD31JT7WKF6S2","tsKey":"us-texas-wise-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Wise","slug":"us-texas-wise-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86511GKYG74MDKMCCW4","tsKey":"us-texas-wood-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Wood","slug":"us-texas-wood-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86B53WDQPPQYSH7GYSG","tsKey":"us-texas-yoakum-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Yoakum","slug":"us-texas-yoakum-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK867TP5H09728DP3874Z","tsKey":"us-texas-young-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Young","slug":"us-texas-young-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK86BAG8TZAP6YQSMYYV8","tsKey":"us-texas-zapata-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Zapata","slug":"us-texas-zapata-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK85ZFWAN3XWR00T42Z3X","tsKey":"us-texas-zavala-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","name":"Zavala","slug":"us-texas-zavala-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023","tsKey":"us-utah","tsNs":"gov-dist","abbrev":"UT","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Utah","slug":"us-utah","iso":"US-UT","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK98HRX1BFGZY9R0SC260","tsKey":"us-utah-beaver-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023","name":"Beaver","slug":"us-utah-beaver-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK98JXMEVBWYGNTPN8RSV","tsKey":"us-utah-box-elder-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023","name":"Box Elder","slug":"us-utah-box-elder-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK98H04BKQ0PQ0QMHBQP1","tsKey":"us-utah-cache-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023","name":"Cache","slug":"us-utah-cache-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK98HG2J7M30AD7FBW910","tsKey":"us-utah-carbon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023","name":"Carbon","slug":"us-utah-carbon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK98HCJDV21TNVV4HN306","tsKey":"us-utah-daggett-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023","name":"Daggett","slug":"us-utah-daggett-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK98GYZN5MJA6GQM7QHG1","tsKey":"us-utah-davis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023","name":"Davis","slug":"us-utah-davis-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK98H9F5406ZZ7WSD4HCP","tsKey":"us-utah-duchesne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023","name":"Duchesne","slug":"us-utah-duchesne-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK98JWW80QD336955YA0E","tsKey":"us-utah-emery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023","name":"Emery","slug":"us-utah-emery-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK98JAK2GGG4QBSXZ82ZA","tsKey":"us-utah-garfield-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023","name":"Garfield","slug":"us-utah-garfield-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK98HNBMKTYB2YRK2PNVW","tsKey":"us-utah-grand-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023","name":"Grand","slug":"us-utah-grand-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK98JWZTVYSDGCPT1D4XX","tsKey":"us-utah-iron-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023","name":"Iron","slug":"us-utah-iron-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK98H2Y954B3PZZQC751J","tsKey":"us-utah-juab-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023","name":"Juab","slug":"us-utah-juab-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK98JTAXP7EYBA5YX4RRQ","tsKey":"us-utah-kane-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023","name":"Kane","slug":"us-utah-kane-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK98HH4RNSKR73YFGV0XF","tsKey":"us-utah-millard-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023","name":"Millard","slug":"us-utah-millard-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK98GXAEMQKFRDE39K2JE","tsKey":"us-utah-morgan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023","name":"Morgan","slug":"us-utah-morgan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK98GKGMZNPBWXNETRTYP","tsKey":"us-utah-piute-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023","name":"Piute","slug":"us-utah-piute-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK98HFRHEB14D497QR0XM","tsKey":"us-utah-rich-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023","name":"Rich","slug":"us-utah-rich-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK98GAW301K4PXXS7MKT8","tsKey":"us-utah-salt-lake-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023","name":"Salt Lake","slug":"us-utah-salt-lake-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK98HZZCWA7VV1QJ0N1AB","tsKey":"us-utah-san-juan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023","name":"San Juan","slug":"us-utah-san-juan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK98HWZE3VG4MRRRPQ241","tsKey":"us-utah-sanpete-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023","name":"Sanpete","slug":"us-utah-sanpete-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK98HTGQYQCBSVMAPMMT4","tsKey":"us-utah-sevier-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023","name":"Sevier","slug":"us-utah-sevier-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK98HBH9RE9R68CSCCX7D","tsKey":"us-utah-summit-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023","name":"Summit","slug":"us-utah-summit-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK98H162S44MV5B98NN4T","tsKey":"us-utah-tooele-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023","name":"Tooele","slug":"us-utah-tooele-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK98J1247471ZX03EGMZT","tsKey":"us-utah-uintah-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023","name":"Uintah","slug":"us-utah-uintah-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK98HP7YK2B2Q8RESP0DS","tsKey":"us-utah-utah-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023","name":"Utah","slug":"us-utah-utah-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK98HE3DC9W0X9MYT19DS","tsKey":"us-utah-wasatch-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023","name":"Wasatch","slug":"us-utah-wasatch-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK98JN80A260RA8NXDMJR","tsKey":"us-utah-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023","name":"Washington","slug":"us-utah-washington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK98HP9Z0H36YSFJSA7CF","tsKey":"us-utah-wayne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023","name":"Wayne","slug":"us-utah-wayne-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK98HJ535HXZH46E670FJ","tsKey":"us-utah-weber-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023","name":"Weber","slug":"us-utah-weber-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HK9J2HNR9ZCJJHF8WAGDT","tsKey":"us-vermont","tsNs":"gov-dist","abbrev":"VT","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Vermont","slug":"us-vermont","iso":"US-VT","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKA1DN1RDPNK833QTQ7XJ","tsKey":"us-vermont-addison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK9J2HNR9ZCJJHF8WAGDT","name":"Addison","slug":"us-vermont-addison-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKA1DZ85FZB0D3YW58BKJ","tsKey":"us-vermont-bennington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK9J2HNR9ZCJJHF8WAGDT","name":"Bennington","slug":"us-vermont-bennington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKA1CSWVQ0VB6FHB9PFQX","tsKey":"us-vermont-caledonia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK9J2HNR9ZCJJHF8WAGDT","name":"Caledonia","slug":"us-vermont-caledonia-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKA1DVN0JBPV2AVHQMN7P","tsKey":"us-vermont-chittenden-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK9J2HNR9ZCJJHF8WAGDT","name":"Chittenden","slug":"us-vermont-chittenden-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKA1DP57P5CWDPHVBZ9XA","tsKey":"us-vermont-essex-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK9J2HNR9ZCJJHF8WAGDT","name":"Essex","slug":"us-vermont-essex-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKA1DBG48D4YQ9PNPVP33","tsKey":"us-vermont-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK9J2HNR9ZCJJHF8WAGDT","name":"Franklin","slug":"us-vermont-franklin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKA1DT10W7BMXJAVK9GFT","tsKey":"us-vermont-grand-isle-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK9J2HNR9ZCJJHF8WAGDT","name":"Grand Isle","slug":"us-vermont-grand-isle-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKA1DR5Z3FS8R93GKGQ9G","tsKey":"us-vermont-lamoille-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK9J2HNR9ZCJJHF8WAGDT","name":"Lamoille","slug":"us-vermont-lamoille-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKA1DFK2M1AJAMTGXS54B","tsKey":"us-vermont-orange-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK9J2HNR9ZCJJHF8WAGDT","name":"Orange","slug":"us-vermont-orange-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKA1D6B6TGYJ70S5J9R4J","tsKey":"us-vermont-orleans-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK9J2HNR9ZCJJHF8WAGDT","name":"Orleans","slug":"us-vermont-orleans-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKA1DCP4F78171W7AJFQV","tsKey":"us-vermont-rutland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK9J2HNR9ZCJJHF8WAGDT","name":"Rutland","slug":"us-vermont-rutland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKA1DFC2GWHGW8SAQ3F5W","tsKey":"us-vermont-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK9J2HNR9ZCJJHF8WAGDT","name":"Washington","slug":"us-vermont-washington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKA1D3XVZ020NJY6F98CX","tsKey":"us-vermont-windham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK9J2HNR9ZCJJHF8WAGDT","name":"Windham","slug":"us-vermont-windham-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKA1DV1WJ0Q6TVA44NJ2D","tsKey":"us-vermont-windsor-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HK9J2HNR9ZCJJHF8WAGDT","name":"Windsor","slug":"us-vermont-windsor-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","tsKey":"us-virginia","tsNs":"gov-dist","abbrev":"VA","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Virginia","slug":"us-virginia","iso":"US-VA","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0PJZRSP1HDTZPWQZ0Q","tsKey":"us-virginia-accomack-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Accomack","slug":"us-virginia-accomack-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0JBK9TRQ1X194M03XA","tsKey":"us-virginia-albemarle-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Albemarle","slug":"us-virginia-albemarle-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0FW4TZW1KG1G2GGH6P","tsKey":"us-virginia-alexandria-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Alexandria","slug":"us-virginia-alexandria-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0H3ZS2Q9381Y1YTQJH","tsKey":"us-virginia-alleghany-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Alleghany","slug":"us-virginia-alleghany-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0GN3ECM4GEK863VWJ4","tsKey":"us-virginia-amelia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Amelia","slug":"us-virginia-amelia-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0J7W9VAA5Z2NP2DT0S","tsKey":"us-virginia-amherst-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Amherst","slug":"us-virginia-amherst-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0H586ZXETHKM0JR5QP","tsKey":"us-virginia-appomattox-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Appomattox","slug":"us-virginia-appomattox-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0HQ34JX4SB211WD84Q","tsKey":"us-virginia-arlington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Arlington","slug":"us-virginia-arlington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0HRY5D6E3P0F9WRY16","tsKey":"us-virginia-augusta-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Augusta","slug":"us-virginia-augusta-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0GXW530Z9F2S0Y5CRW","tsKey":"us-virginia-bath-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Bath","slug":"us-virginia-bath-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0HSET8AD2QS3DW5CTH","tsKey":"us-virginia-bedford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Bedford","slug":"us-virginia-bedford-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0PZQ7H7HX8377E9YHT","tsKey":"us-virginia-bland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Bland","slug":"us-virginia-bland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0JMK7FTVPHHCZWMD4E","tsKey":"us-virginia-botetourt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Botetourt","slug":"us-virginia-botetourt-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0MZG7D05TJS4G5QMEN","tsKey":"us-virginia-bristol-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Bristol","slug":"us-virginia-bristol-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0H5PMAAPVBDJ0D186X","tsKey":"us-virginia-brunswick-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Brunswick","slug":"us-virginia-brunswick-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0PJ6J621PN5KWVPEW4","tsKey":"us-virginia-buchanan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Buchanan","slug":"us-virginia-buchanan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0GBN2NVT1MH0KDR4NR","tsKey":"us-virginia-buckingham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Buckingham","slug":"us-virginia-buckingham-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0FYS4B10FJ7FPPYHSJ","tsKey":"us-virginia-buena-vista-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Buena Vista","slug":"us-virginia-buena-vista-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0HTFX3HDD208Y3QXG0","tsKey":"us-virginia-campbell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Campbell","slug":"us-virginia-campbell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0HVWEFS7G7ZQKKPNJM","tsKey":"us-virginia-caroline-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Caroline","slug":"us-virginia-caroline-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0J2GF31268NYDY8E3Y","tsKey":"us-virginia-carroll-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Carroll","slug":"us-virginia-carroll-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0HS8ZX8EY67T4TF46X","tsKey":"us-virginia-charles-city-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Charles City","slug":"us-virginia-charles-city-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0PZY44QRDZZH62TN8K","tsKey":"us-virginia-charlotte-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Charlotte","slug":"us-virginia-charlotte-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0FY8X9FB05Q72QNRE5","tsKey":"us-virginia-charlottesville-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Charlottesville","slug":"us-virginia-charlottesville-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0M5TTA410XSE0FP2Y4","tsKey":"us-virginia-chesapeake-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Chesapeake","slug":"us-virginia-chesapeake-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0PSBKNGN85WHVTB6JS","tsKey":"us-virginia-chesterfield-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Chesterfield","slug":"us-virginia-chesterfield-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0GBMW3SPGPKS9RG7C8","tsKey":"us-virginia-clarke-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Clarke","slug":"us-virginia-clarke-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0P6Y87TEST13Q32CCD","tsKey":"us-virginia-colonial-heights-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Colonial Heights","slug":"us-virginia-colonial-heights-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0MVM77MBMF7RXF2M29","tsKey":"us-virginia-covington-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Covington","slug":"us-virginia-covington-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0HP1RF1VAK4C11XHKJ","tsKey":"us-virginia-craig-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Craig","slug":"us-virginia-craig-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0GV2VTRRVQH3KDBKFJ","tsKey":"us-virginia-culpeper-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Culpeper","slug":"us-virginia-culpeper-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0HEAHZ4DFZWYY2ZXJ3","tsKey":"us-virginia-cumberland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Cumberland","slug":"us-virginia-cumberland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0KBEFKV554MWFC53QN","tsKey":"us-virginia-danville-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Danville","slug":"us-virginia-danville-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0H3FYXKEVCDJ447QJ8","tsKey":"us-virginia-dickenson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Dickenson","slug":"us-virginia-dickenson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0JNBSJ1R8Y8CRM5NVV","tsKey":"us-virginia-dinwiddie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Dinwiddie","slug":"us-virginia-dinwiddie-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0FMSE84CHQCV38TTJ8","tsKey":"us-virginia-emporia-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Emporia","slug":"us-virginia-emporia-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0JK3ND13FVSKVP87TW","tsKey":"us-virginia-essex-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Essex","slug":"us-virginia-essex-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0HZJYN6NQAQWMTSY8E","tsKey":"us-virginia-fairfax-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Fairfax","slug":"us-virginia-fairfax-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0NJVC3N82WNDDT9C8S","tsKey":"us-virginia-fairfax-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Fairfax","slug":"us-virginia-fairfax-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0MA2EGPWWYJT3CNQAV","tsKey":"us-virginia-falls-church-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Falls Church","slug":"us-virginia-falls-church-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0H56GT8XWKRFG6NPMJ","tsKey":"us-virginia-fauquier-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Fauquier","slug":"us-virginia-fauquier-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0GZ8WQQW89Z5ZJ0MBN","tsKey":"us-virginia-floyd-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Floyd","slug":"us-virginia-floyd-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0JK4PYYB55WWFM9K37","tsKey":"us-virginia-fluvanna-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Fluvanna","slug":"us-virginia-fluvanna-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0J4YXEA2HWGNB9BPWZ","tsKey":"us-virginia-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Franklin","slug":"us-virginia-franklin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0J933V3XRK15B3T73W","tsKey":"us-virginia-frederick-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Frederick","slug":"us-virginia-frederick-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0PSGNJE6T8H90HPCHH","tsKey":"us-virginia-fredericksburg-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Fredericksburg","slug":"us-virginia-fredericksburg-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0MYSAT95PSV24MEAMT","tsKey":"us-virginia-galax-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Galax","slug":"us-virginia-galax-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0N96EZNGWJG43GAS9J","tsKey":"us-virginia-giles-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Giles","slug":"us-virginia-giles-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0JETDKXPPHQ0J718VJ","tsKey":"us-virginia-gloucester-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Gloucester","slug":"us-virginia-gloucester-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0G0QRBEZ07CC0RWWAM","tsKey":"us-virginia-goochland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Goochland","slug":"us-virginia-goochland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0N9ASZ8CRDF004RNFW","tsKey":"us-virginia-grayson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Grayson","slug":"us-virginia-grayson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0JDMRVC1CHYRYTFQGZ","tsKey":"us-virginia-greene-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Greene","slug":"us-virginia-greene-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0JPJYKAXDXAFEEYR78","tsKey":"us-virginia-greensville-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Greensville","slug":"us-virginia-greensville-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0N8P1FNFJ1BPTR8WE5","tsKey":"us-virginia-halifax-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Halifax","slug":"us-virginia-halifax-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0P8P7PS73DJRZCFNJ0","tsKey":"us-virginia-hampton-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Hampton","slug":"us-virginia-hampton-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0JTS7DZ9A76CHMNZ3D","tsKey":"us-virginia-hanover-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Hanover","slug":"us-virginia-hanover-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0FRNA08GACDV11XHGZ","tsKey":"us-virginia-harrisonburg-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Harrisonburg","slug":"us-virginia-harrisonburg-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0PMBBB5K1R414D6N15","tsKey":"us-virginia-henrico-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Henrico","slug":"us-virginia-henrico-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0NAT6691254555QNGA","tsKey":"us-virginia-henry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Henry","slug":"us-virginia-henry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0J7726Z2CR3Y5TSFQ7","tsKey":"us-virginia-highland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Highland","slug":"us-virginia-highland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0FS0TT1EGPYDZCTMKY","tsKey":"us-virginia-hopewell-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Hopewell","slug":"us-virginia-hopewell-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0NWQ0XFZCKHSZHHWTA","tsKey":"us-virginia-isle-of-wight-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Isle of Wight","slug":"us-virginia-isle-of-wight-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0JEN9PW8VH3YWG1ZHX","tsKey":"us-virginia-james-city-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"James City","slug":"us-virginia-james-city-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0KTX4H59EF3V8Z0XJD","tsKey":"us-virginia-king-and-queen-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"King and Queen","slug":"us-virginia-king-and-queen-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0NHWW6YH4RG2NXJGPN","tsKey":"us-virginia-king-george-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"King George","slug":"us-virginia-king-george-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0GVB2W0GTGK5BEYY0D","tsKey":"us-virginia-king-william-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"King William","slug":"us-virginia-king-william-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0JHSAB7WPWAPSMHYGR","tsKey":"us-virginia-lancaster-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Lancaster","slug":"us-virginia-lancaster-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0NGNA730MD28CPHDQ1","tsKey":"us-virginia-lee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Lee","slug":"us-virginia-lee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0M65Y0P1QXB4SPKVV1","tsKey":"us-virginia-lexington-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Lexington","slug":"us-virginia-lexington-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0NM1DQRYN1XJMW9MD2","tsKey":"us-virginia-loudoun-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Loudoun","slug":"us-virginia-loudoun-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0KC52V3FDKNJ5B2HVX","tsKey":"us-virginia-louisa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Louisa","slug":"us-virginia-louisa-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0GK2CABDFY1PWK6JDG","tsKey":"us-virginia-lunenburg-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Lunenburg","slug":"us-virginia-lunenburg-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0KE6VN72G8YDMS6KEF","tsKey":"us-virginia-lynchburg-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Lynchburg","slug":"us-virginia-lynchburg-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0GFF7F7FST6MQ4H1N7","tsKey":"us-virginia-madison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Madison","slug":"us-virginia-madison-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0MS6X6709G4516QS7M","tsKey":"us-virginia-manassas-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Manassas","slug":"us-virginia-manassas-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0M76FXBT19NYNBTDXM","tsKey":"us-virginia-manassas-park-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Manassas Park","slug":"us-virginia-manassas-park-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0PWC3EBBWD25FN49K6","tsKey":"us-virginia-martinsville-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Martinsville","slug":"us-virginia-martinsville-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0JN6MEMJABDGXQ4B5R","tsKey":"us-virginia-mathews-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Mathews","slug":"us-virginia-mathews-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0N869YBT65S8HVJ08V","tsKey":"us-virginia-mecklenburg-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Mecklenburg","slug":"us-virginia-mecklenburg-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0JZAXBMN9VNTNMZZZ3","tsKey":"us-virginia-middlesex-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Middlesex","slug":"us-virginia-middlesex-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0EBMXHF0EECFJ60B4W","tsKey":"us-virginia-montgomery-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Montgomery","slug":"us-virginia-montgomery-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0F1Q74BT7X2JPN8X5K","tsKey":"us-virginia-nelson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Nelson","slug":"us-virginia-nelson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0KZQYVTF5GHP9NY03P","tsKey":"us-virginia-new-kent-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"New Kent","slug":"us-virginia-new-kent-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0PAPZNAVGNE1VQFQTW","tsKey":"us-virginia-newport-news-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Newport News","slug":"us-virginia-newport-news-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0M2V4Z0M8JMFS26E3M","tsKey":"us-virginia-norfolk-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Norfolk","slug":"us-virginia-norfolk-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0N88RHCHAX4QNMDFKZ","tsKey":"us-virginia-northampton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Northampton","slug":"us-virginia-northampton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0KQS1XAQZ924V8G4DG","tsKey":"us-virginia-northumberland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Northumberland","slug":"us-virginia-northumberland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0KKMCGNSTZG6YG1JC9","tsKey":"us-virginia-norton-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Norton","slug":"us-virginia-norton-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0K0ZV03EP0NEMDAKT0","tsKey":"us-virginia-nottoway-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Nottoway","slug":"us-virginia-nottoway-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0KFGV7RW5FFDZG29F9","tsKey":"us-virginia-orange-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Orange","slug":"us-virginia-orange-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0KRAZ85M9CJV73RYZM","tsKey":"us-virginia-page-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Page","slug":"us-virginia-page-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0F58509XFMEVD1BG70","tsKey":"us-virginia-patrick-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Patrick","slug":"us-virginia-patrick-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0NHHK2MWB4W0891PFB","tsKey":"us-virginia-petersburg-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Petersburg","slug":"us-virginia-petersburg-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0KMV61ZJ14MP06GQQF","tsKey":"us-virginia-pittsylvania-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Pittsylvania","slug":"us-virginia-pittsylvania-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0PR6W8E6DW7WJ489GG","tsKey":"us-virginia-poquoson-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Poquoson","slug":"us-virginia-poquoson-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0K0YPERNG3ZMW61XC3","tsKey":"us-virginia-portsmouth-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Portsmouth","slug":"us-virginia-portsmouth-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0FQ8Y4GB4VCVRPM6BB","tsKey":"us-virginia-powhatan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Powhatan","slug":"us-virginia-powhatan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0N9AZC1MD3C7PRDRR9","tsKey":"us-virginia-prince-edward-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Prince Edward","slug":"us-virginia-prince-edward-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0N1DH9TJSVQJ7NQ7CM","tsKey":"us-virginia-prince-george-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Prince George","slug":"us-virginia-prince-george-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0MAJKW3NPWSPDPPZ01","tsKey":"us-virginia-prince-william-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Prince William","slug":"us-virginia-prince-william-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0F7KYTS267567CSZ09","tsKey":"us-virginia-pulaski-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Pulaski","slug":"us-virginia-pulaski-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0NHHBVD9VWC456QB30","tsKey":"us-virginia-radford-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Radford","slug":"us-virginia-radford-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0F48KQVT5ZH54AA00J","tsKey":"us-virginia-rappahannock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Rappahannock","slug":"us-virginia-rappahannock-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0G8HHGGBQ8XEH3DBB7","tsKey":"us-virginia-richmond-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Richmond","slug":"us-virginia-richmond-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0NCHVAD1VF9J889TB5","tsKey":"us-virginia-richmond-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Richmond","slug":"us-virginia-richmond-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0PSG78HP329YQ2NN3E","tsKey":"us-virginia-roanoke-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Roanoke","slug":"us-virginia-roanoke-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0NKYDZ5F4RCT97DTWS","tsKey":"us-virginia-roanoke-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Roanoke","slug":"us-virginia-roanoke-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0MYD69PQ9SHKQ36WFH","tsKey":"us-virginia-rockbridge-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Rockbridge","slug":"us-virginia-rockbridge-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0NG5FCAYAT4B2FQEY5","tsKey":"us-virginia-rockingham-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Rockingham","slug":"us-virginia-rockingham-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0K1JMQH4AGNCZ8BG6M","tsKey":"us-virginia-russell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Russell","slug":"us-virginia-russell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0GHESXG2394TH7WVW8","tsKey":"us-virginia-salem-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Salem","slug":"us-virginia-salem-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0MSDATG91HA86MFTSC","tsKey":"us-virginia-scott-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Scott","slug":"us-virginia-scott-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0MA48KQ0DM8QC0SXRJ","tsKey":"us-virginia-shenandoah-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Shenandoah","slug":"us-virginia-shenandoah-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0F7RKJ60T5A1EAS1MK","tsKey":"us-virginia-smyth-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Smyth","slug":"us-virginia-smyth-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0N4T0CMMZHN8QEYG12","tsKey":"us-virginia-southampton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Southampton","slug":"us-virginia-southampton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0N2MEBEK9TWTQ9BVQF","tsKey":"us-virginia-spotsylvania-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Spotsylvania","slug":"us-virginia-spotsylvania-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0K87S28FP0PX6GM8WS","tsKey":"us-virginia-stafford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Stafford","slug":"us-virginia-stafford-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0N3GZGJ34ABRPHY991","tsKey":"us-virginia-staunton-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Staunton","slug":"us-virginia-staunton-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0GWGXFKKR0N6EWER8H","tsKey":"us-virginia-suffolk-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Suffolk","slug":"us-virginia-suffolk-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0MP1TA2FAZZ012Z4SB","tsKey":"us-virginia-surry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Surry","slug":"us-virginia-surry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0MHKBHCVWTJMQZ5E3G","tsKey":"us-virginia-sussex-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Sussex","slug":"us-virginia-sussex-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0MKT9661MVQBWASX6P","tsKey":"us-virginia-tazewell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Tazewell","slug":"us-virginia-tazewell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0HDVCT703CEJAP63SH","tsKey":"us-virginia-virginia-beach-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Virginia Beach","slug":"us-virginia-virginia-beach-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0FE8REZNCYTFXDAJHR","tsKey":"us-virginia-warren-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Warren","slug":"us-virginia-warren-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0MZJNXJVFR04QXADPD","tsKey":"us-virginia-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Washington","slug":"us-virginia-washington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0GF74GCJPT6H8N3XT6","tsKey":"us-virginia-waynesboro-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Waynesboro","slug":"us-virginia-waynesboro-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0PJ788W3NDZB6362WV","tsKey":"us-virginia-westmoreland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Westmoreland","slug":"us-virginia-westmoreland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0K1R8TAG0ZEHTKTJ84","tsKey":"us-virginia-williamsburg-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Williamsburg","slug":"us-virginia-williamsburg-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0H4VACBK484AHVCEW1","tsKey":"us-virginia-winchester-city","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Winchester","slug":"us-virginia-winchester-city","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0MWB71FPEMZP6BM3F8","tsKey":"us-virginia-wise-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Wise","slug":"us-virginia-wise-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0FF1A4F9V19C7FP9W2","tsKey":"us-virginia-wythe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"Wythe","slug":"us-virginia-wythe-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKB0P1TJKMDXBKCDRMYQK","tsKey":"us-virginia-york-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","name":"York","slug":"us-virginia-york-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKC6JBVM1S4P89T664V0A","tsKey":"us-washington","tsNs":"gov-dist","abbrev":"WA","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Washington","slug":"us-washington","iso":"US-WA","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP3P76FCM0GEPH0AZE0","tsKey":"us-washington-adams-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Adams","slug":"us-washington-adams-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP36ART109KQSMS8EZY","tsKey":"us-washington-asotin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Asotin","slug":"us-washington-asotin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP3AAT07RD5MXCMH5WN","tsKey":"us-washington-benton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Benton","slug":"us-washington-benton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP5NFRN86F4YPMWA7D5","tsKey":"us-washington-chelan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Chelan","slug":"us-washington-chelan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP557E4MRQ5V71M0CDW","tsKey":"us-washington-clallam-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Clallam","slug":"us-washington-clallam-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP4X9XA7TH2BKWPY940","tsKey":"us-washington-clark-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Clark","slug":"us-washington-clark-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP2EAE7C5F5E25BYXMG","tsKey":"us-washington-columbia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Columbia","slug":"us-washington-columbia-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP392EMXTDG3C7R3R3D","tsKey":"us-washington-cowlitz-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Cowlitz","slug":"us-washington-cowlitz-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP32NBE7903E043NXYR","tsKey":"us-washington-douglas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Douglas","slug":"us-washington-douglas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP3RKZQ7R85GX02G2PX","tsKey":"us-washington-ferry-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Ferry","slug":"us-washington-ferry-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP3PXMDKA2A6RGPF9VB","tsKey":"us-washington-franklin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Franklin","slug":"us-washington-franklin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP3ZJCEX3P08VC5J5W1","tsKey":"us-washington-garfield-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Garfield","slug":"us-washington-garfield-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP3X8SXWE6X92DQP59B","tsKey":"us-washington-grant-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Grant","slug":"us-washington-grant-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP5TF9525A0BM5PGRAV","tsKey":"us-washington-grays-harbor-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Grays Harbor","slug":"us-washington-grays-harbor-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP35R0QQDS36EWMTDH1","tsKey":"us-washington-island-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Island","slug":"us-washington-island-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP5WX94VXBJ7PJ4CWS8","tsKey":"us-washington-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Jefferson","slug":"us-washington-jefferson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP4C7PVQBHG546JNZPV","tsKey":"us-washington-king-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"King","slug":"us-washington-king-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP4YHJXVDB17W0BME2E","tsKey":"us-washington-kitsap-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Kitsap","slug":"us-washington-kitsap-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP4VW36XYMV6FM4YQMP","tsKey":"us-washington-kittitas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Kittitas","slug":"us-washington-kittitas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP40AKG4G0P6CVHMAMH","tsKey":"us-washington-klickitat-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Klickitat","slug":"us-washington-klickitat-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP306CC8J5P0GSBDZWV","tsKey":"us-washington-lewis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Lewis","slug":"us-washington-lewis-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP45FPNZXVZWP4K7A3E","tsKey":"us-washington-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Lincoln","slug":"us-washington-lincoln-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP338BHCGRH613N8PWP","tsKey":"us-washington-mason-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Mason","slug":"us-washington-mason-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP5Y0J5S08HYHVRM5CG","tsKey":"us-washington-okanogan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Okanogan","slug":"us-washington-okanogan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP5ZCVMXG4AXJNF6R6Y","tsKey":"us-washington-pacific-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Pacific","slug":"us-washington-pacific-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP4EE0Q6EDSA5299FB3","tsKey":"us-washington-pend-oreille-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Pend Oreille","slug":"us-washington-pend-oreille-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP48QHP1A2D9S2RNET3","tsKey":"us-washington-pierce-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Pierce","slug":"us-washington-pierce-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP551CCT11Y8MZAQ3YB","tsKey":"us-washington-san-juan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"San Juan","slug":"us-washington-san-juan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP5BCN22F1ZKGVDBJTD","tsKey":"us-washington-skagit-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Skagit","slug":"us-washington-skagit-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP4E4QSYB0X17CZZEDV","tsKey":"us-washington-skamania-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Skamania","slug":"us-washington-skamania-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP5KASMWWZEQY72XNSF","tsKey":"us-washington-snohomish-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Snohomish","slug":"us-washington-snohomish-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP4FQKVV16SQJSSHCHN","tsKey":"us-washington-spokane-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Spokane","slug":"us-washington-spokane-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP3791MPS2DG1YFRV5W","tsKey":"us-washington-stevens-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Stevens","slug":"us-washington-stevens-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP4W5CG9G1VXVP3H7KZ","tsKey":"us-washington-thurston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Thurston","slug":"us-washington-thurston-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP4YRD03PZZKJBDXP7F","tsKey":"us-washington-wahkiakum-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Wahkiakum","slug":"us-washington-wahkiakum-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP5JDVGDWT50D93G1PV","tsKey":"us-washington-walla-walla-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Walla Walla","slug":"us-washington-walla-walla-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP5NR5XR4WAY7ARM2X9","tsKey":"us-washington-whatcom-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Whatcom","slug":"us-washington-whatcom-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP4HPPG65FAY487923C","tsKey":"us-washington-whitman-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Whitman","slug":"us-washington-whitman-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKCP4ZQ07PN77F3XS7YHM","tsKey":"us-washington-yakima-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKC6JBVM1S4P89T664V0A","name":"Yakima","slug":"us-washington-yakima-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKD240CAP65TPYPT32MRR","tsKey":"us-west-virginia","tsNs":"gov-dist","abbrev":"WV","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"West Virginia","slug":"us-west-virginia","iso":"US-WV","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC2M55R8MQA6QZ0AMVJ","tsKey":"us-west-virginia-barbour-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Barbour","slug":"us-west-virginia-barbour-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC4YYGSCV8TVBPJPZ18","tsKey":"us-west-virginia-berkeley-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Berkeley","slug":"us-west-virginia-berkeley-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC4PHT815Q8DHTG6Y9C","tsKey":"us-west-virginia-boone-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Boone","slug":"us-west-virginia-boone-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC26FE7AJB2SATZJ42Q","tsKey":"us-west-virginia-braxton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Braxton","slug":"us-west-virginia-braxton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC539NY6VYWX9TD9QDT","tsKey":"us-west-virginia-brooke-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Brooke","slug":"us-west-virginia-brooke-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC5A0CPK7MRVVZNRNP8","tsKey":"us-west-virginia-cabell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Cabell","slug":"us-west-virginia-cabell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC2RE1DRM5B9D41Z74S","tsKey":"us-west-virginia-calhoun-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Calhoun","slug":"us-west-virginia-calhoun-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC5YFP8SP8WVZAMVM82","tsKey":"us-west-virginia-clay-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Clay","slug":"us-west-virginia-clay-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC47VV7T8DP2M1Y06W0","tsKey":"us-west-virginia-doddridge-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Doddridge","slug":"us-west-virginia-doddridge-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC5X8R75TEDXB2P2T9V","tsKey":"us-west-virginia-fayette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Fayette","slug":"us-west-virginia-fayette-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC2A76TNJYN6REAXPW8","tsKey":"us-west-virginia-gilmer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Gilmer","slug":"us-west-virginia-gilmer-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC28FES6EFXV2BK0G24","tsKey":"us-west-virginia-grant-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Grant","slug":"us-west-virginia-grant-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC259GJ0A4P0MS992TS","tsKey":"us-west-virginia-greenbrier-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Greenbrier","slug":"us-west-virginia-greenbrier-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC26Z9Q2QD4158JZF8N","tsKey":"us-west-virginia-hampshire-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Hampshire","slug":"us-west-virginia-hampshire-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC46NCNZP9MMBCBCJAF","tsKey":"us-west-virginia-hancock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Hancock","slug":"us-west-virginia-hancock-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC5QT28D438J15AEVBM","tsKey":"us-west-virginia-hardy-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Hardy","slug":"us-west-virginia-hardy-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC3M62MYK7ZZ7XXHRTW","tsKey":"us-west-virginia-harrison-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Harrison","slug":"us-west-virginia-harrison-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC5327485PJZZSBKH9F","tsKey":"us-west-virginia-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Jackson","slug":"us-west-virginia-jackson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC382M1HFNZ8EV7ZJM3","tsKey":"us-west-virginia-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Jefferson","slug":"us-west-virginia-jefferson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC2KXAZXVP18JXN1GXM","tsKey":"us-west-virginia-kanawha-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Kanawha","slug":"us-west-virginia-kanawha-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC5TSD2KREWGG5Z1W5X","tsKey":"us-west-virginia-lewis-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Lewis","slug":"us-west-virginia-lewis-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC47R8691TT4S3NRPZW","tsKey":"us-west-virginia-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Lincoln","slug":"us-west-virginia-lincoln-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC3H0X5GS4WANEANRP5","tsKey":"us-west-virginia-logan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Logan","slug":"us-west-virginia-logan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC2KF947C6XVWN9HX3Q","tsKey":"us-west-virginia-marion-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Marion","slug":"us-west-virginia-marion-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC3P48A3V54BRR6CS8V","tsKey":"us-west-virginia-marshall-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Marshall","slug":"us-west-virginia-marshall-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC3EC1CJQF2R88CSRT4","tsKey":"us-west-virginia-mason-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Mason","slug":"us-west-virginia-mason-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC5ZCE7D6QF9THEJ35H","tsKey":"us-west-virginia-mcdowell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"McDowell","slug":"us-west-virginia-mcdowell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC41KRPEBGBCMYG34QG","tsKey":"us-west-virginia-mercer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Mercer","slug":"us-west-virginia-mercer-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC5FNDCJS5V8M73AMCA","tsKey":"us-west-virginia-mineral-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Mineral","slug":"us-west-virginia-mineral-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC34KKBJR8DWYY8SVMD","tsKey":"us-west-virginia-mingo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Mingo","slug":"us-west-virginia-mingo-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC2G5DHHW2YTZNRZSR6","tsKey":"us-west-virginia-monongalia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Monongalia","slug":"us-west-virginia-monongalia-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC57PXRS5PKFYB6NVX0","tsKey":"us-west-virginia-monroe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Monroe","slug":"us-west-virginia-monroe-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC3R8KXZND57D3VRGMH","tsKey":"us-west-virginia-morgan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Morgan","slug":"us-west-virginia-morgan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC58V2QA4Q6NS9D4P6Y","tsKey":"us-west-virginia-nicholas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Nicholas","slug":"us-west-virginia-nicholas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC3TRB77165XHW10960","tsKey":"us-west-virginia-ohio-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Ohio","slug":"us-west-virginia-ohio-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC5MET3M6J24YX82B6Q","tsKey":"us-west-virginia-pendleton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Pendleton","slug":"us-west-virginia-pendleton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC4P71S0TJSJV29P47W","tsKey":"us-west-virginia-pleasants-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Pleasants","slug":"us-west-virginia-pleasants-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC335T5QQVWVZ9YJYX3","tsKey":"us-west-virginia-pocahontas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Pocahontas","slug":"us-west-virginia-pocahontas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC5XP5QPSPTQJF58TWE","tsKey":"us-west-virginia-preston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Preston","slug":"us-west-virginia-preston-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC2NX08TJ6PZ7GYP52V","tsKey":"us-west-virginia-putnam-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Putnam","slug":"us-west-virginia-putnam-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC4H0AYYV4SVBQXMQ5R","tsKey":"us-west-virginia-raleigh-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Raleigh","slug":"us-west-virginia-raleigh-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC3GDFY9G5KJ7N396F6","tsKey":"us-west-virginia-randolph-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Randolph","slug":"us-west-virginia-randolph-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC4GY3TS187TT5E9P2F","tsKey":"us-west-virginia-ritchie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Ritchie","slug":"us-west-virginia-ritchie-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC3VC0Y6V03V5WHZXDH","tsKey":"us-west-virginia-roane-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Roane","slug":"us-west-virginia-roane-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC2T8KMGEVZSGJ69HQ0","tsKey":"us-west-virginia-summers-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Summers","slug":"us-west-virginia-summers-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC3SYJ7HZVAJCSA8JA9","tsKey":"us-west-virginia-taylor-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Taylor","slug":"us-west-virginia-taylor-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC37WH3T9B5SNEWF5N2","tsKey":"us-west-virginia-tucker-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Tucker","slug":"us-west-virginia-tucker-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC48F1K2VJZT3RXBDV2","tsKey":"us-west-virginia-tyler-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Tyler","slug":"us-west-virginia-tyler-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC3AM6JANW0Z804YY74","tsKey":"us-west-virginia-upshur-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Upshur","slug":"us-west-virginia-upshur-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC4BH88NK0FGRBZ70N2","tsKey":"us-west-virginia-wayne-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Wayne","slug":"us-west-virginia-wayne-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC2ERH4CFVAGKVS0NZ2","tsKey":"us-west-virginia-webster-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Webster","slug":"us-west-virginia-webster-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC477C3SSH4WG6WQACT","tsKey":"us-west-virginia-wetzel-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Wetzel","slug":"us-west-virginia-wetzel-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC4S32QH97YEAT9ZZ3Y","tsKey":"us-west-virginia-wirt-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Wirt","slug":"us-west-virginia-wirt-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC458EM3WXRPGGN0QSQ","tsKey":"us-west-virginia-wood-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Wood","slug":"us-west-virginia-wood-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDC4Y9A09BEVX8Q24F52","tsKey":"us-west-virginia-wyoming-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKD240CAP65TPYPT32MRR","name":"Wyoming","slug":"us-west-virginia-wyoming-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","tsKey":"us-wisconsin","tsNs":"gov-dist","abbrev":"WI","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Wisconsin","slug":"us-wisconsin","iso":"US-WI","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1NZVPD27G1ZKRX3GX1","tsKey":"us-wisconsin-adams-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Adams","slug":"us-wisconsin-adams-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1HMV0QJPF94Z2BEMVH","tsKey":"us-wisconsin-ashland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Ashland","slug":"us-wisconsin-ashland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1HQXS3G1PK2BR6J8V2","tsKey":"us-wisconsin-barron-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Barron","slug":"us-wisconsin-barron-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1H7WRNB8109V0T27TQ","tsKey":"us-wisconsin-bayfield-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Bayfield","slug":"us-wisconsin-bayfield-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1N11Z5BRGXDR5DE3FX","tsKey":"us-wisconsin-brown-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Brown","slug":"us-wisconsin-brown-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1JDYE2FJT9MECX3QWF","tsKey":"us-wisconsin-buffalo-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Buffalo","slug":"us-wisconsin-buffalo-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1J8884PWW1S754533X","tsKey":"us-wisconsin-burnett-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Burnett","slug":"us-wisconsin-burnett-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1KR1F3STVHQ0SSCT18","tsKey":"us-wisconsin-calumet-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Calumet","slug":"us-wisconsin-calumet-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1JQDQPW43SEA4W210X","tsKey":"us-wisconsin-chippewa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Chippewa","slug":"us-wisconsin-chippewa-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1JFFVE7RPPAEJSQZN7","tsKey":"us-wisconsin-clark-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Clark","slug":"us-wisconsin-clark-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1KT9GFD9FT4PTCBQWN","tsKey":"us-wisconsin-columbia-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Columbia","slug":"us-wisconsin-columbia-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1KDFM0374NEHQ5RXSB","tsKey":"us-wisconsin-crawford-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Crawford","slug":"us-wisconsin-crawford-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1JD4XK3K5K10HC71Y0","tsKey":"us-wisconsin-dane-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Dane","slug":"us-wisconsin-dane-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1KSP490AHAX17NNZYW","tsKey":"us-wisconsin-dodge-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Dodge","slug":"us-wisconsin-dodge-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1GXKYD6Y4JSRGYX9HZ","tsKey":"us-wisconsin-door-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Door","slug":"us-wisconsin-door-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1M2KWVESH20KZQX7MM","tsKey":"us-wisconsin-douglas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Douglas","slug":"us-wisconsin-douglas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1GX5TVFF8NGBGNMSDA","tsKey":"us-wisconsin-dunn-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Dunn","slug":"us-wisconsin-dunn-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1KJ2VRA12HDRWVHTMQ","tsKey":"us-wisconsin-eau-claire-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Eau Claire","slug":"us-wisconsin-eau-claire-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1K68JEST2B2M2WCEHS","tsKey":"us-wisconsin-florence-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Florence","slug":"us-wisconsin-florence-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1GXP4YKSPJEP0KKPFE","tsKey":"us-wisconsin-fond-du-lac-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Fond du Lac","slug":"us-wisconsin-fond-du-lac-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1KWQCY071NY0NA9Y6H","tsKey":"us-wisconsin-forest-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Forest","slug":"us-wisconsin-forest-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1M74GTTSM2T3M35PW0","tsKey":"us-wisconsin-grant-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Grant","slug":"us-wisconsin-grant-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1GWCAPY05CCS7T3XVB","tsKey":"us-wisconsin-green-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Green","slug":"us-wisconsin-green-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1MA4MXCV6C7Q1KN598","tsKey":"us-wisconsin-green-lake-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Green Lake","slug":"us-wisconsin-green-lake-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1MXZA44AP0GG704SYH","tsKey":"us-wisconsin-iowa-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Iowa","slug":"us-wisconsin-iowa-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1MXYD9T5M51GB49FJY","tsKey":"us-wisconsin-iron-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Iron","slug":"us-wisconsin-iron-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1KNS272G8MB63JBHWH","tsKey":"us-wisconsin-jackson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Jackson","slug":"us-wisconsin-jackson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1MM3552T4Q6G4WSDZN","tsKey":"us-wisconsin-jefferson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Jefferson","slug":"us-wisconsin-jefferson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1M99W44PQKAE1SVT41","tsKey":"us-wisconsin-juneau-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Juneau","slug":"us-wisconsin-juneau-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1M6SPQW932784KMDYJ","tsKey":"us-wisconsin-kenosha-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Kenosha","slug":"us-wisconsin-kenosha-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1MJXEMHD3C7VA29P4V","tsKey":"us-wisconsin-kewaunee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Kewaunee","slug":"us-wisconsin-kewaunee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1HGNSD5BCXZDPBMZGV","tsKey":"us-wisconsin-la-crosse-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"La Crosse","slug":"us-wisconsin-la-crosse-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1MK22TPN32S0DQEW7F","tsKey":"us-wisconsin-lafayette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Lafayette","slug":"us-wisconsin-lafayette-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1KE8ZK80XJER7BM2WW","tsKey":"us-wisconsin-langlade-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Langlade","slug":"us-wisconsin-langlade-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1HKGB18Z8DSCAAX1YF","tsKey":"us-wisconsin-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Lincoln","slug":"us-wisconsin-lincoln-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1NFJY99ST87CCD78NH","tsKey":"us-wisconsin-manitowoc-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Manitowoc","slug":"us-wisconsin-manitowoc-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1HTHX3T8AB2KPSQWA6","tsKey":"us-wisconsin-marathon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Marathon","slug":"us-wisconsin-marathon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1MJXXCK299MWRTRD7E","tsKey":"us-wisconsin-marinette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Marinette","slug":"us-wisconsin-marinette-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1MN23DR1HWER10B2J5","tsKey":"us-wisconsin-marquette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Marquette","slug":"us-wisconsin-marquette-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1KH3TYQGWT12HFGATR","tsKey":"us-wisconsin-menominee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Menominee","slug":"us-wisconsin-menominee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1NEEWGZKD525DPDK8Q","tsKey":"us-wisconsin-milwaukee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Milwaukee","slug":"us-wisconsin-milwaukee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1HCX4EA37Z7H11YHY6","tsKey":"us-wisconsin-monroe-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Monroe","slug":"us-wisconsin-monroe-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1MKYMJ48AAFYN611JG","tsKey":"us-wisconsin-oconto-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Oconto","slug":"us-wisconsin-oconto-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1MJRCWXDEPF5A9MNE4","tsKey":"us-wisconsin-oneida-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Oneida","slug":"us-wisconsin-oneida-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1K19VW3XJSPT7TJ9NK","tsKey":"us-wisconsin-outagamie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Outagamie","slug":"us-wisconsin-outagamie-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1N94B8CSXCTSZGED58","tsKey":"us-wisconsin-ozaukee-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Ozaukee","slug":"us-wisconsin-ozaukee-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1MFX1RP03YYJ9DEZER","tsKey":"us-wisconsin-pepin-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Pepin","slug":"us-wisconsin-pepin-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1M0W1B2BKW8TSB7YJE","tsKey":"us-wisconsin-pierce-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Pierce","slug":"us-wisconsin-pierce-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1H57SX2JGAZ82FB95W","tsKey":"us-wisconsin-polk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Polk","slug":"us-wisconsin-polk-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1MY4MT2DXTK6AH9PKD","tsKey":"us-wisconsin-portage-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Portage","slug":"us-wisconsin-portage-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1K0G73R28JDEC3FNYV","tsKey":"us-wisconsin-price-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Price","slug":"us-wisconsin-price-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1JSW2XCNDRKYX4SE6C","tsKey":"us-wisconsin-racine-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Racine","slug":"us-wisconsin-racine-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1HM62MR59QYNWTC8Q1","tsKey":"us-wisconsin-richland-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Richland","slug":"us-wisconsin-richland-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1NEM4TJ5K2KZ50XQ6Q","tsKey":"us-wisconsin-rock-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Rock","slug":"us-wisconsin-rock-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1JJQ7DXFR36HSN9EDA","tsKey":"us-wisconsin-rusk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Rusk","slug":"us-wisconsin-rusk-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1J7YVD2F0AD7AS553Q","tsKey":"us-wisconsin-sauk-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Sauk","slug":"us-wisconsin-sauk-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1JN153J839T7Q0218X","tsKey":"us-wisconsin-sawyer-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Sawyer","slug":"us-wisconsin-sawyer-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1HQJ6A45HFKX1QWXZC","tsKey":"us-wisconsin-shawano-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Shawano","slug":"us-wisconsin-shawano-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1N0MHVFYACB98CZ0DQ","tsKey":"us-wisconsin-sheboygan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Sheboygan","slug":"us-wisconsin-sheboygan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1KW2HFY0RA6WGFDM7Y","tsKey":"us-wisconsin-st-croix-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"St. Croix","slug":"us-wisconsin-st-croix-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1JCTQ1J5MKFXKE6R3V","tsKey":"us-wisconsin-taylor-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Taylor","slug":"us-wisconsin-taylor-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1K6T7PAFS9FE64XBBV","tsKey":"us-wisconsin-trempealeau-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Trempealeau","slug":"us-wisconsin-trempealeau-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1JKWFQZ3FQSMRJM2GK","tsKey":"us-wisconsin-vernon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Vernon","slug":"us-wisconsin-vernon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1J0CEPDP8GK08NM167","tsKey":"us-wisconsin-vilas-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Vilas","slug":"us-wisconsin-vilas-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1NNEFFNJ93AZYJQVVQ","tsKey":"us-wisconsin-walworth-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Walworth","slug":"us-wisconsin-walworth-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1HF3ZSC2DRHMSAF8DP","tsKey":"us-wisconsin-washburn-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Washburn","slug":"us-wisconsin-washburn-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1NNPAX3TGJKD7PYV0S","tsKey":"us-wisconsin-washington-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Washington","slug":"us-wisconsin-washington-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1J8JHS1F0CPN2YN8HB","tsKey":"us-wisconsin-waukesha-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Waukesha","slug":"us-wisconsin-waukesha-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1KTRV5F4G113XW4FV9","tsKey":"us-wisconsin-waupaca-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Waupaca","slug":"us-wisconsin-waupaca-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1NA5728TFSRQW7J4ZF","tsKey":"us-wisconsin-waushara-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Waushara","slug":"us-wisconsin-waushara-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1J5RTHF2B9YM2RTN8E","tsKey":"us-wisconsin-winnebago-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Winnebago","slug":"us-wisconsin-winnebago-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKE1HQEXMF3PZZNM683HQ","tsKey":"us-wisconsin-wood-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","name":"Wood","slug":"us-wisconsin-wood-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV","tsKey":"us-wyoming","tsNs":"gov-dist","abbrev":"WY","country":{"cca2":"US"},"govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"parentId":null,"name":"Wyoming","slug":"us-wyoming","iso":"US-WY","countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKETVKKYVQJJG89BPPCG2","tsKey":"us-wyoming-albany-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV","name":"Albany","slug":"us-wyoming-albany-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKETT2YZ4N0BMFSDY4KT6","tsKey":"us-wyoming-big-horn-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV","name":"Big Horn","slug":"us-wyoming-big-horn-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKETVT9GR8CVF23R55DFK","tsKey":"us-wyoming-campbell-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV","name":"Campbell","slug":"us-wyoming-campbell-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKETW9614S6VMPDG5VTFG","tsKey":"us-wyoming-carbon-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV","name":"Carbon","slug":"us-wyoming-carbon-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKETVBFV6PA4WZX3M4RGP","tsKey":"us-wyoming-converse-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV","name":"Converse","slug":"us-wyoming-converse-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKETW0BGT97DWSV2HSFD8","tsKey":"us-wyoming-crook-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV","name":"Crook","slug":"us-wyoming-crook-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKETWZBYZ9QV485HEX3M8","tsKey":"us-wyoming-fremont-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV","name":"Fremont","slug":"us-wyoming-fremont-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKETV194EGNVDTSEWDBK6","tsKey":"us-wyoming-goshen-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV","name":"Goshen","slug":"us-wyoming-goshen-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKETVTJG1JNESES2R8XCS","tsKey":"us-wyoming-hot-springs-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV","name":"Hot Springs","slug":"us-wyoming-hot-springs-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKETVEKZBW19M0Z9J3QNB","tsKey":"us-wyoming-johnson-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV","name":"Johnson","slug":"us-wyoming-johnson-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKETW8Z2074XPPRG2N2W8","tsKey":"us-wyoming-laramie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV","name":"Laramie","slug":"us-wyoming-laramie-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKETVTKVJB62703CG21XP","tsKey":"us-wyoming-lincoln-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV","name":"Lincoln","slug":"us-wyoming-lincoln-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKETTA0FA1KQFXDS6E17H","tsKey":"us-wyoming-natrona-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV","name":"Natrona","slug":"us-wyoming-natrona-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKETV55HRRF7AF9W0SH6F","tsKey":"us-wyoming-niobrara-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV","name":"Niobrara","slug":"us-wyoming-niobrara-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKETVECCRN4ESV2G5GSP3","tsKey":"us-wyoming-park-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV","name":"Park","slug":"us-wyoming-park-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKETT65MBG2D3GHRTMYDQ","tsKey":"us-wyoming-platte-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV","name":"Platte","slug":"us-wyoming-platte-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKETTMR4Z4AB3D517VQJ5","tsKey":"us-wyoming-sheridan-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV","name":"Sheridan","slug":"us-wyoming-sheridan-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKETVDM6PS6G4A4QP48G0","tsKey":"us-wyoming-sublette-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV","name":"Sublette","slug":"us-wyoming-sublette-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKETVW7A5Z25YCZ7T924X","tsKey":"us-wyoming-sweetwater-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV","name":"Sweetwater","slug":"us-wyoming-sweetwater-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKETV201GQXER3E3YDGFR","tsKey":"us-wyoming-teton-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV","name":"Teton","slug":"us-wyoming-teton-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKETVV4T48MEJ6EMX74RG","tsKey":"us-wyoming-uinta-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV","name":"Uinta","slug":"us-wyoming-uinta-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKETVJ56T1TDW4XZT431H","tsKey":"us-wyoming-washakie-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV","name":"Washakie","slug":"us-wyoming-washakie-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"},{"id":"gdst_01GW2HKETT803G2P13M7WD9D04","tsKey":"us-wyoming-weston-county","tsNs":"gov-dist","abbrev":null,"country":{"cca2":"US"},"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"parentId":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV","name":"Weston","slug":"us-wyoming-weston-county","iso":null,"countryId":"ctry_01GW2HHDK9M26M80SG63T21SVH"}]
\ No newline at end of file
diff --git a/packages/ui/mockData/json/fieldOpt.govDistsByCountry.json b/packages/ui/mockData/json/fieldOpt.govDistsByCountry.json
new file mode 100644
index 0000000000..53e03cd6f9
--- /dev/null
+++ b/packages/ui/mockData/json/fieldOpt.govDistsByCountry.json
@@ -0,0 +1 @@
+[{"id":"ctry_01GW2HHDKAWXWYHAAESAA5HH94","tsKey":"CAN.name","tsNs":"country","cca2":"CA","flag":"🇨🇦","govDist":[{"id":"gdst_01GW2HKFSK070K54ZRAT3H42C4","tsKey":"ca-alberta","tsNs":"gov-dist","abbrev":"AB","govDistType":{"tsKey":"type-province","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKFSMR5V1P769F2G2804N","tsKey":"ca-british-columbia","tsNs":"gov-dist","abbrev":"BC","govDistType":{"tsKey":"type-province","tsNs":"gov-dist"},"subDistricts":[]}]},{"id":"ctry_01GW2HHDKB9DG2T2YZM5MFFVX9","tsKey":"MEX.name","tsNs":"country","cca2":"MX","flag":"🇲🇽","govDist":[{"id":"gdst_01GW2HKJ7NT27K6BDAV0KE00H0","tsKey":"mx-aguascalientes","tsNs":"gov-dist","abbrev":"Ags.","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKJ7NHSPR1AZ1RKJR6VAX","tsKey":"mx-baja-california","tsNs":"gov-dist","abbrev":"B.C.","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"subDistricts":[]}]},{"id":"ctry_01GW2HHDK9M26M80SG63T21SVH","tsKey":"USA.name","tsNs":"country","cca2":"US","flag":"🇺🇸","govDist":[{"id":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","tsKey":"us-california","tsNs":"gov-dist","abbrev":"CA","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"subDistricts":[{"id":"gdst_01GW2HJ2S3NV642EBKYB453WV2","tsKey":"us-california-alameda-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S0FCS7K0AKCRDGXDVS","tsKey":"us-california-alpine-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2RZTR8JSBS9N7NWE7RH","tsKey":"us-california-amador-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S0BF8VEVE4C2JJ7XDP","tsKey":"us-california-butte-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S2375BWT5BZRVYFQBQ","tsKey":"us-california-calaveras-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S22WBM3SCG9A0W9WWY","tsKey":"us-california-colusa-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S2B8RM2W8G4XGXD9YQ","tsKey":"us-california-contra-costa-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S29P9EGP90SDM23B83","tsKey":"us-california-del-norte-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S31P315AJ89ZCA0C7T","tsKey":"us-california-el-dorado-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S3F38PQ9371BZ2711A","tsKey":"us-california-fresno-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2RZTSM5SRNKKP6CMA1W","tsKey":"us-california-glenn-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S31C34DF484QHSBTE1","tsKey":"us-california-humboldt-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S2Z1BQHXGZ0PPE9FEV","tsKey":"us-california-imperial-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S26VB6FGYS10WH4NBD","tsKey":"us-california-inyo-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S2FE9H9HWN63YTRZX5","tsKey":"us-california-kern-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S2VXZ65220HWFG7P8R","tsKey":"us-california-kings-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S0NP9P9KRWW2BWNAJ3","tsKey":"us-california-lake-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S3KSDBFS16JSAPDAZV","tsKey":"us-california-lassen-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S3YA4SH7YRMT2XFM5K","tsKey":"us-california-los-angeles-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S2WKVS2TC6332PJGBC","tsKey":"us-california-madera-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S28VBX43G7VV20FJRN","tsKey":"us-california-marin-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S0NKDE9ENJ465KQ6WN","tsKey":"us-california-mariposa-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S00J3086ZYZPPNA1ZB","tsKey":"us-california-mendocino-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S2P3CEVK5S3ZEZ6F6Q","tsKey":"us-california-merced-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S0PZHSY20AR3RYH3X9","tsKey":"us-california-modoc-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S0KG4KF8D0Z2Q82AA8","tsKey":"us-california-mono-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S274EH19Y4G10BCN79","tsKey":"us-california-monterey-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S0N7EFJR843V3J8S1V","tsKey":"us-california-napa-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S0CY1BH0CRSFX3RS4A","tsKey":"us-california-nevada-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S0H7FBKRZ3Z1X68VY8","tsKey":"us-california-orange-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S3YDHZ7Y37GGG6ZXPD","tsKey":"us-california-placer-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S2WB9E7AB5ACJHWDMR","tsKey":"us-california-plumas-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S1RTTPB99TDP8PXS7S","tsKey":"us-california-riverside-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S3PDNBQNM938FD1GR6","tsKey":"us-california-sacramento-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S1V8R197ZPXMJDZE8J","tsKey":"us-california-san-benito-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S3ZBV5QB5DAXV0ZTQK","tsKey":"us-california-san-bernardino-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S1ZXYM6QXPT72BRW9W","tsKey":"us-california-san-diego-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S1061RNRAT6S4RJN1S","tsKey":"us-california-san-francisco-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S2K53D4DC13M78AC3G","tsKey":"us-california-san-joaquin-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S344VZ0TN0S3ZZJ690","tsKey":"us-california-san-luis-obispo-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S18EKZY5X34G3PESCJ","tsKey":"us-california-san-mateo-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S1HEEFPD9QYFYFY4RM","tsKey":"us-california-santa-barbara-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S39QVV0JNJPRFJ2JDN","tsKey":"us-california-santa-clara-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S1B9WCBZXGQDMXQ06H","tsKey":"us-california-santa-cruz-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S0986PGZQTC3P0C2JR","tsKey":"us-california-shasta-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S2X9ZDDTP4Z58RKP44","tsKey":"us-california-sierra-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S39FPMRSGQKPFEV3HJ","tsKey":"us-california-siskiyou-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S1M29WW2M3VCQ50X3B","tsKey":"us-california-solano-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S3BR9ACMV83E31ABJK","tsKey":"us-california-sonoma-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S0VXQRAH0TJ2J285KE","tsKey":"us-california-stanislaus-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S13CSJ07S446G4P43H","tsKey":"us-california-sutter-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S1WH5MHREF3QQ5W8E6","tsKey":"us-california-tehama-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S3WJ59X7XTNWRZDR96","tsKey":"us-california-trinity-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S2PDH6KNXE2P2ZHBSQ","tsKey":"us-california-tulare-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S1KF0C7KMTQY3G9QJY","tsKey":"us-california-tuolumne-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S32NBERK4HP2TS8RA4","tsKey":"us-california-ventura-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S1TAEB9SX8DXC90R2J","tsKey":"us-california-yolo-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HJ2S0K40WVRMZ91AEWKKY","tsKey":"us-california-yuba-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]}]},{"id":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","tsKey":"us-virginia","tsNs":"gov-dist","abbrev":"VA","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"},"subDistricts":[{"id":"gdst_01GW2HKB0PJZRSP1HDTZPWQZ0Q","tsKey":"us-virginia-accomack-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0JBK9TRQ1X194M03XA","tsKey":"us-virginia-albemarle-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0FW4TZW1KG1G2GGH6P","tsKey":"us-virginia-alexandria-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0H3ZS2Q9381Y1YTQJH","tsKey":"us-virginia-alleghany-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0GN3ECM4GEK863VWJ4","tsKey":"us-virginia-amelia-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0J7W9VAA5Z2NP2DT0S","tsKey":"us-virginia-amherst-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0H586ZXETHKM0JR5QP","tsKey":"us-virginia-appomattox-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0HQ34JX4SB211WD84Q","tsKey":"us-virginia-arlington-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0HRY5D6E3P0F9WRY16","tsKey":"us-virginia-augusta-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0GXW530Z9F2S0Y5CRW","tsKey":"us-virginia-bath-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0HSET8AD2QS3DW5CTH","tsKey":"us-virginia-bedford-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0KG2G0R852TF709SVM","tsKey":"us-virginia-bedford-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0PZQ7H7HX8377E9YHT","tsKey":"us-virginia-bland-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0JMK7FTVPHHCZWMD4E","tsKey":"us-virginia-botetourt-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0MZG7D05TJS4G5QMEN","tsKey":"us-virginia-bristol-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0H5PMAAPVBDJ0D186X","tsKey":"us-virginia-brunswick-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0PJ6J621PN5KWVPEW4","tsKey":"us-virginia-buchanan-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0GBN2NVT1MH0KDR4NR","tsKey":"us-virginia-buckingham-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0FYS4B10FJ7FPPYHSJ","tsKey":"us-virginia-buena-vista-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0HTFX3HDD208Y3QXG0","tsKey":"us-virginia-campbell-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0HVWEFS7G7ZQKKPNJM","tsKey":"us-virginia-caroline-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0J2GF31268NYDY8E3Y","tsKey":"us-virginia-carroll-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0HS8ZX8EY67T4TF46X","tsKey":"us-virginia-charles-city-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0PZY44QRDZZH62TN8K","tsKey":"us-virginia-charlotte-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0FY8X9FB05Q72QNRE5","tsKey":"us-virginia-charlottesville-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0M5TTA410XSE0FP2Y4","tsKey":"us-virginia-chesapeake-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0PSBKNGN85WHVTB6JS","tsKey":"us-virginia-chesterfield-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0GBMW3SPGPKS9RG7C8","tsKey":"us-virginia-clarke-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0P6Y87TEST13Q32CCD","tsKey":"us-virginia-colonial-heights-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0MVM77MBMF7RXF2M29","tsKey":"us-virginia-covington-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0HP1RF1VAK4C11XHKJ","tsKey":"us-virginia-craig-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0GV2VTRRVQH3KDBKFJ","tsKey":"us-virginia-culpeper-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0HEAHZ4DFZWYY2ZXJ3","tsKey":"us-virginia-cumberland-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0KBEFKV554MWFC53QN","tsKey":"us-virginia-danville-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0H3FYXKEVCDJ447QJ8","tsKey":"us-virginia-dickenson-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0JNBSJ1R8Y8CRM5NVV","tsKey":"us-virginia-dinwiddie-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0FMSE84CHQCV38TTJ8","tsKey":"us-virginia-emporia-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0JK3ND13FVSKVP87TW","tsKey":"us-virginia-essex-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0HZJYN6NQAQWMTSY8E","tsKey":"us-virginia-fairfax-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0NJVC3N82WNDDT9C8S","tsKey":"us-virginia-fairfax-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0MA2EGPWWYJT3CNQAV","tsKey":"us-virginia-falls-church-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0H56GT8XWKRFG6NPMJ","tsKey":"us-virginia-fauquier-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0GZ8WQQW89Z5ZJ0MBN","tsKey":"us-virginia-floyd-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0JK4PYYB55WWFM9K37","tsKey":"us-virginia-fluvanna-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0J4YXEA2HWGNB9BPWZ","tsKey":"us-virginia-franklin-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0KMSRD4J9FX440P7D7","tsKey":"us-virginia-franklin-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0J933V3XRK15B3T73W","tsKey":"us-virginia-frederick-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0PSGNJE6T8H90HPCHH","tsKey":"us-virginia-fredericksburg-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0MYSAT95PSV24MEAMT","tsKey":"us-virginia-galax-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0N96EZNGWJG43GAS9J","tsKey":"us-virginia-giles-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0JETDKXPPHQ0J718VJ","tsKey":"us-virginia-gloucester-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0G0QRBEZ07CC0RWWAM","tsKey":"us-virginia-goochland-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0N9ASZ8CRDF004RNFW","tsKey":"us-virginia-grayson-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0JDMRVC1CHYRYTFQGZ","tsKey":"us-virginia-greene-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0JPJYKAXDXAFEEYR78","tsKey":"us-virginia-greensville-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0N8P1FNFJ1BPTR8WE5","tsKey":"us-virginia-halifax-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0P8P7PS73DJRZCFNJ0","tsKey":"us-virginia-hampton-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0JTS7DZ9A76CHMNZ3D","tsKey":"us-virginia-hanover-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0FRNA08GACDV11XHGZ","tsKey":"us-virginia-harrisonburg-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0PMBBB5K1R414D6N15","tsKey":"us-virginia-henrico-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0NAT6691254555QNGA","tsKey":"us-virginia-henry-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0J7726Z2CR3Y5TSFQ7","tsKey":"us-virginia-highland-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0FS0TT1EGPYDZCTMKY","tsKey":"us-virginia-hopewell-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0NWQ0XFZCKHSZHHWTA","tsKey":"us-virginia-isle-of-wight-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0JEN9PW8VH3YWG1ZHX","tsKey":"us-virginia-james-city-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0KTX4H59EF3V8Z0XJD","tsKey":"us-virginia-king-and-queen-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0NHWW6YH4RG2NXJGPN","tsKey":"us-virginia-king-george-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0GVB2W0GTGK5BEYY0D","tsKey":"us-virginia-king-william-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0JHSAB7WPWAPSMHYGR","tsKey":"us-virginia-lancaster-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0NGNA730MD28CPHDQ1","tsKey":"us-virginia-lee-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0M65Y0P1QXB4SPKVV1","tsKey":"us-virginia-lexington-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0NM1DQRYN1XJMW9MD2","tsKey":"us-virginia-loudoun-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0KC52V3FDKNJ5B2HVX","tsKey":"us-virginia-louisa-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0GK2CABDFY1PWK6JDG","tsKey":"us-virginia-lunenburg-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0KE6VN72G8YDMS6KEF","tsKey":"us-virginia-lynchburg-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0GFF7F7FST6MQ4H1N7","tsKey":"us-virginia-madison-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0MS6X6709G4516QS7M","tsKey":"us-virginia-manassas-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0M76FXBT19NYNBTDXM","tsKey":"us-virginia-manassas-park-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0PWC3EBBWD25FN49K6","tsKey":"us-virginia-martinsville-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0JN6MEMJABDGXQ4B5R","tsKey":"us-virginia-mathews-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0N869YBT65S8HVJ08V","tsKey":"us-virginia-mecklenburg-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0JZAXBMN9VNTNMZZZ3","tsKey":"us-virginia-middlesex-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0EBMXHF0EECFJ60B4W","tsKey":"us-virginia-montgomery-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0F1Q74BT7X2JPN8X5K","tsKey":"us-virginia-nelson-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0KZQYVTF5GHP9NY03P","tsKey":"us-virginia-new-kent-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0PAPZNAVGNE1VQFQTW","tsKey":"us-virginia-newport-news-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0M2V4Z0M8JMFS26E3M","tsKey":"us-virginia-norfolk-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0N88RHCHAX4QNMDFKZ","tsKey":"us-virginia-northampton-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0KQS1XAQZ924V8G4DG","tsKey":"us-virginia-northumberland-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0KKMCGNSTZG6YG1JC9","tsKey":"us-virginia-norton-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0K0ZV03EP0NEMDAKT0","tsKey":"us-virginia-nottoway-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0KFGV7RW5FFDZG29F9","tsKey":"us-virginia-orange-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0KRAZ85M9CJV73RYZM","tsKey":"us-virginia-page-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0F58509XFMEVD1BG70","tsKey":"us-virginia-patrick-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0NHHK2MWB4W0891PFB","tsKey":"us-virginia-petersburg-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0KMV61ZJ14MP06GQQF","tsKey":"us-virginia-pittsylvania-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0PR6W8E6DW7WJ489GG","tsKey":"us-virginia-poquoson-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0K0YPERNG3ZMW61XC3","tsKey":"us-virginia-portsmouth-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0FQ8Y4GB4VCVRPM6BB","tsKey":"us-virginia-powhatan-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0N9AZC1MD3C7PRDRR9","tsKey":"us-virginia-prince-edward-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0N1DH9TJSVQJ7NQ7CM","tsKey":"us-virginia-prince-george-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0MAJKW3NPWSPDPPZ01","tsKey":"us-virginia-prince-william-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0F7KYTS267567CSZ09","tsKey":"us-virginia-pulaski-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0NHHBVD9VWC456QB30","tsKey":"us-virginia-radford-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0F48KQVT5ZH54AA00J","tsKey":"us-virginia-rappahannock-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0NCHVAD1VF9J889TB5","tsKey":"us-virginia-richmond-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0G8HHGGBQ8XEH3DBB7","tsKey":"us-virginia-richmond-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0PSG78HP329YQ2NN3E","tsKey":"us-virginia-roanoke-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0NKYDZ5F4RCT97DTWS","tsKey":"us-virginia-roanoke-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0MYD69PQ9SHKQ36WFH","tsKey":"us-virginia-rockbridge-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0NG5FCAYAT4B2FQEY5","tsKey":"us-virginia-rockingham-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0K1JMQH4AGNCZ8BG6M","tsKey":"us-virginia-russell-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0GHESXG2394TH7WVW8","tsKey":"us-virginia-salem-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0MSDATG91HA86MFTSC","tsKey":"us-virginia-scott-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0MA48KQ0DM8QC0SXRJ","tsKey":"us-virginia-shenandoah-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0F7RKJ60T5A1EAS1MK","tsKey":"us-virginia-smyth-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0N4T0CMMZHN8QEYG12","tsKey":"us-virginia-southampton-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0N2MEBEK9TWTQ9BVQF","tsKey":"us-virginia-spotsylvania-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0K87S28FP0PX6GM8WS","tsKey":"us-virginia-stafford-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0N3GZGJ34ABRPHY991","tsKey":"us-virginia-staunton-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0GWGXFKKR0N6EWER8H","tsKey":"us-virginia-suffolk-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0MP1TA2FAZZ012Z4SB","tsKey":"us-virginia-surry-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0MHKBHCVWTJMQZ5E3G","tsKey":"us-virginia-sussex-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0MKT9661MVQBWASX6P","tsKey":"us-virginia-tazewell-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0HDVCT703CEJAP63SH","tsKey":"us-virginia-virginia-beach-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0FE8REZNCYTFXDAJHR","tsKey":"us-virginia-warren-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0MZJNXJVFR04QXADPD","tsKey":"us-virginia-washington-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0GF74GCJPT6H8N3XT6","tsKey":"us-virginia-waynesboro-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0PJ788W3NDZB6362WV","tsKey":"us-virginia-westmoreland-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0K1R8TAG0ZEHTKTJ84","tsKey":"us-virginia-williamsburg-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0H4VACBK484AHVCEW1","tsKey":"us-virginia-winchester-city","tsNs":"gov-dist","govDistType":{"tsKey":"type-city","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0MWB71FPEMZP6BM3F8","tsKey":"us-virginia-wise-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0FF1A4F9V19C7FP9W2","tsKey":"us-virginia-wythe-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]},{"id":"gdst_01GW2HKB0P1TJKMDXBKCDRMYQK","tsKey":"us-virginia-york-county","tsNs":"gov-dist","govDistType":{"tsKey":"type-county","tsNs":"gov-dist"},"subDistricts":[]}]}]}]
\ No newline at end of file
diff --git a/packages/ui/mockData/json/fieldOpt.govDistsByCountryNoSub.json b/packages/ui/mockData/json/fieldOpt.govDistsByCountryNoSub.json
new file mode 100644
index 0000000000..1ea42e41b5
--- /dev/null
+++ b/packages/ui/mockData/json/fieldOpt.govDistsByCountryNoSub.json
@@ -0,0 +1 @@
+[{"id":"ctry_01GW2HHDK67GZQVGA3NZ8PE5SS","tsKey":"ASM.name","tsNs":"country","cca2":"AS","flag":"🇦🇸","govDist":[]},{"id":"ctry_01GW2HHDKAWXWYHAAESAA5HH94","tsKey":"CAN.name","tsNs":"country","cca2":"CA","flag":"🇨🇦","govDist":[{"id":"gdst_01GW2HKFSK070K54ZRAT3H42C4","tsKey":"ca-alberta","tsNs":"gov-dist","abbrev":"AB","govDistType":{"tsKey":"type-province","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKFSMR5V1P769F2G2804N","tsKey":"ca-british-columbia","tsNs":"gov-dist","abbrev":"BC","govDistType":{"tsKey":"type-province","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKFSRPH07M2AQSJWESENJ","tsKey":"ca-manitoba","tsNs":"gov-dist","abbrev":"MB","govDistType":{"tsKey":"type-province","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKFSRBQ5FXY7ESXTZGR2V","tsKey":"ca-new-brunswick","tsNs":"gov-dist","abbrev":"NB","govDistType":{"tsKey":"type-province","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKFSS7E4VCJ3PSAFDZG4A","tsKey":"ca-newfoundland-and-labrador","tsNs":"gov-dist","abbrev":"NL","govDistType":{"tsKey":"type-province","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKFSWQPT9JHKMGGN43BRA","tsKey":"ca-northwest-territories","tsNs":"gov-dist","abbrev":"NT","govDistType":{"tsKey":"type-territory","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKFSY6D07GJX9M0MT2VWQ","tsKey":"ca-nova-scotia","tsNs":"gov-dist","abbrev":"NS","govDistType":{"tsKey":"type-province","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKFSZRAJ76MWQSW5GX6KZ","tsKey":"ca-nunavut","tsNs":"gov-dist","abbrev":"NU","govDistType":{"tsKey":"type-territory","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKFTJXFCJ87G5J1XKA6R3","tsKey":"ca-ontario","tsNs":"gov-dist","abbrev":"ON","govDistType":{"tsKey":"type-province","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKFTNQQHHFQ9SRDB91SHQ","tsKey":"ca-prince-edward-island","tsNs":"gov-dist","abbrev":"PE","govDistType":{"tsKey":"type-province","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKFTNBZ4QT6F6AHNF8H46","tsKey":"ca-quebec","tsNs":"gov-dist","abbrev":"QC","govDistType":{"tsKey":"type-province","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKFTR4D2KWGB6G1GJ15PB","tsKey":"ca-saskatchewan","tsNs":"gov-dist","abbrev":"SK","govDistType":{"tsKey":"type-province","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKFTRD0ANP4QTCTQ9VH0J","tsKey":"ca-yukon","tsNs":"gov-dist","abbrev":"YT","govDistType":{"tsKey":"type-territory","tsNs":"gov-dist"}}]},{"id":"ctry_01GW2HHDKGZ2XQ8Q9D8GX564MJ","tsKey":"GUM.name","tsNs":"country","cca2":"GU","flag":"🇬🇺","govDist":[]},{"id":"ctry_01GW2HHDKFJ4Q7PBTTN4GSMPV0","tsKey":"MNP.name","tsNs":"country","cca2":"MP","flag":"🇲🇵","govDist":[]},{"id":"ctry_01GW2HHDKB9DG2T2YZM5MFFVX9","tsKey":"MEX.name","tsNs":"country","cca2":"MX","flag":"🇲🇽","govDist":[{"id":"gdst_01GW2HKJ7NT27K6BDAV0KE00H0","tsKey":"mx-aguascalientes","tsNs":"gov-dist","abbrev":"Ags.","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKJ7NHSPR1AZ1RKJR6VAX","tsKey":"mx-baja-california","tsNs":"gov-dist","abbrev":"B.C.","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKJ7PP2TBNC8MQQS02N6S","tsKey":"mx-baja-california-sur","tsNs":"gov-dist","abbrev":"B.C.S.","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKJ7PYKWCEPVPG68EDP4F","tsKey":"mx-campeche","tsNs":"gov-dist","abbrev":"Camp.","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKJ7QP8FG3WQCWFTQKJC7","tsKey":"mx-chiapas","tsNs":"gov-dist","abbrev":"Chis.","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKJ7QGNZ81C60E6AX505R","tsKey":"mx-chihuahua","tsNs":"gov-dist","abbrev":"Chih.","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKJ7QDVHS9K3FJGJ3DCVG","tsKey":"mx-coahuila","tsNs":"gov-dist","abbrev":"Coah.","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKJ7R844VVGTC4G4TTXE0","tsKey":"mx-colima","tsNs":"gov-dist","abbrev":"Col.","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKJ7RG6XAZFVW3KHZEJ5N","tsKey":"mx-distrito-federal","tsNs":"gov-dist","abbrev":"D.F.","govDistType":{"tsKey":"type-district","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKJ7RNCFT58G1MBPDX7RE","tsKey":"mx-durango","tsNs":"gov-dist","abbrev":"Dgo.","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKJ7SKC6E0B6N0NY2K6M8","tsKey":"mx-guanajuato","tsNs":"gov-dist","abbrev":"Gto.","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKJ7SDMPRET5KPDRK8Y5Y","tsKey":"mx-guerrero","tsNs":"gov-dist","abbrev":"Gro.","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKJ7SDVGBXMWX3GN3QNK0","tsKey":"mx-hidalgo","tsNs":"gov-dist","abbrev":"Hgo.","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKJ7TRTV31X30NRY0NYX2","tsKey":"mx-jalisco","tsNs":"gov-dist","abbrev":"Jal.","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKJ7TH3H6DP8T7X9JD0P7","tsKey":"mx-mexico","tsNs":"gov-dist","abbrev":"Méx.","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKJ7TVTPXQXX72QHX8P8T","tsKey":"mx-michoacan","tsNs":"gov-dist","abbrev":"Mich.","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKJ7VTQZZ91SN99P0N4ZH","tsKey":"mx-morelos","tsNs":"gov-dist","abbrev":"Mor.","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKJ7VAF5NW1VQ7KQ54A4T","tsKey":"mx-nayarit","tsNs":"gov-dist","abbrev":"Nay.","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKJ7WVV7V5NA1XP5BD0A7","tsKey":"mx-nuevo-leon","tsNs":"gov-dist","abbrev":"N.L.","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKJ7WMZRAAAYWXZ4HV89S","tsKey":"mx-oaxaca","tsNs":"gov-dist","abbrev":"Oax.","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKJ7WQS81DVDTGPKDBGYR","tsKey":"mx-puebla","tsNs":"gov-dist","abbrev":"Pue.","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKJ7XQWNY7KYE4GFSRVY9","tsKey":"mx-queretaro","tsNs":"gov-dist","abbrev":"Qro.","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKJ7X3M2TZXDZ2984KY3V","tsKey":"mx-quintana-roo","tsNs":"gov-dist","abbrev":"Q. Roo.","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKJ7X81B6PQNKDGBY35FT","tsKey":"mx-san-luis-potosi","tsNs":"gov-dist","abbrev":"S.L.P.","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKJ7XBS59FF133TSA8CX5","tsKey":"mx-sinaloa","tsNs":"gov-dist","abbrev":"Sin.","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKJ7YBSH4ANCX20Y2Z153","tsKey":"mx-sonora","tsNs":"gov-dist","abbrev":"Son.","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKJ7Y4KN0Y21FFKGM0R36","tsKey":"mx-tabasco","tsNs":"gov-dist","abbrev":"Tab.","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKJ7YV4W4HKPX6RX8ZGWD","tsKey":"mx-tamaulipas","tsNs":"gov-dist","abbrev":"Tamps.","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKJ7ZQFMCWT4EF2DW9HRC","tsKey":"mx-tlaxcala","tsNs":"gov-dist","abbrev":"Tlax.","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKJ7ZPEGHSE8Y0C6AJ2HK","tsKey":"mx-veracruz","tsNs":"gov-dist","abbrev":"Ver.","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKJ7ZAFQ34D6TVHT2AJ88","tsKey":"mx-yucatan","tsNs":"gov-dist","abbrev":"Yuc.","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKJ7Z862E7R2ENKYPSZPY","tsKey":"mx-zacatecas","tsNs":"gov-dist","abbrev":"Zac.","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}}]},{"id":"ctry_01GW2HHDK7PACTC9GJ2XBMVPKY","tsKey":"PRI.name","tsNs":"country","cca2":"PR","flag":"🇵🇷","govDist":[{"id":"gdst_01GW2HKF7MNPRM44JZ70DZNZ75","tsKey":"pr-adjuntas","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7QQADN2XEJEGRZGA32","tsKey":"pr-aguada","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7GDB9A0Y61RH4DE1Y7","tsKey":"pr-aguadilla","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7MHG9HQGMG6HW76GTY","tsKey":"pr-aguas-buenas","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7QZYRM5N4YWRDX0D51","tsKey":"pr-aibonito","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7MJ6N0ZP2EVQW7PKSZ","tsKey":"pr-anasco","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7ASDCF6MJX1GR7A9WD","tsKey":"pr-arecibo","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7QAWDF8MDJPC4ATW3C","tsKey":"pr-arroyo","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7KWSFQ2BBNE06FBJ8B","tsKey":"pr-barceloneta","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7AAHGX7T7W6AZJWYAE","tsKey":"pr-barranquitas","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7K7GQPKHXMAZ353S8Q","tsKey":"pr-bayamon","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7NB99SEGDAGPWGQ7HH","tsKey":"pr-cabo-rojo","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7BSBYYNEMZ6QVF8227","tsKey":"pr-caguas","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7E342VRJMB9JBQGCB8","tsKey":"pr-camuy","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7K6K1YGQMXC75C7FEN","tsKey":"pr-canovanas","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7B83PQP7G4GY5H1F1Y","tsKey":"pr-carolina","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7N2795CHTK7B9FMBMT","tsKey":"pr-catano","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7EJC9Z7Q854T284T8Q","tsKey":"pr-cayey","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7N4BXQNPGJ2SSB3HZP","tsKey":"pr-ceiba","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7KNW1P6M0CBTP9DJPH","tsKey":"pr-ciales","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7ES2899PBSYADF5CGZ","tsKey":"pr-cidra","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7E1MAS1DCAF251JMS0","tsKey":"pr-coamo","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7C8TEXW0TX7BNR3ZJP","tsKey":"pr-comerio","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7NM95AMSGKNYVNMX4K","tsKey":"pr-corozal","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7NJ8N815ZSVQ6PP8F8","tsKey":"pr-culebra","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7KY7TE0STKHEKB8TCT","tsKey":"pr-dorado","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7FJX1TV2FACXBDTY8V","tsKey":"pr-fajardo","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7CT97CA6YVEKY451FF","tsKey":"pr-florida","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7FKYKQ8FJ5EAG5FQGG","tsKey":"pr-guanica","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7N8X0C9FVKWQRPZ0N5","tsKey":"pr-guayama","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7FP0SMK1DBEP03CCPT","tsKey":"pr-guayanilla","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7CPSVHHJVMRV1TCEPH","tsKey":"pr-guaynabo","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7KPB26QY6V5AGPHQCK","tsKey":"pr-gurabo","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7PBJAHMG2YTEB5E6QN","tsKey":"pr-hatillo","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7GKZBEW06ATJGN7YA0","tsKey":"pr-hormigueros","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7C8PZMQX3ZPA4SQA0R","tsKey":"pr-humacao","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7QNDYT5EJJSNHV70Q0","tsKey":"pr-isabela","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7GFWQFZM4W8B6XE278","tsKey":"pr-jayuya","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7JCH0F0VGDMC9T859G","tsKey":"pr-juana-diaz","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7KKF2ZRBGWJ65XYB1H","tsKey":"pr-juncos","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7GJZ9K8JZHNY36F1S1","tsKey":"pr-lajas","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7GP9242YXKBP7ZY7SZ","tsKey":"pr-lares","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7DQFZ2RSYBJQ6ZTTSX","tsKey":"pr-las-marias","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7MZFQQ65W2WV6B3HFJ","tsKey":"pr-las-piedras","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7P4GF3D9AH52RC8PAB","tsKey":"pr-loiza","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7G4BFBE603PNE92JZ7","tsKey":"pr-luquillo","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7PWWJXJ0XKJW6BRCQ1","tsKey":"pr-manati","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7DKTN8REXVNGVAECB8","tsKey":"pr-maricao","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7GJBK2M8GR9YSWMHM0","tsKey":"pr-maunabo","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7PJWWVN43HSZXECPP4","tsKey":"pr-mayaguez","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7M2DS24Q59CSHA0DY5","tsKey":"pr-moca","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7H4FBMYSFFGJZYH0MH","tsKey":"pr-morovis","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7HJBVR2JFQ1VAWS6JD","tsKey":"pr-naguabo","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7DCSXHCYDJ28QWER0N","tsKey":"pr-naranjito","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7PQJ4CM33MH3AEM1RA","tsKey":"pr-orocovis","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7HFBFSHR7JYV7NHF0Z","tsKey":"pr-patillas","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7MD86ZXFZYAKS2GJNR","tsKey":"pr-penuelas","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7PV9TMP8VWK93FTV2J","tsKey":"pr-ponce","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7D4HT3G8QJ6825DV48","tsKey":"pr-quebradillas","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7HMQPDNKPBKNXDZR6P","tsKey":"pr-rincon","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7HDC2BETD8TXG8M3N8","tsKey":"pr-rio-grande","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7PYS8BKRNW15QN0S0D","tsKey":"pr-sabana-grande","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7MZHTPEG6PYHA6FWFF","tsKey":"pr-salinas","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7H0Q44P9ERJFFPJBFC","tsKey":"pr-san-german","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7Q4W804RJYJGSN9YDS","tsKey":"pr-san-juan","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7DMJDRY12E121NAPY5","tsKey":"pr-san-lorenzo","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7H2VNGTNFXZW160HHP","tsKey":"pr-san-sebastian","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7QD21G3Y0R6E0CB8RH","tsKey":"pr-santa-isabel","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7DCAZN6WSP89JENB8R","tsKey":"pr-toa-alta","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7J713E50Y0QV06MQXV","tsKey":"pr-toa-baja","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7M73DDSZHXFGQ590SV","tsKey":"pr-trujillo-alto","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7QAE0RFPT8NC27V024","tsKey":"pr-utuado","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7JSS7C4C4QRJHCMTJH","tsKey":"pr-vega-alta","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7EJNVQWD2TRZT2SH0S","tsKey":"pr-vega-baja","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7J1ADADNHCE9AWWGTP","tsKey":"pr-vieques","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7J3GGEMV7WYXFEP5AS","tsKey":"pr-villalba","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7J0062R97R77JPGEH6","tsKey":"pr-yabucoa","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKF7JBB2EXCZFTX3V5ABR","tsKey":"pr-yauco","tsNs":"gov-dist","abbrev":null,"govDistType":{"tsKey":"type-county","tsNs":"gov-dist"}}]},{"id":"ctry_01GW2HHDKCRS9KW4FG2WR2GG06","tsKey":"UMI.name","tsNs":"country","cca2":"UM","flag":"🇺🇲","govDist":[]},{"id":"ctry_01GW2HHDK9M26M80SG63T21SVH","tsKey":"USA.name","tsNs":"country","cca2":"US","flag":"🇺🇸","govDist":[{"id":"gdst_01GW2HHY0735M7CQSXR31HP114","tsKey":"us-alabama","tsNs":"gov-dist","abbrev":"AL","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HHZ3C061BT60QBAD8WVJZ","tsKey":"us-alaska","tsNs":"gov-dist","abbrev":"AK","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HJ0MERT6FW07XV7PZWZWE","tsKey":"us-arizona","tsNs":"gov-dist","abbrev":"AZ","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HJ1D3W61ZMBGY0FGKY9EC","tsKey":"us-arkansas","tsNs":"gov-dist","abbrev":"AR","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HJ23GMD17FBJMJWD16PZ1","tsKey":"us-california","tsNs":"gov-dist","abbrev":"CA","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HJ35FAMD0V0YSSPYPMG46","tsKey":"us-colorado","tsNs":"gov-dist","abbrev":"CO","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HJ48BS27DYW8W4GNH4P2W","tsKey":"us-connecticut","tsNs":"gov-dist","abbrev":"CT","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HJ4XTJT4GBEWDBY057B01","tsKey":"us-delaware","tsNs":"gov-dist","abbrev":"DE","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HJ5A278S2G84AB3N9FCW0","tsKey":"us-district-of-columbia","tsNs":"gov-dist","abbrev":"DC","govDistType":{"tsKey":"type-district","tsNs":"gov-dist"}},{"id":"gdst_01GW2HJ5XJRY6B6JNVZ8G8NFJY","tsKey":"us-florida","tsNs":"gov-dist","abbrev":"FL","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HJ6WC0EDHHCHG998QT3N0","tsKey":"us-georgia","tsNs":"gov-dist","abbrev":"GA","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HJ7VX37RF69KKXAYE05QN","tsKey":"us-hawaii","tsNs":"gov-dist","abbrev":"HI","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HJ8HJJWY8F1GKEM5R8QZ4","tsKey":"us-idaho","tsNs":"gov-dist","abbrev":"ID","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HJ9GVN301XN2SKRWE8Q3M","tsKey":"us-illinois","tsNs":"gov-dist","abbrev":"IL","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HJAD7VVT46D0BHXQRV2WF","tsKey":"us-indiana","tsNs":"gov-dist","abbrev":"IN","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HJC4WJWMZA8VDNVVE5RZQ","tsKey":"us-iowa","tsNs":"gov-dist","abbrev":"IA","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HJDE344VFWCSNBYYSFDDW","tsKey":"us-kansas","tsNs":"gov-dist","abbrev":"KS","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HJF2WCKZ47HGSYQFANCDZ","tsKey":"us-kentucky","tsNs":"gov-dist","abbrev":"KY","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HJG2676AX4NRXHWA4PB8B","tsKey":"us-louisiana","tsNs":"gov-dist","abbrev":"LA","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HJH13NCXACKZGG242PM97","tsKey":"us-maine","tsNs":"gov-dist","abbrev":"ME","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HJHQBKA67H0WWG35J4PV7","tsKey":"us-maryland","tsNs":"gov-dist","abbrev":"MD","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HJJGA979WFBS7S7ECK0JK","tsKey":"us-massachusetts","tsNs":"gov-dist","abbrev":"MA","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HJK994XZPC3KNCPVST015","tsKey":"us-michigan","tsNs":"gov-dist","abbrev":"MI","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HJMBQGM1ZDVR1TJX4N6DY","tsKey":"us-minnesota","tsNs":"gov-dist","abbrev":"MN","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HJMYCBT3EWB9XCX2VSMK9","tsKey":"us-mississippi","tsNs":"gov-dist","abbrev":"MS","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HJPZYX059W3SHQW8D9F7M","tsKey":"us-missouri","tsNs":"gov-dist","abbrev":"MO","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HJQZ5J517QW02C84M80WD","tsKey":"us-montana","tsNs":"gov-dist","abbrev":"MT","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HJRVH0VX93NDHEJ0QK158","tsKey":"us-nebraska","tsNs":"gov-dist","abbrev":"NE","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HJSQZ19Y230FJHNKHSW89","tsKey":"us-nevada","tsNs":"gov-dist","abbrev":"NV","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HJTSK0AMAVYF9QD9GXBAR","tsKey":"us-new-hampshire","tsNs":"gov-dist","abbrev":"NH","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HJVFHMQEZZ1AKH9QETVP6","tsKey":"us-new-jersey","tsNs":"gov-dist","abbrev":"NJ","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HJW29RXPB0ZW6ZTTPH7DY","tsKey":"us-new-mexico","tsNs":"gov-dist","abbrev":"NM","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HJXH936VB5WWAHK8S8X0A","tsKey":"us-new-york","tsNs":"gov-dist","abbrev":"NY","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HJY7KQKE8XCP6BM8WC459","tsKey":"us-north-carolina","tsNs":"gov-dist","abbrev":"NC","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HJZG4VMQ7QWQ3MHXG3S8K","tsKey":"us-north-dakota","tsNs":"gov-dist","abbrev":"ND","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HK0N4V9YBGBSQVN4JRKKW","tsKey":"us-ohio","tsNs":"gov-dist","abbrev":"OH","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HK1MBAAXAR655YEESJRB1","tsKey":"us-oklahoma","tsNs":"gov-dist","abbrev":"OK","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HK2PW0GCZATZ6YX9RG8FE","tsKey":"us-oregon","tsNs":"gov-dist","abbrev":"OR","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HK3G7JGSCMVRQERYCRQGY","tsKey":"us-pennsylvania","tsNs":"gov-dist","abbrev":"PA","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HK49A5XQ8ZDFKQSF098SJ","tsKey":"us-rhode-island","tsNs":"gov-dist","abbrev":"RI","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HK51XDFN3Q0ND2NCGBN14","tsKey":"us-south-carolina","tsNs":"gov-dist","abbrev":"SC","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HK5R9S8ZRWG9Z3BPFAXND","tsKey":"us-south-dakota","tsNs":"gov-dist","abbrev":"SD","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HK6H7B5T82KZ82DZSFNR0","tsKey":"us-tennessee","tsNs":"gov-dist","abbrev":"TN","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HK7G3WV9NP68CJ02WPMV7","tsKey":"us-texas","tsNs":"gov-dist","abbrev":"TX","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HK8W4ZDJSZDPWZH2XH023","tsKey":"us-utah","tsNs":"gov-dist","abbrev":"UT","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HK9J2HNR9ZCJJHF8WAGDT","tsKey":"us-vermont","tsNs":"gov-dist","abbrev":"VT","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKADSS3SDS9XJV1WHMTVY","tsKey":"us-virginia","tsNs":"gov-dist","abbrev":"VA","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKC6JBVM1S4P89T664V0A","tsKey":"us-washington","tsNs":"gov-dist","abbrev":"WA","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKD240CAP65TPYPT32MRR","tsKey":"us-west-virginia","tsNs":"gov-dist","abbrev":"WV","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKDJ5VV91D7JP3V6DE3DK","tsKey":"us-wisconsin","tsNs":"gov-dist","abbrev":"WI","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}},{"id":"gdst_01GW2HKEDZ2K9QXJ96SKR44EGV","tsKey":"us-wyoming","tsNs":"gov-dist","abbrev":"WY","govDistType":{"tsKey":"type-state","tsNs":"gov-dist"}}]},{"id":"ctry_01GW2HHDK9DG12Y7RQMVEE5XSQ","tsKey":"VIR.name","tsNs":"country","cca2":"VI","flag":"🇻🇮","govDist":[]}]
\ No newline at end of file
diff --git a/packages/ui/mockData/json/fieldOpt.languages.json b/packages/ui/mockData/json/fieldOpt.languages.json
new file mode 100644
index 0000000000..7a65a70387
--- /dev/null
+++ b/packages/ui/mockData/json/fieldOpt.languages.json
@@ -0,0 +1 @@
+[{"id":"lang_0000000000WH4DPN294SH38EHC","languageName":"Abkhaz","localeCode":"ab","iso6392":"abk","nativeName":"Аҧсуа бызшәа","activelyTranslated":false},{"id":"lang_0000000000AXPPG7DMRN1M3Y5G","languageName":"Afar","localeCode":"aa","iso6392":"aar","nativeName":"Afaraf","activelyTranslated":false},{"id":"lang_00000000007VSYVVDRT6Z937TX","languageName":"Afrikaans","localeCode":"af","iso6392":"afr","nativeName":"Afrikaans","activelyTranslated":false},{"id":"lang_00000000002R5Q3J4T0D4M6HXR","languageName":"Akan","localeCode":"ak","iso6392":"aka","nativeName":"Akan","activelyTranslated":false},{"id":"lang_0000000000JT1NJJ63AFVGQKHD","languageName":"Albanian","localeCode":"sq","iso6392":"sqi","nativeName":"Shqip","activelyTranslated":false},{"id":"lang_0000000000WHMAGNXW3EGP7872","languageName":"Amharic","localeCode":"am","iso6392":"amh","nativeName":"አማርኛ","activelyTranslated":false},{"id":"lang_0000000000X3DNJBKJ7JZJTWS3","languageName":"Arabic","localeCode":"ar","iso6392":"ara","nativeName":"اللغة العربية","activelyTranslated":true},{"id":"lang_000000000019SR1A8P2JMJ6YYQ","languageName":"Aragonese","localeCode":"an","iso6392":"arg","nativeName":"Aragonés","activelyTranslated":false},{"id":"lang_0000000000202PV6ES5R39AFVY","languageName":"Armenian","localeCode":"hy","iso6392":"hye","nativeName":"Հայերեն","activelyTranslated":false},{"id":"lang_00000000001BWSKVSXCHZ7K2HE","languageName":"Assamese","localeCode":"as","iso6392":"asm","nativeName":"অসমীয়া","activelyTranslated":false},{"id":"lang_00000000008E08JNQ3ZP3YG1ZC","languageName":"Avaric","localeCode":"av","iso6392":"ava","nativeName":"Авар мацӏ","activelyTranslated":false},{"id":"lang_0000000000KRK9VK1E505KQ0XS","languageName":"Avestan","localeCode":"ae","iso6392":"ave","nativeName":"Avesta","activelyTranslated":false},{"id":"lang_0000000000NYQKCEVXZEPJNKCK","languageName":"Aymara","localeCode":"ay","iso6392":"aym","nativeName":"Aymar aru","activelyTranslated":false},{"id":"lang_0000000000QHV6RS0AJSKY9W0Q","languageName":"Azerbaijani","localeCode":"az","iso6392":"aze","nativeName":"Azərbaycan dili","activelyTranslated":false},{"id":"lang_0000000000ATBEBZ0PVEHQ7Z22","languageName":"Bambara","localeCode":"bm","iso6392":"bam","nativeName":"Bamanankan","activelyTranslated":false},{"id":"lang_0000000000JJNZRYD6EVYS56F8","languageName":"Bashkir","localeCode":"ba","iso6392":"bak","nativeName":"Башҡорт теле","activelyTranslated":false},{"id":"lang_0000000000NSGRAA2F186G5Q1F","languageName":"Basque","localeCode":"eu","iso6392":"eus","nativeName":"Euskara","activelyTranslated":false},{"id":"lang_00000000006B45HN8W5MF6DTRS","languageName":"Belarusian","localeCode":"be","iso6392":"bel","nativeName":"Беларуская мова","activelyTranslated":false},{"id":"lang_0000000000QTB221HD8KYZ6JPJ","languageName":"Bengali","localeCode":"bn","iso6392":"ben","nativeName":"বাংলা","activelyTranslated":false},{"id":"lang_0000000000CE6V74G5B23K634Z","languageName":"Bihari","localeCode":"bh","iso6392":"bih","nativeName":"भोजपुरी","activelyTranslated":false},{"id":"lang_0000000000D7JA6RN3Z1XF0QVQ","languageName":"Bislama","localeCode":"bi","iso6392":"bis","nativeName":"Bislama","activelyTranslated":false},{"id":"lang_0000000000A36JKM7HMJ6N7T2W","languageName":"Bosnian","localeCode":"bs","iso6392":"bos","nativeName":"Bosanski jezik","activelyTranslated":false},{"id":"lang_0000000000B581CC7NYTRGTTEK","languageName":"Breton","localeCode":"br","iso6392":"bre","nativeName":"Brezhoneg","activelyTranslated":false},{"id":"lang_0000000000B1A5JGRGV2S8HG8S","languageName":"Bulgarian","localeCode":"bg","iso6392":"bul","nativeName":"Български език","activelyTranslated":false},{"id":"lang_00000000006KVXN4PKEWWP5CSZ","languageName":"Burmese","localeCode":"my","iso6392":"mya","nativeName":"ဗမာစာ","activelyTranslated":false},{"id":"lang_0000000000KHAK9FP3Z4A61YGV","languageName":"Catalan","localeCode":"ca","iso6392":"cat","nativeName":"Català","activelyTranslated":false},{"id":"lang_0000000000JXJN6N90S1STDMF5","languageName":"Cebuano","localeCode":"ceb","iso6392":null,"nativeName":"Cebuan","activelyTranslated":false},{"id":"lang_0000000000W44G1BYRV14H96QH","languageName":"Central Kurdish","localeCode":"ckb","iso6392":null,"nativeName":"کوردیی ناوەندی","activelyTranslated":false},{"id":"lang_0000000000C3WHK40FAR86X5CJ","languageName":"Chamorro","localeCode":"ch","iso6392":"cha","nativeName":"Chamoru","activelyTranslated":false},{"id":"lang_0000000000WSGDKEFQ3AQCJRF0","languageName":"Chechen","localeCode":"ce","iso6392":"che","nativeName":"Нохчийн мотт","activelyTranslated":false},{"id":"lang_0000000000BDTED8QCRVNB5C37","languageName":"Chichewa","localeCode":"ny","iso6392":"nya","nativeName":"Chicheŵa","activelyTranslated":false},{"id":"lang_000000000005XRN3F9V8P8NSJ0","languageName":"Chinese","localeCode":"zh","iso6392":"zho","nativeName":"中文","activelyTranslated":false},{"id":"lang_0000000000T15V504MD1E4YPZT","languageName":"Chinese (Simplified)","localeCode":"zh-Hans","iso6392":null,"nativeName":"中文(简体)","activelyTranslated":false},{"id":"lang_0000000000C87KP0BKNWPRSRGN","languageName":"Chinese (Simplified)","localeCode":"zh-CN","iso6392":null,"nativeName":"中文","activelyTranslated":false},{"id":"lang_0000000000YCPHHC6J1SKKEJPP","languageName":"Chinese (Traditional)","localeCode":"zh-TW","iso6392":null,"nativeName":"中文","activelyTranslated":false},{"id":"lang_00000000001KEM4C5FKDJYTSZT","languageName":"Chinese (Traditional)","localeCode":"zh-Hant","iso6392":null,"nativeName":"中文(繁體)","activelyTranslated":false},{"id":"lang_0000000000E0DRT6FZHSHDRHAF","languageName":"Chuvash","localeCode":"cv","iso6392":"chv","nativeName":"Чӑваш чӗлхи","activelyTranslated":false},{"id":"lang_0000000000NKP5W95PPQYZ9KN5","languageName":"Cornish","localeCode":"kw","iso6392":"cor","nativeName":"Kernewek","activelyTranslated":false},{"id":"lang_00000000002KZSJ8MJ8NAEAH3Y","languageName":"Corsican","localeCode":"co","iso6392":"cos","nativeName":"Corsu","activelyTranslated":false},{"id":"lang_000000000083YQCXKQCRNR32DN","languageName":"Cree","localeCode":"cr","iso6392":"cre","nativeName":"ᓀᐦᐃᔭᐍᐏᐣ","activelyTranslated":false},{"id":"lang_00000000006YPFN5BCRGB4ZKTV","languageName":"Croatian","localeCode":"hr","iso6392":"hrv","nativeName":"Hrvatski","activelyTranslated":false},{"id":"lang_0000000000X5ZR09PJKXCESKPF","languageName":"Czech","localeCode":"cs","iso6392":"ces","nativeName":"Čeština","activelyTranslated":false},{"id":"lang_0000000000Z4H3ERWGKBF0296R","languageName":"Danish","localeCode":"da","iso6392":"dan","nativeName":"Dansk","activelyTranslated":false},{"id":"lang_00000000000KSZH23Z4TS44YPR","languageName":"Divehi","localeCode":"dv","iso6392":"div","nativeName":"Dhivehi","activelyTranslated":false},{"id":"lang_0000000000Z7NFAWFFR0Z0BJNY","languageName":"Dutch","localeCode":"nl","iso6392":"nld","nativeName":"Nederlands","activelyTranslated":false},{"id":"lang_00000000007PPDVFJBH4YAQEMR","languageName":"Dzongkha","localeCode":"dz","iso6392":"dzo","nativeName":"རྫོང་ཁ","activelyTranslated":false},{"id":"lang_0000000000N3K70GZXE29Z03A4","languageName":"English","localeCode":"en","iso6392":"eng","nativeName":"English","activelyTranslated":true},{"id":"lang_00000000005D6Y3JHS1TZ6P3C0","languageName":"English (Australia)","localeCode":"en-AU","iso6392":null,"nativeName":"English (australia)","activelyTranslated":false},{"id":"lang_0000000000ABJHARZWN39WPQG1","languageName":"English (Canada)","localeCode":"en-CA","iso6392":null,"nativeName":"English (canada)","activelyTranslated":false},{"id":"lang_000000000046A0D7ZNRBJZ0VG0","languageName":"English (United Kingdom)","localeCode":"en-GB","iso6392":null,"nativeName":"English (united kingdom)","activelyTranslated":false},{"id":"lang_0000000000XJR2NSST34FW920D","languageName":"Esperanto","localeCode":"eo","iso6392":"epo","nativeName":"Esperanto","activelyTranslated":false},{"id":"lang_00000000005B6WWE10VS8BHY41","languageName":"Estonian","localeCode":"et","iso6392":"est","nativeName":"Eesti","activelyTranslated":false},{"id":"lang_0000000000RDFFYKYSDSM28ZTD","languageName":"Ewe","localeCode":"ee","iso6392":"ewe","nativeName":"Eʋegbe","activelyTranslated":false},{"id":"lang_000000000026VXY1H7HMDVC8JC","languageName":"Faroese","localeCode":"fo","iso6392":"fao","nativeName":"Føroyskt","activelyTranslated":false},{"id":"lang_0000000000R010AWHPCJWB7NK4","languageName":"Fijian","localeCode":"fj","iso6392":"fij","nativeName":"Vakaviti","activelyTranslated":false},{"id":"lang_0000000000GZXXRD16FPAEARDR","languageName":"Finnish","localeCode":"fi","iso6392":"fin","nativeName":"Suomi","activelyTranslated":false},{"id":"lang_0000000000NF5EFJJ1KFY0ED8E","languageName":"French","localeCode":"fr","iso6392":"fra","nativeName":"Français","activelyTranslated":true},{"id":"lang_0000000000MR3XDR6FTC1W16HF","languageName":"French (Canada)","localeCode":"fr-CA","iso6392":null,"nativeName":"Français (canada)","activelyTranslated":false},{"id":"lang_0000000000YSJFJHHTSAWDTFMJ","languageName":"Fula","localeCode":"ff","iso6392":"ful","nativeName":"Fulfulde","activelyTranslated":false},{"id":"lang_0000000000ZZWEN9V7ER1B9M5W","languageName":"Galician","localeCode":"gl","iso6392":"glg","nativeName":"Galego","activelyTranslated":false},{"id":"lang_0000000000NY0C8F6VRCYXZ8DT","languageName":"Ganda","localeCode":"lg","iso6392":"lug","nativeName":"Luganda","activelyTranslated":false},{"id":"lang_0000000000Y2A552CA0911PQPT","languageName":"Georgian","localeCode":"ka","iso6392":"kat","nativeName":"Ქართული","activelyTranslated":false},{"id":"lang_00000000001E8RN3C2TQH7DZPJ","languageName":"German","localeCode":"de","iso6392":"deu","nativeName":"Deutsch","activelyTranslated":false},{"id":"lang_0000000000VX69XQ5NMRFGSJ3B","languageName":"Greek","localeCode":"el","iso6392":"ell","nativeName":"Ελληνικά","activelyTranslated":false},{"id":"lang_0000000000JFMNTT896H70QS7D","languageName":"Guaraní","localeCode":"gn","iso6392":"grn","nativeName":"Avañe'ẽ","activelyTranslated":false},{"id":"lang_00000000005ZAQ0KFK1Q3D7NEA","languageName":"Gujarati","localeCode":"gu","iso6392":"guj","nativeName":"ગુજરાતી","activelyTranslated":false},{"id":"lang_00000000008SDB2XNNYNM8D83F","languageName":"Haitian","localeCode":"ht","iso6392":"hat","nativeName":"Kreyòl ayisyen","activelyTranslated":false},{"id":"lang_0000000000AFK6BG0W4JT1W61R","languageName":"Hausa","localeCode":"ha","iso6392":"hau","nativeName":"هَوُسَ","activelyTranslated":false},{"id":"lang_0000000000Z8PR1PFGTKX64X55","languageName":"Hawaiian","localeCode":"haw","iso6392":null,"nativeName":"ʻōlelo hawaiʻi","activelyTranslated":false},{"id":"lang_0000000000K0VSDF2555T7DKX1","languageName":"Hebrew","localeCode":"he","iso6392":"heb","nativeName":"עברית","activelyTranslated":false},{"id":"lang_0000000000XTP4RRR9ZA90Z2G2","languageName":"Herero","localeCode":"hz","iso6392":"her","nativeName":"Otjiherero","activelyTranslated":false},{"id":"lang_0000000000CKHGN5EZWSMASTZB","languageName":"Hindi","localeCode":"hi","iso6392":"hin","nativeName":"हिन्दी","activelyTranslated":false},{"id":"lang_0000000000GDQ01JWWQRS0RNME","languageName":"Hiri Motu","localeCode":"ho","iso6392":"hmo","nativeName":"Hiri motu","activelyTranslated":false},{"id":"lang_0000000000K006C11TXJ9Y7TJS","languageName":"Hmong","localeCode":"hmn","iso6392":null,"nativeName":"Hmôngz","activelyTranslated":false},{"id":"lang_0000000000A01MMDTSSP53V66H","languageName":"Hungarian","localeCode":"hu","iso6392":"hun","nativeName":"Magyar","activelyTranslated":false},{"id":"lang_00000000008N10DQXKP2NB3B3W","languageName":"Icelandic","localeCode":"is","iso6392":"isl","nativeName":"Íslenska","activelyTranslated":false},{"id":"lang_0000000000SSHW3828JCK0NCH1","languageName":"Ido","localeCode":"io","iso6392":"ido","nativeName":"Ido","activelyTranslated":false},{"id":"lang_00000000002MKKQ0D0RMQ1DPKH","languageName":"Igbo","localeCode":"ig","iso6392":"ibo","nativeName":"Asụsụ igbo","activelyTranslated":false},{"id":"lang_0000000000AC798YZWAKQ8GAB6","languageName":"Indonesian","localeCode":"id","iso6392":"ind","nativeName":"Bahasa indonesia","activelyTranslated":false},{"id":"lang_00000000005163PHA8YJWBS2WE","languageName":"Interlingua","localeCode":"ia","iso6392":"ina","nativeName":"Interlingua","activelyTranslated":false},{"id":"lang_00000000004KWPNCJWTV4A0SCB","languageName":"Interlingue","localeCode":"ie","iso6392":"ile","nativeName":"Interlingue","activelyTranslated":false},{"id":"lang_0000000000J1Z2YV21KTJJ6AC8","languageName":"Inuktitut","localeCode":"iu","iso6392":"iku","nativeName":"ᐃᓄᒃᑎᑐᑦ","activelyTranslated":false},{"id":"lang_00000000002HXZMH7XZ5JCFCHW","languageName":"Inupiaq","localeCode":"ik","iso6392":"ipk","nativeName":"Iñupiaq","activelyTranslated":false},{"id":"lang_0000000000CYB8QPSP7WJD84GA","languageName":"Irish","localeCode":"ga","iso6392":"gle","nativeName":"Gaeilge","activelyTranslated":false},{"id":"lang_0000000000Q3RFX6BFCQ2JMD2K","languageName":"Italian","localeCode":"it","iso6392":"ita","nativeName":"Italiano","activelyTranslated":false},{"id":"lang_0000000000Y2ZSQ5W9N8RYM20P","languageName":"Japanese","localeCode":"ja","iso6392":"jpn","nativeName":"日本語","activelyTranslated":false},{"id":"lang_0000000000EHJYCGJ7H2SK5JD4","languageName":"Javanese","localeCode":"jv","iso6392":"jav","nativeName":"Basa jawa","activelyTranslated":false},{"id":"lang_0000000000HG38JJ4TR0CR73DG","languageName":"Javanese","localeCode":"jw","iso6392":null,"nativeName":"ꦧꦱꦗꦮ","activelyTranslated":false},{"id":"lang_000000000054SVNJR7Q564P4S7","languageName":"Kalaallisut","localeCode":"kl","iso6392":"kal","nativeName":"Kalaallisut","activelyTranslated":false},{"id":"lang_0000000000MFEYSY8MZ8G6JVVR","languageName":"Kannada","localeCode":"kn","iso6392":"kan","nativeName":"ಕನ್ನಡ","activelyTranslated":false},{"id":"lang_0000000000RGR9FBFD6NBBW8NZ","languageName":"Kanuri","localeCode":"kr","iso6392":"kau","nativeName":"Kanuri","activelyTranslated":false},{"id":"lang_00000000001WEW113WPRBE44DT","languageName":"Kashmiri","localeCode":"ks","iso6392":"kas","nativeName":"कश्मीरी","activelyTranslated":false},{"id":"lang_0000000000Q5A1C6WP3VXJC7SN","languageName":"Kazakh","localeCode":"kk","iso6392":"kaz","nativeName":"Қазақ тілі","activelyTranslated":false},{"id":"lang_0000000000X19SM6SMH5Q4DG1J","languageName":"Khmer","localeCode":"km","iso6392":"khm","nativeName":"ខេមរភាសា","activelyTranslated":false},{"id":"lang_000000000081P5973N08ZJ4Y0B","languageName":"Kikuyu","localeCode":"ki","iso6392":"kik","nativeName":"Gĩkũyũ","activelyTranslated":false},{"id":"lang_0000000000VE6VRTR7KJV4C1MY","languageName":"Kinyarwanda","localeCode":"rw","iso6392":"kin","nativeName":"Ikinyarwanda","activelyTranslated":false},{"id":"lang_0000000000P10Q9MXMA7G9K50K","languageName":"Kirundi","localeCode":"rn","iso6392":"run","nativeName":"Ikirundi","activelyTranslated":false},{"id":"lang_00000000006H7RKSCAFYE4FM5X","languageName":"Komi","localeCode":"kv","iso6392":"kom","nativeName":"Коми кыв","activelyTranslated":false},{"id":"lang_0000000000DC8GC7KZF542NT2M","languageName":"Kongo","localeCode":"kg","iso6392":"kon","nativeName":"Kikongo","activelyTranslated":false},{"id":"lang_0000000000P2ZZJ2BZN9QRSKR7","languageName":"Korean","localeCode":"ko","iso6392":"kor","nativeName":"한국어","activelyTranslated":false},{"id":"lang_0000000000WSWHTYZR8E16D81A","languageName":"Kurdish","localeCode":"ku","iso6392":"kur","nativeName":"Kurdî","activelyTranslated":false},{"id":"lang_000000000000BDRQ0SQPYD7T5F","languageName":"Kwanyama","localeCode":"kj","iso6392":"kua","nativeName":"Kuanyama","activelyTranslated":false},{"id":"lang_0000000000R2HVEC3AW18A6V82","languageName":"Kyrgyz","localeCode":"ky","iso6392":"kir","nativeName":"Кыргызча","activelyTranslated":false},{"id":"lang_0000000000SF273BCAQTVJAE8E","languageName":"Lao","localeCode":"lo","iso6392":"lao","nativeName":"ພາສາ","activelyTranslated":false},{"id":"lang_00000000008S356AC5HK6MZRQG","languageName":"Latin","localeCode":"la","iso6392":"lat","nativeName":"Latine","activelyTranslated":false},{"id":"lang_00000000002WQB2PVW5TBYN1XJ","languageName":"Latvian","localeCode":"lv","iso6392":"lav","nativeName":"Latviešu valoda","activelyTranslated":false},{"id":"lang_0000000000NC6NT8AXNK3EZPMH","languageName":"Limburgish","localeCode":"li","iso6392":"lim","nativeName":"Limburgs","activelyTranslated":false},{"id":"lang_0000000000DM46841WD89HE2YW","languageName":"Lingala","localeCode":"ln","iso6392":"lin","nativeName":"Lingála","activelyTranslated":false},{"id":"lang_0000000000JNK7E1WYB4NBB2MX","languageName":"Lithuanian","localeCode":"lt","iso6392":"lit","nativeName":"Lietuvių kalba","activelyTranslated":false},{"id":"lang_00000000006N9QM6G2PG3HKGS1","languageName":"Luba-Katanga","localeCode":"lu","iso6392":"lub","nativeName":"Tshiluba","activelyTranslated":false},{"id":"lang_0000000000A7ZB1T2SKHP27FNJ","languageName":"Luxembourgish","localeCode":"lb","iso6392":"ltz","nativeName":"Lëtzebuergesch","activelyTranslated":false},{"id":"lang_00000000008QKNHM8058K2087Z","languageName":"Macedonian","localeCode":"mk","iso6392":"mkd","nativeName":"Македонски јазик","activelyTranslated":false},{"id":"lang_0000000000AYXJVHQ87H7F3KH2","languageName":"Maithili","localeCode":"mai","iso6392":null,"nativeName":"मैथिली","activelyTranslated":false},{"id":"lang_00000000003SB8ZT424BGW6B1S","languageName":"Malagasy","localeCode":"mg","iso6392":"mlg","nativeName":"Fiteny malagasy","activelyTranslated":false},{"id":"lang_00000000009EP2BJBFQ970VVRC","languageName":"Malay","localeCode":"ms","iso6392":"msa","nativeName":"Bahasa malaysia","activelyTranslated":false},{"id":"lang_0000000000RGFBCXA16FPSDDCH","languageName":"Malayalam","localeCode":"ml","iso6392":"mal","nativeName":"മലയാളം","activelyTranslated":false},{"id":"lang_0000000000WRMDPE5DA1V6G1RJ","languageName":"Maltese","localeCode":"mt","iso6392":"mlt","nativeName":"Malti","activelyTranslated":false},{"id":"lang_0000000000SX6M9KT5E3Y7JX30","languageName":"Manx","localeCode":"gv","iso6392":"glv","nativeName":"Gaelg","activelyTranslated":false},{"id":"lang_0000000000Z1Y7ZAD8X4G5C76Q","languageName":"Māori","localeCode":"mi","iso6392":"mri","nativeName":"Te reo māori","activelyTranslated":false},{"id":"lang_0000000000TN5AJGH8JF14AJ1P","languageName":"Marathi","localeCode":"mr","iso6392":"mar","nativeName":"मराठी","activelyTranslated":false},{"id":"lang_00000000009CRPK5NSYVVFJM5F","languageName":"Marshallese","localeCode":"mh","iso6392":"mah","nativeName":"Kajin m̧ajeļ","activelyTranslated":false},{"id":"lang_0000000000MY0K6C0VWZ4RW3DJ","languageName":"Mongolian","localeCode":"mn","iso6392":"mon","nativeName":"Монгол хэл","activelyTranslated":false},{"id":"lang_0000000000NSGC605FG0PDBTTD","languageName":"Nauru","localeCode":"na","iso6392":"nau","nativeName":"Ekakairũ naoero","activelyTranslated":false},{"id":"lang_0000000000Q979G5K0BK4AT3MK","languageName":"Navajo","localeCode":"nv","iso6392":"nav","nativeName":"Diné bizaad","activelyTranslated":false},{"id":"lang_0000000000SAQT9TT47CVH6SED","languageName":"Ndonga","localeCode":"ng","iso6392":"ndo","nativeName":"Owambo","activelyTranslated":false},{"id":"lang_00000000005AQ3YWGMSEPYKJQ0","languageName":"Nepali","localeCode":"ne","iso6392":"nep","nativeName":"नेपाली","activelyTranslated":false},{"id":"lang_0000000000V1E6ED6SG8C0P1T9","languageName":"Northern Ndebele","localeCode":"nd","iso6392":"nde","nativeName":"Isindebele","activelyTranslated":false},{"id":"lang_0000000000NTGW3H6Z3X50KW3P","languageName":"Northern Sami","localeCode":"se","iso6392":"sme","nativeName":"Davvisámegiella","activelyTranslated":false},{"id":"lang_0000000000PV27SWWAGF5Z9FAR","languageName":"Norwegian","localeCode":"no","iso6392":"nor","nativeName":"Norsk","activelyTranslated":false},{"id":"lang_0000000000Q0ZRBY9YRBASV510","languageName":"Norwegian Bokmål","localeCode":"nb","iso6392":"nob","nativeName":"Norsk bokmål","activelyTranslated":false},{"id":"lang_000000000010E6CHVBERY6JA6V","languageName":"Norwegian Nynorsk","localeCode":"nn","iso6392":"nno","nativeName":"Norsk nynorsk","activelyTranslated":false},{"id":"lang_0000000000XFN57V5JE5AFXZNJ","languageName":"Nuosu","localeCode":"ii","iso6392":"iii","nativeName":"ꆈꌠ꒿ nuosuhxop","activelyTranslated":false},{"id":"lang_0000000000MZ5YBBEART36RX9R","languageName":"Occitan","localeCode":"oc","iso6392":"oci","nativeName":"Occitan","activelyTranslated":false},{"id":"lang_0000000000H57HYKM4EY18SDAZ","languageName":"Ojibwe","localeCode":"oj","iso6392":"oji","nativeName":"ᐊᓂᔑᓈᐯᒧᐎᓐ","activelyTranslated":false},{"id":"lang_0000000000AVYXBM0NQBTBF4YE","languageName":"Old Church Slavonic","localeCode":"cu","iso6392":"chu","nativeName":"Ѩзыкъ словѣньскъ","activelyTranslated":false},{"id":"lang_0000000000PYKG1QZJDQDRGSYZ","languageName":"Oriya","localeCode":"or","iso6392":"ori","nativeName":"ଓଡ଼ିଆ","activelyTranslated":false},{"id":"lang_0000000000MZBPH2HFVSBWJ0QY","languageName":"Oromo","localeCode":"om","iso6392":"orm","nativeName":"Afaan oromoo","activelyTranslated":false},{"id":"lang_0000000000GM6J44K73WFCKVYE","languageName":"Ossetian","localeCode":"os","iso6392":"oss","nativeName":"Ирон æвзаг","activelyTranslated":false},{"id":"lang_0000000000X0FR5ER8Q57924S6","languageName":"Pāli","localeCode":"pi","iso6392":"pli","nativeName":"पाऴि","activelyTranslated":false},{"id":"lang_0000000000JBHAXG1FRQKZ078J","languageName":"Panjabi","localeCode":"pa","iso6392":"pan","nativeName":"ਪੰਜਾਬੀ","activelyTranslated":false},{"id":"lang_00000000000STKXNJQ1Y0SVEWJ","languageName":"Pashto","localeCode":"ps","iso6392":"pus","nativeName":"پښتو","activelyTranslated":false},{"id":"lang_0000000000QWAFFNDAW9D75HK6","languageName":"Persian","localeCode":"fa","iso6392":"fas","nativeName":"فارسی","activelyTranslated":false},{"id":"lang_0000000000G7ZSP47FWN90HNXA","languageName":"Polish","localeCode":"pl","iso6392":"pol","nativeName":"Język polski","activelyTranslated":false},{"id":"lang_0000000000NYC5FZFG3VV3RZ2V","languageName":"Portuguese","localeCode":"pt","iso6392":"por","nativeName":"Português","activelyTranslated":false},{"id":"lang_00000000002HDRBEHXZWH1K59J","languageName":"Portuguese (Brazil)","localeCode":"pt-BR","iso6392":null,"nativeName":"Português (brasil)","activelyTranslated":false},{"id":"lang_0000000000VQ0ZSR7E0K0HX61J","languageName":"Quechua","localeCode":"qu","iso6392":"que","nativeName":"Runa simi","activelyTranslated":false},{"id":"lang_0000000000Q2F35A6VB0ZH3Y4X","languageName":"Romanian","localeCode":"ro","iso6392":"ron","nativeName":"Română","activelyTranslated":false},{"id":"lang_0000000000BEC84Q0EDV49F2JJ","languageName":"Romansh","localeCode":"rm","iso6392":"roh","nativeName":"Rumantsch grischun","activelyTranslated":false},{"id":"lang_0000000000BXGXDK2NKFKYDVBK","languageName":"Russian","localeCode":"ru","iso6392":"rus","nativeName":"Русский","activelyTranslated":true},{"id":"lang_0000000000HHR45Q7VAJ5TFCKK","languageName":"Samoan","localeCode":"sm","iso6392":"smo","nativeName":"Gagana fa'a samoa","activelyTranslated":false},{"id":"lang_0000000000C6NPGHVGBWBDVNEN","languageName":"Sango","localeCode":"sg","iso6392":"sag","nativeName":"Yângâ tî sängö","activelyTranslated":false},{"id":"lang_0000000000G514DDFYJ35HYX51","languageName":"Sanskrit","localeCode":"sa","iso6392":"san","nativeName":"संस्कृतम्","activelyTranslated":false},{"id":"lang_0000000000SH25T8J682WRD6PN","languageName":"Sardinian","localeCode":"sc","iso6392":"srd","nativeName":"Sardu","activelyTranslated":false},{"id":"lang_0000000000QQ2SMTKQCTCQNYEZ","languageName":"Scottish Gaelic","localeCode":"gd","iso6392":"gla","nativeName":"Gàidhlig","activelyTranslated":false},{"id":"lang_0000000000PSE4SWJ24KAGS5GJ","languageName":"Serbian","localeCode":"sr","iso6392":"srp","nativeName":"Српски језик","activelyTranslated":false},{"id":"lang_0000000000786564ZTC9PGA6XV","languageName":"Shona","localeCode":"sn","iso6392":"sna","nativeName":"Chishona","activelyTranslated":false},{"id":"lang_0000000000AFM9J752C12C5Y3Q","languageName":"Sindhi","localeCode":"sd","iso6392":"snd","nativeName":"सिन्धी","activelyTranslated":false},{"id":"lang_0000000000JWWCCT20VEV18AVE","languageName":"Sinhala","localeCode":"si","iso6392":"sin","nativeName":"සිංහල","activelyTranslated":false},{"id":"lang_0000000000RBP8M0F8T9XX0M78","languageName":"Slovak","localeCode":"sk","iso6392":"slk","nativeName":"Slovenčina","activelyTranslated":false},{"id":"lang_0000000000NHSA9KRMZY5539M5","languageName":"Slovenian","localeCode":"sl","iso6392":"slv","nativeName":"Slovenski jezik","activelyTranslated":false},{"id":"lang_0000000000M4JTMWR8AH1SJNMQ","languageName":"Somali","localeCode":"so","iso6392":"som","nativeName":"Soomaaliga","activelyTranslated":false},{"id":"lang_0000000000ZPG2XXHQYQ8F7B6H","languageName":"Southern Ndebele","localeCode":"nr","iso6392":"nbl","nativeName":"Isindebele","activelyTranslated":false},{"id":"lang_0000000000Z96V8RWYXFYSM6M1","languageName":"Southern Sotho","localeCode":"st","iso6392":"sot","nativeName":"Sesotho","activelyTranslated":false},{"id":"lang_0000000000EBJ3V9T0RJP07R5G","languageName":"Spanish","localeCode":"es","iso6392":"spa","nativeName":"Español","activelyTranslated":true},{"id":"lang_0000000000HR49HXQ3ECR0NW6B","languageName":"Spanish (Latin America)","localeCode":"es-419","iso6392":null,"nativeName":"Español (latinoamérica)","activelyTranslated":false},{"id":"lang_0000000000ZE12ANFEHF0VPC1B","languageName":"Spanish (Mexico)","localeCode":"es-MX","iso6392":null,"nativeName":"Español (méxico)","activelyTranslated":false},{"id":"lang_0000000000APGYRQ9NV615HPZN","languageName":"Spanish (Spain)","localeCode":"es-ES","iso6392":null,"nativeName":"Español (españa)","activelyTranslated":false},{"id":"lang_0000000000CK9X52TMQ72FA52X","languageName":"Sundanese","localeCode":"su","iso6392":"sun","nativeName":"Basa sunda","activelyTranslated":false},{"id":"lang_0000000000BBAT6KH1SBGVA3SQ","languageName":"Swahili","localeCode":"sw","iso6392":"swa","nativeName":"Kiswahili","activelyTranslated":false},{"id":"lang_0000000000S8TEJ4R4J3F24T9H","languageName":"Swati","localeCode":"ss","iso6392":"ssw","nativeName":"Siswati","activelyTranslated":false},{"id":"lang_0000000000TJBTY1A6ZAZWM1PA","languageName":"Swedish","localeCode":"sv","iso6392":"swe","nativeName":"Svenska","activelyTranslated":false},{"id":"lang_00000000004X585QF9QRF0V6KW","languageName":"Tagalog","localeCode":"tl","iso6392":"tgl","nativeName":"Wikang tagalog","activelyTranslated":false},{"id":"lang_00000000000E081RDB9X34R9BG","languageName":"Tahitian","localeCode":"ty","iso6392":"tah","nativeName":"Reo tahiti","activelyTranslated":false},{"id":"lang_0000000000CC4WWYHYQTHQH1RK","languageName":"Tajik","localeCode":"tg","iso6392":"tgk","nativeName":"Тоҷикӣ","activelyTranslated":false},{"id":"lang_0000000000XD2XA9ASHCY831HK","languageName":"Tamil","localeCode":"ta","iso6392":"tam","nativeName":"தமிழ்","activelyTranslated":false},{"id":"lang_0000000000GXCR152JHGFHZ7P2","languageName":"Tatar","localeCode":"tt","iso6392":"tat","nativeName":"Татар теле","activelyTranslated":false},{"id":"lang_0000000000JNTSXKTVH13D1G0B","languageName":"Telugu","localeCode":"te","iso6392":"tel","nativeName":"తెలుగు","activelyTranslated":false},{"id":"lang_00000000006567MNV7VR8MGA4A","languageName":"Thai","localeCode":"th","iso6392":"tha","nativeName":"ไทย","activelyTranslated":false},{"id":"lang_000000000022H2ZNSSDMJ81PDE","languageName":"Tibetan","localeCode":"bo","iso6392":"bod","nativeName":"བོད་ཡིག","activelyTranslated":false},{"id":"lang_0000000000QPA3WT9KS3T0JFZ8","languageName":"Tigrinya","localeCode":"ti","iso6392":"tir","nativeName":"ትግርኛ","activelyTranslated":false},{"id":"lang_0000000000S55HZ9PR8KGE99M6","languageName":"Tonga","localeCode":"to","iso6392":"ton","nativeName":"Faka tonga","activelyTranslated":false},{"id":"lang_0000000000Z07E6F7STYT0F54K","languageName":"Tsonga","localeCode":"ts","iso6392":"tso","nativeName":"Xitsonga","activelyTranslated":false},{"id":"lang_0000000000YWN9PVPE0JHYKQZE","languageName":"Tswana","localeCode":"tn","iso6392":"tsn","nativeName":"Setswana","activelyTranslated":false},{"id":"lang_0000000000FE9MEYGZX8HBT553","languageName":"Turkish","localeCode":"tr","iso6392":"tur","nativeName":"Türkçe","activelyTranslated":false},{"id":"lang_0000000000XPE5CKGQY3K32RPN","languageName":"Turkmen","localeCode":"tk","iso6392":"tuk","nativeName":"Türkmen","activelyTranslated":false},{"id":"lang_0000000000QFFGTKDERJP4B8HX","languageName":"Twi","localeCode":"tw","iso6392":"twi","nativeName":"Twi","activelyTranslated":false},{"id":"lang_0000000000YZCP34049CMQ72JA","languageName":"Ukrainian","localeCode":"uk","iso6392":"ukr","nativeName":"Українська","activelyTranslated":false},{"id":"lang_0000000000NGG2GPJX3MQHV3AG","languageName":"Urdu","localeCode":"ur","iso6392":"urd","nativeName":"اردو","activelyTranslated":false},{"id":"lang_0000000000PCMYE5WYR8SZZ2R7","languageName":"Uyghur","localeCode":"ug","iso6392":"uig","nativeName":"ئۇيغۇرچە","activelyTranslated":false},{"id":"lang_0000000000F59D422DQQJ7HZVN","languageName":"Uzbek","localeCode":"uz","iso6392":"uzb","nativeName":"Ўзбек","activelyTranslated":false},{"id":"lang_0000000000APQTRBY360R9VKRB","languageName":"Venda","localeCode":"ve","iso6392":"ven","nativeName":"Tshivenḓa","activelyTranslated":false},{"id":"lang_0000000000M4ZVZEKEA4DVEZT9","languageName":"Vietnamese","localeCode":"vi","iso6392":"vie","nativeName":"Tiếng việt","activelyTranslated":false},{"id":"lang_0000000000YFQV2T02FPSJB2VD","languageName":"Volapük","localeCode":"vo","iso6392":"vol","nativeName":"Volapük","activelyTranslated":false},{"id":"lang_0000000000DSJKFKS5YFWAK84M","languageName":"Walloon","localeCode":"wa","iso6392":"wln","nativeName":"Walon","activelyTranslated":false},{"id":"lang_00000000005013EB2R76H3EEG5","languageName":"Welsh","localeCode":"cy","iso6392":"cym","nativeName":"Cymraeg","activelyTranslated":false},{"id":"lang_0000000000KB422AMC2P3YSXZS","languageName":"Western Frisian","localeCode":"fy","iso6392":"fry","nativeName":"Frysk","activelyTranslated":false},{"id":"lang_0000000000SQFZM0CTF2EDC8A5","languageName":"Wolof","localeCode":"wo","iso6392":"wol","nativeName":"Wollof","activelyTranslated":false},{"id":"lang_0000000000MH14AYTF5796C9M1","languageName":"Xhosa","localeCode":"xh","iso6392":"xho","nativeName":"Isixhosa","activelyTranslated":false},{"id":"lang_0000000000E5XDF56F9QMTEA8W","languageName":"Yiddish","localeCode":"yi","iso6392":"yid","nativeName":"ייִדיש","activelyTranslated":false},{"id":"lang_0000000000790XHA1NG0BJ0VVD","languageName":"Yoruba","localeCode":"yo","iso6392":"yor","nativeName":"Yorùbá","activelyTranslated":false},{"id":"lang_0000000000Q5A620BJ9E9RVXE7","languageName":"Zhuang","localeCode":"za","iso6392":"zha","nativeName":"Saɯ cueŋƅ","activelyTranslated":false},{"id":"lang_0000000000SSRX9JG97NHT6RHJ","languageName":"Zulu","localeCode":"zu","iso6392":"zul","nativeName":"Isizulu","activelyTranslated":false}]
\ No newline at end of file
diff --git a/packages/ui/mockData/json/fieldOpt.phoneTypes.json b/packages/ui/mockData/json/fieldOpt.phoneTypes.json
new file mode 100644
index 0000000000..5978054cee
--- /dev/null
+++ b/packages/ui/mockData/json/fieldOpt.phoneTypes.json
@@ -0,0 +1 @@
+[{"id":"phtp_01GXRXCWJG3F358K8QBX7C08R7","tsKey":"fax","tsNs":"phone-type"},{"id":"phtp_01GXRXCWJGZQDYF577AGZASTPQ","tsKey":"hotline","tsNs":"phone-type"},{"id":"phtp_01GXRXCWJGNF3JF8DEY1EWP1JW","tsKey":"office","tsNs":"phone-type"},{"id":"phtp_01GXRXCWJG7PGQH1A6GGBKATZ4","tsKey":"sms","tsNs":"phone-type"},{"id":"phtp_01GXRXCWJGCZFWCHBGFA5AE5YK","tsKey":"whatsapp","tsNs":"phone-type"}]
\ No newline at end of file
diff --git a/packages/ui/mockData/serviceArea.ts b/packages/ui/mockData/serviceArea.ts
new file mode 100644
index 0000000000..898257b10c
--- /dev/null
+++ b/packages/ui/mockData/serviceArea.ts
@@ -0,0 +1,49 @@
+import { getTRPCMock, type MockDataObject, type MockHandlerObject } from '~ui/lib/getTrpcMock'
+
+export const serviceAreaData = {
+ getServiceArea: {
+ id: 'svar_01GW2HT8D1B1RET8SVAETPBH05',
+ countries: [],
+ districts: [
+ {
+ id: 'gdst_01GW2HJ23GMD17FBJMJWD16PZ1',
+ parent: null,
+ country: { cca2: 'US' },
+ tsKey: 'us-california',
+ tsNs: 'gov-dist',
+ },
+ {
+ id: 'gdst_01GW2HJ2S1061RNRAT6S4RJN1S',
+ parent: {
+ // id: 'gdst_01GW2HJ23GMD17FBJMJWD16PZ1',
+ tsKey: 'us-california',
+ tsNs: 'gov-dist',
+ },
+ country: { cca2: 'US' },
+ tsKey: 'us-california-san-francisco-county',
+ tsNs: 'gov-dist',
+ },
+ ],
+ },
+} satisfies MockDataObject<'serviceArea'>
+
+export const serviceArea = {
+ getServiceArea: getTRPCMock({
+ path: ['serviceArea', 'getServiceArea'],
+ response: serviceAreaData.getServiceArea,
+ }),
+ update: getTRPCMock({
+ path: ['serviceArea', 'update'],
+ type: 'mutation',
+ response: (input) => ({
+ countries: {
+ created: input.countries.createdVals?.length ?? 0,
+ deleted: input.countries.deletedVals?.length ?? 0,
+ },
+ districts: {
+ created: input.districts.createdVals?.length ?? 0,
+ deleted: input.districts.deletedVals?.length ?? 0,
+ },
+ }),
+ }),
+} satisfies MockHandlerObject<'serviceArea'>
diff --git a/packages/ui/modals/CoverageArea/hooks.ts b/packages/ui/modals/CoverageArea/hooks.ts
new file mode 100644
index 0000000000..8280909c3f
--- /dev/null
+++ b/packages/ui/modals/CoverageArea/hooks.ts
@@ -0,0 +1,14 @@
+import { useState } from 'react'
+
+export const useServiceAreaSelections = () => {
+ const [selected, setSelected] = useState({ country: null, govDist: null, subDist: null })
+ const setVal = {
+ country: (value: string) => setSelected({ country: value, govDist: null, subDist: null }),
+ govDist: (value: string) => setSelected((prev) => ({ ...prev, govDist: value, subDist: null })),
+ subDist: (value: string) => setSelected((prev) => ({ ...prev, subDist: value })),
+ blank: () => setSelected({ country: null, govDist: null, subDist: null }),
+ }
+
+ return [selected, setVal] as [typeof selected, typeof setVal]
+}
+type SelectionState = { country: string | null; govDist: string | null; subDist: string | null }
diff --git a/packages/ui/modals/CoverageArea/index.stories.tsx b/packages/ui/modals/CoverageArea/index.stories.tsx
new file mode 100644
index 0000000000..baa3794681
--- /dev/null
+++ b/packages/ui/modals/CoverageArea/index.stories.tsx
@@ -0,0 +1,38 @@
+import { type Meta } from '@storybook/react'
+
+import { Button } from '~ui/components/core'
+import { fieldOpt } from '~ui/mockData/fieldOpt'
+import { serviceArea } from '~ui/mockData/serviceArea'
+
+import { CoverageArea } from '.'
+
+export default {
+ title: 'Data Portal/Modals/Coverage Area',
+ component: CoverageArea,
+ parameters: {
+ design: {
+ type: 'figma',
+ url: 'https://www.figma.com/file/449Snk9R17VyIlRWH4c42F/%5BWIP%5D-New-Data-Portal-Layout?node-id=297-14609&t=HvZfDZuyjMWWu5Nl-0',
+ },
+ layout: 'fullscreen',
+ layoutWrapper: 'centeredHalf',
+ msw: [
+ fieldOpt.govDistsByCountryNoSub,
+ fieldOpt.getSubDistricts,
+ fieldOpt.countries,
+ fieldOpt.govDists,
+ serviceArea.getServiceArea,
+ serviceArea.update,
+ ],
+ rqDevtools: true,
+ whyDidYouRender: { collapseGroups: true },
+ },
+ args: {
+ component: Button,
+ children: 'Open Modal',
+ orgName: 'test',
+ orgLocations: ['State - CA', 'County - CA / San Francisco', 'City - CA / San Francisco'],
+ },
+} satisfies Meta
+
+export const Modal = {}
diff --git a/packages/ui/modals/CoverageArea/index.tsx b/packages/ui/modals/CoverageArea/index.tsx
new file mode 100644
index 0000000000..a36969aace
--- /dev/null
+++ b/packages/ui/modals/CoverageArea/index.tsx
@@ -0,0 +1,290 @@
+import { zodResolver } from '@hookform/resolvers/zod'
+import {
+ Badge,
+ Box,
+ Button,
+ type ButtonProps,
+ CloseButton,
+ createPolymorphicComponent,
+ Grid,
+ Group,
+ Modal,
+ Select,
+ Stack,
+ Text,
+ Title,
+} from '@mantine/core'
+import { useDisclosure } from '@mantine/hooks'
+import { compareArrayVals } from 'crud-object-diff'
+import compact from 'just-compact'
+import { type TFunction, useTranslation } from 'next-i18next'
+import { forwardRef } from 'react'
+import { useForm } from 'react-hook-form'
+
+import { trpc as api } from '~ui/lib/trpcClient'
+
+import { useServiceAreaSelections } from './hooks'
+import { ServiceAreaForm, type ZServiceAreaForm } from './schema'
+import { useStyles } from './styles'
+import { ModalTitle } from '../ModalTitle'
+
+const reduceDistType = (data: { tsNs: string; tsKey: string }[] | undefined, t: TFunction) => {
+ if (!data) return ''
+ const valueSet = data.reduce((prev, curr) => {
+ const translated = t(curr.tsKey, { ns: curr.tsNs, count: 1 })
+ prev.add(translated)
+ return prev
+ }, new Set())
+ return [...valueSet].sort().join('/')
+}
+
+const CoverageAreaModal = forwardRef(({ id, ...props }, ref) => {
+ const { classes } = useStyles()
+ const { t, i18n } = useTranslation(['common', 'gov-dist'])
+ const countryTranslation = new Intl.DisplayNames(i18n.language, { type: 'region' })
+ const [opened, { open, close }] = useDisclosure(true) //TODO: remove `true` when done with dev
+
+ const [selected, setVal] = useServiceAreaSelections()
+
+ const { data: dataCountry } = api.fieldOpt.countries.useQuery(
+ { activeForOrgs: true },
+ {
+ select: (data) =>
+ data.map(({ id, cca2 }) => ({ value: id, label: countryTranslation.of(cca2), cca2 })) ?? [],
+ placeholderData: [],
+ }
+ )
+ const { data: dataDistrict } = api.fieldOpt.govDists.useQuery(
+ { countryId: selected.country ?? '', parentsOnly: true },
+ {
+ enabled: selected.country !== null,
+ select: (data) =>
+ data?.map(({ id, tsKey, tsNs, ...rest }) => ({
+ value: id,
+ label: t(tsKey, { ns: tsNs }),
+ tsKey,
+ tsNs,
+ parent: null,
+ ...rest,
+ })) ?? [],
+ placeholderData: [],
+ }
+ )
+ const { data: dataSubDist } = api.fieldOpt.getSubDistricts.useQuery(selected.govDist ?? '', {
+ enabled: selected.govDist !== null,
+ select: (data) =>
+ data?.map(({ id, tsKey, tsNs, ...rest }) => ({
+ value: id,
+ label: t(tsKey, { ns: tsNs }),
+ tsKey,
+ tsNs,
+ ...rest,
+ })) ?? [],
+ placeholderData: [],
+ })
+ const apiUtils = api.useUtils()
+
+ const updateServiceArea = api.serviceArea.update.useMutation()
+
+ const form = useForm({
+ resolver: zodResolver(ServiceAreaForm),
+ defaultValues: async () => {
+ const data = await apiUtils.serviceArea.getServiceArea.fetch(id)
+ const formatted = {
+ id: data?.id ?? id,
+ countries: data?.countries ?? [],
+ districts: data?.districts ?? [],
+ }
+ return formatted
+ },
+ })
+
+ const serviceAreaCountries = form.watch('countries')
+ const serviceAreaDistricts = form.watch('districts')
+
+ const placeHolders = {
+ first: t('select.base', { item: 'Country' }),
+ second: t('select.base', {
+ item: reduceDistType(dataDistrict?.map(({ govDistType }) => govDistType), t),
+ }),
+ third: t('select.base', { item: reduceDistType(dataSubDist?.map(({ govDistType }) => govDistType), t) }),
+ }
+
+ const handleAdd = () => {
+ switch (true) {
+ case !!selected.subDist:
+ case !!selected.govDist: {
+ const itemId = selected.subDist ?? selected.govDist
+ const valToAdd = selected.subDist
+ ? dataSubDist?.find(({ value }) => value === itemId)
+ : dataDistrict?.find(({ value }) => value === itemId)
+ if (!valToAdd) return
+ form.setValue(
+ 'districts',
+ [
+ ...serviceAreaDistricts,
+ {
+ id: valToAdd.value,
+ tsKey: valToAdd.tsKey,
+ tsNs: valToAdd.tsNs,
+ parent: valToAdd.parent,
+ country: valToAdd.country,
+ },
+ ],
+ {
+ shouldValidate: true,
+ }
+ )
+ setVal.blank()
+ break
+ }
+ case !!selected.country: {
+ const valToAdd = dataCountry?.find(({ value }) => value === selected.country)
+ if (!valToAdd) return
+ form.setValue('countries', [...serviceAreaCountries, { id: valToAdd?.value, cca2: valToAdd?.cca2 }], {
+ shouldValidate: true,
+ })
+ setVal.blank()
+ break
+ }
+ }
+ }
+
+ const activeAreas = compact(
+ [
+ serviceAreaCountries?.map((country) => (
+
+
+ {countryTranslation.of(country.cca2)}
+
+ form.setValue('countries', serviceAreaCountries?.filter(({ id }) => id !== country.id))
+ }
+ />
+
+
+ )),
+
+ // Display -> Country / District / Sub-District
+ serviceAreaDistricts?.map((govDist) => {
+ const { id, tsKey, tsNs, country, parent } = govDist
+
+ const displayName = compact([
+ country.cca2,
+ parent ? t(parent.tsKey, { ns: parent.tsNs }) : null,
+ t(tsKey, { ns: tsNs }),
+ ]).join(' → ')
+
+ return (
+
+
+ {displayName}
+
+ form.setValue('districts', serviceAreaDistricts?.filter(({ id }) => id !== govDist.id))
+ }
+ />
+
+
+ )
+ }),
+ ].flat()
+ )
+
+ const handleSave = () => {
+ const initialData = {
+ id: form.formState.defaultValues?.id,
+ countries: compact(form.formState.defaultValues?.countries?.map((country) => country?.id) ?? []),
+ districts: compact(form.formState.defaultValues?.districts?.map((district) => district?.id) ?? []),
+ }
+ const data = form.getValues()
+ const currentData = {
+ id: data.id,
+ countries: data.countries.map((country) => country.id),
+ districts: data.districts.map((district) => district.id),
+ }
+
+ const changes = {
+ id: data.id,
+ countries: compareArrayVals([initialData.countries, currentData.countries]),
+ districts: compareArrayVals([initialData.districts, currentData.districts]),
+ }
+ updateServiceArea.mutate(changes)
+ }
+
+ return (
+ <>
+ close() }} />}
+ onClose={close}
+ opened={opened}
+ >
+
+
+ {t('portal-module.service-area')}
+ ({ ...theme.other.utilityFonts.utility4, color: 'black' })}>
+ {`${t('organization')}: `}
+
+
+
+ {activeAreas}
+
+
+ theme.other.utilityFonts.utility1}>
+ {t('add', {
+ item: '$t(portal-module.service-area)',
+ })}
+
+
+
+
+
+ {selected.country && !!dataDistrict?.length && (
+
+ )}
+ {selected.govDist && !!dataSubDist?.length && (
+
+ )}
+
+
+
+
+
+
+
+
+
+
+
+ >
+ )
+})
+
+CoverageAreaModal.displayName = 'coverageArea'
+
+export const CoverageArea = createPolymorphicComponent(CoverageAreaModal)
+
+interface Props extends ButtonProps {
+ id: string
+}
diff --git a/packages/ui/modals/CoverageArea/schema.ts b/packages/ui/modals/CoverageArea/schema.ts
new file mode 100644
index 0000000000..292b2b9506
--- /dev/null
+++ b/packages/ui/modals/CoverageArea/schema.ts
@@ -0,0 +1,27 @@
+import { z } from 'zod'
+
+const Country = z.object({
+ id: z.string(),
+ cca2: z.string(),
+})
+
+const GovDist = z.object({
+ id: z.string(),
+ country: z.object({ cca2: z.string() }),
+ tsKey: z.string(),
+ tsNs: z.string(),
+ parent: z
+ .object({
+ tsKey: z.string(),
+ tsNs: z.string(),
+ })
+ .nullable(),
+})
+
+export const ServiceAreaForm = z.object({
+ id: z.string(),
+ countries: Country.array(),
+ districts: GovDist.array(),
+})
+
+export type ZServiceAreaForm = z.infer
diff --git a/packages/ui/modals/CoverageArea/styles.ts b/packages/ui/modals/CoverageArea/styles.ts
new file mode 100644
index 0000000000..daaec5f37c
--- /dev/null
+++ b/packages/ui/modals/CoverageArea/styles.ts
@@ -0,0 +1,34 @@
+import { createStyles, rem } from '@mantine/core'
+
+export const useStyles = createStyles((theme) => ({
+ borderedBox: {
+ padding: rem(20),
+ border: `${rem(1)} solid ${theme.other.colors.tertiary.coolGray}`,
+ borderRadius: rem(8),
+ },
+ locationBadge: {
+ padding: `${rem(0)} ${rem(12)}`,
+ borderColor: `${theme.other.colors.tertiary.coolGray}`,
+ '& *, & .mantine-Text-root': {
+ ...theme.other.utilityFonts.utility1,
+ },
+ },
+ noHoverHighlight: {
+ '&:hover': { backgroundColor: 'inherit' },
+ },
+ ModalContent: {
+ '& > *': { width: '100%' },
+ },
+ selectSectionWrapper: {
+ '& .mantine-Select-input, & .mantine-Select-input::-webkit-input-placeholder': {
+ ...theme.other.utilityFonts.utility1,
+ margin: rem(0),
+ },
+ '& *': {
+ ...theme.other.utilityFonts.utility1,
+ },
+ '& .mantine-Select-rightSection': {
+ justifyContent: 'end',
+ },
+ },
+}))
diff --git a/packages/ui/modals/index.ts b/packages/ui/modals/index.ts
index 1948d500b1..ed6838b455 100644
--- a/packages/ui/modals/index.ts
+++ b/packages/ui/modals/index.ts
@@ -1,6 +1,7 @@
// codegen:start {preset: barrel, include: './{*,*/index}.ts*', exclude: "*.stories.tsx"}
export * from './AccountVerified'
export * from './ClaimOrg'
+export * from './CoverageArea'
export * from './CreateNewList'
export * from './DeleteModal'
export * from './Example'